@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --green-deep: #1a472a;
    --green-mid: #2d6a4f;
    --green-soft: #52b788;
    --green-light: #95d5b2;
    --green-pale: #d8f3dc;
    --cream: #fafaf7;
    --warm-white: #ffffff;
    --text-dark: #1c1c1e;
    --text-body: #3a3a3c;
    --text-muted: #6e6e73;
    --accent-gold: #c9a84c;
    --accent-terracotta: #d4856a;
    --shadow-sm: 0 2px 8px rgba(26, 71, 42, 0.08);
    --shadow-md: 0 8px 30px rgba(26, 71, 42, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 71, 42, 0.18);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--cream);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--green-deep);
    line-height: 1.25;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

p {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 680px;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-soft);
    margin-bottom: 14px;
}

.section-title {
    margin-bottom: 16px;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 540px;
}

.text-center {
    text-align: center;
}

.text-center p,
.text-center .section-sub {
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-mid), var(--green-soft));
    color: #fff;
    box-shadow: 0 4px 18px rgba(82, 183, 136, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(82, 183, 136, 0.45);
    background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
}

.btn-outline {
    background: transparent;
    color: var(--green-mid);
    border-color: var(--green-mid);
}

.btn-outline:hover {
    background: var(--green-mid);
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--green-deep);
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background: var(--green-pale);
    transform: translateY(-2px);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-soft));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-deep);
}

.logo-text span {
    color: var(--green-soft);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-body);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--green-soft);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-links a:hover {
    color: var(--green-mid);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--green-deep);
    border-radius: 2px;
    transition: all 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--warm-white) 0%, var(--green-pale) 60%, #b7e4c7 100%);
    padding-top: 80px;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.35;
    animation: floatShape 8s ease-in-out infinite alternate;
}

.hero-bg-shape.s1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--green-light), transparent);
    top: -100px;
    right: -80px;
    animation-duration: 9s;
}

.hero-bg-shape.s2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--accent-gold), transparent);
    bottom: 60px;
    left: -80px;
    opacity: 0.15;
    animation-duration: 11s;
}

@keyframes floatShape {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(20px, 20px) scale(1.06); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(82, 183, 136, 0.15);
    border: 1px solid rgba(82, 183, 136, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--green-mid);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--green-soft);
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
    margin-bottom: 22px;
}

.hero-title em {
    font-style: italic;
    color: var(--green-soft);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars .av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: linear-gradient(135deg, var(--green-mid), var(--accent-gold));
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
}

.trust-avatars .av:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.trust-text strong {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-visual {
    position: relative;
}

.hero-card-main {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 10px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;   /* needed for overlay */
}

/* Hero image */
.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
    transition: transform 0.6s ease;
}

.hero-card-main:hover .hero-img {
    transform: scale(1.03);
}

/* Overlay badge at bottom of image */
.hero-img-overlay {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hio-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(82, 183, 136, 0.35);
    border-radius: 50px;
    padding: 9px 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green-deep);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(26, 71, 42, 0.12);
}

.hio-badge i {
    color: var(--green-soft);
    font-size: 1rem;
}



/* ── Hero Leaf Visual ── */
.hero-leaf-visual {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #d8f3dc, #b7e4c7);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Glowing rings */
.leaf-glow-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(82, 183, 136, 0.25);
    animation: ringPulse 3s ease-in-out infinite;
}
.leaf-glow-ring.r1 { width: 320px; height: 320px; animation-delay: 0s; }
.leaf-glow-ring.r2 { width: 220px; height: 220px; animation-delay: 0.6s; background: rgba(82,183,136,0.06); }
.leaf-glow-ring.r3 { width: 130px; height: 130px; animation-delay: 1.2s; background: rgba(82,183,136,0.10); }

@keyframes ringPulse {
    0%, 100% { transform: scale(1);    opacity: 0.6; }
    50%       { transform: scale(1.05); opacity: 1;   }
}

