/* =====================================================
   SIMPLY HEALTHY — PREMIUM MINIMAL
   Clean. Intentional. Apple-level restraint.
   ===================================================== */
:root {
    --green: #2E7D52;
    --green-lt: #3A9966;
    --sage: #EAF2EB;
    --dark: #111111;
    --mid: #444444;
    --muted: #888888;
    --border: #E8E8E8;
    --white: #FFFFFF;
    --bg: #FAFAFA;
    --radius: 16px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --t: all 0.5s var(--ease);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 5px;
}

/* =====================
   SCROLL PROGRESS — thin line, one color
   ===================== */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    z-index: 99999;
    width: 0%;
    background: var(--green);
    transition: width 0.1s linear;
}

/* =====================
   REVEAL — one animation only, clean fade+rise
   ===================== */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 80ms;
}

.reveal-delay-2 {
    transition-delay: 160ms;
}

.reveal-delay-3 {
    transition-delay: 240ms;
}

/* =====================
   NAV — glass, minimal
   ===================== */
nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1140px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 18px;
    animation: navIn 0.6s var(--ease) both;
    transition: background 0.4s, box-shadow 0.4s;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

@keyframes navIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 38px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.75rem;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--dark);
}

.nav-actions {
    display: flex;
    gap: 0.5rem;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--muted);
    border-radius: 8px;
    transition: color 0.25s, background 0.25s;
}

.icon-btn:hover {
    color: var(--dark);
    background: #f0f0f0;
}

/* =====================
   HERO
   ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    gap: 5rem;
}

.hero-content {
    flex: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s 0.2s both;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--green);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.04em;
    margin-bottom: 1.75rem;
    line-height: 1.05;
    text-transform: uppercase;
}

.hero-line-1 {
    display: block;
    animation: fadeUp 0.6s 0.3s both;
}

.hero-line-2 {
    display: block;
    animation: fadeUp 0.6s 0.45s both;
}

.hero-line-3 {
    display: block;
    animation: fadeUp 0.6s 0.6s both;
}

.hero-accent {
    color: var(--green);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s 0.75s both;
}

.hero-ctas {
    display: flex;
    gap: 0.875rem;
    animation: fadeUp 0.6s 0.9s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-image-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeUp 0.8s 0.4s both;
}

.hero-circle-img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    animation: morph 10s ease-in-out infinite, floatY 7s ease-in-out infinite;
    transition: transform 0.4s var(--ease);
}

.hero-circle-img:hover {
    transform: scale(1.02);
}

@keyframes morph {

    0%,
    100% {
        border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
    }

    25% {
        border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%;
    }

    50% {
        border-radius: 50% 50% 60% 40% / 55% 40% 60% 45%;
    }

    75% {
        border-radius: 45% 55% 45% 55% / 40% 60% 40% 60%;
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

/* Swipe hint */
.swipe-hint {
    display: none;
    text-align: center;
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

@keyframes pulseHint {

    0%,
    100% {
        opacity: .4;
        transform: translateY(0)
    }

    50% {
        opacity: .9;
        transform: translateY(-4px)
    }
}

/* =====================
   TRUST BAR
   ===================== */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.trust-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 28px 16px;
    border-right: 1px solid var(--border);
    transition: background 0.3s;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item:hover {
    background: var(--sage);
}

.trust-item strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--green);
}

.trust-item>span {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.trust-item.counted strong {
    animation: pop 0.35s var(--ease);
}

@keyframes pop {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.2)
    }

    100% {
        transform: scale(1)
    }
}

.trust-divider {
    display: none;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--t);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--dark);
}

.btn-primary:hover {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 125, 82, 0.3);
}

.btn-primary.sm {
    font-size: 0.85rem;
    padding: 10px 22px;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--t);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--dark);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
    z-index: 10;
}

@keyframes rippleAnim {
    to {
        transform: scale(5);
        opacity: 0;
    }
}

/* =====================
   PLANS
   ===================== */
.popular-section {
    padding: 100px 5%;
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.recipe-card {
    background: var(--white);
    transition: var(--t);
    position: relative;
    border: none;
}

.recipe-card:not(:last-child) {
    border-right: 1px solid var(--border);
}

.recipe-card:hover {
    background: var(--bg);
}

.card-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.recipe-card:hover .card-img-wrap img {
    transform: scale(1.04);
}

.card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.25));
}

.card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--white);
    color: var(--green);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-body p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.88rem;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    transition: letter-spacing 0.3s;
}

.card-link:hover {
    letter-spacing: 0.03em;
}

/* =====================
   FEATURED
   ===================== */
