/* ==========================================================
   ADA — LIGHT WARM THEME FUNNEL PAGE
   Brand colors: teal #008080, coral #FF7F50
   Designed for older Italian audience (50-70+)
   Clear contrast, larger text, mobile-first responsive
========================================================== */

:root {
    /* Brand */
    --teal: #008080;
    --teal-bright: #0aa39f;
    --teal-light: #E0F2F1;
    --teal-soft: #F1FAFA;

    --coral: #FF7F50;
    --coral-dark: #e66a3d;
    --coral-light: #FFE8DD;
    --coral-soft: #FFF4EE;

    --green: #0C8D26;

    --gold: #F59E0B;

    /* Neutrals — warm, not cold */
    --bg: #FAF8F4;
    --bg-warm: #F5F1E8;
    --surface: #FFFFFF;
    --surface-warm: #FBF8F2;

    --text: #1a2a45;
    --text-strong: #0F172A;
    --text-muted: #4B5563;
    --text-light: #6B7280;
    --text-faint: #9CA3AF;

    --border: #E5E7EB;
    --border-warm: #EDE7DA;
    --border-strong: #D1D5DB;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.1);
    --shadow-teal: 0 8px 24px rgba(0, 128, 128, 0.2);
    --shadow-coral: 0 8px 24px rgba(255, 127, 80, 0.3);

    /* Radius */
    --r-sm: 8px;
    --r: 12px;
    --r-lg: 16px;
    --r-xl: 24px;

    /* Layout */
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

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

.container--narrow {
    max-width: 880px;
}

.text-teal {
    color: var(--teal);
    font-weight: 800;
}

/* ==========================================================
   STICKY HEADER (preserved)
========================================================== */
.afd-old-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 16px;
    display: flex;
    justify-content: center;
    background: rgba(250, 248, 244, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.afd-old-header__box {
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px 8px 10px;
    max-width: var(--container);
    width: 100%;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.6);
    gap: 12px;
}

.afd-old-header__logo {
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.afd-old-header__btn {
    background: var(--teal);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 100px;
    padding: 12px 24px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.25);
    white-space: nowrap;
}

.afd-old-header__btn:hover {
    background: #006565;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 128, 128, 0.35);
}

.lang-switcher {
    position: relative;
    margin-right: 12px;
}
.lang-switcher__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: inherit;
}
.lang-switcher__btn:hover {
    border-color: #008080;
    box-shadow: 0 2px 8px rgba(0,128,128,0.12);
}
.lang-switcher__flag {
    width: 18px;
    height: auto;
    border-radius: 2px;
    display: inline-block;
    vertical-align: middle;
}
.lang-switcher__arrow {
    font-size: 10px;
    opacity: 0.5;
    transition: transform 0.2s;
}
.lang-switcher__btn[aria-expanded="true"] .lang-switcher__arrow {
    transform: rotate(180deg);
}
.lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    min-width: 100px;
    overflow: hidden;
    z-index: 999;
}
.lang-switcher__option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}
.lang-switcher__option:hover {
    background: #f4fafa;
    color: #008080;
}

/* ==========================================================
   SHARED — Section headers, eyebrows, buttons
========================================================== */
.section-header {
    margin-bottom: 56px;
}

.section-header--center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
    padding: 8px 16px;
    background: var(--teal-light);
    border-radius: 100px;
}

.eyebrow--coral {
    color: var(--coral-dark);
    background: var(--coral-light);
}

.section-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-strong);
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.section-lead {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 640px;
}

.section-header--center .section-lead {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 30px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn--primary {
    background: var(--coral);
    color: #ffffff;
    box-shadow: var(--shadow-coral);
}

.btn--primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 127, 80, 0.4);
}

.btn__arrow {
    transition: transform 0.25s ease;
}

.btn--primary:hover .btn__arrow {
    transform: translateX(4px);
}

.btn--ghost {
    background: #ffffff;
    color: var(--text-strong);
    border: 1.5px solid var(--border-strong);
}

.btn--ghost:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
}

/* ==========================================================
   HERO — Centered with video below
========================================================== */
.hero {
    padding: 40px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero__inner {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--teal-light);
    color: var(--teal);
    padding: 9px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.hero__badge-dot {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.15);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.hero__title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-strong);
    margin-bottom: 24px;
    letter-spacing: -1.8px;
}

