/* ══════════════════════════════════════════════════════════
   AtlantaBride.com — Premium Brand Identity v3
   ══════════════════════════════════════════════════════════ */

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

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

:root {
  --ink:       #05101f;
  --ink2:      #0c1a30;
  --ink3:      #152440;
  --red:       #c8203a;
  --red-d:     #a01a2e;
  --red-g:     linear-gradient(135deg, #c8203a 0%, #9e1830 100%);
  --gold:      #c99234;
  --gold-d:    #a3741f;
  --gold-g:    linear-gradient(135deg, #d4a843 0%, #a3741f 100%);
  --white:     #ffffff;
  --offwhite:  #f8fafc;
  --surface:   #f1f4f8;
  --border:    #e3e8ef;
  --text:      #0d1b2e;
  --muted:     #5b6f85;
  --muted2:    #94a3b8;

  --font:      'Outfit', system-ui, sans-serif;
  --r4:        4px;
  --r8:        8px;
  --r12:       12px;
  --r20:       20px;
  --ease:      cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px; color: var(--text);
  background: var(--offwhite); line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--red); text-decoration: none; transition: color .15s; }
a:hover { color: var(--red-d); }
img { max-width: 100%; display: block; }

/* ── HEADER ─────────────────────────────────────────────── */
header {
  background: var(--white);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  position: sticky; top: 0; z-index: 300;
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(12,26,46,.08);
}

.header-logo {
  height: 62px; width: auto; display: block;
  transition: opacity .15s;
}
.header-logo:hover { opacity: .8; }

/* Text logo fallback */
.logo {
  font-family: var(--font); font-size: 1.5rem; font-weight: 900;
  color: var(--white); letter-spacing: -.05em; text-decoration: none;
}
.logo span { color: var(--gold); }

nav { display: flex; align-items: center; gap: 2px; }
nav a {
  color: var(--muted); font-size: .875rem; font-weight: 600;
  padding: 8px 14px; border-radius: var(--r8);
  transition: color .15s, background .15s;
}
nav a:hover { color: var(--ink); background: var(--surface); text-decoration: none; }
nav a.nav-cta {
  background: var(--red-g); color: var(--white); padding: 9px 22px;
  font-weight: 700; margin-left: 10px; border-radius: var(--r8);
  box-shadow: 0 4px 14px rgba(200,32,58,.45);
  transition: opacity .15s, transform .15s, box-shadow .15s;
}
nav a.nav-cta:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,32,58,.55); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  background: var(--ink);
  padding: 104px 28px 96px;
  text-align: center;
  position: relative; overflow: hidden;
}

/* Layered background effect */
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 70% at 10% 60%, rgba(200,32,58,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 55% at 90% 30%, rgba(201,146,52,.12) 0%, transparent 55%),
    radial-gradient(ellipse 100% 50% at 50% 110%, rgba(5,16,31,.95) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,146,52,.1);
  border: 1px solid rgba(201,146,52,.3);
  color: var(--gold); font-size: .72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 8px 20px; border-radius: 100px; margin-bottom: 36px;
}
.hero-badge::before { content: '▶'; font-size: .55rem; color: var(--red); }

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white); max-width: 880px; margin: 0 auto 24px;
  font-weight: 900; letter-spacing: -.04em; line-height: 1.12;
}
.hero h1 em { 
  color: transparent;
  background: linear-gradient(90deg, var(--gold) 0%, #e8c060 50%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  font-style: normal;
}
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,.5);
  max-width: 560px; margin: 0 auto 52px; font-weight: 400; line-height: 1.75;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-img {
  display: block; width: 100%; max-width: 860px;
  margin: 56px auto 0; border-radius: var(--r20);
  box-shadow: 0 0 0 1px rgba(255,255,255,.07), 0 32px 100px rgba(0,0,0,.6);
}

/* ── TRUST STRIP ────────────────────────────────────────── */
.trust-strip {
  background: var(--ink2);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 0;
}
.trust-strip-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,.07);
}
.trust-item {
  padding: 28px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,.03); }