/* The leaf icon */
.hero-leaf-icon {
    position: relative;
    z-index: 2;
    font-size: 7rem;
    color: var(--green-deep);
    filter: drop-shadow(0 8px 24px rgba(26,71,42,0.25));
    animation: leafFloat 4s ease-in-out infinite alternate;
    margin-bottom: 20px;
}

@keyframes leafFloat {
    from { transform: translateY(0) rotate(-5deg); }
    to   { transform: translateY(-12px) rotate(5deg); }
}

/* Mini-badges */
.leaf-badge-row {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.leaf-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(82,183,136,0.3);
    border-radius: 50px;
    padding: 6px 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--green-deep);
}

.leaf-badge i { color: var(--green-soft); font-size: 0.85rem; }

/* Caption */
.leaf-caption {
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-deep);
    letter-spacing: 0.08em;
    opacity: 0.75;
}

/* Floating decorative dots */
.ldot {
    position: absolute;
    border-radius: 50%;
    animation: floatDot 5s ease-in-out infinite alternate;
}
.ldot.d1 { width: 18px; height: 18px; background: rgba(201,168,76,0.35); top: 14%; left: 12%; animation-duration: 4.5s; }
.ldot.d2 { width: 12px; height: 12px; background: rgba(82,183,136,0.45); top: 18%; right: 14%; animation-duration: 5.5s; animation-delay: 0.5s; }
.ldot.d3 { width: 10px; height: 10px; background: rgba(201,168,76,0.25); bottom: 18%; left: 15%; animation-duration: 6s; animation-delay: 1s; }
.ldot.d4 { width: 14px; height: 14px; background: rgba(26,71,42,0.15); bottom: 14%; right: 12%; animation-duration: 5s; animation-delay: 1.5s; }

@keyframes floatDot {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(6px, -10px) scale(1.15); }
}

.hero-stat-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-stat-card.card-a {
    top: 30px;
    left: -40px;
    animation: floatCard 4s ease-in-out infinite alternate;
}

.hero-stat-card.card-b {
    bottom: 40px;
    right: -30px;
    animation: floatCard 5s ease-in-out infinite alternate-reverse;
}

@keyframes floatCard {
    from { transform: translateY(0); }
    to   { transform: translateY(-10px); }
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.stat-icon.green { background: var(--green-pale); }
.stat-icon.gold  { background: #fef3c7; }

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.features-strip {
    background: var(--green-deep);
    padding: 22px 0;
    overflow: hidden;
}

.strip-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green-light);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.strip-dot {
    width: 5px;
    height: 5px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.how-it-works {
    padding: 110px 0;
    background: var(--warm-white);
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.hiw-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 40px 32px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(82, 183, 136, 0.1);
}

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

.hiw-num {
    position: absolute;
    top: 28px;
    right: 28px;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--green-pale);
    line-height: 1;
}

.hiw-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-pale), #b7e4c7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.hiw-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.hiw-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 100%;
    line-height: 1.7;
}

.services {
    padding: 110px 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 64px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 40px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--green-soft), var(--green-mid));
    border-radius: 0 0 4px 4px;
    transition: height 0.4s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(82, 183, 136, 0.15);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-icon.c1 { background: #dcfce7; }
.service-icon.c2 { background: #fef3c7; }
.service-icon.c3 { background: #ede9fe; }
.service-icon.c4 { background: #ffe4e6; }

.service-body h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.service-body p {
    font-size: 0.93rem;
    color: var(--text-muted);
    max-width: 100%;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--green-mid);
    transition: gap var(--transition);
}

.service-link:hover {
    gap: 10px;
}

.testimonials {
    padding: 110px 0;
    background: var(--green-deep);
    overflow: hidden;
}

.testimonials .section-label {
    color: var(--green-light);
}

.testimonials .section-title {
    color: #fff;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.testi-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: background var(--transition), transform var(--transition);
}

.testi-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.testi-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 100%;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.author-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-soft), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.plans {
    padding: 110px 0;
    background: var(--warm-white);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 64px;
    align-items: start;
}

.plan-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 44px 36px;
    border: 2px solid rgba(82, 183, 136, 0.12);
    transition: all var(--transition);
    position: relative;
}

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

.plan-card.featured {
    background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-mid) 100%);
    border-color: var(--green-mid);
    color: #fff;
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--green-deep);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap;
}