.hero__subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero__subtitle strong {
    color: var(--text-strong);
    font-weight: 700;
}

.hero__cta-row {
    display: inline-flex;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero__stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
}

.hero__rating-text {
    color: var(--text-muted);
    font-size: 15px;
}

.hero__rating-text strong {
    color: var(--text-strong);
    font-weight: 700;
}

/* VIDEO BLOCK — large, prominent, below hero */
.hero__video-wrap {
    max-width: 1080px;
    margin: 50px auto 0;
    padding: 0 24px;
    position: relative;
}

.hero__video-frame {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--coral-light) 100%);
    border-radius: var(--r-xl);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero__video-frame video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    background: #000;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* ==========================================================
   VIDEO UNMUTE BUTTON — Overlay on the video
========================================================== */
.video-unmute {
    position: absolute;
    top: 22px;
    right: 22px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 10px 18px 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 3;
    animation: video-unmute-pulse 2.5s ease-in-out infinite;
}

.video-unmute:hover {
    background: var(--coral);
    border-color: var(--coral);
    transform: translateY(-2px);
    animation: none;
}

.video-unmute__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.video-unmute--hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
}

@keyframes video-unmute-pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 127, 80, 0.5); }
    50% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 10px rgba(255, 127, 80, 0); }
}

.hero__video-badge {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-strong);
    box-shadow: var(--shadow-md);
    animation: float-bob 4s ease-in-out infinite;
}

.hero__video-badge--1 {
    top: 30px;
    left: -20px;
    animation-delay: 0s;
}

.hero__video-badge--2 {
    bottom: 30px;
    right: -20px;
    animation-delay: 1.5s;
}

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

.hero__video-badge-icon {
    width: 24px;
    height: 24px;
    background: var(--teal);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ==========================================================
   STATS BAR
========================================================== */
.stats {
    padding: 60px 24px;
    background: linear-gradient(135deg, var(--teal-soft) 0%, var(--coral-soft) 100%);
    border-top: 1px solid var(--border-warm);
    border-bottom: 1px solid var(--border-warm);
}

.stats__container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat.in-view {
    opacity: 1;
    transform: translateY(0);
}

.stat__num {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--teal);
    margin-bottom: 10px;
    letter-spacing: -1.5px;
}

.stat__plus {
    color: var(--coral);
}

.stat__label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}

/* ==========================================================
   FEATURES — 6 cards
========================================================== */
.features {
    padding: 90px 0;
    background: var(--bg);
}

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

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.feature-card__icon--teal {
    background: var(--teal-light);
}

.feature-card__icon--coral {
    background: var(--coral-light);
}

.feature-card__title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-card__text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================
   STEPS — 4-step timeline
========================================================== */
.steps {
    padding: 90px 0;
    background: var(--surface-warm);
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps__line {
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--teal) 20%, var(--teal) 80%, transparent);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.in-view {
    opacity: 1;
    transform: translateY(0);
}

.step__num {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--teal);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 0 0 6px var(--surface-warm), 0 8px 16px rgba(0, 128, 128, 0.25);
}

.step__title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 8px;
}

.step__text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 0 8px;
}

/* ==========================================================
   BIG QUOTE
========================================================== */
.big-quote-section {
    padding: 80px 0;
    background: var(--bg);
}

.big-quote {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 56px 48px;
    max-width: 920px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.big-quote::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--teal-light) 0%, transparent 70%);
    pointer-events: none;
}

.big-quote__mark {
    font-family: Georgia, serif;
    font-size: 90px;
    color: var(--teal);
    line-height: 0.5;
    margin-bottom: 12px;
    opacity: 0.3;
    position: relative;
}

.big-quote__text {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-strong);
    margin-bottom: 32px;
    letter-spacing: -0.3px;
    position: relative;
}

.big-quote__highlight {
    color: var(--teal);
    font-weight: 700;
}

.big-quote__author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    flex-wrap: wrap;
}

.big-quote__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-bright) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.big-quote__info {
    flex: 1;
    min-width: 0;
}

.big-quote__name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-strong);
}

.big-quote__city {
    font-size: 14px;
    color: var(--text-muted);
}

.big-quote__stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
}

