/* ============================================================
   SeniorMatch — Premium Senior Dating
   Design System & Global Styles
   ============================================================ */

:root {
  /* Palette */
  --ivory: #faf6ef;
  --warm-white: #fffdf8;
  --beige: #ede3d3;
  --champagne: #f4e9d7;
  --champagne-deep: #ecdcc0;
  --deep-blue: #1b3a5c;
  --deep-blue-dark: #12294a;
  --deep-blue-soft: #2a4d74;
  --gold: #c2a05e;
  --gold-soft: #d8bf8a;
  --gold-pale: #efe3c8;
  --burgundy: #7a2e3f;
  --burgundy-soft: #94455a;
  --ink: #2e2823;
  --ink-soft: #4c443c;
  --muted: #7a7066;
  --line: #e6dccb;
  --white: #ffffff;

  /* Typography */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;

  /* Shadows */
  --shadow-soft: 0 10px 30px rgba(46, 40, 35, 0.07);
  --shadow-card: 0 18px 45px rgba(46, 40, 35, 0.10);
  --shadow-lift: 0 24px 60px rgba(46, 40, 35, 0.14);

  /* Radii */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  /* Layout */
  --container: 1180px;
  --header-h: 84px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--deep-blue); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--burgundy); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold-pale); color: var(--deep-blue-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.18;
  color: var(--deep-blue-dark);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.12rem; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- Eyebrow / Section headers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
}
.eyebrow.centered::after {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
}

