/* ── GOOGLE FONTS ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500&display=swap');

/* ── VARIABLES ────────────────────────────────────────────────────── */
:root {
  --blue:       #29ABE2;
  --green:      #39B54A;
  --orange:     #F7941D;
  --deep:       #1a1f2e;
  --ink:        #0d1117;
  --cream:      #f8f9fb;
  --white:      #ffffff;
  --text:       #2d3748;
  --muted:      #718096;
  --border:     rgba(0,0,0,0.08);
  --serif:      'Outfit', system-ui, sans-serif;
  --sans:       'DM Sans', system-ui, sans-serif;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 2px 16px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.10);
}

/* ── RESET ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--text); background: var(--cream); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--sans); }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 700; line-height: 1.15; color: var(--deep); }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.2rem; }
p  { line-height: 1.8; }

/* ── LAYOUT ───────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 2rem; }
.section--dark { background: var(--deep); color: rgba(255,255,255,0.85); }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

/* ── LABEL ────────────────────────────────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.label::before { content: ''; display: block; width: 22px; height: 2px; border-radius: 1px; background: currentColor; }
.label--blue  { color: var(--blue); }
.label--green { color: var(--green); }
.label--orange{ color: var(--orange); }
.label--white { color: rgba(255,255,255,0.5); }

/* ── BUTTONS ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.02em;
  border: 2px solid transparent; transition: all 0.2s;
}
.btn--orange { background: var(--orange); color: #fff; box-shadow: 0 4px 14px rgba(247,148,29,0.35); }
.btn--orange:hover { background: #e0870d; box-shadow: 0 6px 20px rgba(247,148,29,0.45); transform: translateY(-1px); }
.btn--outline { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.btn--outline:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn--outline-dark { border-color: var(--border); color: var(--muted); }
.btn--outline-dark:hover { border-color: var(--blue); color: var(--blue); }

/* ── BADGE ────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.9rem; border-radius: 20px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
}
.badge--blue  { background: rgba(41,171,226,0.1); border: 1px solid rgba(41,171,226,0.25); color: var(--blue); }
.badge--green { background: rgba(57,181,74,0.1);  border: 1px solid rgba(57,181,74,0.25);  color: var(--green); }
.badge--orange{ background: rgba(247,148,29,0.1); border: 1px solid rgba(247,148,29,0.25); color: var(--orange); }
.badge--dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ── CARD ─────────────────────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card--top-blue   { border-top: 3px solid var(--blue); }
.card--top-green  { border-top: 3px solid var(--green); }
.card--top-orange { border-top: 3px solid var(--orange); }

/* ── NAV ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,252,250,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(41,171,226,0.12);
  padding: 0.9rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 0.6rem; }
.nav__logo-five {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 700;
  background: linear-gradient(160deg, var(--blue) 0%, var(--green) 40%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.nav__logo-text { line-height: 1.2; }
.nav__logo-name { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--deep); }
.nav__logo-name span { color: var(--blue); }
.nav__logo-sub  { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-size: 0.84rem; color: var(--text); transition: color 0.2s; }
.nav__links a:hover { color: var(--blue); }
.nav__cta { margin-left: 1rem; }
.nav__hamburger { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 0.25rem; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--deep); border-radius: 1px; transition: all 0.3s; }
.nav__mobile { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 2rem; flex-direction: column; gap: 0.5rem; z-index: 99; }
.nav__mobile a { padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; color: var(--text); }
.nav__mobile.open { display: flex; }

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding-top: 72px;
  display: grid; grid-template-columns: 1fr 1fr;
}
.hero__left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 3rem 5rem 5rem;
}
.hero__eyebrow { margin-bottom: 2rem; }
.hero__title { margin-bottom: 1.5rem; }
.hero__title .gradient {
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__desc { font-size: 1rem; color: var(--muted); max-width: 420px; margin-bottom: 2.5rem; }
.hero__actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero__link { font-size: 0.85rem; color: var(--deep); display: flex; align-items: center; gap: 0.35rem; border-bottom: 1px solid var(--blue); padding-bottom: 1px; }
.hero__link:hover { color: var(--blue); }
.hero__mobile-stats { display: none; margin-top: 2.5rem; background: rgba(26,31,46,0.05); border-radius: 10px; overflow: hidden; }
.hero__mobile-stats .stat { flex: 1; padding: 1rem 0.75rem; text-align: center; border-right: 1px solid rgba(26,31,46,0.08); }
.hero__mobile-stats .stat:last-child { border-right: none; }
.hero__mobile-stats .stat-num { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--deep); line-height: 1; margin-bottom: 2px; }
.hero__mobile-stats .stat-lbl { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

/* Hero right panel */
.hero__right {
  background: linear-gradient(160deg, var(--deep) 0%, #0f1520 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: 3.5rem 3rem;
}
.hero__right-orb {
  position: absolute; top: -10%; right: -10%;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(41,171,226,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero__right-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 40px 40px;
}
.compare-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.65rem; }
.compare-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--blue); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-bottom: 1rem; }
.compare-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 1.25rem 1.1rem; }
.compare-box--nz .compare-box__title { color: rgba(255,255,255,0.35); }
.compare-box--cn { background: rgba(41,171,226,0.08); border-color: rgba(41,171,226,0.25); }
.compare-box--cn .compare-box__title { color: var(--blue); }
.compare-box__title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.compare-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.55rem; font-size: 0.76rem; }
.compare-row__label { color: rgba(255,255,255,0.4); font-weight: 300; }
.compare-row__val--red   { color: #f47b72; font-weight: 600; }
.compare-row__val--green { color: #4cc76a; font-weight: 600; }
.journey-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 1rem; }
.journey-box__title { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1rem; }
.journey-steps { display: flex; align-items: flex-start; position: relative; }
.journey-steps::before { content: ''; position: absolute; top: 18px; left: 8%; right: 8%; height: 1px; background: rgba(41,171,226,0.2); }
.journey-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; position: relative; z-index: 1; }
.journey-step__icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.journey-step__icon--active { background: rgba(41,171,226,0.15); border-color: rgba(41,171,226,0.4); }
.journey-step__label { font-size: 0.65rem; color: rgba(255,255,255,0.3); text-align: center; }
.journey-step__label--active { color: var(--blue); }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.06); border-radius: 8px; overflow: hidden; }
.hero-stat { padding: 1.1rem 0.85rem; background: rgba(0,0,0,0.18); text-align: center; }
.hero-stat__num { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--blue); line-height: 1.1; margin-bottom: 0.25rem; }
.hero-stat__lbl { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.35); }
.hero__right-badge { position: absolute; bottom: 1.5rem; right: 1.5rem; background: rgba(41,171,226,0.1); border: 1px solid rgba(41,171,226,0.2); border-radius: 20px; padding: 0.25rem 0.75rem; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); font-weight: 500; }