/* ==========================================================
   PACKAGES
========================================================== */
.packages {
    padding: 90px 0;
    background: var(--surface-warm);
}

.packages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.pkg {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 32px 32px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.pkg.in-view {
    opacity: 1;
    transform: translateY(0);
}

.pkg:hover {
    border-color: var(--teal);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pkg--featured {
    border-color: var(--teal);
    box-shadow: 0 16px 40px rgba(0, 128, 128, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, var(--teal-soft) 100%);
}

.pkg__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: #ffffff;
    padding: 7px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    box-shadow: var(--shadow-coral);
}

.pkg__name {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 16px;
    margin-top: 8px;
}

.pkg__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.pkg__from {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.pkg__price {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    letter-spacing: -1.5px;
}

.pkg__price--text {
    font-size: 30px;
    color: var(--text-strong);
}

.pkg__subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.pkg__list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}

.pkg__list li {
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
    padding: 11px 0 11px 30px;
    position: relative;
    border-top: 1px solid var(--border);
}

.pkg__list li:first-child {
    border-top: none;
}

.pkg__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    background: var(--teal);
    border-radius: 50%;
}

.pkg__list li::after {
    content: "✓";
    position: absolute;
    left: 4.5px;
    top: 11px;
    color: #ffffff;
    font-weight: 700;
    font-size: 11px;
}

.pkg__btn {
    display: block;
    width: 100%;
    background: var(--coral);
    color: #ffffff;
    text-align: center;
    padding: 16px 20px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
    margin-bottom: 14px;
    box-shadow: var(--shadow-coral);
}

.pkg__btn:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
}

.pkg__btn--outline {
    background: var(--surface);
    color: var(--teal);
    border: 1.5px solid var(--teal);
    box-shadow: none;
}

.pkg__btn--outline:hover {
    background: var(--teal);
    color: #ffffff;
}

.pkg__note {
    font-size: 11px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

.packages__disclaimer {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding: 20px 24px;
    background: var(--surface);
    border-radius: var(--r);
    border-left: 4px solid var(--teal);
}

/* ==========================================================
   WHY US — 4 cards
========================================================== */
.why {
    padding: 90px 0;
    background: var(--bg);
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.why-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.why-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--coral-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.why-card__title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 10px;
}

.why-card__text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================
   REVIEWS
========================================================== */
.reviews {
    padding: 90px 0;
    background: var(--surface-warm);
}

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

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.review-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.review-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.review-card__stars {
    color: var(--gold);
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-card__text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 22px;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-bright) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-strong);
}

.review-card__city {
    font-size: 13px;
    color: var(--text-muted);
}

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

.faq__list {
    margin-top: 0;
    background: var(--surface);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    padding: 0 28px;
    box-shadow: var(--shadow-sm);
}

.afd-faq-item {
    border-bottom: 1px solid var(--border);
}

.afd-faq-item:last-child {
    border-bottom: none;
}

.afd-faq-question {
    width: 100%;
    border: none;
    background: none;
    text-align: left;
    font-size: 18px;
    color: var(--text-strong);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    padding: 24px 0;
    transition: color 0.2s ease;
    gap: 16px;
}

.afd-faq-question:hover {
    color: var(--teal);
}

.afd-faq-question::after {
    content: "+";
    font-size: 28px;
    color: var(--teal);
    font-weight: 300;
    transition: transform 0.3s ease;
    line-height: 1;
    flex-shrink: 0;
}

.afd-faq-item.active .afd-faq-question::after {
    transform: rotate(45deg);
}

.afd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.afd-faq-answer p {
    margin: 0;
    padding: 0 0 24px;
}

/* ==========================================================
   CTA / FORM SECTION
========================================================== */
.cta {
    padding: 90px 0 100px;
    background: linear-gradient(135deg, var(--teal-soft) 0%, var(--coral-soft) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 127, 80, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta__inner {
    max-width: 640px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--r-xl);
    padding: 56px 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
}

.cta__inner .section-header {
    margin-bottom: 36px;
}

/* Form — class unchanged */
.afd-form input,
.afd-form textarea {
    width: 100%;
    margin-bottom: 14px;
    background: var(--surface-warm);
    color: var(--text-strong);
    border: 1.5px solid var(--border);
    font-family: 'Inter', sans-serif;
    border-radius: var(--r);
    padding: 16px 18px;
    transition: all 0.2s ease;
    font-size: 16px;
    line-height: 1.4;
}

.afd-form input::placeholder,
.afd-form textarea::placeholder {
    color: var(--text-light);
}

.afd-form input:focus,
.afd-form textarea:focus {
    border-color: var(--teal);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.1);
}