.section { padding: 110px 0; }
.section.tight { padding: 80px 0; }
.section.beige { background: var(--champagne); }
.section.blue { background: var(--deep-blue-dark); color: #eef2f7; }
.section.blue h2, .section.blue h3 { color: #fff; }

.section-head { max-width: 680px; margin-bottom: 60px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}
.section.blue .section-head p { color: #b9c6d6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 36px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .3s cubic-bezier(.2,.7,.3,1.4), box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: var(--deep-blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(27, 58, 92, 0.28);
}
.btn-primary:hover {
  background: var(--deep-blue-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(27, 58, 92, 0.34);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b18a45 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(194, 160, 94, 0.38);
}
.btn-gold:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(194, 160, 94, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--deep-blue);
  color: var(--deep-blue);
}
.btn-outline:hover {
  background: var(--deep-blue);
  color: #fff;
  transform: translateY(-3px);
}

.btn-light {
  background: var(--warm-white);
  color: var(--deep-blue-dark);
  box-shadow: var(--shadow-soft);
}
.btn-light:hover { color: var(--burgundy); transform: translateY(-3px); }

.btn.small { padding: 12px 26px; font-size: .92rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--burgundy);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: gap .25s ease, border-color .25s ease;
}
.link-arrow:hover { gap: 14px; border-color: var(--burgundy); color: var(--burgundy); }
.link-arrow svg { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s ease, box-shadow .35s ease, height .35s ease;
}
.site-header.scrolled {
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(46, 40, 35, 0.08);
  height: 70px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--deep-blue-dark);
}
.brand:hover { color: var(--deep-blue-dark); }
.brand-name { display: inline-flex; gap: 0; }
.brand .heart {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-soft));
  box-shadow: 0 8px 18px rgba(122, 46, 63, 0.3);
}
.brand .heart svg { width: 19px; height: 19px; fill: #fff; }
.brand em { font-style: normal; color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > li { position: relative; }
.main-nav a.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: .96rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 10px;
  transition: color .2s ease, background .2s ease;
}
.main-nav a.nav-link:hover, .main-nav a.nav-link.active { color: var(--burgundy); }
.main-nav a.nav-link .chev { width: 12px; height: 12px; transition: transform .25s ease; }

/* Dropdown */
.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  background: var(--warm-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.has-dropdown:hover .chev { transform: rotate(180deg); }
.dropdown a {
  display: block;
  padding: 11px 14px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 8px;
}
.dropdown a:hover { background: var(--champagne); color: var(--burgundy); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .login-link {
  font-weight: 700;
  font-size: .96rem;
  color: var(--deep-blue);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: none;
  background: var(--warm-white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 4px auto;
  background: var(--deep-blue-dark);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 70px) 0 90px;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(216, 191, 138, 0.35), transparent 60%),
    radial-gradient(700px 420px at -10% 30%, rgba(122, 46, 63, 0.06), transparent 55%),
    linear-gradient(180deg, var(--champagne) 0%, var(--ivory) 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 420px; height: 420px;
  border: 1px solid rgba(194, 160, 94, 0.35);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 24px; }
.hero-copy h1 .accent {
  font-style: italic;
  color: var(--burgundy);
  position: relative;
  white-space: nowrap;
}
.hero-copy h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 12px;
  background: var(--gold-pale);
  z-index: -1;
  border-radius: 4px;
}
.hero-copy .lead {
  font-size: 1.16rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 38px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; }
.hero-trust .trust-item { display: flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.hero-trust svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

.hero-media { position: relative; }
.hero-media .photo-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  transform: rotate(1.5deg);
  border: 8px solid var(--warm-white);
}
.hero-media .photo-frame img { width: 100%; height: 560px; object-fit: cover; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 1.5px solid var(--gold-soft);
  border-radius: var(--radius-xl);
  z-index: -1;
}
.hero-badge {
  position: absolute;
  left: -34px; bottom: 44px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.hero-badge .icon-ring {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-pale);
  flex: none;
}
.hero-badge .icon-ring svg { width: 22px; height: 22px; color: var(--gold); }
.hero-badge strong { display: block; font-size: .98rem; color: var(--deep-blue-dark); }
.hero-badge span { font-size: .82rem; color: var(--muted); line-height: 1.4; display: block; }

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--deep-blue-dark);
  color: var(--gold-soft);
  padding: 18px 0;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.strip-track span {
  display: flex;
  align-items: center;
  gap: 60px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.strip-track i { font-style: normal; color: var(--burgundy-soft); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Feature cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.feature-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 38px 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(230, 220, 203, 0.7);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--burgundy));
  opacity: 0;
  transition: opacity .35s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--champagne);
  margin-bottom: 24px;
  transition: background .3s ease;
}
.feature-card:hover .feature-icon { background: var(--gold-pale); }
.feature-icon svg { width: 28px; height: 28px; color: var(--burgundy); }
.feature-card h3 { margin-bottom: 12px; font-size: 1.28rem; }
.feature-card p { color: var(--muted); font-size: .98rem; line-height: 1.7; }

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse > .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.split-media.arch img { border-radius: 280px 280px var(--radius-lg) var(--radius-lg); }
.split-media .frame-line {
  position: absolute;
  inset: -22px 22px 22px -22px;
  border: 1.5px solid var(--gold-soft);
  border-radius: 300px 300px var(--radius-lg) var(--radius-lg);
  z-index: -1;
}
.split-copy h2 { margin-bottom: 22px; }
.split-copy p { color: var(--ink-soft); margin-bottom: 18px; }
.split-copy .lead-p { font-size: 1.12rem; color: var(--ink); }

.check-list { margin: 28px 0 36px; display: grid; gap: 12px; }
.check-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid rgba(198, 156, 92, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 14px 34px rgba(18, 38, 63, .05);
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.65;
}
.check-list svg {
  width: 24px; height: 24px;
  flex: none;
  color: var(--gold);
  margin-top: 2px;
}
.check-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

/* ---------- Country cards ---------- */
.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.country-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--deep-blue-dark);
  transition: transform .4s ease, box-shadow .4s ease;
}
.country-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.country-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .6s ease;
}
.country-card:hover img { transform: scale(1.06); }
.country-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 60px 26px 24px;
  background: linear-gradient(180deg, transparent, rgba(18, 41, 74, 0.88) 55%);
  color: #fff;
}
.country-body h3 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.country-body p { font-size: .9rem; color: #d5dee9; line-height: 1.55; margin-bottom: 14px; }
.country-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: .04em;
}
.country-link svg { width: 15px; height: 15px; transition: transform .3s ease; }
.country-card:hover .country-link svg { transform: translateX(5px); }

