:root {
    /* Color Palette */
    --primary: #9be589;
    --primary-dark: #81bc71;
    --primary-light: #e3ffde;
    --bg-color: #f6fcf5;
    --bg-muted: #dae5da;
    --text-main: #1b1e21;
    --text-muted: #5a6268;
    
    /* UI Tokens */
    --card-bg: rgba(255, 255, 255, 0.7);
    --border-color: rgba(27, 30, 33, 0.08);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-pill: 9999px;
    
    /* Layout */
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    
    /* Subtle background gradients & concentric rings */
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(155, 229, 137, 0.15), transparent 35%),
        radial-gradient(circle at 85% 30%, rgba(129, 188, 113, 0.1), transparent 30%),
        repeating-radial-gradient(circle at 50% -10%, rgba(218, 229, 218, 0.4) 0, rgba(218, 229, 218, 0.4) 1px, transparent 1px, transparent 80px);
    background-attachment: fixed;
    position: relative;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Highlighted Text Approach */
.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary-light);
    z-index: -1;
    border-radius: var(--radius-sm);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo-img {
    height: 32px;
    width: auto;
    aspect-ratio: 321 / 66;
    object-fit: contain;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: var(--text-muted);
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
}

.social-icons a:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Buttons */
button {
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border-radius: var(--radius-pill);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    padding: 0.5rem 1.25rem;
    color: var(--text-main);
    font-size: 1rem;
}

.btn-outline:hover {
    border-color: var(--text-main);
}

.btn-primary {
    background: var(--primary);
    color: var(--text-main);
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    box-shadow: 0 8px 24px 0 rgba(155, 229, 137, 0.6);
}

.btn-primary:focus {
    outline: 2px solid var(--primary-dark);
    outline-offset: 2px;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(129, 188, 113, 0.5);
}

.btn-primary:disabled {
    background: var(--primary-light);
    color: var(--text-muted);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* Badge */
.badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 5% 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 4rem;
    min-height: 75vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeUp 0.8s ease-out backwards;
}

/* Forms */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
}

.input-group {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.consent-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.consent-group input[type="checkbox"] {
    margin: 0;
    accent-color: var(--primary);
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    cursor: pointer;
}

.consent-group label {
    font-size: 0.85rem;
    color: var(--text-main);
    line-height: 1.4;
    cursor: pointer;
}

/* App Badges */
.app-badges {
    display: flex;
    gap: 1.25rem;
    margin-top: 2.5rem;
    align-items: center;
}

.app-badge-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    transition: filter 0.3s ease, opacity 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

.app-badge-link img {
    height: 22px; /* 50% of the previous 44px */
    width: auto;
    display: block;
}

/* Specific aspect ratios for badges to prevent horizontal shift */
.app-badge-link img[src*="App_Store"] { aspect-ratio: 120 / 40; }
.app-badge-link img[src*="GooglePlay"] { aspect-ratio: 239 / 71; }

.privacy-note {
    font-size: 0.75rem;
    color: var(--text-muted) !important;
    margin-top: 0;
    margin-bottom: 0 !important;
    line-height: 1.4;
}

.privacy-link {
    color: var(--primary-dark);
    text-decoration: underline;
    font-weight: 500;
}

.waitlist-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.waitlist-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    min-height: 1.5rem;
    display: none;
}

.form-message.success {
    display: block;
    color: var(--primary-dark);
    animation: fadeUp 0.3s ease-out;
}

.form-message.error {
    display: block;
    color: #ef4444; /* red-500 */
    animation: fadeUp 0.3s ease-out;
}

/* Visual Presentation (Right side of Hero) */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
    width: 100%;
    animation: fadeLeft 1s ease-out 0.2s backwards;
    overflow: visible;
}

.floating-composition {
    width: 500px;
    height: 500px;
    flex-shrink: 0;
    position: relative;
    transform: scale(0.95);
    transform-origin: center;
}

