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

/* ── Variables ──────────────────────────────────────────────────── */
:root {
  --navy:       #1B2A4A;
  --navy-mid:   #22355C;
  --navy-light: #2E4478;
  --gold:       #B8943F;
  --gold-light: #CDA95A;
  --gold-pale:  #F0E4C0;
  --cream:      #F7F4EF;
  --cream-dark: #EDE8DF;
  --dark:       #1E1E1E;
  --charcoal:   #3A3632;
  --mid:        #6B6560;
  --border:     #D9D3CA;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1160px;
  --section-y: 100px;
}

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

/* ── Typography ─────────────────────────────────────────────────── */
.display { font-family: var(--font-display); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5vw, 4.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 400; }
p  { font-size: 1.05rem; line-height: 1.75; color: var(--charcoal); font-weight: 300; }

/* ── Layout ─────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 48px; }
.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream); }
.section--cream-dark { background: var(--cream-dark); }
.section--navy { background: var(--navy); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Gold Rule ──────────────────────────────────────────────────── */
.gold-rule { width: 60px; height: 2px; background: var(--gold); display: block; }
.gold-rule--center { margin-inline: auto; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(184,148,63,0.3); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}
.btn--navy:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(27,42,74,0.25); }
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--ghost:hover { background: var(--gold); color: var(--white); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* ── Navigation ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav--transparent { background: transparent; }
.nav--solid { background: var(--navy); box-shadow: 0 2px 24px rgba(0,0,0,0.15); }
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav__logo span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  transform-origin: left;
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__cta { margin-left: 20px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }

/* ── Mobile Nav ─────────────────────────────────────────────────── */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .btn { margin-top: 16px; }

/* ── Hero (Homepage) ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 40 L40 0 L80 40 L40 80 Z' fill='none' stroke='rgba(184%2C148%2C63%2C0.07)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 1;
}
.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184,148,63,0.12);
  pointer-events: none;
}
.hero__ring--1 { width: 600px; height: 600px; right: -100px; top: -150px; }
.hero__ring--2 { width: 900px; height: 900px; right: -250px; top: -300px; }
.hero__ring--3 { width: 380px; height: 380px; right: 80px; top: -20px; background: rgba(184,148,63,0.03); }
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero__eyebrow { margin-bottom: 28px; }
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 44px;
  padding-right: 24px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.hero__actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero__scroll span { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── Page Hero (inner pages) ────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 40 L40 0 L80 40 L40 80 Z' fill='none' stroke='rgba(184%2C148%2C63%2C0.06)' stroke-width='1'/%3E%3C/svg%3E");
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-top: 20px; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 580px; margin-top: 20px; font-size: 1.05rem; }

/* ── Trust Bar ──────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-mid);
  padding: 22px 0;
  border-bottom: 1px solid rgba(184,148,63,0.2);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.trust-bar__item {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0 32px;
  position: relative;
}
.trust-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 14px;
  background: rgba(184,148,63,0.3);
}

/* ── Promise Section ─────────────────────────────────────────────── */
.promise__headline { color: var(--navy); margin-bottom: 36px; }
.promise__text { display: flex; flex-direction: column; gap: 20px; max-width: 680px; }
.promise__visual {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.promise__card {
  background: var(--navy);
  padding: 48px 44px;
  max-width: 340px;
  position: relative;
}
.promise__card::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.promise__card-quote {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  font-weight: 300;
}
.promise__card-attr {
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Who Section ─────────────────────────────────────────────────── */
.who__header { text-align: center; margin-bottom: 64px; }
.who__header h2 { color: var(--navy); margin-top: 16px; }
.who-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  background: var(--white);
  position: relative;
  transition: all 0.35s var(--ease);
  cursor: default;
}
.who-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.who-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(27,42,74,0.1); }
.who-card:hover::before { transform: scaleX(1); }
.who-card__icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.who-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.who-card p { font-size: 0.92rem; line-height: 1.7; color: var(--mid); }

/* ── Services Overview ──────────────────────────────────────────── */
.services-overview__header { margin-bottom: 56px; }
.services-overview__header h2 { color: var(--navy); margin-top: 16px; margin-bottom: 16px; }
.services-overview__header p { max-width: 540px; }
.svc-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(27,42,74,0.12); }
.svc-card__head {
  background: var(--navy);
  padding: 28px 28px 24px;
  position: relative;
}
.svc-card__head::after {
  content: '';
  position: absolute;
  bottom: 0; left: 28px; right: 28px;
  height: 1px;
  background: rgba(184,148,63,0.3);
}
.svc-card__tier {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.svc-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}
.svc-card__price {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  font-weight: 300;
}
.svc-card__body { padding: 28px; background: var(--white); }
.svc-card__desc { font-size: 0.9rem; line-height: 1.7; color: var(--mid); margin-bottom: 24px; }
.svc-card__link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s;
}
.svc-card:hover .svc-card__link { gap: 14px; }
.svc-card__link::after { content: '→'; }