.plan-name {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-soft);
    margin-bottom: 10px;
}

.plan-card.featured .plan-name {
    color: var(--green-light);
}

.plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1;
    margin-bottom: 4px;
}

.plan-card.featured .plan-price,
.plan-card.featured h3 {
    color: #fff;
}

.plan-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.plan-card.featured .plan-period {
    color: rgba(255,255,255,0.6);
}

.plan-features {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--text-body);
}

.plan-card.featured .plan-features li {
    color: rgba(255,255,255,0.88);
}

.plan-features li .check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-mid);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.plan-card.featured .plan-features li .check {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-mid), var(--green-soft));
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    top: -200px;
    right: -100px;
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    bottom: -150px;
    left: 50px;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.cta-inner h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.cta-inner p {
    color: rgba(255,255,255,0.82);
    margin-bottom: 36px;
    font-size: 1.05rem;
    max-width: 100%;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.cta-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    border: none;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    outline: none;
    background: rgba(255,255,255,0.95);
    color: var(--text-dark);
}

.cta-form input::placeholder {
    color: var(--text-muted);
}

footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 14px;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}

.social-btn:hover {
    background: var(--green-soft);
    color: #fff;
}

.footer-col h4 {
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--green-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 12px;
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, #faf7f2 0%, #d8f3dc 100%);
    z-index: 998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 80px 32px 48px;
    overflow-y: auto;

    /* Slide-in animation */
    animation: mobileNavIn 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes mobileNavIn {
    from { opacity: 0; transform: translateX(100%); }
    to   { opacity: 1; transform: translateX(0); }
}

#menu-toggle:checked ~ .mobile-nav {
    display: flex;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(26, 71, 42, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--green-deep);
    transition: background 0.25s, transform 0.25s;
    line-height: 1;
    text-align: center;
}

.mobile-nav-close:hover {
    background: rgba(26, 71, 42, 0.15);
    transform: rotate(90deg);
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    text-decoration: none;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    margin-bottom: 36px;
}

.mn-link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    padding: 14px 20px;
    border-radius: 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-deep);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    letter-spacing: 0.01em;
}

.mn-link:hover {
    background: rgba(26, 71, 42, 0.07);
    color: var(--green-mid);
    transform: translateX(4px);
}

.mobile-nav-links::after {
    content: '';
    display: block;
    width: 100%;
    max-width: 320px;
    height: 1px;
    background: rgba(26, 71, 42, 0.12);
    margin-top: 10px;
}

.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
}

.mn-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 50px;
}

.mn-link:nth-child(1) { animation: fadeSlide 0.4s 0.05s both; }
.mn-link:nth-child(2) { animation: fadeSlide 0.4s 0.10s both; }
.mn-link:nth-child(3) { animation: fadeSlide 0.4s 0.15s both; }
.mn-link:nth-child(4) { animation: fadeSlide 0.4s 0.20s both; }
.mn-link:nth-child(5) { animation: fadeSlide 0.4s 0.25s both; }
.mn-link:nth-child(6) { animation: fadeSlide 0.4s 0.30s both; }
.mobile-nav-cta       { animation: fadeSlide 0.4s 0.35s both; }

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .mobile-nav { padding: 72px 20px 40px; }
    .mobile-nav-logo { margin-bottom: 28px; }
    .mn-link { font-size: 1rem; padding: 12px 16px; }
    .mobile-nav-cta { gap: 10px; }
    .mn-btn { padding: 13px 20px; font-size: 0.95rem; }
}

@media (max-width: 360px) {
    .mobile-nav { padding: 64px 16px 32px; }
    .mn-link { font-size: 0.95rem; padding: 11px 14px; gap: 10px; }
}


