/* ============================================================
   THE KAHZA EXPERIENCE — Design System
   ============================================================ */

/* Google Fonts imported in each HTML <head> */

:root {
  --navy:       #0D1B2A;
  --navy-light: #162436;
  --cream:      #F8F4EF;
  --cream-dark: #EDE8E1;
  --gold:       #C9A84C;
  --gold-light: #D4AF6A;
  --gold-dark:  #A8872E;
  --white:      #FFFFFF;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-600:   #6B7280;
  --gray-900:   #1A1A1A;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-label: 'Montserrat', sans-serif;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.15);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.3s ease;
  --max-w:      1200px;
  --nav-h:      72px;
}

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

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { line-height: 1.75; color: var(--gray-600); }

.label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Layout ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section--dark  { background: var(--navy); color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.7); }
.section--cream { background: var(--cream); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header .label { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,168,76,.4); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-outline-dark {
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 17px 36px; font-size: 0.8rem; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav.nav--light {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.nav.nav--light.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-mark {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.nav--light .nav__logo-text { color: var(--navy); }
.nav__logo-sub {
  font-family: var(--font-label);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.nav--light .nav__links a { color: var(--gray-600); }
.nav__links a:hover,
.nav__links a.active { color: var(--gold); }
.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
}
.nav__cta { margin-left: 12px; }

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav--light .nav__hamburger span { background: var(--navy); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--gold); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.5) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero__label { margin-bottom: 20px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Inner page hero (shorter) */
.hero--inner {
  min-height: 52vh;
  align-items: flex-end;
  padding-bottom: 72px;
}
.hero--inner h1 { font-size: clamp(2rem, 4vw, 3.2rem); }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--navy);
  padding: 36px 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-bar__item {}
.trust-bar__number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-bar__label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card__body { padding: 24px; }
.card__tag {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.card__body h3 { margin-bottom: 10px; color: var(--navy); }
.card__body p  { font-size: 0.9rem; }

/* Service icon card */
.service-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 8px 32px rgba(201,168,76,.12);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg { width: 26px; height: 26px; stroke: var(--gold); }
.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p  { font-size: 0.92rem; }

/* ── Grid layouts ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Split (image + text) ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.split__content .label { margin-bottom: 14px; }
.split__content h2 { margin-bottom: 20px; }
.split__content p  { margin-bottom: 16px; }

/* USP list */
.usp-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.usp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-600);
}
.usp-list li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── Testimonials ── */
.testimonial {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  border-left: 3px solid var(--gold);
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
}
.testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.testimonial__role {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-family: var(--font-label);
  letter-spacing: 0.05em;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'K';
  position: absolute;
  font-family: var(--font-serif);
  font-size: 40vw;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  line-height: 1;
}
.cta-banner .label { margin-bottom: 16px; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto 40px; }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  background: #080F17;
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand p { font-size: 0.9rem; margin: 16px 0 24px; max-width: 260px; }
.footer__socials { display: flex; gap: 12px; }
.footer__social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer__social-link:hover { border-color: var(--gold); background: rgba(201,168,76,.1); }
.footer__social-link svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); }
.footer__social-link:hover svg { stroke: var(--gold); }

.footer__col h4 {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--gold); }

.footer__contact p { font-size: 0.88rem; margin-bottom: 10px; }
.footer__contact a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer__contact a:hover { color: var(--gold); }

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer__bottom-links a:hover { color: var(--gold); }

/* ── Pricing Table ── */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pricing-table thead { background: var(--navy); color: var(--white); }
.pricing-table thead th {
  padding: 16px 24px;
  text-align: left;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}
.pricing-table thead th:first-child { color: var(--gold); }
.pricing-table tbody tr { border-bottom: 1px solid var(--gray-200); }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:nth-child(even) { background: var(--cream); }
.pricing-table tbody td {
  padding: 18px 24px;
  font-size: 0.93rem;
  color: var(--gray-900);
  vertical-align: top;
}
.pricing-table tbody td:first-child { font-weight: 600; color: var(--navy); }
.pricing-table tbody td:nth-child(2) { color: var(--gold-dark); font-weight: 700; font-family: var(--font-serif); font-size: 1rem; }

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  position: relative;
  padding-bottom: 40px;
}
.step:last-child { padding-bottom: 0; }
.step__number-col { display: flex; flex-direction: column; align-items: center; }
.step__number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.step__line {
  flex: 1;
  width: 1.5px;
  background: var(--gray-200);
  margin-top: 8px;
}
.step:last-child .step__line { display: none; }
.step__content { padding-top: 12px; padding-bottom: 16px; }
.step__content h3 { color: var(--navy); margin-bottom: 8px; }
.step__content p  { font-size: 0.93rem; }

/* ── FAQ Accordion ── */
.faq { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }
.faq__item { border-bottom: 1px solid var(--gray-200); }
.faq__item:last-child { border-bottom: none; }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  transition: background var(--transition);
  gap: 16px;
}
.faq__question:hover { background: var(--cream); }
.faq__question.open { background: var(--cream); color: var(--gold-dark); }
.faq__chevron {
  width: 20px; height: 20px;
  stroke: var(--gray-400);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__question.open .faq__chevron { transform: rotate(180deg); stroke: var(--gold); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq__answer.open { max-height: 400px; }
.faq__answer-inner { padding: 0 28px 24px; font-size: 0.93rem; color: var(--gray-600); line-height: 1.75; }

/* ── Checklist two-col ── */
.checklist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.checklist h4 {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.checklist ul { display: flex; flex-direction: column; gap: 10px; }
.checklist ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.checklist ul li::before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── ROI Table ── */
.roi-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.roi-table {
  width: 100%;
  border-collapse: collapse;
}
.roi-table thead { background: var(--navy); }
.roi-table thead th {
  padding: 16px 24px;
  text-align: left;
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.roi-table thead th:first-child { color: var(--gold); }
.roi-table tbody tr { border-bottom: 1px solid var(--gray-200); }
.roi-table tbody tr:last-child { border-bottom: none; background: rgba(201,168,76,.06); }
.roi-table tbody td {
  padding: 16px 24px;
  font-size: 0.92rem;
  color: var(--gray-900);
}
.roi-table tbody td:first-child { font-weight: 600; color: var(--navy); }

/* ── Values cards ── */
.value-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.value-card__icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.value-card__icon svg { width: 26px; height: 26px; stroke: var(--gold); }
.value-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.value-card p  { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

/* ── Team card ── */
.team-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); }
.team-card__avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid var(--gold-light);
}
.team-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name { font-family: var(--font-serif); font-size: 1.25rem; color: var(--navy); margin-bottom: 4px; }
.team-card__role {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-card p { font-size: 0.88rem; }

/* ── Contact form ── */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── Contact CTA cards ── */
.contact-cta-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition);
}
.contact-cta-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(201,168,76,.12); transform: translateY(-3px); }
.contact-cta-card__icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.contact-cta-card__icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.contact-cta-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.05rem; }
.contact-cta-card p  { font-size: 0.88rem; margin-bottom: 20px; }

/* ── Themed grid ── */
.theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.theme-badge {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--navy);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
}
.theme-badge:hover { background: var(--navy-light); transform: translateY(-2px); }
.theme-badge__emoji { font-size: 1.8rem; line-height: 1; }
.theme-badge__name {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

/* ── Stats grid ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat__number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ── Fade-in animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section    { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .grid-3   { grid-template-columns: 1fr; }
  .grid-2   { grid-template-columns: 1fr; gap: 24px; }
  .split    { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .split--reverse { direction: ltr; }
  .split__img { aspect-ratio: 16/9; }
  .checklist-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .theme-grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