.featured-section {
    display: flex;
    align-items: center;
    gap: 7rem;
    padding: 100px 5%;
    background: var(--sage);
}

.featured-text {
    flex: 1;
}

.featured-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.featured-text p {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--mid);
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.featured-img-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
}

.featured-circle-img {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    animation: morph 12s ease-in-out infinite 2s, floatY 8s ease-in-out infinite 1s;
}

/* =====================
   ABOUT
   ===================== */
.about-section {
    display: flex;
    gap: 6rem;
    align-items: center;
    padding: 100px 5%;
    background: var(--white);
}

.about-img-wrap {
    flex: 1;
}

.about-img {
    width: 100%;
    max-width: 400px;
    height: 540px;
    object-fit: cover;
    object-position: top;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.09);
    transition: transform 0.5s var(--ease);
}

.about-img:hover {
    transform: scale(1.015);
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 2.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.about-title-sub {
    display: block;
    font-size: 0.95rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 0.97rem;
    color: var(--mid);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.chips-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 2.5rem;
}

.chip {
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--mid);
    transition: var(--t);
    cursor: default;
}

.chip:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--sage);
}

/* =====================
   NEWER PLANS
   ===================== */
.newer-section {
    padding: 100px 5%;
    background: var(--bg);
}

.newer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.newer-card {
    display: flex;
    background: var(--white);
    transition: background 0.3s;
}

.newer-card:first-child {
    border-right: 1px solid var(--border);
}

.newer-card:hover {
    background: var(--bg);
}

.newer-card img {
    width: 160px;
    height: 190px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.5s var(--ease);
}

.newer-card:hover img {
    transform: scale(1.04);
}

.newer-body {
    padding: 1.5rem;
}

.newer-body h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newer-body p {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* =====================
   HOW IT WORKS (Scroll-driven Timeline)
   ===================== */
.how-scroll-section {
    position: relative;
    height: 400vh;
    /* creates 4x scroll depth to trigger steps */
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.how-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 0 5%;
}

.how-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.how-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--dark);
}

.how-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 5rem;
    line-height: 1.6;
    min-height: 3.2em;
    transition: opacity 0.3s;
}

.how-timeline {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-track {
    position: absolute;
    bottom: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--green);
    width: 0%;
    /* Snappy but smooth to follow scroll */
    transition: width 0.1s linear, height 0.1s linear;
}

.timeline-nodes {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.t-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.t-label {
    text-align: center;
    transition: all 0.4s;
    opacity: 0.4;
    transform: translateY(10px);
}

.t-node.active .t-label {
    opacity: 1;
    transform: translateY(0);
}

.t-step {
    display: inline-block;
    background: var(--white);
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.4s;
    border: 1px solid var(--border);
}

.t-node.active .t-step {
    background: var(--sage);
    color: var(--green);
    border-color: var(--green);
}

.t-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-transform: uppercase;
}

.t-dot {
    width: 12px;
    height: 12px;
    background: var(--border);
    border-radius: 50%;
    transition: all 0.4s;
    z-index: 2;
    position: relative;
}

.t-node.active .t-dot {
    background: var(--green);
    transform: scale(1.4);
    box-shadow: 0 0 0 6px rgba(46, 196, 182, 0.2);
}

@media (max-width: 767px) {
    .how-title {
        font-size: 1.5rem;
    }

    .how-timeline {
        padding-bottom: 0;
        padding-left: 20px;
    }

    .timeline-nodes {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }

    .timeline-track {
        left: 26px;
        top: 0;
        bottom: 0;
        height: auto;
        width: 2px;
        right: auto;
    }

    .timeline-progress {
        width: 100%;
        height: 0%;
        box-shadow: none;
    }

    .t-node {
        flex-direction: row-reverse;
        align-items: center;
        justify-content: flex-end;
        gap: 1.5rem;
        text-align: left;
        width: 100%;
    }

    .t-label {
        text-align: left;
        transform: translateX(-10px);
    }

    .t-node.active .t-label {
        transform: translateX(0);
    }

    .t-title {
        display: inline-block;
        margin-left: 10px;
    }

    .t-step {
        margin-bottom: 0;
    }
}

/* =====================
   TESTIMONIALS (Stacked Cards)
   ===================== */
