/* =========================
   VitaKlouby — Premium Wellness
   Palette: #839958 / #F7F4D5 / #D3968C
   ========================= */

:root {
    --olive: #839958;
    --olive-dark: #6a7d43;
    --olive-light: #a9bb82;
    --cream: #F7F4D5;
    --cream-soft: #fbf9e8;
    --coral: #D3968C;
    --coral-dark: #b87a70;
    --ink: #2e2a20;
    --ink-soft: #5c5648;
    --muted: #8a8272;
    --white: #ffffff;
    --bg: #fdfcf3;
    --shadow-sm: 0 4px 14px rgba(60, 55, 30, .06);
    --shadow-md: 0 10px 30px rgba(60, 55, 30, .10);
    --shadow-lg: 0 20px 60px rgba(60, 55, 30, .14);
    --radius: 22px;
    --radius-sm: 14px;
    --radius-lg: 34px;
    --container: 1240px;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
    font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1.12;
    color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 400; margin-bottom: .6em; }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); font-weight: 500; }

p { color: var(--ink-soft); }

a { color: var(--olive-dark); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--coral-dark); }

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

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

/* ===== AD DISCLOSURE BAR ===== */
.ad-bar {
    background: #1a1a1a;
    color: #f0f0f0;
    text-align: center;
    padding: 6px 16px;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    z-index: 100;
}
.ad-bar span { opacity: .85; }

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    background: rgba(253, 252, 243, .92);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid rgba(131, 153, 88, .12);
    z-index: 90;
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
}
.logo__mark {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    flex-shrink: 0;
    display: block;
    object-fit: cover;
}
.nav {
    display: flex;
    gap: 32px;
}
.nav a {
    color: var(--ink-soft);
    font-size: 15px;
    font-weight: 500;
    position: relative;
}
.nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: var(--olive);
    transition: width .3s var(--ease);
}
.nav a:hover { color: var(--olive-dark); }
.nav a:hover::after { width: 100%; }

.burger {
    display: none;
    background: none; border: none;
    width: 40px; height: 40px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 10px;
}
.burger span {
    display: block;
    height: 2px; width: 100%;
    background: var(--ink);
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .01em;
    cursor: pointer;
    border: none;
    transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
    text-align: center;
    line-height: 1;
    font-family: inherit;
}
.btn--primary {
    background: var(--olive);
    color: #fff;
    box-shadow: 0 8px 22px rgba(131, 153, 88, .28);
}
.btn--primary:hover {
    background: var(--olive-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(131, 153, 88, .38);
}
.btn--ghost {
    background: transparent;
    color: var(--olive-dark);
    border: 1.5px solid var(--olive);
}
.btn--ghost:hover {
    background: var(--olive);
    color: #fff;
    transform: translateY(-2px);
}
.btn--coral {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 8px 22px rgba(211, 150, 140, .35);
}
.btn--coral:hover {
    background: var(--coral-dark);
    color: #fff;
    transform: translateY(-2px);
}
.btn--lg { padding: 20px 40px; font-size: 17px; }

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 60px 0 90px;
    overflow: hidden;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(131, 153, 88, .10);
    color: var(--olive-dark);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero__eyebrow::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--olive);
    border-radius: 50%;
}
.hero h1 {
    margin-bottom: 22px;
}
.hero h1 em {
    font-style: italic;
    color: var(--olive-dark);
    font-weight: 400;
}
.hero__lead {
    font-size: 18px;
    max-width: 540px;
    margin-bottom: 34px;
    color: var(--ink-soft);
}
.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding-top: 36px;
    border-top: 1px solid rgba(131, 153, 88, .18);
}
.trust__item strong {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    font-weight: 500;
    color: var(--olive-dark);
    display: block;
    margin-bottom: 4px;
}
.trust__item span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
    display: block;
}