/* ── Multilingual Band ──────────────────────────────────────────── */
.multilingual {
  background: var(--navy);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.multilingual__bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 40 L40 0 L80 40 L40 80 Z' fill='none' stroke='rgba(184%2C148%2C63%2C0.05)' stroke-width='1'/%3E%3C/svg%3E");
}
.multilingual__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.multilingual h2 { color: var(--white); margin-top: 20px; margin-bottom: 24px; }
.multilingual p { color: rgba(255,255,255,0.6); max-width: 480px; margin-bottom: 16px; line-height: 1.8; }
.multilingual__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.multilingual__tag {
  border: 1px solid rgba(184,148,63,0.35);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 8px 18px;
}
.multilingual__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.multilingual__globe {
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(184,148,63,0.2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.multilingual__globe::before {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(184,148,63,0.12);
}
.multilingual__globe::after {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(184,148,63,0.06);
  border: 1px solid rgba(184,148,63,0.15);
}
.multilingual__langs {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.multilingual__lang {
  position: absolute;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.multilingual__lang:nth-child(1) { top: 18%; left: 50%; transform: translateX(-50%); }
.multilingual__lang:nth-child(2) { top: 50%; right: 5%; transform: translateY(-50%); font-size: 0.85rem; }
.multilingual__lang:nth-child(3) { bottom: 18%; left: 50%; transform: translateX(-50%); }
.multilingual__lang:nth-child(4) { top: 50%; left: 5%; transform: translateY(-50%); font-size: 0.85rem; }

/* ── Lead Magnet ─────────────────────────────────────────────────── */
.magnet { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.magnet__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.magnet h2 { color: var(--navy); margin-top: 16px; margin-bottom: 20px; }
.magnet p { margin-bottom: 32px; }
.magnet__form { display: flex; flex-direction: column; gap: 14px; max-width: 480px; }
.magnet__form input {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.25s;
}
.magnet__form input:focus { border-color: var(--gold); }
.magnet__form input::placeholder { color: var(--mid); opacity: 0.7; }
.magnet__guide {
  background: var(--navy);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.magnet__guide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 40 L40 0 L80 40 L40 80 Z' fill='none' stroke='rgba(184%2C148%2C63%2C0.06)' stroke-width='1'/%3E%3C/svg%3E");
}
.magnet__guide-content { position: relative; z-index: 1; }
.magnet__guide-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.magnet__guide h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
}
.magnet__guide-items { display: flex; flex-direction: column; gap: 10px; }
.magnet__guide-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}
.magnet__guide-item::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq__header { text-align: center; margin-bottom: 56px; }
.faq__header h2 { margin-top: 16px; }
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__q {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  padding: 24px 40px 24px 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  color: var(--navy);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { display: none; content: ""; }
.faq-item__q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-item__q::after {
  content: '−';
}
.faq-item__a {
  padding: 0 40px 24px 0;
}
.faq-item__a p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mid);
}

/* ── Final CTA ───────────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 40 L40 0 L80 40 L40 80 Z' fill='none' stroke='rgba(184%2C148%2C63%2C0.06)' stroke-width='1'/%3E%3C/svg%3E");
}
.cta-band__content { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-top: 20px; margin-bottom: 20px; }
.cta-band p { color: rgba(255,255,255,0.55); max-width: 540px; margin-inline: auto; margin-bottom: 40px; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 64px 0 40px;
  border-top: 1px solid rgba(184,148,63,0.15);
}
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}
.footer__brand-tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 280px;
}
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__copy {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}
.footer__disclaimer {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(255,255,255,0.22);
  max-width: 480px;
  line-height: 1.65;
  text-align: right;
}

/* ── Tier Cards (Services Page) ─────────────────────────────────── */
.tier {
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 40px;
}
.tier__header {
  background: var(--navy);
  padding: 36px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.tier__header-left { flex: 1; }
.tier__label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.tier__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
}
.tier__price-block { text-align: right; flex-shrink: 0; }
.tier__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.2;
}
.tier__price-range {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.tier__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(184,148,63,0.2);
}
.tier__col {
  padding: 36px 40px;
}
.tier__col + .tier__col {
  border-left: 1px solid var(--border);
}
.tier__col-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}
.tier__col--best { background: var(--cream); }
.tier__col--includes { background: var(--white); }
.tier__best-text { font-size: 0.92rem; line-height: 1.7; color: var(--charcoal); }
.tier__list { display: flex; flex-direction: column; gap: 10px; }
.tier__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.5;
}
.tier__list li::before { content: '–'; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.tier__footer {
  background: var(--cream);
  padding: 16px 40px;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--mid);
  font-style: italic;
}