.trust-num {
  font-size: 2rem; font-weight: 900; color: var(--white);
  letter-spacing: -.04em; line-height: 1;
  background: var(--red-g); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.trust-label {
  font-size: .78rem; color: rgba(255,255,255,.4);
  margin-top: 6px; font-weight: 500; letter-spacing: .5px;
  text-transform: uppercase;
}

/* ── NOTICE ─────────────────────────────────────────────── */
.notice {
  background: #fffbf0; border-bottom: 1px solid #f0de9a;
  padding: 10px 28px; font-size: .8rem; color: #7a620a;
  text-align: center; font-weight: 500;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: .95rem; font-weight: 700;
  padding: 14px 32px; border-radius: var(--r8);
  border: none; cursor: pointer; letter-spacing: .15px;
  transition: all .2s var(--ease); position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red-g); color: var(--white);
  box-shadow: 0 4px 20px rgba(200,32,58,.35), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,32,58,.5), inset 0 1px 0 rgba(255,255,255,.15);
  color: var(--white); text-decoration: none;
}
/* Default .btn = primary */
.btn { background: var(--red-g); color: var(--white); box-shadow: 0 4px 20px rgba(200,32,58,.35), inset 0 1px 0 rgba(255,255,255,.15); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,32,58,.5); color: var(--white); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,.08); color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,.15); color: var(--white); text-decoration: none; transform: none; box-shadow: none; }

.btn-gold {
  background: var(--gold-g); color: var(--white);
  box-shadow: 0 4px 20px rgba(201,146,52,.35), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,146,52,.5); color: var(--white); text-decoration: none; }

.btn-outline {
  background: transparent; color: var(--red);
  border: 2px solid var(--red); box-shadow: none;
}
.btn-outline:hover { background: var(--red); color: var(--white); transform: none; text-decoration: none; }

.btn-teal { background: var(--gold-g); color: var(--white); box-shadow: 0 4px 20px rgba(201,146,52,.3); }
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,146,52,.45); color: var(--white); text-decoration: none; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; background: var(--offwhite); }
.section-alt { background: var(--white); }

/* ── TAG LABELS ─────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,32,58,.08); color: var(--red);
  font-size: .68rem; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: 100px; margin-bottom: 18px;
  border: 1px solid rgba(200,32,58,.15);
}
.tag-gold {
  background: rgba(201,146,52,.1); color: var(--gold-d);
  border-color: rgba(201,146,52,.2);
}

/* ── SECTION TITLES ─────────────────────────────────────── */
h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.65rem); color: var(--text);
  font-weight: 800; margin-bottom: 14px; line-height: 1.18;
  letter-spacing: -.03em;
}
h3 { font-size: 1.12rem; font-weight: 700; color: var(--text); margin-bottom: 10px; letter-spacing: -.01em; }
h4 { font-size: .97rem; font-weight: 700; color: var(--text); }
.lead {
  font-size: 1.05rem; color: var(--muted); max-width: 680px;
  margin-bottom: 52px; font-weight: 400; line-height: 1.78;
}

/* ── INSIGHT ────────────────────────────────────────────── */
.insight {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white);
  border: 1px solid var(--border); border-left: 4px solid var(--gold);
  border-radius: 0 var(--r12) var(--r12) 0;
  padding: 20px 24px; margin-top: 40px;
  font-size: .93rem; color: var(--text);
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
}
.insight::before { content: '💡'; font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.insight strong { color: var(--gold-d); }

/* ── PLATFORM CARDS ─────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 48px; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r12);
  padding: 28px 26px;
  box-shadow: 0 2px 12px rgba(13,27,46,.06);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s;
  position: relative; overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red-g);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,27,46,.12); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card-logo { font-size: 1.45rem; font-weight: 900; margin-bottom: 10px; line-height: 1.2; }
.card-price {
  display: inline-flex; align-items: center;
  background: rgba(200,32,58,.07); color: var(--red);
  font-size: .73rem; font-weight: 800; padding: 4px 12px;
  border-radius: 100px; margin-bottom: 14px;
  border: 1px solid rgba(200,32,58,.12); letter-spacing: .3px;
}
.card h3 { font-size: .97rem; margin-bottom: 9px; }
.card p { font-size: .88rem; color: var(--muted); line-height: 1.68; }

/* ── ADVANTAGES ─────────────────────────────────────────── */
.adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); gap: 22px; margin-top: 52px; }
.adv {
  background: var(--white); border-radius: var(--r12); padding: 30px 26px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(13,27,46,.05);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.adv:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,27,46,.1); }
