/* ===== CSS Variables - Warm Palette ===== */
:root {
    --sage-50: #f4f7f2;
    --sage-100: #e8ede4;
    --sage-200: #cbdcbb;
    --sage-300: #afc89e;
    --sage-400: #8fb47d;
    --sage-500: #6c845c;
    --sage-600: #556b48;
    --sage-700: #3d4e34;
    --sage-800: #2a3624;
    --sage-900: #1e2a18;

    --warm-50: #FEFDFB;
    --warm-100: #FAF8F4;
    --warm-200: #F3EDE4;
    --warm-300: #E8DDD0;

    --peach: #F5A67B;
    --coral: #E8836A;
    --cream: #FAF8F4;

    --protein: #00B5AB;
    --carbs: #FF9400;
    --fat: #B050DE;
    --calories-green: #6c845c;

    --bg-primary: var(--warm-50);
    --bg-secondary: var(--warm-100);
    --bg-card: #FFFFFF;

    --text-primary: #1a1f16;
    --text-secondary: #5a6352;
    --text-muted: #8a9280;

    --border-light: rgba(108, 132, 92, 0.12);
    --border-card: rgba(108, 132, 92, 0.1);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(30, 42, 24, 0.04);
    --shadow-md: 0 4px 16px rgba(30, 42, 24, 0.06);
    --shadow-lg: 0 12px 40px rgba(30, 42, 24, 0.08);
    --shadow-bento: 0 2px 12px rgba(30, 42, 24, 0.05);

    --nav-height: 72px;
    --container-max: 1140px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(254, 253, 251, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border-light);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--sage-800);
}

.nav-logo-img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 100px;
    background: var(--sage-700);
    color: white;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--sage-800);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
    padding-top: calc(var(--nav-height) + 28px);
    padding-bottom: 24px;
    background: var(--bg-primary);
}

.hero-top {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(108, 132, 92, 0.08);
    border: 1px solid rgba(108, 132, 92, 0.15);
    color: var(--sage-600);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage-500);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--sage-900);
}

.hero-title-accent {
    color: var(--sage-500);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 20px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 100px;
    padding: 12px 28px;
    transition: all 0.2s var(--ease-out);
    white-space: nowrap;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--sage-700);
    color: white;
    box-shadow: 0 4px 16px rgba(61, 78, 52, 0.2);
}

.btn-primary:hover {
    background: var(--sage-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61, 78, 52, 0.25);
}

.btn-dark {
    background: var(--sage-900);
    color: white;
    box-shadow: 0 4px 16px rgba(30, 42, 24, 0.2);
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 42, 24, 0.3);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* ===== Store Badges ===== */
.store-badge {
    display: inline-block;
    padding: 0;
    border: none;
    background: none;
    line-height: 1;
    transition: transform 0.2s var(--ease-out), opacity 0.2s ease;
}

.store-badge img {
    display: block;
}

.store-badge:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

/* ===== Hero Video + iPhone Frame ===== */
.hero-video-wrapper {
    max-width: 340px;
    margin: 0 auto;
}

/* iPhone 15 Pro-style frame */
.iphone-frame {
    position: relative;
    background: #1a1a1e;
    border-radius: 52px;
    padding: 14px;
    box-shadow:
        0 20px 80px rgba(30, 42, 24, 0.18),
        0 8px 32px rgba(30, 42, 24, 0.12);
}

/* Side button details */
.iphone-frame::before {
    content: '';
    position: absolute;
    right: -2px;
    top: 120px;
    width: 3px;
    height: 56px;
    background: #2a2a2e;
    border-radius: 0 2px 2px 0;
}

.iphone-frame::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 140px;
    width: 3px;
    height: 36px;
    background: #2a2a2e;
    border-radius: 2px 0 0 2px;
    box-shadow: 0 -50px 0 #2a2a2e;
}