.center-brand-bg {
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(155, 229, 137, 0.25);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.center-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.center-brand-img {
    height: 80px;
    width: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.ui-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(27,30,33,0.06);
    z-index: 10;
    transition: transform 0.3s ease;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.ui-card:hover {
    z-index: 20;
    transform: scale(1.02);
}

/* Calendar Card */
.calendar-card {
    top: 5%;
    left: -5%;
    padding: 1rem;
}

.calendar-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.calendar-card .card-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.calendar-days {
    display: flex;
    gap: 0.5rem;
}

.day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.day-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.meal-icon {
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.day.active {
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    padding: 0.25rem;
}

.meal-icon.check {
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    position: absolute;
    z-index: 2;
    transform: translate(6px, 6px);
}

/* Recipe Card */
.recipe-card {
    top: -5%;
    right: 0%;
    padding: 0.5rem;
    padding-bottom: 1rem;
    border-radius: var(--radius-lg);
    width: 220px;
}

.recipe-img-container {
    height: 140px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 0.75rem;
    position: relative;
}

.recipe-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.recipe-card-body {
    padding: 0 0.5rem;
}

.recipe-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.rating {
    display: flex;
    gap: 1px;
    align-items: center;
}

.star-icon {
    width: 14px;
    height: 14px;
    color: var(--primary-dark);
}

/* Plan Card */
.plan-card {
    bottom: 5%;
    left: -5%;
    width: 220px;
}

.plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
}
.plan-item:last-child {
    border-bottom: none;
}
.plan-item.active {
    background: var(--bg-color);
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.5rem;
    margin: 0 -0.5rem;
    border-bottom: none;
}
.plan-label {
    font-size: 0.85rem;
}
.circle-box {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
}
.circle-box.empty { border: 2px solid var(--bg-muted); }
.circle-box.checked { background: #6c9a76; color: white; }

/* Grocery Card */
.grocery-card {
    bottom: -5%;
    right: 5%;
    width: 180px;
}

.grocery-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.grocery-label {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.square-box {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
}
.square-box.empty { border: 2px solid var(--bg-muted); }
.square-box.checked { background: var(--primary); color: white; }

.orbit-ring {
    position: absolute;
    border: 1.5px dashed rgba(129, 188, 113, 0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.orbit-main { width: 380px; height: 380px; }
.orbit-outer { width: 650px; height: 650px; border-color: rgba(129, 188, 113, 0.2); }

.orbit-node {
    width: 6px;
    height: 6px;
    background: white;
    border: 1.5px solid var(--primary-dark);
    border-radius: 50%;
    position: absolute;
    z-index: 2;
}

.skeleton-lines {
    margin-top: 0.75rem;
}

.sk-line {
    height: 6px;
    background: var(--bg-muted);
    border-radius: 3px;
    margin-bottom: 6px;
    width: 100%;
}
.sk-line.short {
    width: 70%;
}

.grocery-item.ghost .square-box {
    opacity: 0.4;
}

.decor {
    position: absolute;
    z-index: 1;
}

/* Pluses */
.decor-plus {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-dark);
    line-height: 1;
}
.decor-plus.dark { color: var(--text-main); }
.decor-plus.faint { color: var(--bg-muted); }

/* Solid Dots */
.decor-dot-solid {
    border-radius: 50%;
    background: var(--primary-dark);
}
.decor-dot-solid.large { width: 14px; height: 14px; }
.decor-dot-solid.medium { width: 10px; height: 10px; }
.decor-dot-solid.small { width: 6px; height: 6px; }

/* 4x4 Dot Grids */
.decor-grid-light, .decor-grid-dark {
    width: 60px;
    height: 60px;
    background-size: 15px 15px;
}
.decor-grid-light {
    background-image: radial-gradient(var(--bg-muted) 3px, transparent 3px);
}
.decor-grid-dark {
    background-image: radial-gradient(var(--primary) 3px, transparent 3px);
}

/* Sparkle */
.decor-sparkle {
    width: 24px;
    height: 24px;
    background-image: radial-gradient(circle at 12px 12px, white 20%, transparent 20%), 
                      conic-gradient(from 0deg at 12px 12px, transparent 0deg, rgba(255,255,255,0.8) 45deg, white 90deg, rgba(255,255,255,0.8) 135deg, transparent 180deg, rgba(255,255,255,0.8) 225deg, white 270deg, rgba(255,255,255,0.8) 315deg, transparent 360deg);
    border-radius: 50%;
    filter: drop-shadow(0 0 6px white);
}

.blob {
    border-radius: 50%;
    opacity: 0.6;
}

.blob-1 {
    width: 100px;
    height: 80px;
    background: var(--primary-light);
    top: 0%;
    left: -10%;
    transform: rotate(-15deg);
}

.blob-2 {
    width: 140px;
    height: 70px;
    background: var(--primary-dark);
    border-radius: 60px;
    bottom: -15%;
    right: -10%;
    transform: rotate(15deg);
    opacity: 0.8;
}

.blob-3 {
    width: 40px;
    height: 40px;
    background: var(--primary);
    opacity: 0.8;
    top: 50%;
    left: 20%;
}

/* Float Animations */
.float-anim-1 { animation: float-1 5s ease-in-out infinite alternate; }
.float-anim-2 { animation: float-2 6s ease-in-out infinite alternate-reverse; }
.float-anim-3 { animation: float-1 4.5s ease-in-out infinite alternate; }
.float-anim-4 { animation: float-2 5.5s ease-in-out infinite alternate-reverse; }

/* App Showcase Section */
.app-showcase {
    padding: 2rem 5%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.showcase-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.showcase-text {
    flex: 1;
}

.showcase-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: left;
}

.showcase-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.learn-more:hover {
    gap: 0.75rem;
}

.showcase-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.showcase-image img {
    max-width: 64%;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 40px 100px rgba(27,30,33,0.1);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
    aspect-ratio: 736 / 1173;
}

.showcase-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

@media (max-width: 900px) {
    .showcase-container {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 3rem;
    }
    
    .showcase-image img {
        transform: rotate(0deg);
        max-width: 256px;
    }
}

/* Features Grid */
.features {
    padding: 2rem 5% 7rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(27,30,33,0.02);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(27,30,33,0.05);
}

.icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--primary-dark);
    transition: transform 0.3s ease;
}

.icon svg {
    width: clamp(28px, 4.5vw, 36px);
    height: clamp(28px, 4.5vw, 36px);
    stroke-width: 2.25;
}

.feature-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Bottom CTA Section */
.cta-bottom {
    padding: 6rem 5%;
    margin: 0 auto 5rem;
    max-width: calc(var(--max-width) - 5%);
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(27,30,33,0.02);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bottom::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(155, 229, 137, 0.08) 0%, transparent 70%);
}

.cta-bottom .cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-bottom h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3vw, 2.5rem);
}

