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

:root {
  --platinum: #1a1a2e;
  --platinum2: #16213e;
  --gold: #c9a84c;
  --gold2: #e8c96b;
  --gold-light: #fdf8ee;
  --teal: #0f7b8c;
  --teal2: #13a3b8;
  --teal-light: #e5f7fa;
  --ink: #0d1b2a;
  --muted: #5a6a7a;
  --line: #dde6ef;
  --soft: #f6f9fc;
  --white: #fff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1200px, 92vw); margin: 0 auto; }

/* ── TOPBAR ── */
.topbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── LOGO ── */
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.brand-logo-mark {
  width: 48px;
  height: 56px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text-main {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--platinum);
  letter-spacing: -0.3px;
}
.brand-text-main span {
  color: var(--gold);
}
.brand-text-sub {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 3px;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav a:hover, .nav a.active {
  color: var(--platinum);
  background: var(--soft);
}
.nav .cta-nav {
  background: var(--gold);
  color: var(--platinum);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  margin-left: 8px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav .cta-nav:hover {
  background: var(--gold2);
  color: var(--platinum);
  transform: translateY(-1px);
}
.mobile-btn { display: none; cursor: pointer; font-size: 24px; color: var(--platinum); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--platinum);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, var(--platinum) 0%, var(--platinum) 38%, rgba(26,26,46,0.72) 62%, rgba(26,26,46,0.15) 100%);
}
.hero-accent {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  overflow: hidden;
}
.hero-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.32;
  mix-blend-mode: luminosity;
}
.hero-content {
  position: relative;
  z-index: 4;
  padding: 90px 0 100px;
  max-width: 620px;
  color: #fff;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 26px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold2);
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5.2vw, 60px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold2);
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.76);
  max-width: 500px;
  margin-bottom: 38px;
  line-height: 1.68;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--platinum);
  box-shadow: 0 8px 24px rgba(201,168,76,0.38);
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,0.48); }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-platinum {
  background: var(--platinum);
  color: #fff;
  box-shadow: 0 8px 20px rgba(26,26,46,0.25);
}
.btn-platinum:hover { background: var(--platinum2); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--platinum); }
.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 22px rgba(15,123,140,0.3);
}
.btn-teal:hover { background: var(--teal2); transform: translateY(-2px); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 2; }
.trust-item h4 { font-size: 14px; font-weight: 700; color: var(--platinum); margin-bottom: 2px; }
.trust-item p { font-size: 12.5px; color: var(--muted); line-height: 1.4; }

/* ── SECTIONS ── */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-soft { background: var(--soft); }
.section-platinum { background: var(--platinum); color: #fff; }
.section-gold { background: linear-gradient(135deg, var(--platinum), var(--platinum2)); color: #fff; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow-teal { color: var(--teal); }

h2.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  color: var(--platinum);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
h2.section-title.light { color: #fff; }
.section-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.72;
}
.section-lead.light { color: rgba(255,255,255,0.72); }

/* ── SPLIT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-img {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 28px 70px rgba(26,26,46,0.18);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(26,26,46,0.92);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 20px;
  color: #fff;
  font-size: 13.5px;
  border-left: 3px solid var(--gold);
}
.split-img-badge strong { display: block; font-size: 17px; color: var(--gold2); margin-bottom: 3px; }

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
  box-shadow: 0 18px 44px rgba(26,26,46,0.1);
  transform: translateY(-4px);
}
.card-icon {
  width: 54px;
  height: 54px;
  background: var(--gold-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 2; }
.card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--platinum);
  margin-bottom: 12px;
}
.card p { font-size: 14.5px; color: var(--muted); line-height: 1.68; }

/* ── SERVICE CARDS ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 30px 26px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 18px 44px rgba(26,26,46,0.1);
  transform: translateY(-3px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}
.service-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: var(--platinum);
  margin-bottom: 12px;
  font-weight: 700;
}
.service-card p { font-size: 14.5px; color: var(--muted); line-height: 1.68; }

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 44px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  opacity: 0.35;
}
.step { text-align: center; padding: 0 18px; position: relative; }
.step-num {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--platinum2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 16px; font-weight: 700; color: var(--platinum); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.58; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(112deg, var(--platinum), var(--platinum2));
  border-radius: 22px;
  padding: 54px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -70px; right: -70px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.25), transparent 70%);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -50px; left: 30%;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,123,140,0.18), transparent 70%);
}
.cta-band-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}
.cta-band-text p { font-size: 16px; color: rgba(255,255,255,0.65); }

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 16px 40px rgba(26,26,46,0.09);
  transform: translateY(-3px);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: var(--gold-light);
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testimonial-stars span {
  width: 14px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.testimonial-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--platinum);
  font-weight: 700;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--muted);
}

/* ── FAQ ── */
.faq { margin-top: 32px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq details:hover { box-shadow: 0 8px 24px rgba(26,26,46,0.07); }
.faq details[open] { border-color: var(--gold); }
.faq summary {
  font-weight: 600;
  font-size: 16px;
  color: var(--platinum);
  cursor: pointer;
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 16px;
  line-height: 1;
}
details[open] summary::after { content: '\2212'; }
.faq-body {
  padding: 0 26px 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--line);
  margin: 0 26px;
  padding-top: 18px;
}

/* ── FORM ── */
.form-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: start;
}
.form-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 22px 55px rgba(26,26,46,0.09);
}
.form-box h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  color: var(--platinum);
  margin-bottom: 26px;
  font-weight: 700;
}
label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--platinum);
  margin: 20px 0 7px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.input, select, textarea {
  width: 100%;
  padding: 13px 17px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
}
textarea { min-height: 118px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row label { margin-top: 20px; }

/* ── CONSENT ── */
.consent-block {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.consent-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  background: var(--soft);
  transition: border-color 0.2s;
}
.consent-item:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-light);
}
.consent-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
}
.consent-item .consent-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.58;
}
.consent-item .consent-text strong {
  display: block;
  color: var(--platinum);
  font-size: 14px;
  margin-bottom: 4px;
}
.consent-item .consent-text a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── SUCCESS MESSAGE ── */
.success-msg {
  display: none;
  background: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 24px 28px;
  text-align: center;
  margin-top: 18px;
}
.success-msg h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--platinum);
  margin-bottom: 6px;
}
.success-msg p { font-size: 15px; color: var(--muted); }