/* ---------- Profile cards ---------- */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.profile-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(230, 220, 203, 0.7);
  transition: transform .35s ease, box-shadow .35s ease;
}
.profile-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.profile-photo { position: relative; height: 300px; overflow: hidden; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.profile-card:hover .profile-photo img { transform: scale(1.05); }
.verified-badge {
  position: absolute;
  top: 16px; right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 253, 248, 0.95);
  color: var(--deep-blue);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(46, 40, 35, 0.15);
}
.verified-badge svg { width: 13px; height: 13px; color: var(--gold); }
.profile-body { padding: 26px 26px 28px; }
.profile-name { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.profile-name h3 { font-size: 1.35rem; }
.profile-name span { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold); font-weight: 600; }
.profile-loc {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 14px;
}
.profile-loc svg { width: 14px; height: 14px; }
.profile-intro { font-size: .95rem; color: var(--ink-soft); line-height: 1.65; margin-bottom: 18px; }
.interest-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.interest-chips span {
  font-size: .78rem;
  font-weight: 700;
  color: var(--burgundy);
  background: #f9eef0;
  padding: 6px 13px;
  border-radius: 999px;
}
.profile-note {
  text-align: center;
  margin-top: 44px;
  color: var(--muted);
  font-size: .95rem;
}

/* ---------- Steps / How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-soft) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.step { position: relative; text-align: center; padding: 0 10px; z-index: 1; }
.step-num {
  width: 88px; height: 88px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 2px solid var(--gold-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--burgundy);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.step-icon {
  position: absolute;
  right: -6px; bottom: -6px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--deep-blue);
  display: grid; place-items: center;
}
.step-icon svg { width: 16px; height: 16px; color: #fff; }
.step h3 { font-size: 1.22rem; margin-bottom: 10px; }
.step p { font-size: .94rem; color: var(--muted); line-height: 1.65; }

/* ---------- Safety ---------- */
.safety-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.safety-list { display: grid; gap: 18px; }
.safety-item {
  display: flex;
  gap: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  transition: background .3s ease, transform .3s ease;
}
.safety-item:hover { background: rgba(255, 255, 255, 0.09); transform: translateX(6px); }
.safety-item .s-icon {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 14px;
  background: rgba(216, 191, 138, 0.16);
  display: grid; place-items: center;
}
.safety-item .s-icon svg { width: 22px; height: 22px; color: var(--gold-soft); }
.safety-item h4 { color: #fff; margin-bottom: 5px; font-size: 1.05rem; }
.safety-item p { font-size: .9rem; color: #b9c6d6; line-height: 1.6; }

/* ---------- Dating App Showcase ---------- */
.app-showcase {
  background: var(--warm-white);
  overflow: hidden;
}
.app-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  gap: 70px;
  align-items: center;
}
.app-showcase-copy {
  max-width: 610px;
}
.app-showcase-copy h2 {
  margin-bottom: 20px;
}
.app-showcase-copy .lead-p {
  max-width: 560px;
}
.app-feature-list {
  display: grid;
  gap: 18px;
  margin: 34px 0;
}
.app-feature {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}
.app-feature strong {
  display: block;
  color: var(--deep-blue-dark);
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.app-feature span {
  display: block;
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.65;
}
.app-showcase-media {
  justify-self: center;
  width: min(100%, 430px);
}
.app-showcase-media img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 38px 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(230, 220, 203, 0.7);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.quote-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--champagne);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.quote-mark svg { width: 20px; height: 20px; color: var(--burgundy); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 26px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-pale);
}
.testimonial-author strong { display: block; font-size: .98rem; color: var(--deep-blue-dark); }
.testimonial-author span { font-size: .84rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-item {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .3s ease;
}
.faq-item.open { box-shadow: var(--shadow-soft); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--deep-blue-dark);
}
.faq-q .faq-icon {
  width: 32px; height: 32px;
  flex: none;
  border-radius: 50%;
  background: var(--champagne);
  display: grid; place-items: center;
  transition: transform .3s ease, background .3s ease;
}
.faq-q .faq-icon svg { width: 14px; height: 14px; color: var(--burgundy); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold-pale); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-a-inner {
  padding: 0 26px 24px;
  color: var(--ink-soft);
  font-size: .97rem;
  line-height: 1.75;
}