/* ── PAIN POINTS ──────────────────────────────────────────────────── */
.pain-quote { background: var(--deep); color: rgba(255,255,255,0.85); padding: 2.5rem; border-radius: 16px; position: relative; overflow: hidden; }
.pain-quote::before { content: '"'; font-family: var(--serif); font-size: 6rem; color: rgba(255,255,255,0.04); position: absolute; top: -0.5rem; left: 1rem; line-height: 1; }
.pain-quote__top { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--green), var(--orange)); }
.pain-quote p { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; font-style: italic; line-height: 1.7; color: rgba(255,255,255,0.9); margin-bottom: 1.25rem; position: relative; z-index: 1; }
.pain-quote__attr { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }
.pain-quote__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.1); }
.pain-quote__stat-num { font-family: var(--serif); font-size: 2.2rem; color: var(--blue); font-weight: 700; line-height: 1; margin-bottom: 0.2rem; text-align: center; }
.pain-quote__stat-lbl { font-size: 0.68rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; text-align: center; }
.pain-item { display: flex; gap: 1rem; align-items: flex-start; padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.pain-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.pain-item__icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(41,171,226,0.08); border: 1px solid rgba(41,171,226,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.pain-item__title { font-size: 0.88rem; font-weight: 600; color: var(--deep); margin-bottom: 0.2rem; }
.pain-item__desc  { font-size: 0.8rem; color: var(--muted); font-weight: 300; line-height: 1.65; }

/* ── ADVANTAGES ───────────────────────────────────────────────────── */
.adv-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem 1.5rem; border: 1px solid var(--border); }
.adv-card__num { font-family: var(--serif); font-size: 2rem; font-weight: 700; line-height: 1; margin-bottom: 0.75rem; }
.adv-card__title { font-size: 0.9rem; font-weight: 600; color: var(--deep); margin-bottom: 0.45rem; line-height: 1.3; }
.adv-card__body  { font-size: 0.78rem; color: var(--muted); line-height: 1.65; margin-bottom: 0.85rem; }

/* ── HOW IT WORKS ─────────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; margin-top: 4rem; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 1.35rem; left: calc(100%/12); right: calc(100%/12); height: 1px; background: rgba(41,171,226,0.3); }
.step { padding: 0 0.85rem; text-align: center; position: relative; z-index: 1; }
.step__num { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-family: var(--serif); font-size: 1.2rem; font-weight: 700; }
.step__label { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 0.4rem; line-height: 1.3; }
.step__desc   { font-size: 0.7rem; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ── SERVICES ─────────────────────────────────────────────────────── */
.service-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.25rem; background: var(--cream); }
.service-card__icon  { font-size: 1.5rem; margin-bottom: 0.85rem; }
.service-card__title { font-size: 0.88rem; font-weight: 600; color: var(--deep); margin-bottom: 0.4rem; }
.service-card__desc  { font-size: 0.76rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.85rem; }