.cta-bottom p {
    margin-bottom: 2.5rem;
}

.cta-bottom .waitlist-form {
    margin: 0 auto;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 5%;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Keyframes */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Media Queries */
@media (max-width: 1200px) {
    .floating-composition { transform: scale(0.85); }
}

@media (max-width: 1050px) {
    .floating-composition { transform: scale(0.75); }
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .waitlist-form {
        max-width: 500px;
        margin: 2rem auto 0;
    }

    .app-badges {
        justify-content: center;
        margin-top: 2rem;
        width: 100%;
    }

    .highlight::after {
        left: 50%;
        transform: translateX(-50%);
        width: 110%;
    }

    .hero-visual {
        min-height: auto;
    }

    .floating-composition {
        transform: scale(0.85);
        margin-top: 1rem;
    }
}

@media (max-width: 600px) {
    .header-socials {
        display: none !important;
    }
    
    .footer-socials {
        margin-bottom: 1.5rem;
    }

    .navbar {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .waitlist-form button {
        width: 100%;
    }

    .floating-composition {
        transform: scale(0.65);
    }
}

@media (max-width: 400px) {
    .floating-composition {
        transform: scale(0.5);
    }
}

/* Background Decorations (Networked lines / floating elements) */
.bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-accent {
    position: absolute;
    color: var(--primary-dark);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite alternate;
}

.floating-accent.dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
}

.floating-accent.plus {
    font-size: 1.5rem;
    font-weight: 700;
}

.dot-1 { top: 15%; left: 8%; animation-delay: 0s; }
.dot-2 { top: 55%; right: 12%; animation-delay: -2s; }
.dot-3 { bottom: 12%; left: 35%; animation-delay: -4s; }
.plus-1 { top: 25%; right: 28%; animation-delay: -1s; }
.plus-2 { bottom: 18%; right: 45%; animation-delay: -3s; }

/* Networked connection lines */
.network-line {
    position: absolute;
    stroke: var(--primary-dark);
    stroke-width: 1.5;
    stroke-dasharray: 4;
    opacity: 0.2;
    fill: none;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(15deg); }
}

/* Problem Section */
.problem-section {
    padding: 6rem 5% 4rem;
    background-color: transparent;
    text-align: center;
}

.problem-container {
    max-width: 800px;
    margin: 0 auto;
}

.problem-section h2 {
    margin-bottom: 2.5rem;
    color: var(--text-main);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.problem-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .problem-section {
        padding: 4rem 5% 3rem;
    }
    
    .problem-content p {
        font-size: 1.1rem;
    }
}

/* FAQ Section */
.faq {
    padding: 6rem 5%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.faq h2 {
    margin-bottom: 3.5rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-dark);
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 0 2rem;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(155, 229, 137, 0.1);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    padding: 0 2rem 1.75rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-footer {
    text-align: center;
    color: var(--text-muted);
}

.faq-footer a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.faq-footer a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 5% 3rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
}