/* ── Add-Ons Grid ────────────────────────────────────────────────── */
.addons__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 40px; }
.addon {
  background: var(--white);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.25s;
}
.addon:hover { background: var(--cream); }
.addon__name { font-size: 0.9rem; font-weight: 400; color: var(--charcoal); }
.addon__price { font-family: var(--font-display); font-size: 1rem; color: var(--gold); white-space: nowrap; flex-shrink: 0; font-weight: 400; }

/* ── About Differentiators ──────────────────────────────────────── */
.diff { display: flex; flex-direction: column; gap: 0; }
.diff-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.diff-item.visible { opacity: 1; transform: none; }
.diff-item__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
}
.diff-item__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 12px; font-weight: 500; }
.diff-item__text { font-size: 0.95rem; line-height: 1.75; color: var(--mid); }

/* ── Inquiry Form ────────────────────────────────────────────────── */
.form-page { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.form-page__aside {
  position: sticky;
  top: 100px;
  background: var(--navy);
  padding: 48px 40px;
}
.form-page__aside::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 40 L40 0 L80 40 L40 80 Z' fill='none' stroke='rgba(184%2C148%2C63%2C0.07)' stroke-width='1'/%3E%3C/svg%3E");
}
.form-page__aside-content { position: relative; z-index: 1; }
.form-page__aside h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); font-weight: 400; margin-bottom: 24px; }
.form-page__aside-items { display: flex; flex-direction: column; gap: 14px; }
.form-page__aside-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.form-page__aside-item:last-child { border-bottom: none; }
.form-page__aside-tier {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-page__aside-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}
.inq-form { display: flex; flex-direction: column; gap: 0; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 28px; }
.form-group--half { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.form-group--half .form-group { margin-bottom: 0; }
.form-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-input, .form-select, .form-textarea {
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.25s;
  background: var(--white);
  width: 100%;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1 L6 6 L11 1' fill='none' stroke='%236B6560' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-checks { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.form-check { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.form-check input[type="radio"] { border-radius: 50%; }
.form-check input:checked { border-color: var(--gold); background: var(--gold); }
.form-check input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--white);
  font-weight: 600;
}
.form-check input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white);
}
.form-check-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  cursor: pointer;
}
.form-section-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin: 36px 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.form-note {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
  font-style: italic;
  margin-top: 16px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 80px 40px;
  background: var(--cream);
  border: 1px solid var(--border);
}
.form-success.visible { display: block; }
.form-success__icon { font-size: 2.5rem; margin-bottom: 24px; }
.form-success h2 { color: var(--navy); margin-bottom: 16px; }
.form-success p { color: var(--mid); max-width: 480px; margin-inline: auto; }

/* ── Scroll Reveal ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --section-y: 72px; }
  .container { padding-inline: 32px; }
  .nav { padding-inline: 32px; }
  .nav__links { display: none; }
  .nav__cta.desktop { display: none; }
  .nav__burger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .promise { grid-template-columns: 1fr; }
  .multilingual__inner { grid-template-columns: 1fr; gap: 48px; }
  .multilingual__visual { display: none; }
  .magnet__inner { grid-template-columns: 1fr; gap: 48px; }
  .tier__body { grid-template-columns: 1fr; }
  .tier__col + .tier__col { border-left: none; border-top: 1px solid var(--border); }
  .form-page { grid-template-columns: 1fr; }
  .form-page__aside { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .addons__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --section-y: 56px; }
  .container { padding-inline: 20px; }
  .nav { padding-inline: 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero__headline { font-size: 2.8rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .tier__header { flex-direction: column; }
  .tier__price-block { text-align: left; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__disclaimer { text-align: left; }
  .addons__grid { grid-template-columns: 1fr; }
  .form-group--half { grid-template-columns: 1fr; }
  .trust-bar__inner { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .trust-bar__item::after { display: none; }
}