/* ── CITIES ───────────────────────────────────────────────────────── */
.city-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--border); position: relative; overflow: hidden; }
.city-card__zh { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; position: absolute; top: 0.75rem; right: 1rem; line-height: 1; opacity: 0.12; }
.city-card__name   { font-size: 1rem; font-weight: 600; color: var(--deep); margin-bottom: 0.2rem; }
.city-card__flight { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em; margin-bottom: 0.75rem; }
.city-card__desc   { font-size: 0.78rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.city-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.city-tag  { font-size: 0.65rem; padding: 0.2rem 0.6rem; border-radius: 20px; font-weight: 500; }

/* ── DUAL REVIEW ──────────────────────────────────────────────────── */
.review-panel { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 2rem; }
.review-panel--blue  { border-top: 3px solid var(--blue); }
.review-panel--green { border-top: 3px solid var(--green); }
.review-panel__head  { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.review-panel__flag  { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.review-panel__flag--blue  { background: rgba(41,171,226,0.15); border: 1px solid rgba(41,171,226,0.3); }
.review-panel__flag--green { background: rgba(57,181,74,0.15);  border: 1px solid rgba(57,181,74,0.3); }
.review-panel__title { font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.92); margin-bottom: 0.15rem; }
.review-panel__sub   { font-size: 0.72rem; font-weight: 400; }
.review-panel__body  { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 1.25rem; }
.review-panel__list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 0.45rem; }
.review-panel__list li::before { content: '✓'; font-weight: 700; flex-shrink: 0; }

/* Rating legend */
.rating-legend { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.rating-legend-item { display: flex; align-items: center; gap: 0.5rem; }
.rating-letter { width: 22px; height: 22px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 0.85rem; font-weight: 700; }
.rating-legend-text { font-size: 0.72rem; color: rgba(255,255,255,0.4); font-weight: 300; }

/* Rating cards - horizontal scroll on mobile */
.rating-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rating-cards  { display: grid; grid-template-columns: repeat(4,minmax(180px,1fr)); gap: 0.75rem; min-width: 640px; }
.rating-card   { border-radius: 10px; padding: 1.25rem 1rem; text-align: center; }
.rating-card__grade   { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; line-height: 1; margin-bottom: 0.3rem; }
.rating-card__label   { font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 0.2rem; line-height: 1.3; }
.rating-card__meaning { font-size: 0.65rem; font-style: italic; margin-bottom: 0.35rem; line-height: 1.4; }
.rating-card__desc    { font-size: 0.65rem; color: rgba(255,255,255,0.32); line-height: 1.5; margin-bottom: 0.65rem; }
.rating-card__verdict { display: inline-block; font-size: 0.62rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; letter-spacing: 0.06em; }

/* ── PRICING ──────────────────────────────────────────────────────── */
.guarantee-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.guarantee-item__icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.guarantee-item__title { font-size: 0.88rem; font-weight: 600; color: var(--deep); margin-bottom: 0.25rem; }
.guarantee-item__body  { font-size: 0.8rem; color: var(--muted); line-height: 1.65; }
.pricing-card { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.pricing-card__head { background: var(--deep); padding: 1.75rem 2rem; position: relative; }
.pricing-card__head::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--green), var(--orange)); }
.pricing-card__eyebrow { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.4rem; }
.pricing-card__title   { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: rgba(255,255,255,0.92); }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 2rem; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.82rem; }
.pricing-row__label { color: var(--text); }
.pricing-row__val   { font-weight: 600; font-size: 0.88rem; }
.pricing-note { padding: 1rem 2rem; font-size: 0.72rem; color: var(--muted); line-height: 1.6; border-top: 1px solid var(--border); }

