:root {
  --red: #e11b22;
  --red-dark: #b60f17;
  --red-soft: #fff3f4;
  --ink: #171719;
  --ink-2: #2c2c31;
  --muted: #6b6b73;
  --surface: #f7f7f8;
  --surface-2: #fbfbfc;
  --line: #e7e7ea;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(20, 20, 24, 0.06);
  --shadow-md: 0 20px 60px rgba(20, 20, 24, 0.10);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open, body.chat-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { display: block; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
p { margin: 0; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.section { padding: 96px 0; }
.section-sm { padding: 72px 0; }
.section-soft { background: var(--surface); }
.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 22px;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
  content: "";
}

.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.icon.fill { fill: currentColor; stroke: none; }
.icon-box {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #f3c9cc;
  border-radius: 13px;
  color: var(--red);
  background: var(--red-soft);
  flex: 0 0 auto;
}
.icon-box.sm { width: 36px; height: 36px; border-radius: 11px; }
.icon-box.lg { width: 54px; height: 54px; border-radius: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 24px rgba(225, 27, 34, .22);
}
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 14px 30px rgba(225, 27, 34, .28); }
.btn-outline {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}
.btn-outline:hover { border-color: #c9c9ce; box-shadow: var(--shadow-sm); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}
.btn-link:hover { color: var(--red); }

/* Header */
.announcement {
  border-bottom: 1px solid #f0d7d9;
  color: #7a3035;
  background: #fff8f8;
  font-size: .82rem;
}
.announcement .container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.announcement a { font-weight: 800; }
.announcement .ann-left { display: flex; align-items: center; gap: 18px; min-width: 0; }
.announcement .ann-left span { white-space: nowrap; }
.ann-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(231, 231, 234, .92);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
}
.site-header .container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: 220px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a,
.nav-menu-button {
  padding: 26px 0;
  border: 0;
  color: #3c3c42;
  background: transparent;
  font-size: .93rem;
  font-weight: 700;
}
.main-nav > a:hover,
.main-nav > a.active,
.nav-menu-button:hover { color: var(--red); }
.nav-dropdown { position: relative; }
.nav-menu-button { display: flex; align-items: center; gap: 6px; }
.nav-menu-button .icon { width: 16px; height: 16px; }
.dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  width: 660px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: .2s ease;
}
.nav-dropdown:hover .dropdown,
.nav-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 12px;
  border-radius: 12px;
}
.dropdown-item:hover { background: var(--surface); }
.dropdown-item b { display: block; font-size: .9rem; }
.dropdown-item small { display: block; margin-top: 2px; color: var(--muted); font-size: .76rem; line-height: 1.35; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-call {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 999px; background: var(--ink); }

/* Mobile drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(17, 17, 19, .42);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  width: min(92vw, 390px);
  height: 100dvh;
  padding: 22px 20px 110px;
  overflow-y: auto;
  background: var(--white);
  transform: translateX(100%);
  transition: .25s ease;
}
body.nav-open .drawer-overlay { opacity: 1; visibility: visible; }
body.nav-open .drawer { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.drawer-top img { width: 190px; }
.drawer-close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); font-size: 1.6rem; }
.drawer-links { display: grid; gap: 5px; margin-top: 28px; }
.drawer-label { margin: 20px 8px 6px; color: var(--muted); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.drawer-links a { padding: 12px; border-radius: 11px; font-weight: 700; }
.drawer-links a:hover { background: var(--surface); color: var(--red); }
.drawer-cta { margin-top: 24px; padding: 18px; border: 1px solid #f0cfd1; border-radius: 18px; background: var(--red-soft); }
.drawer-cta p { color: var(--muted); font-size: .92rem; }
.drawer-cta .btn { width: 100%; margin-top: 14px; }

/* Video hero — video only, softly tinted and intentionally scaled down */
.hero.video-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: clamp(610px, calc(100vh - 112px), 780px);
  padding: 84px 0 112px;
  overflow: hidden;
  background: #fff;
}
.hero-video-layer {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}
.hero-video-layer::after {
  position: absolute;
  left: 50%;
  top: 55%;
  width: min(980px, 76vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,27,34,.055) 0%, rgba(225,27,34,.025) 42%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  content: "";
}
.hero-video-layer video {
  position: relative;
  z-index: 1;
  width: min(1040px, 84vw);
  height: min(610px, 72vh);
  object-fit: contain;
  object-position: center;
  opacity: .13;
  filter: grayscale(1) sepia(1) saturate(5.2) hue-rotate(318deg) brightness(1.08) contrast(.82);
  transform: translateY(10%) scale(.76);
  transform-origin: center;
  mix-blend-mode: multiply;
}
.hero-video-layer video.video-unavailable { opacity: 0; }
.hero-tint {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255,255,255,.58) 0%, rgba(255,255,255,.38) 48%, rgba(255,255,255,.88) 100%),
    radial-gradient(circle at 50% 53%, rgba(225,27,34,.025), transparent 48%);
}
.hero.video-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.50), rgba(255,255,255,.06) 50%, rgba(255,255,255,.50));
  content: "";
}
.hero-center {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  text-align: center;
}
.hero-content {
  width: min(100%, 930px);
  margin-inline: auto;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(179, 34, 42, .16);
  border-radius: 999px;
  color: #72282d;
  background: rgba(255,255,255,.70);
  box-shadow: 0 8px 24px rgba(24,24,28,.04);
  backdrop-filter: blur(10px);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.hero-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(225,27,34,.09);
}
.hero-content h1 {
  max-width: 920px;
  margin: 24px auto 0;
  color: #171719;
  font-size: clamp(3.35rem, 6.4vw, 5.65rem);
  line-height: .99;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero-content h1 span { color: var(--red); }
.hero-content > p {
  max-width: 730px;
  margin: 25px auto 0;
  color: #55555d;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
  text-wrap: balance;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.btn-glass {
  color: var(--ink);
  border-color: rgba(33,33,36,.13);
  background: rgba(255,255,255,.76);
  box-shadow: 0 10px 28px rgba(20,20,24,.07);
  backdrop-filter: blur(12px);
}
.btn-glass:hover {
  border-color: rgba(33,33,36,.24);
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 32px rgba(20,20,24,.10);
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  margin-top: 28px;
  color: #606068;
  font-size: .84rem;
  font-weight: 700;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof .icon { width: 17px; height: 17px; color: var(--red); stroke-width: 2.25; }
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 52px;
  display: grid;
  place-items: start center;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(23,23,25,.22);
  border-radius: 999px;
  transform: translateX(-50%);
}
.hero-scroll span {
  width: 4px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--red);
  animation: heroScroll 1.8s ease-in-out infinite;
}
@keyframes heroScroll {
  0%, 100% { opacity: .25; transform: translateY(0); }
  45% { opacity: 1; transform: translateY(13px); }
}

/* Trust strip */
.trust-strip { position: relative; margin-top: -28px; z-index: 5; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item b { display: block; font-size: .92rem; }
.trust-item small { display: block; margin-top: 2px; color: var(--muted); font-size: .77rem; line-height: 1.35; }

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: #d8d8dd; box-shadow: var(--shadow-md); }
.service-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--surface); }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-media img { transform: scale(1.035); }
.service-media .icon-box { position: absolute; left: 16px; bottom: 16px; background: rgba(255,255,255,.94); border-color: rgba(255,255,255,.8); box-shadow: 0 10px 22px rgba(20,20,24,.14); }
.service-body { padding: 21px; }
.service-body h3 { font-size: 1.1rem; letter-spacing: -.02em; }
.service-body p { min-height: 68px; margin-top: 9px; color: var(--muted); font-size: .89rem; line-height: 1.55; }
.service-body .btn-link { margin-top: 14px; font-size: .88rem; }