.afd-form textarea {
    min-height: 100px;
    resize: vertical;
}

.afd-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.afd-form__consent input[type="checkbox"] {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--teal);
    cursor: pointer;
    border: 1.5px solid var(--border);
    border-radius: 4px;
}

.afd-form__consent label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    cursor: pointer;
}

.afd-form__consent label a {
    color: var(--teal);
    text-decoration: underline;
}

.afd-form__consent label a:hover {
    color: var(--teal-dark, var(--teal));
}

.afd-btn-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    background: var(--coral);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    padding: 18px 24px;
    line-height: 1;
    text-align: center;
    transition: all 0.25s ease;
    border-radius: var(--r);
    box-shadow: var(--shadow-coral);
}

.afd-btn-submit:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
}

.afd-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.cta__privacy {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 20px 0;
    text-align: center;
}

.cta__privacy a {
    color: var(--teal);
    text-decoration: underline;
    font-weight: 600;
}

.cta__trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.cta__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.cta__trust-check {
    width: 22px;
    height: 22px;
    background: var(--teal);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Form success (ID unchanged) */
.afd-form-success {
    background: #ffffff;
    border: 2px solid #16a34a;
    border-radius: var(--r);
    padding: 36px 28px;
    text-align: center;
    animation: afdFadeIn 0.4s ease;
}

.afd-form-success__icon {
    width: 64px;
    height: 64px;
    background: #16a34a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 18px;
    animation: afdScaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.afd-form-success__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-strong);
    margin: 0 0 12px;
}

.afd-form-success__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 24px;
}

.afd-form-success__btn {
    background: var(--text-strong);
    color: #ffffff;
    border: none;
    border-radius: 100px;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.afd-form-success__btn:hover {
    background: #000000;
}

.afd-form-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
    z-index: 9999;
    animation: afdSlideUp 0.3s ease;
    max-width: 90%;
}

.afd-form-toast.afd-form-toast--warning {
    background: #f59e0b;
}

/* ==========================================================
   FOOTER
========================================================== */
.footer {
    background: var(--text-strong);
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer .container {
    max-width: var(--container);
}

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

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    height: 60px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer__tagline {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer__col-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer__col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.9;
    margin: 0;
}

.footer__col a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s ease;
}

.footer__col a:hover {
    color: #ffffff;
}

.footer__disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    text-align: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--r);
    border-left: 3px solid var(--teal);
    margin: 30px 0 20px;
}

.footer__bottom {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================
   LIVE NOTIFICATIONS — Social proof, bottom-left
========================================================== */
.notif-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: 340px;
}

.notif {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 40px 14px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    opacity: 0;
    transform: translateX(-30px) scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
    position: relative;
    max-width: 320px;
}

.notif--in {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.notif__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-bright) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 128, 128, 0.25);
}

.notif__body {
    flex: 1;
    min-width: 0;
}

.notif__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1.3;
    margin-bottom: 2px;
}

.notif__action {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.35;
    margin-bottom: 4px;
}

.notif__meta {
    font-size: 11px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.notif__dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    animation: notif-pulse 2s ease-in-out infinite;
}

@keyframes notif-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.notif__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s ease;
}

.notif__close:hover {
    background: var(--bg-warm);
    color: var(--text);
}

/* ==========================================================
   COOKIE BANNER — Bottom banner, GDPR compliant
========================================================== */
.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 99999;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.15);
    padding: 20px 24px;
    max-width: 1100px;
    margin: 0 auto;
    display: none;
}