/* ── CTA SECTION ──────────────────────────────────────────────────── */
.cta-section { background: var(--ink); text-align: center; padding: 8rem 2rem; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--green), var(--orange), var(--blue)); }
.cta-section__orb { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(41,171,226,0.1) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.cta-section__badge { display: inline-block; background: rgba(41,171,226,0.1); border: 1px solid rgba(41,171,226,0.25); color: var(--blue); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.45rem 1rem; border-radius: 20px; margin-bottom: 2rem; position: relative; }
.cta-section h2 { color: rgba(255,255,255,0.92); margin-bottom: 1.25rem; position: relative; }
.cta-section h2 .gradient { background: linear-gradient(90deg, var(--blue), var(--green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-section p  { color: rgba(255,255,255,0.45); max-width: 480px; margin: 0 auto 3rem; position: relative; font-size: 0.95rem; }
.cta-section__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ───────────────────────────────────────────────────────── */
.footer { background: #0a0d14; border-top: 1px solid rgba(255,255,255,0.05); padding: 2.5rem 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer__links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer__links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer__links a:hover { color: var(--blue); }
.footer__copy { font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* ── FORM STYLES ──────────────────────────────────────────────────── */
.form-page { min-height: 100vh; background: var(--cream); }
.form-page__topbar { background: var(--white); border-bottom: 1px solid rgba(41,171,226,0.15); padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.form-page__progress { height: 3px; background: rgba(0,0,0,0.06); }
.form-page__progress-bar { height: 100%; background: linear-gradient(90deg, var(--blue), var(--green)); transition: width 0.4s ease; }
.form-layout { display: grid; grid-template-columns: 300px 1fr; min-height: calc(100vh - 68px); }
.form-sidebar { background: var(--deep); padding: 3rem 2rem; display: flex; flex-direction: column; position: sticky; top: 68px; height: calc(100vh - 68px); overflow-y: auto; }
.form-sidebar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--green), var(--orange)); }
.form-sidebar__title { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: rgba(255,255,255,0.92); line-height: 1.25; margin-bottom: 0.6rem; }
.form-sidebar__sub { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 2.5rem; }
.form-steps { display: flex; flex-direction: column; }
.form-step-item { display: flex; align-items: flex-start; gap: 1rem; padding: 0.85rem 0; position: relative; }
.form-step-item:not(:last-child)::after { content: ''; position: absolute; left: 13px; top: 2.5rem; bottom: 0; width: 1px; background: rgba(255,255,255,0.08); }
.form-step-item__num { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 600; flex-shrink: 0; position: relative; z-index: 1; transition: all 0.3s; }
.form-step-item__num--active { border: 2px solid var(--blue); background: rgba(41,171,226,0.12); color: var(--blue); }
.form-step-item__num--done   { border: 2px solid var(--green); background: rgba(57,181,74,0.12); color: var(--green); }
.form-step-item__num--todo   { border: 2px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.3); }
.form-step-item__label { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.15rem; padding-top: 3px; }
.form-step-item__desc  { font-size: 0.7rem; font-weight: 300; color: rgba(255,255,255,0.3); }
.form-sidebar__guarantees { margin-top: auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06); }
.form-sidebar__guarantee { display: flex; align-items: center; gap: 0.65rem; font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-bottom: 0.6rem; }
.form-sidebar__guarantee::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); opacity: 0.7; flex-shrink: 0; }
.form-main { padding: 3.5rem 4rem; max-width: 720px; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step__eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.65rem; }
.form-step__title { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--deep); margin-bottom: 0.5rem; }
.form-step__sub   { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.78rem; font-weight: 500; color: var(--deep); margin-bottom: 0.5rem; }
.form-label .optional { color: var(--muted); font-weight: 300; }
.form-hint  { font-size: 0.72rem; color: var(--muted); font-style: italic; margin-bottom: 0.5rem; }
.form-control {
  width: 100%; background: var(--white); border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm); padding: 0.75rem 1rem;
  font-family: var(--sans); font-size: 0.88rem; color: var(--deep);
  outline: none; transition: border-color 0.2s;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(41,171,226,0.1); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