/* Carousel */
.hero__carousel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
    background: var(--cream);
}
.slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s var(--ease), transform 6s ease-out;
    transform: scale(1.05);
}
.slide.active {
    opacity: 1;
    transform: scale(1);
}
.slide img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.slide::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(46, 42, 32, .35));
}
.slide__caption {
    position: absolute;
    bottom: 26px; left: 26px; right: 26px;
    color: #fff;
    font-family: 'Fraunces', serif;
    font-size: 20px;
    z-index: 2;
}
.dots {
    position: absolute;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px;
    z-index: 3;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    border: none;
    cursor: pointer;
    transition: all .3s var(--ease);
}
.dot.active { background: #fff; width: 26px; border-radius: 4px; }

.hero__decor {
    position: absolute;
    z-index: -1;
    filter: blur(60px);
    opacity: .55;
    border-radius: 50%;
}
.hero__decor--1 {
    width: 380px; height: 380px;
    background: var(--coral);
    top: -100px; right: -80px;
}
.hero__decor--2 {
    width: 460px; height: 460px;
    background: var(--olive-light);
    bottom: -160px; left: -140px;
    opacity: .35;
}

/* ===== SECTION BASE ===== */
.section {
    padding: 110px 0;
    position: relative;
}
.section--cream { background: var(--cream-soft); }
.section--olive-tint { background: linear-gradient(180deg, var(--cream-soft), #f2eecf); }

.section__head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 70px;
}
.section__head .eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(131, 153, 88, .12);
    color: var(--olive-dark);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.section__head p {
    font-size: 17px;
    margin-top: 12px;
}

/* ===== CONCEPT (screen 2) ===== */
.concept__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.concept__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-md);
    position: relative;
}
.concept__image img { width: 100%; height: 100%; object-fit: cover; }
.concept__image::before {
    content: "";
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at top left, rgba(211,150,140,.4), transparent 60%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(50px);
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 28px;
}
.feature {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.feature__icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(131,153,88,.12);
    color: var(--olive-dark);
    display: grid; place-items: center;
}
.feature h4 { font-family: 'Inter', sans-serif; font-size: 15px; margin-bottom: 4px; font-weight: 600; }
.feature p { font-size: 13.5px; line-height: 1.5; }

/* Infographic */
.infographic {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    margin-top: 60px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}
.info-stat {
    text-align: center;
    flex: 1;
    min-width: 140px;
}
.info-stat strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    color: var(--olive-dark);
    font-weight: 500;
    margin-bottom: 6px;
}
.info-stat span { font-size: 13px; color: var(--muted); }

/* ===== AUDIENCE (screen 3) ===== */
.audience__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.aud-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all .35s var(--ease);
    position: relative;
    overflow: hidden;
}
.aud-card::before {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: rgba(131,153,88,.08);
    transition: transform .5s var(--ease);
}
.aud-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.aud-card:hover::before { transform: scale(2.2); background: rgba(211,150,140,.12); }
.aud-card__icon {
    width: 62px; height: 62px;
    margin: 0 auto 18px;
    background: var(--cream);
    border-radius: 18px;
    display: grid; place-items: center;
    color: var(--olive-dark);
    position: relative; z-index: 2;
    transition: transform .35s var(--ease);
}
.aud-card:hover .aud-card__icon { transform: scale(1.1) rotate(-6deg); }
.aud-card h3 { font-size: 17px; margin-bottom: 8px; position: relative; z-index: 2; }
.aud-card p { font-size: 14px; position: relative; z-index: 2; }

/* ===== STEPS (screen 4) ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
}
.steps::before {
    content: "";
    position: absolute;
    top: 44px; left: 8%; right: 8%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--olive-light) 0 6px, transparent 6px 14px);
    z-index: 0;
}
.step {
    text-align: center;
    padding: 0 6px;
    position: relative;
    z-index: 2;
}
.step__num {
    width: 90px; height: 90px;
    margin: 0 auto 22px;
    background: var(--white);
    border: 2px solid var(--olive);
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: 'Fraunces', serif;
    font-size: 30px;
    color: var(--olive-dark);
    box-shadow: 0 6px 20px rgba(131,153,88,.15);
    transition: all .35s var(--ease);
}
.step:hover .step__num {
    background: var(--olive);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(131,153,88,.35);
}
.step h4 { font-size: 16px; margin-bottom: 6px; font-family: 'Fraunces', serif; }
.step p { font-size: 13.5px; line-height: 1.5; }

/* ===== BENEFITS (screen 5) ===== */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.benefit {
    background: var(--white);
    padding: 30px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all .35s var(--ease);
    border: 1px solid transparent;
}
.benefit:hover {
    transform: translateY(-6px);
    border-color: rgba(131,153,88,.25);
    box-shadow: var(--shadow-md);
}
.benefit__icon {
    width: 54px; height: 54px;
    background: linear-gradient(135deg, var(--olive), var(--olive-light));
    color: #fff;
    border-radius: 16px;
    display: grid; place-items: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 18px rgba(131,153,88,.28);
}
.benefit h3 { font-size: 17px; margin-bottom: 8px; font-family: 'Fraunces', serif; }
.benefit p { font-size: 14px; line-height: 1.55; }