.cookie-banner.active {
    display: block;
    animation: cookieSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-banner__text {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.cookie-banner__icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.cookie-banner__title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 4px;
}

.cookie-banner__desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.cookie-banner__desc a {
    color: var(--teal);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner__desc a:hover {
    color: var(--teal-bright);
}

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

.cookie-banner__btn {
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 100px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-banner__btn--reject {
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid var(--border-strong);
}

.cookie-banner__btn--reject:hover {
    background: var(--surface-warm);
    color: var(--text-strong);
}

.cookie-banner__btn--accept {
    background: var(--teal);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.25);
}

.cookie-banner__btn--accept:hover {
    background: #006565;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 128, 128, 0.35);
}

.cookie-reopen {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cookie-reopen::before {
    content: "🍪";
    font-size: 14px;
}

.cookie-reopen:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-1px);
}

.cookie-reopen[hidden] {
    display: none;
}

/* ==========================================================
   ANIMATIONS
========================================================== */
@keyframes afdFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes afdScaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

@keyframes afdSlideUp {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* ==========================================================
   RESPONSIVE — TABLET (1024px)
========================================================== */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 46px;
    }

    .section-title {
        font-size: 36px;
    }

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

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

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

    .packages__grid .pkg:last-child {
        grid-column: 1 / -1;
        max-width: 540px;
        margin: 0 auto;
        width: 100%;
    }

    .steps__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .steps__line {
        display: none;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .big-quote__text {
        font-size: 24px;
    }

    .hero__video-badge--1 {
        left: 10px;
    }

    .hero__video-badge--2 {
        right: 10px;
    }
}

/* ==========================================================
   RESPONSIVE — MOBILE (768px)
========================================================== */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 16px;
    }

    /* Header */
    .afd-old-header {
        padding: 10px 12px;
    }

    .afd-old-header__box {
        padding: 6px 10px 6px 8px;
    }

    .afd-old-header__logo {
        height: 44px;
    }

    .afd-old-header__btn {
        font-size: 13px;
        padding: 10px 18px;
    }

    /* Section spacing */
    .features,
    .steps,
    .packages,
    .why,
    .reviews,
    .faq,
    .big-quote-section,
    .cta {
        padding: 60px 0;
    }

    .section-header,
    .section-header--center {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 30px;
        letter-spacing: -0.8px;
    }

    .section-lead {
        font-size: 16px;
    }

    .eyebrow {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 14px;
    }

    /* Hero */
    .hero {
        padding: 30px 16px 40px;
    }

    .hero__title {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .hero__subtitle {
        font-size: 17px;
        margin-bottom: 28px;
    }

    .hero__cta-row {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-bottom: 24px;
    }

    .btn {
        width: 100%;
        font-size: 15px;
        padding: 15px 24px;
    }

    /* Video */
    .hero__video-wrap {
        padding: 0 16px;
        margin-top: 32px;
    }

    .hero__video-frame {
        padding: 5px;
        border-radius: 16px;
    }

    .hero__video-frame video {
        border-radius: 12px;
    }

    .hero__video-badge {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 10px;
    }

    .hero__video-badge--1 {
        top: 10px;
        left: 5px;
    }

    .hero__video-badge--2 {
        bottom: 10px;
        right: 5px;
    }

    .hero__video-badge-icon {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    /* Stats */
    .stats {
        padding: 40px 16px;
    }

    .stats__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }

    .stat__num {
        font-size: 38px;
    }

    .stat__label {
        font-size: 13px;
    }

    /* Grids collapse to 1 column on mobile */
    .features__grid,
    .why__grid,
    .reviews__grid,
    .packages__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .packages__grid .pkg:last-child {
        grid-column: auto;
        max-width: none;
    }

    .steps__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .feature-card,
    .why-card,
    .review-card {
        padding: 24px 22px;
    }

    .feature-card__icon,
    .why-card__icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
        margin-bottom: 18px;
    }

    .feature-card__title,
    .why-card__title {
        font-size: 18px;
    }

    /* Big quote */
    .big-quote {
        padding: 36px 24px;
    }

    .big-quote__text {
        font-size: 20px;
    }

    .big-quote__mark {
        font-size: 60px;
    }

    /* Packages */
    .pkg {
        padding: 32px 24px 24px;
    }

    .pkg__price {
        font-size: 42px;
    }

    /* CTA form */
    .cta__inner {
        padding: 36px 24px;
    }

    .cta__trust {
        gap: 14px;
        flex-direction: column;
        align-items: center;
    }

    /* FAQ */
    .faq__list {
        padding: 0 20px;
    }

    .afd-faq-question {
        font-size: 16px;
        padding: 20px 0;
    }

    .afd-faq-answer {
        font-size: 15px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 24px;
    }

    .footer__cols {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer__brand {
        text-align: center;
        margin: 0 auto;
    }

    .footer__top {
        gap: 30px;
        padding-bottom: 30px;
    }

    /* Cookie banner — stack on mobile */
    .cookie-banner {
        bottom: 8px;
        left: 8px;
        right: 8px;
        padding: 16px;
        border-radius: 14px;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .cookie-banner__icon {
        font-size: 24px;
    }

    .cookie-banner__title {
        font-size: 14px;
    }

    .cookie-banner__desc {
        font-size: 13px;
    }

    .cookie-banner__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .cookie-banner__btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .cookie-reopen {
        bottom: 12px;
        left: 12px;
        font-size: 12px;
        padding: 8px 14px;
    }

    /* Notifications — repositioned to avoid cookie banner on mobile */
    .notif-container {
        bottom: auto;
        top: 80px;
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .notif {
        max-width: none;
    }

    /* Unmute button — smaller on mobile */
    .video-unmute {
        top: 12px;
        right: 12px;
        padding: 8px 14px 8px 10px;
        font-size: 12px;
    }

    .video-unmute__icon svg {
        width: 16px;
        height: 16px;
    }

    /* ==========================================================
       STEPS — Fun mobile animation with vertical journey line
       Designed for older audience: clear, gentle, friendly
    ========================================================== */
    .steps__grid {
        position: relative;
        max-width: 360px;
        margin: 0 auto;
    }

    /* Vertical dashed connecting line */
    .steps__grid::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 30px;
        bottom: 30px;
        width: 3px;
        transform: translateX(-1.5px);
        background-image: linear-gradient(
            to bottom,
            var(--teal) 0,
            var(--teal) 8px,
            transparent 8px,
            transparent 16px
        );
        background-size: 3px 16px;
        background-repeat: repeat-y;
        z-index: 0;
        opacity: 0.4;
    }

    .step {
        position: relative;
        z-index: 1;
    }

    /* White ring around number circle to break the dashed line cleanly */
    .step__num {
        position: relative;
        box-shadow:
            0 0 0 8px var(--surface-warm),
            0 8px 20px rgba(0, 128, 128, 0.3);
    }

    /* Animated ripple ring around each step */
    .step__num::after {
        content: "";
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 2px solid var(--teal);
        opacity: 0;
        animation: step-ripple 3s ease-out infinite;
    }

    .step:nth-child(2) .step__num::after { animation-delay: 0.6s; }
    .step:nth-child(3) .step__num::after { animation-delay: 1.2s; }
    .step:nth-child(4) .step__num::after { animation-delay: 1.8s; }

    @keyframes step-ripple {
        0% {
            opacity: 0.7;
            transform: scale(1);
        }
        100% {
            opacity: 0;
            transform: scale(1.5);
        }
    }

    /* Playful bounce-in when each step scrolls into view */
    .step.in-view .step__num {
        animation: step-bounce-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes step-bounce-in {
        0% {
            transform: scale(0.3) rotate(-12deg);
            opacity: 0;
        }
        60% {
            transform: scale(1.12) rotate(6deg);
            opacity: 1;
        }
        100% {
            transform: scale(1) rotate(0);
            opacity: 1;
        }
    }

    /* Gentle wave for the title under each step */
    .step.in-view .step__title {
        animation: step-title-rise 0.5s ease-out 0.3s both;
    }

    @keyframes step-title-rise {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ==========================================================
   RESPONSIVE — SMALL MOBILE (480px)
========================================================== */
@media (max-width: 480px) {
    .afd-old-header__logo {
        height: 38px;
    }

    .afd-old-header__btn {
        font-size: 11px;
        padding: 9px 14px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__rating {
        flex-direction: column;
        gap: 6px;
    }

    .section-title {
        font-size: 26px;
    }

    .hero__video-badge {
        display: none;
    }

    .stat__num {
        font-size: 34px;
    }

    .pkg__price {
        font-size: 36px;
    }

    .big-quote__author {
        gap: 12px;
    }

    .big-quote__stars {
        width: 100%;
        margin-top: 8px;
    }
}