@media (max-width: 960px) {

    .nav-links { display: none; }
    .nav-cta .btn-outline { display: none; }
    .hamburger { display: flex; }

    /* Stack hero: show image below text on tablet */
    .hero { padding-top: 72px; }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 0 50px;
        gap: 40px;
    }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }

    /* Show image on tablet in stacked layout */
    .hero-visual { display: block; }
    .hero-img { height: 300px; }
    .hero-stat-card { display: none; }  /* hide floating cards on tablet */

    .how-it-works,
    .services,
    .testimonials,
    .plans { padding: 80px 0; }
    .hiw-grid { grid-template-columns: 1fr; gap: 20px; }
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .testi-grid { grid-template-columns: 1fr; gap: 20px; }
    .plans-grid { grid-template-columns: 1fr; gap: 20px; max-width: 480px; margin-left: auto; margin-right: auto; }
    .hiw-grid,
    .testi-grid { margin-top: 48px; }

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

/* Hide image entirely on small phones */
@media (max-width: 640px) {
    .hero-visual { display: none; }
}

@media (max-width: 768px) {

    .container { padding: 0 20px; }

    h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
    h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }

    .hero-badge { font-size: 0.75rem; }
    .hero-desc { font-size: 1rem; }
    .hero-actions { flex-wrap: wrap; gap: 12px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; gap: 10px; text-align: center; }

    .hiw-card { padding: 32px 24px; }

    .service-card { flex-direction: column; gap: 16px; padding: 28px; }

    .plans-grid { max-width: 100%; }
    .plan-card { padding: 36px 28px; }

    .cta-banner { padding: 70px 0; }
    .cta-form { flex-direction: column; align-items: stretch; }
    .cta-form input,
    .cta-form .btn { width: 100%; border-radius: 12px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 40px; }
    footer { padding: 60px 0 32px; }
}

@media (max-width: 600px) {

    .container { padding: 0 16px; }

    .how-it-works,
    .services,
    .testimonials,
    .plans { padding: 64px 0; }
    .hiw-grid,
    .services-grid,
    .testi-grid,
    .plans-grid { margin-top: 36px; }

    .btn { padding: 12px 24px; font-size: 0.9rem; }

    .hero { padding-top: 68px; }
    .hero-grid { padding: 48px 0 40px; }

    .section-title { margin-bottom: 12px; }
    .text-center .section-sub { font-size: 0.95rem; }

    .testi-card { padding: 28px 24px; }

    .plan-card { padding: 32px 24px; }
    .plan-price { font-size: 2.4rem; }

    .cta-banner { padding: 56px 0; }
    .cta-inner h2 { font-size: 1.8rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; justify-content: center; text-align: center; gap: 8px; }
    .footer-brand p { max-width: 100%; }
}

@media (max-width: 480px) {

    h1 { font-size: clamp(1.75rem, 8vw, 2.2rem); }
    h2 { font-size: clamp(1.45rem, 6vw, 1.85rem); }
    h3 { font-size: 1.15rem; }

    .logo-text { font-size: 1rem; }
    .nav-cta { gap: 8px; }
    .nav-cta .btn { padding: 10px 18px; font-size: 0.85rem; }
    .nav-inner { height: 62px; }

    .hero-badge { font-size: 0.7rem; padding: 5px 12px; }

    .hiw-card { padding: 28px 20px; }
    .hiw-num { font-size: 2.8rem; }
    .hiw-icon { width: 52px; height: 52px; font-size: 1.4rem; }

    .service-card { padding: 24px 20px; }
    .service-icon { width: 48px; height: 48px; font-size: 1.3rem; }

    .testi-card { padding: 24px 20px; }
    .testi-text { font-size: 0.93rem; }

    .plan-card { padding: 28px 20px; }

    .footer-socials { gap: 10px; }
    .footer-col h4 { font-size: 0.85rem; }
    .footer-col ul a { font-size: 0.85rem; }

    .strip-item { font-size: 0.8rem; }

    .hero-stat-card { display: none; }
}