.adv-num {
  width: 48px; height: 48px;
  background: var(--red-g); color: var(--white);
  border-radius: var(--r8); display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 900; margin-bottom: 22px;
  box-shadow: 0 6px 16px rgba(200,32,58,.35);
}
.adv h4 { font-size: 1rem; margin-bottom: 8px; }
.adv p { font-size: .88rem; color: var(--muted); line-height: 1.68; }

/* ── PACKAGES ───────────────────────────────────────────── */
.pkgs { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 56px; }
.pkg {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--r20); padding: 40px 30px; text-align: center;
  position: relative;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pkg:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(200,32,58,.12); }
.pkg.popular {
  border-color: var(--red);
  background: linear-gradient(160deg, #fff 70%, rgba(200,32,58,.03) 100%);
  box-shadow: 0 12px 50px rgba(200,32,58,.16);
}
.pop-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--red-g); color: var(--white);
  font-size: .67rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 20px; border-radius: 100px;
  box-shadow: 0 4px 16px rgba(200,32,58,.45);
  white-space: nowrap;
}
.pkg-name { font-size: .85rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; }
.pkg-price {
  font-size: 3rem; font-weight: 900; color: var(--text);
  line-height: 1; margin: 16px 0 4px;
  letter-spacing: -.05em; font-variant-numeric: tabular-nums;
}
.pkg.popular .pkg-price { color: var(--red); }
.pkg-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; font-weight: 700; }
.pkg-price sub { font-size: .75rem; font-weight: 500; color: var(--muted); letter-spacing: 0; vertical-align: baseline; }
.pkg-period { font-size: .78rem; color: var(--muted); margin-bottom: 28px; font-weight: 500; }
.pkg ul { list-style: none; text-align: left; margin-bottom: 30px; }
.pkg ul li {
  font-size: .87rem; color: var(--muted); padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 10px; align-items: flex-start; line-height: 1.5;
}
.pkg ul li::before { content: "✓"; color: var(--gold-d); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.pkg ul li.cross { opacity: .45; }
.pkg ul li.cross::before { content: "–"; color: var(--muted2); }

/* ── BENEFITS ───────────────────────────────────────────── */
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 18px; margin-top: 44px; }
.benefit {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r12); padding: 22px 24px;
  box-shadow: 0 2px 8px rgba(13,27,46,.04);
  transition: transform .2s, box-shadow .2s;
}
.benefit:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(13,27,46,.09); }
.benefit-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(201,146,52,.12), rgba(201,146,52,.05));
  border-radius: var(--r8);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  border: 1px solid rgba(201,146,52,.15);
}
.benefit strong { display: block; margin-bottom: 5px; font-size: .95rem; }
.benefit p { font-size: .85rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq { margin-top: 48px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r12); margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(13,27,46,.08); }
.faq-item.open { box-shadow: 0 4px 20px rgba(13,27,46,.1); border-color: rgba(200,32,58,.2); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 24px; font-family: var(--font);
  font-size: .97rem; font-weight: 600; color: var(--text); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color .15s;
}
.faq-q:hover { color: var(--red); }
.faq-icon {
  flex-shrink: 0; width: 32px; height: 32px;
  background: var(--surface); border-radius: var(--r8);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1.1rem; font-weight: 300;
  transition: transform .28s var(--ease), background .2s, color .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--red-g); color: var(--white); }
.faq-a {
  font-size: .93rem; color: var(--muted); max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease), padding .3s;
  padding: 0 24px; line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 360px; padding: 0 24px 24px; }

/* ── CONTACT FORM ───────────────────────────────────────── */
.form-section {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink2) 60%, var(--ink3) 100%);
  padding: 104px 0; position: relative; overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(200,32,58,.12) 0%, transparent 55%);
}