/* Finder */
.finder-shell {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.finder-intro {
  padding: 12px;
}
.finder-intro h2 { margin-top: 12px; font-size: clamp(2rem, 4vw, 3rem); }
.finder-intro p { margin-top: 14px; color: var(--muted); }
.finder-options { display: grid; gap: 10px; margin-top: 24px; }
.finder-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
  text-align: left;
  font-weight: 800;
}
.finder-option:hover, .finder-option.active { border-color: #efb2b6; color: var(--red-dark); background: var(--red-soft); }
.finder-option .icon { width: 19px; height: 19px; }
.finder-result {
  display: grid;
  grid-template-rows: minmax(300px, 1fr) auto;
  overflow: hidden;
  border-radius: 22px;
  background: var(--surface);
}
.finder-result-media { position: relative; min-height: 300px; }
.finder-result-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.finder-result-media::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.56) 100%); content: ""; }
.finder-result-media span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 1;
  max-width: calc(100% - 48px);
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}
.finder-result-copy { padding: 24px; }
.finder-result-copy p { color: var(--muted); }
.finder-result-copy .result-points { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-top: 18px; }
.result-point { display: flex; gap: 9px; align-items: flex-start; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); font-size: .83rem; line-height: 1.45; }
.result-point .icon { width: 18px; height: 18px; margin-top: 1px; color: var(--red); }
.finder-result-copy .btn { margin-top: 18px; }