/* Dynamic Island */
.iphone-notch {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

/* Video container (screen area) */
.hero-video-container {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: #000;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Home indicator bar */
.iphone-home-indicator {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    z-index: 10;
}

/* Play button overlay */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    z-index: 5;
}

.video-play-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.video-play-btn svg {
    width: 24px;
    height: 24px;
    color: var(--sage-800);
    margin-left: 2px;
}

/* ===== Social Proof ===== */
.social-proof {
    padding: 28px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}

.proof-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.proof-stars {
    display: flex;
    gap: 2px;
}

.proof-stars svg {
    width: 16px;
    height: 16px;
    color: #F5C542;
}

.proof-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--sage-700);
}

.proof-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 28px;
    background: var(--border-light);
}

/* ===== Section Shared ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(108, 132, 92, 0.08);
    border: 1px solid rgba(108, 132, 92, 0.12);
    color: var(--sage-600);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--sage-900);
    margin-bottom: 16px;
}

.title-accent {
    color: var(--sage-500);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Features Section ===== */
.features {
    padding: 72px 0;
    background: var(--bg-primary);
}

.feature-rows {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-row-reverse {
    direction: rtl;
}

.feature-row-reverse > * {
    direction: ltr;
}

.feature-phone {
    max-width: 300px;
    margin: 0 auto;
}

.feature-phone img {
    width: 100%;
    display: block;
}

.feature-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--sage-400);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.feature-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--sage-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.feature-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-highlights {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-chip {
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(108, 132, 92, 0.08);
    color: var(--sage-600);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 72px 0;
    background: var(--bg-secondary);
}

.steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    flex: 1;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-out);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sage-500);
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--sage-900);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-arrow {
    flex-shrink: 0;
    display: flex;
}

.step-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--sage-400);
}

/* ===== Community Section ===== */
.community {
    padding: 72px 0;
    background: var(--bg-primary);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.community-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.3s var(--ease-out);
    box-shadow: var(--shadow-sm);
}

.community-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.comm-emoji {
    font-size: 2rem;
    margin-bottom: 16px;
}

.community-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--sage-900);
}

.community-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 72px 0;
    background: var(--bg-secondary);
}

.testimonial-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.3s var(--ease-out);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--sage-800);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== More Features (Mini Bento) ===== */
.more-features {
    padding: 72px 0;
    background: var(--bg-primary);
}

.mini-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: all 0.3s var(--ease-out);
    box-shadow: var(--shadow-sm);
}

.mini-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mini-icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.mini-icon-img {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    border: 1px solid var(--border-light);
}

.mini-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--sage-900);
}

.mini-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ===== FAQ ===== */
.faq {
    padding: 72px 0;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: rgba(108, 132, 92, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--sage-600);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s var(--ease-out);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease-out);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 72px 0;
    background: var(--bg-primary);
}

.cta-card {
    background: var(--sage-50);
    border: 1px solid rgba(108, 132, 92, 0.12);
    border-radius: var(--radius-xl);
    padding: 56px 40px;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    color: var(--sage-900);
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    padding: 48px 0 24px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 4px 0;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--sage-600);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== Animations ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .feature-row {
        gap: 40px;
    }

    .testimonial-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        justify-self: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(254, 253, 251, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 16px 24px;
        gap: 4px;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 0;
        font-size: 1rem;
    }

    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .hero {
        padding-top: calc(var(--nav-height) + 32px);
    }

    .hero-video-wrapper {
        max-width: 290px;
    }

    .iphone-frame {
        border-radius: 44px;
        padding: 12px;
    }

    .hero-video-container {
        border-radius: 34px;
    }

    .iphone-notch {
        top: 18px;
        width: 86px;
        height: 24px;
    }

    .iphone-home-indicator {
        bottom: 18px;
        width: 100px;
    }

    .video-play-btn {
        width: 52px;
        height: 52px;
    }

    .video-play-btn svg {
        width: 20px;
        height: 20px;
    }

    .feature-row,
    .feature-row-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }

    .feature-text h3 {
        font-size: 1.5rem;
    }

    .steps-row {
        flex-direction: column;
        gap: 16px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .community-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-row {
        grid-template-columns: 1fr;
    }

    .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .mini-bento {
        grid-template-columns: 1fr 1fr;
    }

    .features,
    .how-it-works,
    .community,
    .testimonials,
    .more-features,
    .faq,
    .cta-section {
        padding: 56px 0;
    }

    .cta-card {
        padding: 56px 24px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .mini-bento {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}