/* ---------- CTA ---------- */
.cta-panel {
  position: relative;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(600px 400px at 90% 10%, rgba(255,255,255,.5), transparent 60%),
    linear-gradient(135deg, var(--champagne) 0%, var(--champagne-deep) 55%, var(--gold-pale) 100%);
  padding: 80px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.cta-panel::before {
  content: "";
  position: absolute;
  left: -90px; bottom: -90px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1.5px solid rgba(194, 160, 94, 0.45);
}
.cta-copy h2 { margin-bottom: 18px; }
.cta-copy p { color: var(--ink-soft); font-size: 1.1rem; max-width: 480px; margin-bottom: 34px; }
.cta-copy .hero-ctas { margin-bottom: 0; }
.cta-media { position: relative; }
.cta-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 230px 230px var(--radius-lg) var(--radius-lg);
  border: 8px solid rgba(255, 253, 248, 0.8);
  box-shadow: var(--shadow-card);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--deep-blue-dark);
  color: #b9c6d6;
  padding: 90px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-brand .brand { color: #fff; margin-bottom: 20px; }
.footer-brand p { font-size: .95rem; line-height: 1.7; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid; place-items: center;
  transition: background .3s ease, transform .3s ease;
}
.footer-social a:hover { background: var(--gold); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .95rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 22px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: #b9c6d6; font-size: .95rem; transition: color .2s ease, padding-left .2s ease; }
.footer-col a:hover { color: var(--gold-soft); padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .88rem;
}
.footer-bottom .legal-links { display: flex; gap: 24px; }

/* ---------- Inner page hero ---------- */
.page-hero {
  padding: calc(var(--header-h) + 70px) 0 70px;
  background:
    radial-gradient(700px 400px at 90% -10%, rgba(216, 191, 138, 0.35), transparent 60%),
    linear-gradient(180deg, var(--champagne) 0%, var(--ivory) 100%);
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 22px;
}
.page-hero .breadcrumb a { color: var(--burgundy); }
.page-hero .breadcrumb svg { width: 12px; height: 12px; }
.page-hero h1 { font-size: clamp(2.3rem, 4.4vw, 3.4rem); max-width: 780px; }
.page-hero .page-intro {
  margin-top: 22px;
  font-size: 1.14rem;
  color: var(--ink-soft);
  max-width: 640px;
}
.page-hero .article,
.page-hero .faq-hero-inner {
  padding-left: 0;
  padding-right: 0;
}
.page-hero .faq-hero-inner {
  max-width: 780px;
  margin-inline: auto;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.page-hero-grid .hero-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 8px solid var(--warm-white);
}

/* ---------- Article / prose ---------- */
.article { max-width: 820px; margin-inline: auto; }
.article.wide { max-width: 1000px; }
.article h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 56px 0 20px;
}
.article h3 { margin: 36px 0 14px; font-size: 1.3rem; }
.article p { margin-bottom: 18px; color: var(--ink-soft); }
.article ul.bullets { margin: 0 0 22px 4px; display: grid; gap: 10px; }
.article ul.bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}
.article ul.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
}
.article ol.numbers { margin: 0 0 22px; padding-left: 24px; display: grid; gap: 10px; }
.article ol.numbers li { color: var(--ink-soft); padding-left: 6px; }
.article strong { color: var(--deep-blue-dark); }
.article a { color: var(--burgundy); font-weight: 600; border-bottom: 1px solid var(--gold-soft); }
.article a:hover { border-color: var(--burgundy); }

.article-hero-img {
  margin: 0 0 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.article-hero-img img { width: 100%; height: 420px; object-fit: cover; }

.pull-quote {
  margin: 44px 0;
  padding: 36px 40px;
  background: var(--warm-white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--deep-blue-dark);
  line-height: 1.6;
}

.tip-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 34px 0; }
.tip-card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.tip-card .tip-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 14px;
}
.tip-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.tip-card p { font-size: .94rem; margin: 0; color: var(--muted); }