/* Process */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
}
.process-grid::before {
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: #dddde1;
  content: "";
}
.process-card { position: relative; z-index: 1; text-align: center; }
.process-number {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto;
  border: 8px solid var(--surface);
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
}
.process-card h3 { margin-top: 18px; font-size: 1.06rem; }
.process-card p { margin-top: 8px; color: var(--muted); font-size: .88rem; }

/* Why */
.why-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 70px; }
.why-collage { position: relative; min-height: 560px; }
.why-main {
  position: absolute;
  inset: 0 80px 70px 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}
.why-main img { width: 100%; height: 100%; object-fit: cover; }
.why-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 235px;
  padding: 8px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.why-small img { width: 100%; height: 100%; border-radius: 16px; object-fit: cover; }
.why-stat {
  position: absolute;
  top: 28px;
  right: 16px;
  width: 180px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-sm);
}
.why-stat b { display: block; font-size: .96rem; }
.why-stat small { color: var(--muted); }
.why-copy h2 { margin-top: 14px; font-size: clamp(2rem, 4vw, 3.15rem); }
.why-copy > p { margin-top: 18px; color: var(--muted); }
.why-list { display: grid; gap: 13px; margin-top: 28px; }
.why-item { display: flex; align-items: flex-start; gap: 13px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.why-item h3 { font-size: .98rem; letter-spacing: -.01em; }
.why-item p { margin-top: 4px; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.why-copy .btn { margin-top: 24px; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.quote-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}
.quote-icon { color: var(--red); }
.quote-card blockquote { margin: 22px 0 24px; color: var(--ink-2); font-size: 1rem; line-height: 1.7; }
.quote-person { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.quote-avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--red); background: var(--red-soft); font-weight: 800; }
.quote-person b { display: block; font-size: .9rem; }
.quote-person small { display: block; margin-top: 2px; color: var(--muted); }

/* FAQ */
.faq-wrap { max-width: 860px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  padding: 21px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
}
.faq-question .plus { position: relative; width: 22px; height: 22px; flex: 0 0 auto; }
.faq-question .plus::before, .faq-question .plus::after { position: absolute; top: 10px; left: 3px; width: 16px; height: 2px; border-radius: 999px; background: var(--ink); content: ""; transition: .2s ease; }
.faq-question .plus::after { transform: rotate(90deg); }
.faq-item.open .faq-question { color: var(--red); }
.faq-item.open .faq-question .plus::after { transform: rotate(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-answer p { padding: 0 44px 22px 0; color: var(--muted); }

/* CTA and globe */
.consult-cta { padding: 80px 0 0; background: linear-gradient(180deg,#fff 0%,#fbfbfc 100%); }
.consult-card {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.consult-copy { padding: 48px; }
.consult-copy h2 { margin-top: 14px; font-size: clamp(2rem,4vw,3.15rem); }
.consult-copy p { margin-top: 16px; color: var(--muted); }
.consult-copy .cta-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 26px; }
.consult-photo { position: relative; min-height: 430px; height: 100%; }
.consult-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.globe-transition {
  position: relative;
  height: 180px;
  overflow: hidden;
  margin-top: 28px;
  background: linear-gradient(180deg, transparent 0%, var(--surface) 100%);
}
.globe-wire {
  position: absolute;
  left: 50%;
  bottom: -235px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(225,27,34,.07);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: globe-spin 24s linear infinite;
}
.globe-wire::before,
.globe-wire::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(225,27,34,.055);
  border-radius: 50%;
  content: "";
}
.globe-wire::after { inset: 0 38%; }
.globe-lat { position: absolute; left: 4%; right: 4%; top: 49%; height: 1px; background: rgba(225,27,34,.055); }
@keyframes globe-spin { from { transform: translateX(-50%) rotate(0deg); } to { transform: translateX(-50%) rotate(360deg); } }

/* Footer */
.site-footer { padding: 68px 0 26px; background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1.2fr; gap: 46px; }
.footer-logo { width: 220px; }
.footer-about { max-width: 360px; margin-top: 18px; color: var(--muted); font-size: .9rem; }
.footer-title { margin-bottom: 18px; font-size: .9rem; letter-spacing: -.01em; }
.footer-links { display: grid; gap: 10px; color: var(--muted); font-size: .88rem; }
.footer-links a:hover { color: var(--red); }
.footer-contact { display: grid; gap: 12px; }
.footer-contact a { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .85rem; overflow-wrap: anywhere; }
.footer-contact .icon { width: 18px; height: 18px; margin-top: 2px; color: var(--red); }
.socials { display: flex; gap: 9px; margin-top: 20px; }
.socials a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 11px; background: var(--white); font-size: .78rem; font-weight: 800; }
.footer-disclaimer { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: #7e7e85; font-size: .76rem; line-height: 1.55; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 20px; color: #77777f; font-size: .78rem; }

/* Service pages */
.page-hero { position: relative; overflow: hidden; padding: 68px 0 78px; background: var(--surface); }
.page-hero::after { position: absolute; right: -100px; top: -130px; width: 390px; height: 390px; border: 70px solid rgba(225,27,34,.06); border-radius: 50%; content: ""; }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 60px; }
.page-hero h1 { margin-top: 16px; font-size: clamp(2.8rem,5vw,4.5rem); }
.page-hero p { max-width: 650px; margin-top: 20px; color: var(--muted); font-size: 1.05rem; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 27px; }
.page-hero-media { overflow: hidden; border: 9px solid var(--white); border-radius: 28px; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.fact-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: -34px; position: relative; z-index: 3; }
.fact-card { display: flex; gap: 13px; padding: 19px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); box-shadow: var(--shadow-sm); }
.fact-card h3 { font-size: .96rem; }
.fact-card p { margin-top: 5px; color: var(--muted); font-size: .82rem; line-height: 1.45; }
.content-grid { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(260px,.58fr); gap: 58px; align-items: start; }
.prose h2 { font-size: clamp(1.8rem,3vw,2.6rem); }
.prose h3 { margin-top: 28px; font-size: 1.25rem; }
.prose p { margin-top: 14px; color: var(--muted); }
.clean-list { display: grid; gap: 12px; margin: 20px 0 0; padding: 0; list-style: none; }
.clean-list li { display: flex; gap: 11px; color: var(--ink-2); }
.clean-list .icon { width: 19px; height: 19px; margin-top: 4px; color: var(--red); }
.sidebar-card { position: sticky; top: 100px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.sidebar-card h3 { font-size: 1.25rem; }
.sidebar-card p { margin-top: 10px; color: var(--muted); font-size: .9rem; }
.sidebar-card .btn { width: 100%; margin-top: 20px; }
.sidebar-meta { display: grid; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.sidebar-meta div { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .82rem; }
.sidebar-meta .icon { width: 18px; height: 18px; color: var(--red); }
.option-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin-top: 24px; }
.option-card { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.option-card h3 { margin: 12px 0 0; font-size: 1rem; }
.option-card p { margin-top: 7px; font-size: .84rem; }
.steps-stack { display: grid; gap: 13px; margin-top: 24px; }
.step-row { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: start; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.step-row .step-num { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; color: var(--red); background: var(--red-soft); font-weight: 800; }
.step-row h3 { margin-top: 1px; font-size: .98rem; }
.step-row p { margin-top: 4px; font-size: .84rem; }

/* About / Contact */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.about-photo { overflow: hidden; border-radius: 28px; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.value-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.value-card { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.value-card h3 { margin-top: 16px; font-size: 1.05rem; }
.value-card p { margin-top: 8px; color: var(--muted); font-size: .86rem; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; }
.contact-panel { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.contact-list { display: grid; gap: 16px; margin-top: 24px; }
.contact-item { display: flex; gap: 13px; align-items: flex-start; }
.contact-item b { display: block; font-size: .9rem; }
.contact-item span, .contact-item a { display: block; margin-top: 3px; color: var(--muted); font-size: .86rem; overflow-wrap: anywhere; }
.form-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: var(--white); outline: none; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #e9a6aa; box-shadow: 0 0 0 4px rgba(225,27,34,.08); }
.form-card .btn { margin-top: 18px; }
.legal { max-width: 900px; }
.legal h2 { margin-top: 34px; font-size: 1.45rem; }
.legal p, .legal li { color: var(--muted); }
.legal p { margin-top: 12px; }
.legal ul { padding-left: 20px; }

/* Chat */
.chat-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 18px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}
.chat-launcher:hover { background: var(--red); }
.chat-launcher .chat-dot { position: absolute; top: 6px; right: 6px; width: 10px; height: 10px; border: 2px solid var(--ink); border-radius: 50%; background: #38b46f; }
.chat-panel {
  position: fixed;
  right: 24px;
  bottom: 94px;
  z-index: 100;
  width: min(390px, calc(100vw - 32px));
  height: min(610px, calc(100dvh - 130px));
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(20,20,24,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.98);
  transition: .22s ease;
}
body.chat-open .chat-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px; border-bottom: 1px solid var(--line); }
.chat-id { display: flex; align-items: center; gap: 11px; }
.chat-id b { display: block; font-size: .9rem; }
.chat-id small { display: block; margin-top: 2px; color: var(--muted); font-size: .73rem; }
.chat-close { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 11px; background: var(--white); font-size: 1.35rem; }
.chat-body { overflow-y: auto; padding: 16px; background: #fbfbfc; }
.chat-message { display: flex; margin-bottom: 12px; }
.chat-message > div { max-width: 84%; padding: 11px 13px; border-radius: 14px; font-size: .84rem; line-height: 1.5; }
.chat-message.bot > div { border: 1px solid var(--line); border-bottom-left-radius: 4px; background: var(--white); }
.chat-message.user { justify-content: flex-end; }
.chat-message.user > div { border-bottom-right-radius: 4px; color: var(--white); background: var(--red); }
.chat-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 6px; }
.chat-chip { padding: 8px 10px; border: 1px solid #efc9cb; border-radius: 999px; color: var(--red-dark); background: var(--white); font-size: .76rem; font-weight: 800; }
.chat-note { padding: 10px 15px; border-top: 1px solid var(--line); color: var(--muted); background: var(--white); font-size: .68rem; line-height: 1.4; }
.chat-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: var(--white); }
.chat-form input { flex: 1; min-width: 0; height: 44px; padding: 0 12px; border: 1px solid var(--line); border-radius: 11px; outline: none; }
.chat-form input:focus { border-color: #e8a8ac; }
.chat-send { display: grid; place-items: center; width: 44px; height: 44px; border: 0; border-radius: 11px; color: var(--white); background: var(--red); }

.mobile-app-nav { display: none; }

/* Responsive */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { gap: 40px; }
  .hero-visual { min-height: 500px; }
  .service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .announcement .ann-left span:nth-of-type(n+2), .announcement .ann-dot { display: none; }
  .header-call { display: none; }
  .header-actions > .btn { display: none; }
  .hero { padding-top: 58px; }
  .hero-grid, .page-hero-grid, .why-grid, .about-grid, .contact-grid, .content-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 540px; max-width: 650px; width: 100%; margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .finder-shell { grid-template-columns: 1fr; }
  .finder-options { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); row-gap: 34px; }
  .process-grid::before { display: none; }
  .why-grid { gap: 48px; }
  .why-collage { min-height: 520px; max-width: 700px; }
  .testimonial-grid, .value-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .consult-card { grid-template-columns: 1fr; }
  .consult-photo { min-height: 360px; }
  .page-hero-grid { gap: 38px; }
  .page-hero-media { max-width: 700px; }
  .fact-grid { grid-template-columns: 1fr; margin-top: 24px; }
  .sidebar-card { position: static; }
}

@media (max-width: 680px) {
  body { padding-bottom: 76px; }
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 56px 0; }
  .announcement { display: none; }
  .site-header .container { min-height: 68px; }
  .brand img { width: 188px; }
  .hero { padding: 46px 0 68px; }
  .hero-copy h1 { font-size: clamp(2.45rem, 12vw, 3.75rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { align-items: flex-start; }
  .hero-visual { min-height: 460px; }
  .hero-photo-frame { width: 94%; height: 420px; border-radius: 26px; }
  .hero-photo-frame img { border-radius: 20px; }
  .hero-floating { bottom: 0; width: 82%; }
  .hero-badge { top: 18px; left: 0; }
  .trust-strip { margin-top: -18px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(3) { border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-body p { min-height: 0; }
  .finder-shell { padding: 18px; }
  .finder-options { grid-template-columns: 1fr; }
  .finder-result-copy .result-points { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { display: grid; grid-template-columns: 62px 1fr; gap: 14px; text-align: left; }
  .process-card .process-number { margin: 0; }
  .process-card h3 { margin-top: 6px; }
  .process-card p { margin-top: 5px; }
  .why-collage { min-height: 430px; }
  .why-main { inset: 0 38px 60px 0; }
  .why-small { width: 56%; height: 180px; }
  .why-stat { top: 18px; right: 0; width: 150px; }
  .testimonial-grid, .value-grid { grid-template-columns: 1fr; }
  .quote-card { min-height: 0; }
  .consult-copy { padding: 30px 22px; }
  .consult-copy .cta-actions { display: grid; }
  .consult-copy .btn { width: 100%; }
  .consult-photo { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .page-hero { padding: 50px 0 58px; }
  .page-hero h1 { font-size: clamp(2.35rem, 11vw, 3.7rem); }
  .page-hero-actions { display: grid; }
  .page-hero-actions .btn { width: 100%; }
  .option-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .chat-launcher { display: none; }
  .chat-panel { left: 12px; right: 12px; bottom: 84px; width: auto; height: min(620px, calc(100dvh - 104px)); border-radius: 22px 22px 16px 16px; }
  .mobile-app-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    min-height: 72px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.97);
    box-shadow: 0 -12px 35px rgba(20,20,24,.08);
    backdrop-filter: blur(14px);
  }
  .mobile-app-nav a, .mobile-app-nav button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    border: 0;
    border-radius: 12px;
    color: var(--muted);
    background: transparent;
    font-size: .68rem;
    font-weight: 800;
  }
  .mobile-app-nav .icon { width: 21px; height: 21px; }
  .mobile-app-nav .book-tab { color: var(--white); background: var(--red); }
}

@media (max-width: 400px) {
  .brand img { width: 170px; }
  .hero-visual { min-height: 430px; }
  .hero-photo-frame { height: 390px; }
  .hero-floating { width: 88%; padding: 15px; }
  .finder-result-media { min-height: 250px; }
}


@media (max-width: 900px) {
  .hero.video-hero { min-height: 680px; padding: 78px 0 105px; }
  .hero-video-layer video {
    width: min(900px, 92vw);
    height: min(560px, 68vh);
    transform: translateY(10%) scale(.74);
  }
  .hero-content { width: min(100%, 760px); }
  .hero-content h1 { font-size: clamp(3rem, 9vw, 4.6rem); }
}

@media (max-width: 680px) {
  .hero.video-hero { min-height: 650px; padding: 70px 0 96px; }
  .hero-video-layer::after { top: 51%; width: 118vw; }
  .hero-video-layer video {
    width: 116vw;
    max-width: none;
    height: 500px;
    opacity: .10;
    transform: translateY(12%) scale(.66);
  }
  .hero-tint {
    background:
      linear-gradient(180deg, rgba(255,255,255,.66) 0%, rgba(255,255,255,.48) 46%, rgba(255,255,255,.93) 100%),
      radial-gradient(circle at 50% 48%, rgba(225,27,34,.02), transparent 50%);
  }
  .hero-kicker { max-width: 100%; padding-inline: 11px; font-size: .68rem; letter-spacing: .055em; }
  .hero-content h1 { margin-top: 20px; font-size: clamp(2.55rem, 12.2vw, 3.7rem); line-height: 1.02; letter-spacing: -.048em; }
  .hero-content > p { margin-top: 20px; font-size: .98rem; line-height: 1.62; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 26px; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { gap: 9px 16px; margin-top: 22px; font-size: .75rem; }
  .hero-scroll { bottom: 34px; }
}

@media (max-width: 400px) {
  .hero.video-hero { min-height: 620px; padding-top: 56px; }
  .hero-video-layer video { width: 124vw; height: 450px; transform: translateY(13%) scale(.62); }
  .hero-content h1 { font-size: 2.58rem; }
  .hero-proof span:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* v6 refinement: full-bleed Mux video hero */
.hero.video-hero {
  min-height: clamp(640px, calc(100svh - 112px), 900px);
  padding: 92px 0 118px;
  background: #f8f8f9;
}
.hero-video-layer {
  inset: 0;
  display: block;
  background: #f8f8f9;
}
.hero-video-layer::after { display: none; }
.hero-video-layer video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 60%;
  opacity: .17;
  filter: grayscale(1) sepia(.65) saturate(2.8) hue-rotate(318deg) brightness(.92) contrast(1.08);
  transform: none;
  mix-blend-mode: multiply;
}
.hero-video-layer video.video-unavailable { opacity: 0; }
.hero-tint {
  background:
    linear-gradient(180deg, rgba(255,255,255,.54) 0%, rgba(255,255,255,.30) 44%, rgba(255,255,255,.80) 100%),
    radial-gradient(circle at 50% 54%, rgba(225,27,34,.035), transparent 52%);
}
.hero.video-hero::before {
  background: linear-gradient(90deg, rgba(255,255,255,.40), rgba(255,255,255,.04) 50%, rgba(255,255,255,.40));
}

@media (max-width: 900px) {
  .hero.video-hero { min-height: 720px; padding: 84px 0 112px; }
  .hero-video-layer video {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center 62%;
    opacity: .17;
    transform: none;
  }
}
@media (max-width: 680px) {
  .hero.video-hero { min-height: 680px; padding: 76px 0 106px; }
  .hero-video-layer video {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center 63%;
    opacity: .14;
    transform: none;
  }
  .hero-tint {
    background:
      linear-gradient(180deg, rgba(255,255,255,.60) 0%, rgba(255,255,255,.40) 47%, rgba(255,255,255,.88) 100%),
      radial-gradient(circle at 50% 54%, rgba(225,27,34,.025), transparent 50%);
  }
  .mobile-app-nav { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .mobile-app-nav a, .mobile-app-nav button { font-size: .64rem; }
  .mobile-app-nav .icon { width: 20px; height: 20px; }
}
@media (max-width: 400px) {
  .hero.video-hero { min-height: 650px; padding-top: 66px; }
  .hero-video-layer video { inset: 0; width: 100%; height: 100%; object-position: center 64%; transform: none; }
}