@media (max-width: 360px) {
    .container { padding: 0 12px; }
    h1 { font-size: 1.65rem; }
    h2 { font-size: 1.35rem; }

    .btn { padding: 11px 18px; font-size: 0.85rem; }

    .nav-cta .btn-primary { padding: 9px 14px; font-size: 0.8rem; }
    .logo-text { font-size: 0.92rem; }
    .logo-icon { width: 30px; height: 30px; font-size: 0.9rem; }

    .hiw-card,
    .service-card,
    .testi-card,
    .plan-card { padding: 22px 16px; }

    .plan-price { font-size: 2rem; }
    .cta-inner h2 { font-size: 1.55rem; }
}

/* ==========================================================================
   9. New Interactive CSS Components
   ========================================================================== */

/* Native Accordion FAQ (Details/Summary) Styling */
.faq-details {
    background-color: var(--warm-white);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    border: 1px solid rgba(82, 183, 136, 0.15);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-details[open] {
    border-color: var(--green-soft);
    box-shadow: var(--shadow-sm);
}

.faq-summary {
    padding: 18px 24px;
    font-weight: 700;
    color: var(--green-deep);
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
    outline: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--green-soft);
    transition: transform var(--transition);
}

.faq-details[open] .faq-summary::after {
    content: '−';
}

.faq-content {
    padding: 0 24px 20px 24px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* CSS-Only Dashboard Simulator Component */
.dashboard-preview-tabs {
    display: flex;
    flex-direction: column;
    background-color: var(--warm-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid rgba(82, 183, 136, 0.15);
    margin-top: 48px;
}

.tab-radio {
    display: none;
}

.tabs-header {
    display: flex;
    background-color: var(--green-deep);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow-x: auto;
}

.tab-label {
    flex: 1;
    padding: 16px 20px;
    text-align: center;
    font-weight: 700;
    color: var(--green-light);
    cursor: pointer;
    border-bottom: 3.5px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    font-size: 0.95rem;
}

.tab-label:hover {
    color: #fff;
    background-color: rgba(255,255,255,0.03);
}

#tab-nutrition:checked ~ .tabs-header label[for="tab-nutrition"],
#tab-yoga:checked ~ .tabs-header label[for="tab-yoga"],
#tab-fitness:checked ~ .tabs-header label[for="tab-fitness"] {
    color: #fff;
    background-color: rgba(255,255,255,0.06);
    border-bottom-color: var(--accent-gold);
}

.tabs-content {
    padding: 36px;
    background-color: var(--warm-white);
}

.tab-pane {
    display: none;
    animation: fadeUpSim 0.4s ease;
}

@keyframes fadeUpSim {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

#tab-nutrition:checked ~ .tabs-content .pane-nutrition,
#tab-yoga:checked ~ .tabs-content .pane-yoga,
#tab-fitness:checked ~ .tabs-content .pane-fitness {
    display: block;
}

/* Dashboard Mockup Grid Layouts */
.dash-mock-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}

.dash-mock-card {
    background-color: var(--cream);
    border-radius: var(--radius-sm);
    padding: 24px;
    border: 1px solid rgba(82, 183, 136, 0.1);
    box-shadow: var(--shadow-sm);
}

.dash-mock-card h4 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.dash-mock-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dash-mock-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--warm-white);
    border-radius: 8px;
    border: 1px solid rgba(82,183,136,0.08);
    font-size: 0.9rem;
    font-weight: 600;
}

.dash-mock-item span.lbl {
    color: var(--text-muted);
}

.dash-mock-item span.val {
    color: var(--green-deep);
}

/* CSS Step Progress Indicator */
.step-chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 160px;
    border-bottom: 2px solid var(--cream);
    padding-top: 12px;
    position: relative;
}

.step-bar {
    flex: 1;
    margin: 0 6px;
    background: linear-gradient(to top, var(--green-mid), var(--green-soft));
    border-radius: 6px 6px 0 0;
    position: relative;
}

.step-bar::after {
    content: attr(data-label);
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}

.step-bar-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 6px;
}

@media (max-width: 900px) {
    .dash-mock-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .tabs-content {
        padding: 24px 16px;
    }
}