.inline-cta {
  margin: 60px 0 0;
  background: linear-gradient(135deg, var(--champagne), var(--gold-pale));
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.inline-cta h2 { margin: 0 0 14px; font-size: clamp(1.6rem, 3vw, 2.1rem); }
.inline-cta p { max-width: 520px; margin: 0 auto 28px; color: var(--ink-soft); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  padding: 50px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--deep-blue-dark);
  margin-bottom: 9px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(194, 160, 94, 0.15);
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #c0392b; background: #fdf3f2; }
.field-error {
  display: none;
  font-size: .82rem;
  color: #c0392b;
  font-weight: 600;
  margin-top: 7px;
}
.form-group.error .field-error { display: block; }
.form-success {
  display: none;
  background: #eef7ee;
  border: 1px solid #b7dcbf;
  color: #2d6a3e;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-weight: 600;
  margin-bottom: 22px;
}
.form-success.show { display: block; }

.checkbox-row { display: flex; align-items: center; gap: 10px; font-size: .93rem; color: var(--ink-soft); }
.checkbox-row input { width: 18px; height: 18px; accent-color: var(--burgundy); }

/* ---------- Login ---------- */
.login-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.login-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: var(--ivory);
}
.login-form-box { width: min(440px, 100%); }
.login-form-box .brand { margin-bottom: 40px; }
.login-form-box h1 { font-size: 2.2rem; margin-bottom: 12px; }
.login-form-box .sub { color: var(--muted); margin-bottom: 36px; }
.login-alt { margin-top: 28px; text-align: center; font-size: .95rem; color: var(--muted); }
.login-alt a { font-weight: 700; color: var(--burgundy); }
.forgot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0 26px;
  font-size: .9rem;
}
.forgot-row a { font-weight: 600; }
.login-photo-side { position: relative; overflow: hidden; }
.login-photo-side img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.login-photo-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(18, 41, 74, 0.05), rgba(18, 41, 74, 0.45));
}
.login-photo-caption {
  position: absolute;
  left: 50px; bottom: 50px; right: 50px;
  z-index: 2;
  color: #fff;
}
.login-photo-caption h2 { color: #fff; font-size: 1.9rem; margin-bottom: 10px; }
.login-photo-caption p { color: #dbe4ee; font-size: 1rem; max-width: 420px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--deep-blue-dark);
  color: #dbe4ee;
  border-radius: var(--radius-lg);
  padding: 46px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::after {
  content: "";
  position: absolute;
  right: -70px; top: -70px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1.5px solid rgba(216, 191, 138, 0.3);
}
.contact-info-card h3 { color: #fff; margin-bottom: 12px; font-size: 1.4rem; }
.contact-info-card > p { font-size: .96rem; color: #b9c6d6; margin-bottom: 34px; }
.contact-line { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-line .c-icon {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 12px;
  background: rgba(216, 191, 138, 0.16);
  display: grid; place-items: center;
}
.contact-line .c-icon svg { width: 20px; height: 20px; color: var(--gold-soft); }
.contact-line strong { display: block; color: #fff; font-size: .95rem; margin-bottom: 3px; }
.contact-line span { font-size: .92rem; color: #b9c6d6; }

/* ---------- Info chips band (stats) ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
}
.stat .stat-label { font-size: .92rem; color: var(--ink-soft); font-weight: 600; margin-top: 8px; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .strip-track { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .country-grid, .profile-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 44px 26px; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-panel { grid-template-columns: 1fr; padding: 60px; }
  .cta-media img { height: 340px; }
}

@media (max-width: 920px) {
  .hero-inner, .split, .safety-wrap, .app-showcase-grid, .page-hero-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .split.reverse > .split-media { order: 0; }
  .app-showcase-media { width: min(100%, 360px); }
  .hero-media .photo-frame img { height: 440px; }
  .hero-badge { left: 12px; }
  .login-wrap { grid-template-columns: 1fr; }
  .login-photo-side { display: none; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 36px; }

  /* Mobile nav */
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    padding: 100px 34px 40px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.2,.7,.3,1);
    z-index: 105;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a.nav-link { font-size: 1.2rem; padding: 14px 10px; }
  .has-dropdown .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: var(--champagne);
    margin: 4px 0 8px 12px;
    display: none;
  }
  .has-dropdown.expanded .dropdown { display: block; }
  .header-actions .btn { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 80px 0; }
  .feature-grid, .country-grid, .profile-grid, .testimonial-grid, .steps, .form-row, .tip-card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-panel { padding: 44px 28px; }
  .app-showcase-media { width: min(100%, 300px); }
  .form-card { padding: 34px 24px; }
  .hero-ctas .btn { width: 100%; }
  .hero { padding-top: calc(var(--header-h) + 40px); }
  .footer-bottom { justify-content: center; text-align: center; }
  .header-actions { gap: 8px; }
  .header-actions .login-link { font-size: .88rem; }
}