.testimonial-section {
    padding: 100px 5%;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.stacked-cards-container {
    width: 100%;
    display: grid;
    place-content: center;
    padding: 40px 0 80px;
}

.stacked-cards-wrap {
    position: relative;
    width: 350px;
    height: 450px;
    margin-left: -50px;
}

@media (max-width: 767px) {
    .stacked-cards-wrap {
        transform: scale(0.85);
        margin-left: -35px;
    }
}

.stacked-card {
    position: absolute;
    left: 0;
    top: 0;
    width: 350px;
    height: 450px;
    display: grid;
    place-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    user-select: none;
    background: rgba(255, 255, 255, 0.7);
    /* Light frosted glass */
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Subtle border */
    border-radius: 1rem;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: all 0.35s var(--ease);
}

.stacked-card.front {
    z-index: 3;
    transform: translateX(0%) rotate(-6deg);
}

.stacked-card.middle {
    z-index: 2;
    transform: translateX(33%) rotate(0deg);
}

.stacked-card.back {
    z-index: 1;
    transform: translateX(66%) rotate(6deg);
}

.sc-img-wrap {
    margin: 0 auto;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    background: #f1f5f9;
    pointer-events: none;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.sc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sc-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: #475569;
    /* slate-600 */
    line-height: 1.6;
}

.sc-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green);
}

/* =====================
   FOOTER
   ===================== */
footer {
    background: var(--sage);
    color: var(--dark);
    padding: 70px 5% 30px;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border);
}

.footer-brand .logo {
    display: block;
    margin-bottom: 1rem;
}

.footer-brand .logo img {
    height: 44px;
    /* Removed white logo inversion so the natural logo shows on light background */
}

.footer-brand p {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    transition: var(--t);
    background: var(--white);
}

.social-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: white;
    transform: translateY(-3px);
}

.footer-links-group h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.footer-links-group ul {
    list-style: none;
}

.footer-links-group li {
    margin-bottom: 0.8rem;
    font-size: 0.83rem;
    color: var(--muted);
}

.footer-links-group a {
    text-decoration: none;
    color: var(--muted);
    transition: color 0.25s;
}

.footer-links-group a:hover {
    color: var(--green);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 0.75rem;
    color: var(--muted);
    opacity: 0.6;
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--t);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.whatsapp-fab:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

/* Mobile Bottom Nav */
.mobile-nav-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0 max(10px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
}

@media (max-width: 767px) {
    .mobile-nav-bar {
        display: flex;
    }
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 12px;
    border-radius: 10px;
    transition: color 0.25s, transform 0.25s;
}

.mobile-nav-item svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.mobile-nav-item.active,
.mobile-nav-item:active {
    color: var(--green);
    transform: translateY(-2px);
}

/* =====================
   RESPONSIVE — MOBILE
   ===================== */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    nav {
        top: 10px;
        width: calc(100% - 24px);
        padding: 0 16px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column;
        padding: 100px 5% 60px;
        gap: 2.5rem;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero-circle-img {
        width: 260px;
        height: 260px;
    }

    .swipe-hint {
        display: block;
        animation: pulseHint 2.5s ease-in-out infinite;
    }

    .trust-bar {
        flex-wrap: wrap;
    }

    .trust-item {
        flex-basis: 50%;
        border-bottom: 1px solid var(--border);
    }

    .trust-item:last-child,
    .trust-item:nth-child(3) {
        border-bottom: none;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .recipe-card {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
    }

    .featured-section {
        flex-direction: column;
        padding: 60px 5%;
        gap: 2.5rem;
    }

    .featured-circle-img {
        width: 250px;
        height: 250px;
    }

    .about-section {
        flex-direction: column;
        padding: 60px 5%;
        gap: 2.5rem;
    }

    .about-img {
        max-width: 100%;
        height: 380px;
    }

    .newer-grid {
        grid-template-columns: 1fr;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .newer-card {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
        flex-direction: column;
    }

    .newer-card img {
        width: 100%;
        height: 200px;
    }

    .steps-row {
        flex-direction: column;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .step {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .step:last-child {
        border-bottom: none;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .whatsapp-fab {
        bottom: 80px;
    }
}

/* =====================
   MICRO-INTERACTIONS LAYER
   ===================================================== */

/* --- Custom cursor glow (desktop only) --- */
@media (pointer: fine) {
    body { cursor: none; }
    a, button, [role="button"], .recipe-card, .stacked-card, .chip, .card-link { cursor: none; }
}

#cursor-dot {
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.2s var(--ease), height 0.2s var(--ease), opacity 0.2s, background 0.2s;
    will-change: transform;
}

#cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(46, 125, 82, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.3s, opacity 0.3s;
    will-change: transform;
}

body.cursor-hover #cursor-dot {
    width: 12px;
    height: 12px;
    background: var(--green-lt);
}

body.cursor-hover #cursor-ring {
    width: 52px;
    height: 52px;
    border-color: rgba(46, 125, 82, 0.25);
}

body.cursor-click #cursor-dot {
    width: 6px;
    height: 6px;
}