/* ===== MENU (screen 6) ===== */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.tab {
    padding: 12px 26px;
    background: var(--white);
    border: 1px solid rgba(131,153,88,.2);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    font-family: inherit;
    transition: all .3s var(--ease);
}
.tab:hover { color: var(--olive-dark); border-color: var(--olive); }
.tab.active {
    background: var(--olive);
    color: #fff;
    border-color: var(--olive);
    box-shadow: 0 6px 18px rgba(131,153,88,.28);
}

.menu-pane { display: none; animation: fadeUp .5s var(--ease); }
.menu-pane.active { display: grid; }
.menu-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.dish {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .35s var(--ease);
    display: flex;
    flex-direction: column;
}
.dish:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dish__img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream);
}
.dish__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.dish:hover .dish__img img { transform: scale(1.08); }
.dish__body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.dish h3 { font-size: 18px; margin-bottom: 6px; font-family: 'Fraunces', serif; }
.dish p { font-size: 14px; margin-bottom: 16px; flex: 1; }
.dish__meta {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px dashed rgba(131,153,88,.25);
    font-size: 12px;
    color: var(--muted);
}
.dish__meta strong { color: var(--olive-dark); font-weight: 600; }

.menu-cta { text-align: center; margin-top: 40px; }

/* ===== PLAN CONTENT (screen 7) ===== */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.plan-card {
    background: var(--cream-soft);
    padding: 26px 22px;
    border-radius: var(--radius);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all .35s var(--ease);
    border: 1px solid transparent;
}
.plan-card:hover {
    background: var(--white);
    border-color: rgba(131,153,88,.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.plan-card__icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--white);
    color: var(--coral-dark);
    display: grid; place-items: center;
    box-shadow: var(--shadow-sm);
}
.plan-card h4 { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.plan-card p { font-size: 13.5px; line-height: 1.5; }

/* ===== PRICING (screen 8) ===== */
.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1080px;
    margin: 0 auto;
}
.price-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: all .35s var(--ease);
    border: 2px solid transparent;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card--featured {
    background: linear-gradient(180deg, var(--olive), var(--olive-dark));
    color: #fff;
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(131,153,88,.35);
}
.price-card--featured:hover { transform: scale(1.03) translateY(-8px); }
.price-card--featured h3,
.price-card--featured p,
.price-card--featured li { color: #fff; }
.price-card--featured .price__amount { color: #fff; }
.price-card--featured .price__amount small { color: rgba(255,255,255,.75); }

.price-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(211,150,140,.45);
}

.price-card h3 { font-family: 'Fraunces', serif; font-size: 26px; margin-bottom: 10px; }
.price-card > p { font-size: 14px; margin-bottom: 22px; opacity: .9; }
.price__amount {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    color: var(--olive-dark);
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1;
}
.price__amount small {
    font-size: 15px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    display: inline-block;
    margin-left: 4px;
}
.price__perday {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 26px;
}
.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}
.price-card li {
    padding: 10px 0;
    font-size: 14.5px;
    color: var(--ink-soft);
    border-bottom: 1px solid rgba(131,153,88,.12);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.price-card--featured li { border-color: rgba(255,255,255,.15); }
.price-card li::before {
    content: "✓";
    color: var(--olive-dark);
    font-weight: 700;
    flex-shrink: 0;
}
.price-card--featured li::before { color: var(--cream); }

/* ===== TESTIMONIALS (screen 9) ===== */
.testimonials {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}
.testi-track {
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.testi-rail {
    display: flex;
    transition: transform .6s var(--ease);
}
.testi {
    min-width: 100%;
    padding: 44px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    border-radius: var(--radius-lg);
}
.testi__avatar {
    width: 110px; height: 110px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--cream);
    border: 4px solid var(--cream);
    box-shadow: var(--shadow-sm);
}
.testi__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi__body p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 18px;
    font-style: italic;
}
.testi__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.testi__meta strong { font-size: 15px; color: var(--ink); }
.testi__meta span { font-size: 13px; color: var(--muted); }
.stars {
    color: #f0a952;
    font-size: 14px;
    letter-spacing: 2px;
}
.testi__result {
    margin-top: 12px;
    display: inline-block;
    padding: 5px 12px;
    background: rgba(131,153,88,.12);
    color: var(--olive-dark);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.testi-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}