.form-box {
  background: var(--white); border-radius: var(--r20); padding: 56px 56px;
  box-shadow: 0 32px 100px rgba(0,0,0,.35); max-width: 640px; margin: 0 auto;
  position: relative; z-index: 1;
  border: 1px solid rgba(255,255,255,.1);
}
.form-box h2 { margin-bottom: 6px; }
.form-box .lead { margin-bottom: 36px; font-size: .97rem; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.fg label {
  font-size: .75rem; font-weight: 800; color: var(--text);
  letter-spacing: 1.2px; text-transform: uppercase;
}
.fg input, .fg select, .fg textarea {
  border: 1.5px solid var(--border); border-radius: var(--r8);
  padding: 13px 16px; font-size: .95rem; font-family: var(--font);
  color: var(--text); background: var(--offwhite);
  transition: border-color .18s, box-shadow .18s, background .18s;
  outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--red); background: var(--white);
  box-shadow: 0 0 0 4px rgba(200,32,58,.09);
}
.fg textarea { resize: vertical; min-height: 100px; }
.chk { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 28px; font-size: .84rem; color: var(--muted); line-height: 1.6; }
.chk input { margin-top: 3px; accent-color: var(--red); width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; }
.form-box .btn { width: 100%; font-size: 1.05rem; padding: 17px; letter-spacing: .3px; }
.field-error { border-color: var(--red) !important; box-shadow: 0 0 0 4px rgba(200,32,58,.1) !important; }
.error-msg { color: var(--red); font-size: .76rem; margin-top: 5px; display: none; font-weight: 600; }
.error-msg.show { display: block; }
.form-success { display: none; text-align: center; padding: 56px 24px; }
.form-success .success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(201,146,52,.12), rgba(201,146,52,.04));
  border: 2px solid rgba(201,146,52,.4);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; margin: 0 auto 28px;
}
.form-success h3 { font-size: 1.65rem; margin-bottom: 12px; color: var(--text); }
.form-success p { color: var(--muted); font-size: .97rem; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.4);
  padding: 72px 32px 44px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.ft-grid {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 48px;
  max-width: 1100px; margin: 0 auto 56px;
}
.ft-brand .logo { font-size: 1.3rem; }
.ft-brand-logo { height: 44px; width: auto; margin-bottom: 16px; opacity: .85; }
.ft-brand p { font-size: .84rem; line-height: 1.75; color: rgba(255,255,255,.32); }
.ft-col h4 {
  color: var(--white); font-size: .72rem; margin-bottom: 20px;
  font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  opacity: .6;
}
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ft-col ul li a { color: rgba(255,255,255,.38); font-size: .84rem; transition: color .15s; }
.ft-col ul li a:hover { color: var(--gold); text-decoration: none; }
.ft-col p { font-size: .84rem; line-height: 1.75; color: rgba(255,255,255,.3); }
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px;
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: space-between; align-items: center;
}
.ft-bottom p { font-size: .76rem; color: rgba(255,255,255,.22); }
.ft-links { display: flex; gap: 22px; flex-wrap: wrap; }
.ft-links a { font-size: .76rem; color: rgba(255,255,255,.28); transition: color .15s; }
.ft-links a:hover { color: var(--gold); text-decoration: none; }
.ft-disc {
  max-width: 1100px; margin: 28px auto 0;
  font-size: .72rem; color: rgba(255,255,255,.18); line-height: 1.75;
}
.ft-company {
  max-width: 1100px; margin: 22px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .8rem; color: rgba(255,255,255,.28); line-height: 2.1;
}
.ft-company strong { color: rgba(255,255,255,.5); font-weight: 700; }
.ft-company a { color: rgba(255,255,255,.35); }
.ft-company a:hover { color: var(--gold); text-decoration: none; }