/* ── SIDE PANEL ── */
.side-panel { position: sticky; top: 104px; }
.side-card {
  background: var(--platinum);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  margin-bottom: 18px;
  border-left: 4px solid var(--gold);
}
.side-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 21px;
  color: #fff;
  margin-bottom: 14px;
  font-weight: 700;
}
.side-card p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.68; margin-bottom: 10px; }
.sms-info-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
}
.sms-info-card h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sms-info-card p { font-size: 13px; color: var(--muted); line-height: 1.62; margin-bottom: 8px; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(132deg, var(--platinum) 0%, var(--platinum2) 55%, var(--teal) 100%);
  padding: 66px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.022'%3E%3Cpath d='M32 0L0 18l32 18 32-18L32 0zM0 46l32 18 32-18-32-18L0 46z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.page-hero p {
  font-size: 17.5px;
  color: rgba(255,255,255,0.74);
  max-width: 660px;
  line-height: 1.68;
}

/* ── PHOTO ROW ── */
.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.photo-cell {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.photo-cell img { width: 100%; height: 100%; object-fit: cover; }

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 52px;
}
.stat-box { background: #fff; padding: 36px 28px; text-align: center; }
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--muted); font-weight: 500; }

/* ── LEGAL ── */
.legal-content { max-width: 840px; }
.legal-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  color: var(--platinum);
  margin: 40px 0 14px;
  font-weight: 700;
}
.legal-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 14px;
}

/* ── FOOTER ── */
.footer {
  background: var(--platinum);
  color: rgba(255,255,255,0.8);
  padding: 68px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.2fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.footer-brand-name span { color: var(--gold); }
.footer-brand-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal2);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.68;
  color: rgba(255,255,255,0.5);
  max-width: 250px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.72;
  margin-bottom: 6px;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
}

/* ── MOBILE MENU ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}
.mobile-nav a {
  padding: 11px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--muted);
  font-size: 15px;
}
.mobile-nav a.cta-nav {
  background: var(--gold);
  color: var(--platinum);
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .nav { display: none; }
  .mobile-btn { display: block; }
  .mobile-nav.open { display: flex; }
  .hero { min-height: auto; }
  .hero-accent { display: none; }
  .hero-overlay { background: linear-gradient(180deg, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.88) 100%); }
  .hero-content { padding: 64px 0; max-width: 100%; }
  .trust-grid, .card-grid, .service-grid, .steps, .photo-row, .stats-row, .split, .testimonial-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: none; }
  .steps::before { display: none; }
  .step { text-align: left; display: flex; align-items: flex-start; gap: 18px; padding: 0; margin-bottom: 22px; }
  .step-num { flex-shrink: 0; width: 48px; height: 48px; font-size: 18px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 40px 30px; }
  .form-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .side-panel { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .form-box { padding: 26px; }
  .cta-band { padding: 30px 22px; }
  .brand-text-main { font-size: 20px; }
  .brand-logo-mark { width: 48px; height: 48px; }
}