.testi-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--olive);
    background: transparent;
    color: var(--olive-dark);
    cursor: pointer;
    transition: all .3s var(--ease);
    display: grid; place-items: center;
}
.testi-btn:hover { background: var(--olive); color: #fff; }

/* ===== FAQ (screen 10) ===== */
.faq {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all .3s var(--ease);
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-q {
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    transition: color .25s var(--ease);
}
.faq-q:hover { color: var(--olive-dark); }
.faq-q__icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(131,153,88,.12);
    color: var(--olive-dark);
    display: grid; place-items: center;
    font-size: 18px;
    font-weight: 400;
    transition: transform .3s var(--ease);
}
.faq-item.open .faq-q__icon {
    background: var(--olive);
    color: #fff;
    transform: rotate(45deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}
.faq-a__inner {
    padding: 0 26px 22px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
}

/* ===== FORM (screen 11) ===== */
.form-section {
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.form-section::before,
.form-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.form-section::before {
    width: 400px; height: 400px;
    background: rgba(211,150,140,.35);
    top: -100px; left: -100px;
}
.form-section::after {
    width: 500px; height: 500px;
    background: rgba(247,244,213,.25);
    bottom: -200px; right: -150px;
}
.form-section .section__head { color: #fff; }
.form-section .section__head h2,
.form-section .section__head p { color: #fff; }
.form-section .section__head .eyebrow {
    background: rgba(255,255,255,.15);
    color: #fff;
}

.form-wrap {
    max-width: 620px;
    margin: 0 auto;
    background: var(--white);
    padding: 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}
.form-field {
    margin-bottom: 20px;
}
.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: .02em;
}
.form-field label span { color: var(--coral-dark); }
.form-field input {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid rgba(131,153,88,.2);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: var(--cream-soft);
    transition: all .25s var(--ease);
}
.form-field input:focus {
    outline: none;
    border-color: var(--olive);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(131,153,88,.12);
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 0;
}
.checkbox-field input {
    width: 18px; height: 18px;
    margin-top: 3px;
    accent-color: var(--olive);
    flex-shrink: 0;
    cursor: pointer;
}
.checkbox-field label {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0;
}
.checkbox-field a { color: var(--olive-dark); text-decoration: underline; }

.form-wrap .btn { width: 100%; }

/* ===== FINAL CTA (screen 12) ===== */
.final-cta {
    position: relative;
    padding: 140px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}
.final-cta__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.final-cta__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.final-cta::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(46,42,32,.55), rgba(46,42,32,.75));
    z-index: -1;
}
.final-cta h2, .final-cta p { color: #fff; }
.final-cta h2 { max-width: 780px; margin: 0 auto 18px; }
.final-cta p { max-width: 620px; margin: 0 auto 36px; font-size: 18px; opacity: .95; }

/* ===== FOOTER ===== */
.footer {
    background: #1e1c17;
    color: #c9c4b4;
    padding: 80px 0 32px;
    font-size: 14px;
}
.footer a { color: #c9c4b4; }
.footer a:hover { color: var(--coral); }
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer h4 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 20px;
    letter-spacing: .02em;
}
.footer__brand p {
    color: #a09a89;
    font-size: 14px;
    margin: 18px 0 22px;
    line-height: 1.65;
    max-width: 320px;
}
.footer .logo { color: #fff; }

.footer ul { list-style: none; }
.footer li { padding: 6px 0; color: #a09a89; }

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.footer__contact svg { flex-shrink: 0; margin-top: 3px; color: var(--olive-light); }

.footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer__socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    display: grid; place-items: center;
    transition: all .3s var(--ease);
}
.footer__socials a:hover {
    background: var(--olive);
    color: #fff;
    transform: translateY(-2px);
}

.footer__sources {
    background: rgba(255,255,255,.03);
    padding: 26px;
    border-radius: 16px;
    margin-bottom: 40px;
    border-left: 3px solid var(--olive);
}
.footer__sources h4 { margin-bottom: 14px; }
.footer__sources ol {
    padding-left: 20px;
    color: #a09a89;
    font-size: 13px;
    line-height: 1.7;
}
.footer__sources li { padding: 4px 0; color: #a09a89; }
.footer__sources a {
    color: var(--olive-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.footer__sources a:hover { color: var(--coral); }

.footer__legal {
    padding: 24px 0 0;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 12.5px;
    color: #7a7565;
}
.footer__legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal-links a { color: #a09a89; }

.footer__disclaimer {
    background: rgba(255,255,255,.03);
    padding: 18px 22px;
    border-radius: 12px;
    font-size: 12.5px;
    color: #8a8574;
    line-height: 1.65;
    margin-bottom: 24px;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.float { animation: float 6s ease-in-out infinite; }

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 80px 0 100px;
    max-width: 860px;
    margin: 0 auto;
}
.legal-page h1 { margin-bottom: 12px; }
.legal-page .updated {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(131,153,88,.15);
}
.legal-page h2 { font-size: 1.6rem; margin: 40px 0 14px; }
.legal-page h3 { font-size: 1.15rem; margin: 24px 0 10px; font-family: 'Inter', sans-serif; font-weight: 600; }
.legal-page p, .legal-page li { color: var(--ink-soft); margin-bottom: 12px; font-size: 15px; line-height: 1.7; }
.legal-page ul, .legal-page ol { padding-left: 24px; margin-bottom: 16px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--olive-dark); text-decoration: underline; }

/* ===== THANK YOU PAGE ===== */
.ty-hero {
    min-height: 70vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 60px 24px;
    background: linear-gradient(180deg, var(--cream-soft) 0%, var(--bg) 100%);
}
.ty-hero__icon {
    width: 110px; height: 110px;
    background: var(--olive);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: grid; place-items: center;
    box-shadow: 0 18px 40px rgba(131,153,88,.35);
    animation: pop .7s var(--ease);
}
@keyframes pop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); }
}
.ty-hero h1 { margin-bottom: 18px; }
.ty-hero p { font-size: 18px; max-width: 560px; margin: 0 auto 36px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
    .hero__grid { grid-template-columns: 1fr; gap: 50px; }
    .hero__carousel { max-width: 560px; margin: 0 auto; }
    .concept__grid { grid-template-columns: 1fr; }
    .audience__grid { grid-template-columns: repeat(3, 1fr); }
    .steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
    .steps::before { display: none; }
    .benefits__grid { grid-template-columns: repeat(2, 1fr); }
    .menu-grid { grid-template-columns: repeat(3, 1fr); }
    .plan-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .pricing { grid-template-columns: 1fr; max-width: 460px; }
    .price-card--featured { transform: scale(1); }
    .price-card--featured:hover { transform: translateY(-8px); }
}

@media (max-width: 720px) {
    .section { padding: 80px 0; }
    .hero { padding: 30px 0 60px; }
    .nav { display: none; }
    .nav.open {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        border-bottom: 1px solid rgba(131,153,88,.12);
        box-shadow: var(--shadow-md);
    }
    .burger { display: flex; }
    .trust { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .audience__grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr 1fr; }
    .benefits__grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr 1fr; }
    .plan-grid { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }
    .testi { grid-template-columns: 1fr; text-align: center; padding: 30px 22px; }
    .testi__avatar { margin: 0 auto; }
    .testi__meta { justify-content: center; }
    .form-wrap { padding: 30px 22px; }
    .footer__grid { grid-template-columns: 1fr; gap: 36px; }
    .final-cta { padding: 100px 0; }
    .infographic { flex-direction: column; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { width: 100%; }
}

@media (max-width: 460px) {
    .menu-grid { grid-template-columns: 1fr; }
    .audience__grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .container { padding: 0 18px; }
}

/* ===== COOKIE CONSENT BAR ===== */
body.has-cookie-bar {
    padding-bottom: 0;
}

.cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    padding: 16px 20px;
    background: rgba(30, 28, 23, .97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(131, 153, 88, .35);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, .22);
    transform: translateY(110%);
    opacity: 0;
    transition: transform .45s var(--ease), opacity .45s var(--ease);
}

.cookie-bar--visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-bar--hidden {
    transform: translateY(110%);
    opacity: 0;
}

.cookie-bar__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
}

.cookie-bar__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(131, 153, 88, .18);
    color: var(--olive-light);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.cookie-bar__text strong {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}

.cookie-bar__text p {
    color: #b8b2a4;
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
}

.cookie-bar__text a {
    color: var(--olive-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-bar__text a:hover {
    color: var(--coral);
}

.cookie-bar__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-bar__btn {
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: all .25s var(--ease);
}

.cookie-bar__btn--ghost {
    background: transparent;
    color: #d8d2c4;
    border: 1.5px solid rgba(255, 255, 255, .22);
}

.cookie-bar__btn--ghost:hover {
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
}

.cookie-bar__btn--accept {
    background: var(--olive);
    color: #fff;
    box-shadow: 0 6px 18px rgba(131, 153, 88, .35);
}

.cookie-bar__btn--accept:hover {
    background: var(--olive-light);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .cookie-bar__inner {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
    }
    .cookie-bar__actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
}

@media (max-width: 560px) {
    .cookie-bar {
        padding: 14px 16px;
    }
    .cookie-bar__inner {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .cookie-bar__icon {
        display: none;
    }
    .cookie-bar__actions {
        flex-direction: column;
        width: 100%;
    }
    .cookie-bar__btn {
        width: 100%;
        text-align: center;
    }
}