/* Pill options */
.pill-group { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill { padding: 0.5rem 1rem; border: 2px solid rgba(0,0,0,0.1); border-radius: 20px; font-size: 0.78rem; cursor: pointer; background: var(--white); color: var(--muted); transition: all 0.15s; user-select: none; }
.pill:hover  { border-color: var(--blue); color: var(--blue); }
.pill.active { border-color: var(--blue); background: rgba(41,171,226,0.08); color: var(--blue); font-weight: 500; }
/* Card options */
.card-option-group { display: grid; gap: 0.75rem; }
.card-option-group--4 { grid-template-columns: repeat(4,1fr); }
.card-option-group--3 { grid-template-columns: repeat(3,1fr); }
.card-option { border: 2px solid rgba(0,0,0,0.09); border-radius: 10px; padding: 1rem; cursor: pointer; background: var(--white); text-align: center; transition: all 0.15s; }
.card-option:hover  { border-color: var(--blue); }
.card-option.active { border-color: var(--blue); background: rgba(41,171,226,0.05); }
.card-option.active--orange { border-color: var(--orange); background: rgba(247,148,29,0.05); }
.card-option__zh     { font-family: var(--serif); font-size: 1.1rem; opacity: 0.2; line-height: 1; }
.card-option__label  { font-size: 0.82rem; font-weight: 600; color: var(--deep); }
.card-option.active .card-option__label { color: var(--blue); }
.card-option__code   { font-size: 0.68rem; color: var(--muted); }
.card-option__note   { font-size: 0.68rem; color: var(--muted); font-weight: 300; }
.card-option__stars  { color: var(--orange); font-size: 0.85rem; margin-bottom: 0.35rem; }
.card-option__price  { font-size: 0.72rem; color: var(--orange); font-weight: 600; margin-top: 0.4rem; }
/* Toggle */
.toggle-item { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.1rem; background: var(--white); border: 1px solid rgba(0,0,0,0.08); border-radius: 10px; margin-bottom: 0.6rem; cursor: pointer; }
.toggle-item__text-title { font-size: 0.82rem; font-weight: 600; color: var(--deep); margin-bottom: 0.1rem; }
.toggle-item__text-sub   { font-size: 0.72rem; color: var(--muted); }
.toggle-switch { width: 40px; height: 22px; border-radius: 11px; background: rgba(0,0,0,0.1); position: relative; flex-shrink: 0; margin-left: 1rem; transition: background 0.2s; }
.toggle-switch::after { content: ''; position: absolute; width: 16px; height: 16px; background: var(--white); border-radius: 50%; top: 3px; left: 3px; transition: left 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.toggle-item.active .toggle-switch { background: var(--green); }
.toggle-item.active .toggle-switch::after { left: 21px; }
/* Slider */
.slider-wrap { margin-bottom: 0.5rem; }
.slider-val   { display: inline-block; background: var(--blue); color: var(--white); font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.75rem; border-radius: 20px; margin-bottom: 0.5rem; }
input[type=range] { width: 100%; accent-color: var(--blue); }
.slider-marks { display: flex; justify-content: space-between; font-size: 0.68rem; color: var(--muted); margin-top: 0.3rem; }
/* Summary */
.summary-block { background: var(--white); border: 1px solid rgba(0,0,0,0.08); border-radius: 10px; overflow: hidden; margin-bottom: 1rem; }
.summary-block__head { padding: 0.85rem 1.25rem; background: rgba(41,171,226,0.04); border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--deep); }
.summary-block__edit { color: var(--blue); cursor: pointer; font-weight: 500; letter-spacing: 0; text-transform: none; }
.summary-row { display: flex; justify-content: space-between; padding: 0.65rem 1.25rem; border-bottom: 1px solid rgba(0,0,0,0.04); font-size: 0.82rem; }
.summary-row__key { color: var(--muted); font-weight: 300; }
.summary-row__val { color: var(--deep); font-weight: 500; text-align: right; max-width: 60%; }
/* Consent */
.consent-item { display: flex; gap: 0.85rem; align-items: flex-start; margin-bottom: 0.85rem; cursor: pointer; }
.consent-box { width: 20px; height: 20px; border: 2px solid rgba(0,0,0,0.18); border-radius: 5px; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; background: var(--white); transition: all 0.15s; }
.consent-box.checked { border-color: var(--green); background: var(--green); }
.consent-box.checked::after { content: '✓'; color: var(--white); font-size: 0.7rem; font-weight: 700; }
.consent-text { font-size: 0.78rem; color: var(--muted); line-height: 1.65; }
/* Form nav */
.form-nav { display: flex; justify-content: space-between; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
/* Success */
.success-screen { display: none; min-height: 100vh; align-items: center; justify-content: center; background: var(--cream); }
.success-screen.show { display: flex; }
.success-card { text-align: center; max-width: 480px; padding: 2rem; }
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(57,181,74,0.1); border: 2px solid var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; font-size: 2rem; }
.success-card h2 { margin-bottom: 1rem; }
.success-card p  { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 2.5rem; }

/* ── PLAN PAGE ────────────────────────────────────────────────────── */
.plan-topbar { background: var(--deep); color: rgba(255,255,255,0.7); text-align: center; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.55rem 1rem; }
.plan-topbar strong { color: var(--orange); }
.plan-nav { background: var(--white); border-bottom: 1px solid rgba(41,171,226,0.15); padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.plan-hero { background: var(--deep); padding: 4rem 2rem; position: relative; overflow: hidden; }
.plan-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--green), var(--orange)); }
.plan-hero__orb { position: absolute; top: -20%; right: -5%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(41,171,226,0.1) 0%, transparent 70%); pointer-events: none; }
.plan-hero__inner { max-width: 860px; margin: 0 auto; }
.plan-hero__eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
.plan-hero__eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--blue); }
.plan-hero h1 { color: rgba(255,255,255,0.94); margin-bottom: 1rem; }
.plan-hero h1 .gradient { background: linear-gradient(90deg, var(--blue), var(--green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.plan-hero p  { font-size: 0.92rem; color: rgba(255,255,255,0.5); max-width: 540px; line-height: 1.8; margin-bottom: 2.5rem; }
.plan-meta { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.plan-meta__item { }
.plan-meta__key { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.2rem; }
.plan-meta__val { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.plan-body { max-width: 1020px; margin: 0 auto; padding: 3rem 2rem 6rem; display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start; }
/* Itinerary */
.itinerary { position: relative; }
.itinerary::before { content: ''; position: absolute; left: 21px; top: 0; bottom: 0; width: 2px; background: rgba(0,0,0,0.06); border-radius: 1px; }
.itinerary-item { display: grid; grid-template-columns: 44px 1fr; gap: 1.25rem; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.itinerary-item__dot { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; flex-shrink: 0; }
.itinerary-item__card { border-radius: 0 12px 12px 0; padding: 1.1rem 1.35rem; border-left-width: 3px; border-left-style: solid; }
.itinerary-item__type { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.3rem; }
.itinerary-item__title { font-size: 0.9rem; font-weight: 600; color: var(--deep); margin-bottom: 0.35rem; line-height: 1.35; }
.itinerary-item__desc  { font-size: 0.8rem; color: var(--muted); line-height: 1.65; margin-bottom: 0.65rem; }
.itinerary-item__tags  { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.itinerary-item__tag   { font-size: 0.65rem; padding: 2px 8px; border-radius: 20px; font-weight: 500; }
/* FAQ */
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.07); }
.faq-item__q { font-size: 0.88rem; font-weight: 600; color: var(--deep); cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; user-select: none; }
.faq-item__toggle { font-size: 1.2rem; color: var(--blue); transition: transform 0.2s; flex-shrink: 0; margin-left: 1rem; font-weight: 300; }
.faq-item__toggle.open { transform: rotate(45deg); }
.faq-item__a { font-size: 0.82rem; color: var(--muted); line-height: 1.75; padding-bottom: 1rem; display: none; }
/* Plan sidebar */
.plan-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.plan-sidebar__sticky { position: sticky; top: 80px; }
.reserve-alert { background: rgba(247,148,29,0.08); border: 1px solid rgba(247,148,29,0.25); border-radius: 10px; padding: 0.85rem 1rem; display: flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; color: var(--deep); line-height: 1.5; }
/* Review card */
.review-card { background: var(--deep); border: 1px solid rgba(57,181,74,0.3); border-radius: 12px; overflow: hidden; }
.review-card__header { padding: 1rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 0.6rem; }
.review-card__header-icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(57,181,74,0.15); border: 1px solid rgba(57,181,74,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.review-card__header-title { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 0.04em; }
.review-card__header-sub   { font-size: 0.62rem; color: rgba(255,255,255,0.35); font-weight: 300; }
.reviewer-row { padding: 0.85rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.reviewer-row__label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.35rem; }
.reviewer-row__name { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.75); margin-bottom: 0.15rem; }
.reviewer-row__cred { font-size: 0.68rem; color: rgba(255,255,255,0.35); font-weight: 300; margin-bottom: 0.5rem; }
.reviewer-row__note { font-size: 0.65rem; color: rgba(255,255,255,0.25); font-style: italic; line-height: 1.5; margin-top: 0.4rem; }
.grade-pill { display: inline-flex; align-items: center; gap: 0.35rem; border-radius: 20px; padding: 3px 10px; }
.grade-pill__letter { font-family: var(--serif); font-size: 0.95rem; font-weight: 700; }
.grade-pill__text   { font-size: 0.65rem; font-weight: 500; }
.review-card__combined { padding: 1rem 1.25rem; background: rgba(57,181,74,0.06); display: flex; align-items: center; justify-content: space-between; }
.review-card__combined-left .lbl  { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.25rem; }
.review-card__combined-left .grade{ font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--green); line-height: 1; }
.review-card__approved { background: rgba(57,181,74,0.15); border: 1px solid var(--green); border-radius: 8px; padding: 0.4rem 0.85rem; font-size: 0.72rem; font-weight: 700; color: var(--green); }
.review-card__anon { font-size: 0.62rem; color: rgba(255,255,255,0.25); margin-top: 0.3rem; font-weight: 300; text-align: right; }
/* Cost card */
.cost-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.cost-card__head { background: var(--deep); padding: 1.25rem 1.35rem; position: relative; }
.cost-card__head::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--green), var(--orange)); }
.cost-card__eyebrow { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.25rem; }
.cost-card__amount  { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: rgba(255,255,255,0.95); line-height: 1; }
.cost-card__sub     { font-size: 0.68rem; color: rgba(255,255,255,0.4); margin-top: 0.25rem; }
.cost-row { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 1.35rem; border-bottom: 1px solid rgba(0,0,0,0.04); font-size: 0.78rem; }
.cost-row__label { color: var(--muted); font-weight: 300; }
.cost-row__val   { font-weight: 600; font-size: 0.82rem; color: var(--deep); }
.cost-row__val--orange { color: var(--orange); }
.cost-card__note { padding: 0.85rem 1.35rem; font-size: 0.7rem; color: var(--muted); line-height: 1.6; border-top: 1px solid var(--border); }
/* CTA card */
.cta-card { background: var(--deep); border-radius: 12px; padding: 1.5rem 1.35rem; text-align: center; position: relative; overflow: hidden; }
.cta-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--green), var(--orange)); }
.cta-card h3 { font-family: var(--serif); font-size: 1.3rem; color: rgba(255,255,255,0.92); margin-bottom: 0.5rem; line-height: 1.25; }
.cta-card p  { font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 1.25rem; }
.cta-card__amount { background: rgba(247,148,29,0.12); border: 1px solid rgba(247,148,29,0.25); border-radius: 8px; padding: 0.75rem; margin-bottom: 1rem; }
.cta-card__amount strong { display: block; font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--orange); margin-bottom: 2px; }
.cta-card__amount span { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.cta-card__note { font-size: 0.65rem; color: rgba(255,255,255,0.25); margin-top: 1rem; line-height: 1.6; }
/* Guarantees sidebar */
.guarantees-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.1rem 1.35rem; }
.guarantees-card__title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.85rem; }
.guarantees-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.75rem; font-size: 0.75rem; }
.guarantees-item__dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.guarantees-item__title { font-weight: 600; color: var(--deep); margin-bottom: 2px; }
.guarantees-item__body  { color: var(--muted); font-weight: 300; line-height: 1.5; }
/* Plan bottom */
.plan-bottom-cta { background: var(--deep); padding: 4rem 2rem; text-align: center; position: relative; overflow: hidden; }
.plan-bottom-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--green), var(--orange), var(--blue)); }