/* ── MODALS ─────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(5,16,31,.78); backdrop-filter: blur(8px);
  align-items: flex-start; justify-content: center;
  padding: 32px 16px; overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--r20); padding: 48px 52px;
  max-width: 720px; width: 100%; position: relative; margin: auto;
  box-shadow: 0 40px 120px rgba(0,0,0,.45);
  animation: modalIn .22s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: var(--surface); border: none; cursor: pointer;
  width: 34px; height: 34px; border-radius: var(--r8);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--muted);
  transition: background .15s, color .15s;
}
.modal-close:hover { background: var(--red); color: var(--white); }
.modal h2 { font-size: 1.6rem; margin-bottom: 6px; color: var(--text); }
.modal .modal-sub {
  font-size: .8rem; color: var(--muted); margin-bottom: 28px;
  padding-bottom: 22px; border-bottom: 1px solid var(--border);
  font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
}
.modal h3 { font-size: .82rem; font-weight: 800; color: var(--text); margin: 22px 0 7px; text-transform: uppercase; letter-spacing: 1px; }
.modal p  { font-size: .9rem; color: var(--muted); line-height: 1.75; margin-bottom: 10px; }
.modal ul { padding-left: 18px; margin-bottom: 12px; }
.modal ul li { font-size: .9rem; color: var(--muted); line-height: 1.75; margin-bottom: 5px; }
.modal-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.modal-contact-item {
  background: var(--offwhite); border-radius: var(--r12); padding: 18px 20px;
  border: 1px solid var(--border);
}
.modal-contact-item strong {
  display: block; font-size: .68rem; color: var(--red); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 1.2px; font-weight: 800;
}
.modal-contact-item span { font-size: .88rem; color: var(--text); line-height: 1.55; }
.modal-contact-item a { color: var(--text); }
.modal-contact-item a:hover { color: var(--red); }

/* ── COOKIE BAR ─────────────────────────────────────────── */
.cookie-bar {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 40px); max-width: 900px;
  background: rgba(12,26,48,.97);
  border: 1px solid rgba(201,146,52,.2);
  border-radius: var(--r12);
  box-shadow: 0 20px 70px rgba(0,0,0,.6);
  backdrop-filter: blur(16px);
  color: rgba(255,255,255,.65);
  font-size: .91rem; padding: 22px 28px;
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  justify-content: space-between; z-index: 9999;
}
.cookie-bar .cb-icon { font-size: 1.6rem; flex-shrink: 0; }
.cookie-bar .cb-text { flex: 1; min-width: 200px; }
.cookie-bar .cb-text strong { display: block; color: var(--white); font-size: .97rem; margin-bottom: 4px; font-weight: 700; }
.cookie-bar .cb-text a { color: var(--gold); }
.cookie-bar .cb-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cb-btn {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7); padding: 10px 20px; border-radius: var(--r8);
  font-size: .86rem; font-family: var(--font); cursor: pointer; font-weight: 600;
  transition: all .15s;
}
.cb-btn:hover { border-color: rgba(255,255,255,.4); color: var(--white); }
.cb-btn.accept {
  background: var(--red-g); border-color: transparent; color: var(--white); font-weight: 700;
  box-shadow: 0 4px 14px rgba(200,32,58,.4);
}
.cb-btn.accept:hover { box-shadow: 0 6px 20px rgba(200,32,58,.55); }

/* ── MOBILE NAV ─────────────────────────────────────────── */
.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  background: var(--ink2);
  position: fixed; top: 72px; left: 0; right: 0;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  z-index: 199; padding-bottom: 16px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.65); font-size: .97rem; font-weight: 500;
  padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .15s, color .15s;
}
.mobile-nav a:hover { background: rgba(255,255,255,.05); color: var(--white); text-decoration: none; }
.mobile-nav a.nav-cta {
  display: block; margin: 14px 20px 4px; padding: 14px 24px;
  background: var(--red-g); color: var(--white);
  border-radius: var(--r8); text-align: center; font-weight: 700;
  border-bottom: none; box-shadow: 0 4px 14px rgba(200,32,58,.4);
}
.nav-overlay {
  display: none; position: fixed; inset: 0; top: 72px;
  background: rgba(0,0,0,.6); z-index: 198;
}
.nav-overlay.open { display: block; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .ft-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .pkgs { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  header { padding: 0 18px; height: 70px; }
  nav { display: none; }
  .burger { display: flex; }
  .mobile-nav { top: 70px; }
  .nav-overlay { top: 70px; }

  .hero { padding: 64px 18px 60px; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .hero-sub { font-size: .97rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 320px; }

  .section { padding: 56px 0; }
  .wrap { padding: 0 18px; }
  h2 { font-size: 1.6rem; }
  .lead { font-size: .95rem; margin-bottom: 30px; }

  .cards { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; gap: 14px; }
  .pkgs { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .ft-grid { grid-template-columns: 1fr; gap: 28px; }
  .ft-bottom { flex-direction: column; text-align: center; }
  .ft-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .form-section { padding: 60px 0; }
  .form-box { padding: 34px 20px; margin: 0 14px; border-radius: var(--r12); }
  .modal { padding: 32px 22px; }
  .modal-contact-grid { grid-template-columns: 1fr; }
  .cookie-bar { padding: 18px 16px; flex-direction: column; gap: 12px; text-align: center; }
  .cookie-bar .cb-icon { display: none; }
  .cookie-bar .cb-btns { width: 100%; }
  .cb-btn { flex: 1; text-align: center; }
  body { padding-bottom: 220px; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 1.55rem; }
  .pkg-price { font-size: 2.4rem; }
}