/* --- Nav link magnetic underline draw --- */
.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 1.5px;
    background: var(--green);
    transition: width 0.3s var(--ease);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* --- Hero eyebrow shimmer --- */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero-eyebrow {
    background: linear-gradient(90deg, var(--green) 40%, #7ecfa0 50%, var(--green) 60%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeUp 0.6s 0.2s both, shimmer 4s linear 1.5s infinite;
}

.hero-eyebrow::before {
    background: var(--green);
    -webkit-text-fill-color: unset;
}

/* --- Hero image magnetic drift --- */
.hero-image-wrap {
    perspective: 600px;
}

.hero-circle-img {
    transform-style: preserve-3d;
    will-change: transform;
}

/* --- Trust bar item entrance with slide-up --- */
.trust-item {
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--sage);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
    z-index: 0;
}

.trust-item:hover::before {
    transform: translateY(0);
}

.trust-item > * {
    position: relative;
    z-index: 1;
}

/* --- Card 3D tilt --- */
.recipe-card {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.4s var(--ease), background 0.3s, box-shadow 0.4s;
}

.recipe-card:hover {
    box-shadow: 0 24px 48px rgba(0,0,0,0.08);
}

/* --- Card shine sweep on hover --- */
.card-img-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0) 100%);
    z-index: 3;
    transform: skewX(-15deg);
    transition: left 0.6s var(--ease);
}

.recipe-card:hover .card-img-wrap::before {
    left: 140%;
}

/* --- Section title letter reveal --- */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 3rem;
    text-align: center;
    overflow: hidden;
}

/* --- Eyebrow green pulse dot --- */
.eyebrow-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.eyebrow-green::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulseDot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(46,125,82,0.5); transform: scale(1); }
    50% { box-shadow: 0 0 0 6px rgba(46,125,82,0); transform: scale(1.1); }
}

/* --- Chip magnetic hover --- */
.chip {
    transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s;
}

.chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46,125,82,0.15);
}

/* --- Featured section soft parallax panel --- */
.featured-section {
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,125,82,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Stacked card swipe cue --- */
.stacked-card.front::after {
    content: '← swipe';
    position: absolute;
    bottom: 18px;
    right: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.08em;
    opacity: 0;
    animation: swipeCue 3s ease-in-out 2s infinite;
}

@keyframes swipeCue {
    0%, 100% { opacity: 0; transform: translateX(0); }
    20%, 80% { opacity: 1; }
    50% { transform: translateX(-6px); }
}

/* --- Scroll to top button --- */
#scroll-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 998;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    color: var(--dark);
}

#scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

#scroll-top:hover {
    border-color: var(--green);
    color: var(--green);
    box-shadow: 0 8px 24px rgba(46,125,82,0.15);
}

@media (max-width: 767px) {
    #scroll-top { display: none; }
}

/* --- WhatsApp FAB heartbeat --- */
@keyframes fabHeartbeat {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.08); }
}

.whatsapp-fab {
    animation: fabHeartbeat 2.5s ease-in-out infinite;
}

.whatsapp-fab:hover {
    animation: none;
}

/* --- Footer link underline draw --- */
.footer-links-group a {
    position: relative;
    display: inline-block;
}

.footer-links-group a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--green);
    transition: width 0.3s var(--ease);
}

.footer-links-group a:hover::after {
    width: 100%;
}

/* --- Section ambient glow on scroll reveal --- */
.about-section,
.popular-section,
.testimonial-section {
    position: relative;
}

/* --- Timeline dot ripple on active --- */
.t-node.active .t-dot::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1.5px solid rgba(46,125,82,0.35);
    animation: dotRipple 1.5s ease-out infinite;
}

.t-dot {
    position: relative;
}

@keyframes dotRipple {
    0% { transform: scale(0.7); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* --- Newer card image reveal clip --- */
.newer-card img {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s var(--ease), transform 0.5s var(--ease);
}

.newer-card.reveal-img img {
    clip-path: inset(0 0% 0 0);
}

/* --- Plan price tag bounce --- */
.card-price {
    display: inline-block;
    transition: transform 0.3s var(--ease), color 0.3s;
}

.recipe-card:hover .card-price {
    transform: scale(1.06);
    color: var(--green);
}

/* --- Mobile nav active scale --- */
.mobile-nav-item.active svg {
    stroke: var(--green);
}

/* --- Section divider organic wave --- */
.how-scroll-section {
    position: relative;
}

/* --- Smooth color transition for progress bar --- */
#progress-bar {
    background: linear-gradient(90deg, var(--green), #5ecfa0);
    box-shadow: 0 0 8px rgba(46,125,82,0.3);
}