/* ── MODAL ────────────────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 200; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: 16px; width: 100%; max-width: 480px; overflow: hidden; }
.modal__head { background: var(--deep); padding: 1.5rem 1.75rem; position: relative; }
.modal__head::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--green), var(--orange)); }
.modal__eyebrow { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.35rem; }
.modal__title   { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: rgba(255,255,255,0.92); }
.modal__body    { padding: 1.5rem 1.75rem; }
.modal__row     { display: flex; justify-content: space-between; padding: 0.65rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.84rem; }
.modal__row__key { color: var(--muted); font-weight: 300; }
.modal__row__val { color: var(--deep); font-weight: 600; }
.modal__amount  { background: var(--cream); border-radius: 10px; padding: 1.1rem; margin-top: 1rem; }
.modal__amount__label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.modal__amount__num   { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--deep); margin-bottom: 0.2rem; }
.modal__amount__note  { font-size: 0.72rem; color: var(--muted); line-height: 1.55; }
.modal__footer  { padding: 1rem 1.75rem; border-top: 1px solid var(--border); display: flex; gap: 0.75rem; }

/* ── TOAST ────────────────────────────────────────────────────────── */
.toast { position: fixed; bottom: 1.5rem; right: 1.5rem; background: var(--deep); color: var(--green); border: 1px solid rgba(57,181,74,0.35); padding: 0.75rem 1.25rem; border-radius: 8px; font-size: 0.78rem; font-weight: 600; z-index: 999; display: none; }
.toast.show { display: block; }

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .hero__left { padding: 3rem 2rem; }
  .hero__mobile-stats { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(3,1fr); }
  .steps-grid::before { display: none; }
  .plan-body { grid-template-columns: 1fr; }
  .plan-sidebar__sticky { position: static; }
  .form-layout { grid-template-columns: 1fr; }
  .form-sidebar { display: none; }
  .form-main { padding: 2rem 1.25rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .card-option-group--4 { grid-template-columns: repeat(2,1fr); }
  .card-option-group--3 { grid-template-columns: repeat(2,1fr); }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}
@media (max-width: 580px) {
  .section { padding: 4rem 1.25rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .hero__left { padding: 2.5rem 1.25rem; }
  .card-option-group--4 { grid-template-columns: repeat(2,1fr); }
  .card-option-group--3 { grid-template-columns: 1fr; }
  .plan-meta { gap: 1.25rem; }
  .footer { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}
