/* dianafarm-clean.css — generated from assets/css/clean/ (18 parts) */

/* ===== @part 01-tokens.css ===== */
/* ============================================================================
   DIANAFARM GROUP — clean CSS engine
   01-tokens.css — single source of truth for the design system
   One gold, one dark, one cream. No version layers, no !important wars.
   ============================================================================ */

:root {
  /* ---- Brand gold ---- */
  --gold: #e8c47e;
  --gold-deep: #c79a52;
  --gold-soft: #f0cd8f;
  --gold-grad: linear-gradient(135deg, #f0cd8f 0%, #e8c47e 45%, #c79a52 100%);
  --gold-line: rgba(232, 196, 126, .22);
  --gold-line-strong: rgba(232, 196, 126, .38);
  --gold-tint: rgba(232, 196, 126, .10);

  /* ---- Dark surfaces (uniform, flat — no decorative gradients) ---- */
  --bg: #06111d;
  --bg-soft: #081726;
  --surface: #0c1a29;
  --surface-2: #102234;
  --surface-hover: #122a3f;

  /* ---- Text ---- */
  --cream: #fff9ef;
  --text: #fff9ef;
  --text-muted: rgba(255, 249, 239, .72);
  --text-faint: rgba(255, 249, 239, .52);
  --ink: #14110b; /* text on gold */

  /* ---- Lines / borders ---- */
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .14);

  /* ---- Radii ---- */
  --r-sm: 12px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --pill: 999px;

  /* ---- Shadows ---- */
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, .22);
  --shadow: 0 18px 40px rgba(0, 0, 0, .28);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, .38);
  --shadow-gold: 0 14px 34px rgba(232, 196, 126, .22);

  /* ---- Layout ---- */
  --container: 1340px;
  --gutter: 32px;
  --header-h: 70px;
  --quickbar-offset: calc(76px + env(safe-area-inset-bottom, 0px));
  --section-y: clamp(56px, 7vw, 104px);

  /* ---- Site texture (original mesh) ---- */
  --texture-site:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .026) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, .022) 0 1px, transparent 1px 62px);
  --texture-gold:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, .04) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, .035) 0 1px, transparent 1px 9px);
  /* hero: very subtle gold fine mesh between photo and copy (like production home) */
  --texture-hero-fine:
    repeating-linear-gradient(90deg, rgba(232, 196, 126, .07) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(0deg, rgba(232, 196, 126, .055) 0 1px, transparent 1px 8px);

  /* ---- Type ---- */
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;

  /* ---- Motion ---- */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: .25s;
}

/* ===== @part 02-base.css ===== */
/* ============================================================================
   02-base.css — reset, document, typography defaults
   ============================================================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  background: var(--bg);
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Hero / photo sections keep their own backgrounds */
.v238-direction-hero,
.v238-direction-hero--home,
.v9-page-hero,
.hero--landing {
  background-color: var(--bg);
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }

button { font: inherit; color: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--cream);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.field__control input:focus-visible,
.field__control textarea:focus-visible,
.field__control select:focus-visible,
.lead-form input:focus-visible,
.lead-form textarea:focus-visible {
  outline: none;
  outline-offset: 0;
}

::selection { background: var(--gold); color: var(--ink); }

/* Eyebrow / kicker label used across pages */
.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hidden { display: none !important; }

/* Scroll reveal — FAIL-SAFE: content is always visible.
   Animation is a pure enhancement: hidden only while JS is arming items
   (html.dfg-anim) AND motion is allowed; it always resolves to visible. */
.reveal, .reveal-group > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  html.dfg-anim .reveal:not(.in-view):not(.is-visible) {
    opacity: 0;
    transform: translateY(18px);
  }
  html.dfg-anim .reveal-group:not(.in-view):not(.is-visible) > * {
    opacity: 0;
    transform: translateY(18px);
  }
  .reveal { transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .reveal-group > * { transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .reveal-group.in-view > *:nth-child(2) { transition-delay: .06s; }
  .reveal-group.in-view > *:nth-child(3) { transition-delay: .12s; }
  .reveal-group.in-view > *:nth-child(4) { transition-delay: .18s; }
}

/* ===== @part 03-layout.css ===== */
/* ============================================================================
   03-layout.css — containers, sections, section heads, grids
   ============================================================================ */

/* Same box as .site-header--v9 .header-main: 1340px max + 32px side padding */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Same horizontal inset as .site-header--v9 .header-main */
@media (max-width: 980px) {
  .container { padding-inline: 16px; }
}

@media (max-width: 760px) { .container { padding-inline: 12px; } }

.main-content,
.v9-main { display: block; background: var(--bg); }

/* Every section sits on the same flat dark background */
.section,
.page-section {
  position: relative;
  padding-block: var(--section-y);
  background: var(--bg);
}
.section + .section { padding-top: 0; }
.section + .section.contacts-page-section { padding-top: clamp(56px, 7vw, 96px); }

@media (max-width: 768px) {
  .section + .section.contacts-page-section { padding-top: clamp(20px, 5vw, 32px); }
}

@media (max-width: 560px) {
  .section + .section.contacts-page-section { padding-top: 16px; }
}

/* Section heading block */
.section-head {
  max-width: 760px;
  margin: 0 0 clamp(28px, 4vw, 48px);
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  color: var(--cream);
}
.section-head p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.4vw, 17px);
}

/* Generic responsive auto grid used by catalogs */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

/* Two-column content row */
.v9-section-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(20px, 3vw, 36px);
}

/* ===== @part 04-buttons.css ===== */
/* ============================================================================
   04-buttons.css — one button system (primary gold / ghost / outline)
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  background: var(--gold-grad);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); color: var(--ink); }
.btn:active { transform: translateY(0); }

.btn--primary,
.btn--view-all-services,
.header-contact {
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: linear-gradient(180deg, #e9c680 0%, #d19f5b 100%);
  border: 1px solid rgba(255, 255, 255, .28);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .20), inset 0 1px 0 rgba(255, 255, 255, .34);
}
.btn--primary::before,
.btn--view-all-services::before,
.header-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--texture-gold);
  opacity: .55;
  pointer-events: none;
}
.btn--primary > *,
.btn--view-all-services > *,
.header-contact > * { position: relative; z-index: 1; }

/* Ghost / secondary — outlined, clearly visible on dark */
.btn--ghost,
.btn--outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--ghost:hover,
.btn--outline:hover { background: var(--gold); color: var(--ink); }

.btn--small { padding: 10px 18px; font-size: 13px; }
.btn--wide { width: 100%; }

/* "Подробнее" on service cards = visible outlined pill */
.service-card__details-btn {
  background: transparent;
  border: 1.5px solid #a97932;
  color: #8b6124;
  text-transform: none;
}
.service-card__details-btn:hover { background: var(--gold); color: var(--ink); }

/* "Смотреть все услуги" */
.btn--view-all-services {
  background: var(--gold-grad);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .28);
}

/* Header CTA */
.header-contact { padding: 11px 22px; }

/* ===== @part 05-header.css ===== */
/* ============================================================================
   05-header.css — sticky top bar (desktop) + burger nav (mobile)
   Targets existing markup: #siteHeader.site-header--v9 > .header-main >
   .brand--v9 / #mainNav.main-nav / .header-actions
   ============================================================================ */

#siteHeader.site-header--v9,
.site-header--v9 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 17, 29, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-line);
  overflow: visible;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .22);
}

.site-header--v9 .header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  max-width: 1340px;
  margin-inline: auto;
  min-height: var(--header-h);
  padding: 14px 32px;
}

.brand--v9 { justify-self: start; }
.header-actions { justify-self: end; }

/* ---- Brand: gold monogram + wordmark (no white square / oval seal) ---- */
.brand--v9 { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand__logo {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-line-strong);
  border-radius: 11px;
  background: var(--gold-tint);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.brand__wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.brand__wordmark strong {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: .12em;
  color: var(--cream);
  white-space: nowrap;
}
.brand__wordmark em {
  margin-top: 3px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: .52em;
  text-indent: .52em;
  color: var(--gold);
}

/* ---- Primary nav (desktop) — centered, spaced (#3) ---- */
.site-header--v9 .main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: clamp(18px, 1.6vw, 26px);
  flex-wrap: nowrap;
}
.site-header--v9 .main-nav > a,
.site-header--v9 .nav-dropdown__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--dur) var(--ease);
}
.site-header--v9 .main-nav > a:hover,
.site-header--v9 .nav-dropdown__link:hover { color: var(--cream); }

/* ---- Services dropdown ---- */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; flex-shrink: 0; }
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -240px;
  top: 100%;
  height: 16px;
  display: none;
}
.nav-dropdown:hover::after,
.nav-dropdown:focus-within::after { display: block; }
.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 30px;
  margin-left: 2px;
  border: 0;
  border-radius: var(--pill);
  background: transparent;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}
.nav-dropdown__toggle:hover { color: var(--gold); }
/* draw a crisp chevron, hide the glyph fallback */
.nav-dropdown__toggle span { font-size: 0; display: inline-block; }
.nav-dropdown__toggle span::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--dur) var(--ease);
}
.nav-dropdown:hover .nav-dropdown__toggle span::before,
.nav-dropdown:focus-within .nav-dropdown__toggle span::before,
.nav-dropdown.is-open .nav-dropdown__toggle span::before { transform: rotate(-135deg); margin-top: 3px; }
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: grid;
  gap: 2px;
  min-width: 280px;
  padding: 10px;
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__menu a {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
}
.nav-dropdown__menu a:hover { background: var(--gold-tint); color: var(--cream); }

/* Desktop: hide separate toggle, open menu on hover over whole dropdown */
@media (min-width: 981px) {
  .nav-dropdown__toggle { display: none; }
  .nav-dropdown { gap: 0; }
  .nav-dropdown__menu {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(8px);
  }
  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu { transform: translateX(-50%) translateY(0); }
}

/* ---- Header actions (phone, lang, CTA) ---- */
.header-actions { display: inline-flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
}
.header-phone__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #07111d;
}
.header-phone__icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-phone:hover { color: var(--gold); }

/* Language switch — trigger pill always visible; menu is dropdown only. */
.lang-switch--premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: auto;
  min-width: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  z-index: 60;
}
.lang-switch__chevron { display: none !important; }

.lang-switch--premium.is-open,
.lang-switch--premium:hover,
.lang-switch--premium:focus-within {
  z-index: 200;
}

.lang-switch__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  min-width: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: var(--pill);
  background: var(--gold-grad);
  color: #07111d;
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(212, 163, 115, .22);
}
.lang-switch__trigger:hover,
.lang-switch__trigger:focus-visible {
  filter: brightness(1.04);
  outline: none;
}

/* legacy: buttons must stay inside .lang-switch__menu, never as direct children */
.lang-switch--premium > .lang-btn { display: none !important; }

/* dropdown panel — flush under trigger (no hover dead zone) */
.lang-switch__menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  min-width: 52px;
  width: max-content;
  margin-top: 2px;
  padding: 6px;
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  z-index: 201;
  pointer-events: auto;
}
.lang-switch__menu .lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 249, 239, .78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
}
.lang-switch__menu .lang-btn:hover { background: var(--gold-tint); color: var(--cream); }
.lang-switch--premium.is-open .lang-switch__menu .lang-btn.active,
.lang-switch--premium:hover .lang-switch__menu .lang-btn.active,
.lang-switch--premium:focus-within .lang-switch__menu .lang-btn.active {
  display: none !important;
}
/* no native browser tooltips on lang codes */
.lang-switch--premium .lang-btn[title] { pointer-events: auto; }

.lang-switch--premium.is-open .lang-switch__menu,
.lang-switch--premium:hover .lang-switch__menu,
.lang-switch--premium:focus-within .lang-switch__menu {
  display: flex;
}

/* invisible bridge — covers gap + full dropdown while open/hovered */
.lang-switch--premium::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 0;
  display: none;
  pointer-events: auto;
}
.lang-switch--premium.is-open::after,
.lang-switch--premium:hover::after,
.lang-switch--premium:focus-within::after {
  display: block;
  height: 148px;
}

/* Burger — hidden on desktop; normal 3-line icon on mobile (#2) */
.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  flex-shrink: 0;
}
/* default markup (2 spans) — only when JS hasn't rebuilt yet */
.menu-toggle:not([data-dfg-burger-ready]) span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 2px;
  background: var(--gold);
}
/* JS rebuilds to 3 .dfg-burger-line spans */
.menu-toggle .dfg-burger-line,
.menu-toggle[data-dfg-burger-ready="true"] span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 2px;
  background: var(--gold);
  position: static;
}
.menu-toggle[data-dfg-burger-ready="true"] { position: relative; }

/* Mobile close button must never leak into desktop/header layout. */
.dfg-menu-close { display: none; }

/* ============================================================================
   MOBILE NAV (<= 980px) — full-screen panel, oval menu items, contacts block
   JS toggles: body.menu-open, #mainNav.dfg-mobile-nav, html.dfg-clean-mobile
   ============================================================================ */
@media (max-width: 980px) {
  .site-header--v9 .header-main {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 16px;
  }
  .site-header--v9 .main-nav { display: none; }
  .brand--v9 { justify-self: start; max-width: calc(100% - 56px); }
  .header-actions {
    justify-self: end;
    gap: 0;
  }
  .header-phone,
  .header-contact,
  .lang-switch--premium { display: none; }
  .menu-toggle { display: inline-flex; }

  /* portaled mobile nav */
  #mainNav.dfg-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    inset: 0;
    z-index: 1200;
    margin: 0;
    padding: calc(var(--header-h) + 16px) var(--gutter) 32px;
    background: var(--bg);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform .32s var(--ease);
  }
  body.menu-open #mainNav.dfg-mobile-nav { transform: translateX(0); }
  body.menu-open .dfg-menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 1300;
    width: 46px;
    height: 46px;
    border: 1px solid var(--gold-line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    color: var(--cream);
  }

  #mainNav.dfg-mobile-nav > a {
    padding: 15px 18px;
    border: 1px solid var(--gold-line);
    border-radius: var(--pill);
    background: rgba(255, 255, 255, .04);
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
  }

  /* services block: full-width rounded panel, pill links inside */
  #mainNav.dfg-mobile-nav .nav-dropdown {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--gold-line);
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .04);
    overflow: visible;
  }
  #mainNav.dfg-mobile-nav .nav-dropdown__link {
    flex: 1;
    padding: 15px 18px;
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
  }
  #mainNav.dfg-mobile-nav .nav-dropdown__toggle {
    width: 48px;
    height: 48px;
    margin: 0 6px;
    border-radius: var(--pill);
    background: var(--gold-tint);
    color: var(--gold);
    font-size: 14px;
  }
  #mainNav.dfg-mobile-nav .nav-dropdown.is-open .nav-dropdown__toggle {
    background: var(--gold-grad);
    color: var(--ink);
  }
  #mainNav.dfg-mobile-nav .nav-dropdown.is-open {
    overflow: visible;
  }
  #mainNav.dfg-mobile-nav .nav-dropdown__menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    flex-basis: 100%;
    width: 100%;
    grid-template-columns: none;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-top: 1px solid var(--gold-line);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    background: rgba(3, 10, 18, .5);
    box-shadow: none;
    overflow: hidden;
  }
  #mainNav.dfg-mobile-nav .nav-dropdown.is-open .nav-dropdown__menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 12px;
    max-height: min(48vh, 320px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  #mainNav.dfg-mobile-nav .nav-dropdown__menu a {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    border: 1px solid var(--gold-line);
    border-radius: var(--pill);
    background: rgba(255, 255, 255, .05);
    color: var(--cream);
    font-size: 14px;
    line-height: 1.25;
    white-space: normal;
    text-align: left;
  }
  #mainNav.dfg-mobile-nav .nav-dropdown__menu a:first-child {
    border-radius: var(--pill);
  }

  /* contacts block injected by JS at the bottom of the menu */
  .dfg-menu-contacts {
    margin-top: 14px;
    padding: 16px;
    border: 1px solid var(--gold-line);
    border-radius: var(--r);
    background: rgba(255, 255, 255, .04);
  }
  .dfg-menu-contacts__title {
    margin: 0 0 12px;
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .dfg-menu-contacts__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
  }
  .dfg-menu-contacts__row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    padding: 8px 0;
    color: var(--cream);
    text-decoration: none;
  }
  .dfg-menu-contacts__row span {
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-faint);
  }
  .dfg-menu-contacts__row b {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    word-break: break-word;
  }
  .dfg-menu-contacts__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 13px;
    border-radius: var(--pill);
    background: var(--gold-grad);
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
  }

  html.dfg-clean-mobile .dfg-mobile-jump {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 12px;
    padding: 2px 0 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  html.dfg-clean-mobile .dfg-mobile-jump::-webkit-scrollbar { display: none; }
  html.dfg-clean-mobile .dfg-mobile-jump a {
    flex: 0 0 auto;
    padding: 7px 12px;
    border-radius: var(--pill);
    border: 1px solid var(--gold-line);
    background: rgba(255, 255, 255, .05);
    color: var(--cream);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
  }
}

#mainNav:not(.dfg-mobile-nav) .dfg-menu-contacts {
  display: none !important;
}

/* Never leak mobile panel / dropdown styles into desktop header after resize */
@media (min-width: 981px) {
  #menuToggle,
  #dfgMenuClose,
  #dfgMenuBackdrop {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  #mainNav.dfg-mobile-nav {
    position: static !important;
    inset: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(18px, 1.6vw, 26px) !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: auto !important;
  }

  body.menu-open #mainNav.dfg-mobile-nav {
    transform: none !important;
  }

  #mainNav:not(.dfg-mobile-nav) .nav-dropdown {
    display: inline-flex;
    width: auto;
    flex-wrap: nowrap;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }
  #mainNav:not(.dfg-mobile-nav) .nav-dropdown__menu {
    position: absolute;
    display: grid;
    width: auto;
    min-width: 280px;
    padding: 10px;
    border: 1px solid var(--gold-line);
    border-radius: var(--r);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
  }
  #mainNav:not(.dfg-mobile-nav) .nav-dropdown.is-open .nav-dropdown__menu,
  #mainNav:not(.dfg-mobile-nav) .nav-dropdown:hover .nav-dropdown__menu,
  #mainNav:not(.dfg-mobile-nav) .nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
  }
}

/* ===== @part 06-footer.css ===== */
/* ============================================================================
   06-footer.css — standard site footer
   ============================================================================ */

.site-footer--v9 {
  background: var(--bg-soft);
  border-top: 1px solid var(--gold-line);
  padding-block: clamp(36px, 4vw, 52px) 22px;
}

.site-footer--v9 .footer-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(110px, 0.55fr) minmax(380px, 1.55fr);
  gap: clamp(20px, 2.5vw, 36px);
  align-items: start;
  width: 100%;
}

.footer-brand-col,
.footer-links-col,
.footer-contact-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.footer-brand-col .brand--footer {
  display: inline-flex;
  align-items: flex-start;
  margin: 0 0 14px;
  line-height: 1.2;
}

.footer-brand-col .brand--footer strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.5vw, 24px);
  letter-spacing: .08em;
  color: var(--cream);
}

.footer-brand-col .brand--footer small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-brand-col p {
  max-width: 32ch;
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.footer-links-col h3,
.footer-contact-column h3 {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.2;
}

.footer-links-col a {
  display: block;
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.35;
  transition: color .25s var(--ease);
}

.footer-links-col a:hover { color: var(--gold); }

.footer-contact-column {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  width: 100%;
  min-width: 0;
}

/* ---- WhatsApp block ---- */
.footer-whatsapp {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  min-height: 50px;
  margin: 0 0 16px;
  padding: 8px 16px 8px 8px;
  border-radius: var(--pill);
  border: 1px solid rgba(158, 197, 158, .38);
  background: #25D366;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  box-shadow: 0 10px 28px rgba(20, 120, 60, .22);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.footer-whatsapp::before {
  display: none;
}

.footer-whatsapp:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(20, 120, 60, .28);
}

.footer-whatsapp__copy {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.footer-whatsapp .wa-static { flex-shrink: 0; white-space: nowrap; }
.footer-whatsapp .wa-separator { flex-shrink: 0; opacity: .78; }

.footer-whatsapp .wa-country-slot {
  display: inline-block;
  min-width: 7em;
  overflow: hidden;
}

.footer-whatsapp .wa-country-slot__viewport {
  display: block;
  height: 1.35em;
  overflow: hidden;
  line-height: 1.35;
}

.footer-whatsapp .wa-country-slot__track {
  display: flex;
  flex-direction: column;
  transition: transform .48s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.footer-whatsapp .wa-country-slot__item {
  flex: 0 0 1.35em;
  height: 1.35em;
  line-height: 1.35;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 800;
}

.footer-whatsapp__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-whatsapp__icon img,
.footer-whatsapp__icon svg {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .22));
}

/* ---- Contact list ---- */
.footer-contact-list {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0 14px;
  width: 100%;
}

.footer-contact-list__col {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.footer-contact-line {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  row-gap: 3px;
  padding: 9px 0;
  min-width: 0;
  transition: color .25s var(--ease);
}

.footer-contact-line:hover .footer-contact-line__value { color: var(--gold); }

.footer-app-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

.footer-app-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.footer-app-icon--phone {
  background: linear-gradient(180deg, #5fe07a 0%, #34c759 100%);
  color: #fff;
}

.footer-app-icon--telegram {
  background: linear-gradient(180deg, #3fc0f3 0%, #229ed9 100%);
  color: #fff;
}

.footer-app-icon--gmail {
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

.footer-app-icon--gmail svg {
  width: 20px;
  height: 20px;
}

.footer-app-icon--website {
  background: linear-gradient(180deg, #7eb8ff 0%, #4880bc 100%);
  color: #fff;
}

.footer-app-icon--tiktok {
  background: linear-gradient(180deg, #3a3a3a 0%, #111 100%);
  color: #fff;
}

.footer-app-icon--instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 100%);
  color: #fff;
}

.footer-app-icon--facebook {
  background: linear-gradient(180deg, #4f8df5 0%, #1877f2 100%);
  color: #fff;
}

.footer-contact-line__label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.2;
}

.footer-contact-line__value {
  margin: 0;
  font-size: clamp(16px, 1.05vw, 18px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--cream);
  white-space: normal;
  overflow-wrap: anywhere;
  transition: color .25s var(--ease);
}

@media (min-width: 961px) {
  .footer-contact-line__value {
    white-space: nowrap;
    overflow-wrap: normal;
  }
}

.agile-credit {
  margin-top: clamp(28px, 3.5vw, 40px);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
}

.agile-credit a:hover { color: var(--gold); }

@media (max-width: 960px) {
  .site-footer--v9 .footer-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer--v9 {
    padding-top: 28px;
    padding-bottom: calc(var(--quickbar-offset) + 12px);
  }

  .site-footer--v9 .footer-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    margin-bottom: 2px;
  }

  .footer-brand-col .brand--footer {
    margin-bottom: 8px;
  }

  .footer-brand-col .brand--footer strong {
    font-size: 17px;
    letter-spacing: .06em;
  }

  .footer-brand-col .brand--footer small {
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: .14em;
  }

  .footer-brand-col p {
    max-width: none;
    font-size: 12.5px;
    line-height: 1.48;
  }

  .footer-links-col h3,
  .footer-contact-column h3 {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: .16em;
  }

  .footer-links-col a {
    padding: 3px 0;
    font-size: 12.5px;
    line-height: 1.3;
  }

  .footer-whatsapp {
    min-height: 40px;
    margin-bottom: 8px;
    padding: 5px 8px 5px 5px;
    gap: 6px;
    font-size: 11px;
  }

  .footer-whatsapp__icon {
    width: 30px;
    height: 30px;
  }

  .footer-whatsapp__icon img,
  .footer-whatsapp__icon svg {
    width: 26px;
    height: 26px;
  }

  .footer-whatsapp .wa-country-slot {
    min-width: 4.5em;
  }

  .footer-whatsapp .wa-country-slot__item {
    font-size: 11px;
  }

  .footer-contact-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-contact-list__col {
    gap: 0;
  }

  .footer-contact-line {
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 9px;
    row-gap: 2px;
    padding: 6px 0;
  }

  .footer-app-icon {
    width: 32px;
    height: 32px;
  }

  .footer-app-icon svg {
    width: 17px;
    height: 17px;
  }

  .footer-app-icon--gmail svg {
    width: 18px;
    height: 18px;
  }

  .footer-contact-line__label {
    font-size: 10px;
    letter-spacing: .1em;
  }

  .footer-contact-line__value {
    font-size: 14px;
    line-height: 1.32;
  }

  .agile-credit {
    margin-top: 18px;
    padding-top: 12px;
    font-size: 11px;
  }
}

/* ===== @part 07-chrome.css ===== */
/* ============================================================================
   07-chrome.css — loader, modals, floating actions, toast, cookies, quick bar
   ============================================================================ */

/* ---- Loader ---- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  gap: 18px;
  background: var(--bg);
  transition: opacity .4s var(--ease), visibility .4s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
html.dfg-loader-removed #pageLoader,
#pageLoader.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: none !important;
}
.loader__mark { font-family: var(--font-display); font-size: 46px; font-weight: 700; color: var(--gold); }
.loader__line { width: 120px; height: 2px; background: var(--gold-line); position: relative; overflow: hidden; }
.loader__line::after { content: ""; position: absolute; inset: 0; width: 40%; background: var(--gold); animation: dfg-load 1s var(--ease) infinite; }
@keyframes dfg-load { 0% { left: -40%; } 100% { left: 100%; } }

/* ---- Modals ---- */
html.dfg-scroll-lock,
body.dfg-scroll-lock {
  overflow: hidden !important;
  overscroll-behavior: none;
  touch-action: none;
}
html.dfg-menu-lock,
html.dfg-menu-lock body {
  overflow: hidden !important;
  overscroll-behavior: none;
  touch-action: none;
}
body.dfg-scroll-lock {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}
html.dfg-scroll-lock .v9-main,
html.dfg-scroll-lock .main-content {
  overflow: hidden;
}

/* Mobile menu backdrop (injected by v303 JS) */
#dfgMenuBackdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  background: rgba(2, 7, 13, .55);
  pointer-events: none;
}
#dfgMenuBackdrop.is-visible {
  display: block;
  pointer-events: auto;
}

.modal {
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  background: var(--surface);
  color: var(--text);
  padding: 0;
  width: min(880px, calc(100% - 28px));
  max-height: min(88svh, 880px);
  box-shadow: var(--shadow-lg);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 196, 126, .42) rgba(255, 255, 255, .05);
}
.modal::-webkit-scrollbar { width: 5px; }
.modal::-webkit-scrollbar-track {
  margin: 8px 0;
  background: rgba(255, 255, 255, .04);
  border-radius: 999px;
}
.modal::-webkit-scrollbar-thumb {
  background: rgba(232, 196, 126, .38);
  border-radius: 999px;
}
.modal::backdrop { background: rgba(2, 7, 13, .78); }

/* consultation form modal: narrower, single-column, fields fully contained */
.modal--form {
  width: min(580px, calc(100% - 20px));
  max-height: min(92svh, 820px);
}
.modal--form #modalFormContent { padding: clamp(20px, 3vw, 28px); }
.modal--form .lead-form { padding: 0; gap: 14px; }
.modal--form .lead-form--premium::before,
.modal--form .lead-form--premium::after { display: none !important; content: none !important; }
.modal--form .lead-form__experience-badge { display: none !important; }
.modal--form .lead-form__trust--top { display: none !important; }
.modal--form .form-grid { grid-template-columns: 1fr; }
.modal--form .field__control { min-width: 0; }
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-line-strong);
  border-radius: 12px;
  background: rgba(6, 17, 29, .72);
  color: transparent;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--gold);
  transform-origin: center;
}
.modal__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.modal__close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.modal__close:hover {
  background: var(--gold-tint);
  border-color: var(--gold);
}

/* ---- Full-page blog article reader ---- */
.modal.modal--article {
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--bg);
  box-shadow: none;
  overscroll-behavior: contain;
}

.modal.modal--article::backdrop {
  background: var(--bg);
}

.modal.modal--article .modal__close {
  position: fixed;
  top: calc(var(--header-h) + 10px);
  right: clamp(14px, 2.4vw, 24px);
  z-index: 12;
  background: rgba(6, 17, 29, .88);
  backdrop-filter: blur(8px);
}

.modal.modal--article #modalContent {
  min-height: 100%;
  padding: 0;
}

.modal:not(.modal--article) .modal-body {
  padding: clamp(24px, 3.5vw, 36px);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.modal .text-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: .18em;
}

.modal .text-link:hover {
  color: var(--cream);
}

/* ---- Floating quick action (desktop) ---- */
.floating-actions {
  display: none !important;
}
.floating-actions button {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--ink);
  font-size: 26px;
  box-shadow: var(--shadow);
}
.floating-actions button:hover { transform: translateY(-2px); }

/* ---- Toast ---- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  z-index: 3000;
  max-width: 90vw;
  padding: 13px 22px;
  border-radius: var(--pill);
  background: var(--surface-2);
  border: 1px solid var(--gold-line);
  color: var(--cream);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur), transform var(--dur);
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* ---- Cookie banner ---- hidden by default; JS adds .is-visible.
   #acceptCookies removes .is-visible. Force pointer-events so it's clickable. */
.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 2500;
  display: none;
  align-items: center;
  gap: 14px;
  width: min(420px, calc(100% - 36px));
  padding: 16px 18px;
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  background: var(--surface);
  box-shadow: var(--shadow);
  pointer-events: auto;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner * { pointer-events: auto; }
.cookie-banner p { margin: 0; font-size: 13px; color: var(--text-muted); }
.cookie-banner .btn { flex: 0 0 auto; }

/* ---- Mobile bottom quick bar (injected by JS) ---- */
#dfgMobileQuickBar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
  background: rgba(6, 17, 29, .92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold-line);
}
#dfgMobileQuickBar a,
#dfgMobileQuickBar button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 11px;
}
#dfgMobileQuickBar a svg,
#dfgMobileQuickBar button svg { width: 22px; height: 22px; }
#dfgMobileQuickBar .dfg-quickbar__cta { color: var(--gold); }

@media (max-width: 980px) {
  #dfgMobileQuickBar { display: grid; }
  .floating-actions { bottom: var(--quickbar-offset); }
  /* keep content clear of the fixed bottom bar */
  .v9-main,
  .main-content { padding-bottom: var(--quickbar-offset); }
  .site-footer--v9 { padding-bottom: calc(var(--quickbar-offset) + 12px); }
}

/* ===== @part 08-cards.css ===== */
/* ============================================================================
   08-cards.css — shared service card (home + services + JS-rendered)
   Markup: .service-card > .service-card__image(img + .card-icon)
                         > .service-card__body
                             > .service-card__copy(h3, .__category-badge, .__excerpt)
                             > .service-card__footer > .__footer-actions > a.__details-btn
   ============================================================================ */

.service-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  background: #fff9ef;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-line-strong);
  box-shadow: var(--shadow-lg);
}

.service-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-card__image img { transform: scale(1.05); }

.card-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--bg);
  color: var(--gold);
  box-shadow: 0 4px 14px rgba(6, 17, 29, .45);
}
.service-card .card-icon {
  background: var(--bg) !important;
  border: none !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 14px rgba(6, 17, 29, .45) !important;
  backdrop-filter: none !important;
}
.card-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 20px;
  flex: 1 1 auto;
  background: #fff9ef;
}
.service-card__copy { display: flex; flex-direction: column; gap: 8px; }
.service-card__copy h3 { font-size: 18px; line-height: 1.2; color: #07111d; overflow-wrap: break-word; }

.service-card__category-badge {
  align-self: flex-start;
  margin: 0;
  padding: 4px 10px;
  border: 1px solid var(--gold-line-strong);
  border-radius: var(--pill);
  background: rgba(232, 196, 126, .18);
  color: #7a5520;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.service-card__excerpt {
  margin: 0;
  color: rgba(7, 17, 29, .68);
  font-size: 13.5px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card__footer { margin-top: auto; padding-top: 4px; }
.service-card__footer-actions { display: flex; gap: 10px; }

/* Home grid — “view all services” CTA cell (same size as service cards) */
.service-card--catalog-cta {
  display: flex;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  border: 1px dashed rgba(232, 196, 126, .38);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 196, 126, .10), transparent 58%),
    linear-gradient(180deg, rgba(8, 23, 38, .98), rgba(6, 17, 29, .96));
  color: var(--cream);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.service-card--catalog-cta:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 196, 126, .55);
  box-shadow: var(--shadow);
  color: var(--cream);
}
.service-card--catalog-cta__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  min-height: 100%;
  text-align: center;
}
.service-card--catalog-cta__eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  flex-shrink: 0;
  min-height: 1.2em;
}
.service-card--catalog-cta strong {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.15;
  color: var(--cream);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(2 * 1.15em);
  margin: 0;
}
.service-card--catalog-cta p {
  margin: 0;
  color: rgba(255, 249, 239, .72);
  font-size: 13.5px;
  line-height: 1.55;
  flex: 1 1 auto;
  width: 100%;
  min-height: calc(3 * 1.55em);
}
.service-card--catalog-cta__btn {
  flex-shrink: 0;
  margin-top: auto;
}

button.service-card--apply-cta {
  width: 100%;
  margin: 0;
  border: 1px dashed rgba(232, 196, 126, .38);
  font: inherit;
  text-align: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
button.service-card--apply-cta:hover {
  color: var(--cream);
}

/* ===== @part 09-home.css ===== */
/* ============================================================================
   09-home.css — home hero, trust panel, direction rail, services, process, CTA
   ============================================================================ */

/* ---- HERO ---- */
.v238-direction-hero--home {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.v238-direction-hero--home .v238-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.04) contrast(1.02) brightness(.82);
  transform-origin: center center;
}
html.dfg-home-parallax .v238-direction-hero--home .v238-hero-photo {
  will-change: transform;
  transform: scale(1.27);
}
html.dfg-home-parallax .v238-direction-hero--home .v238-direction-hero__shade,
html.dfg-home-parallax .v238-direction-hero--home .v238-hero-photo {
  will-change: transform;
}
html.dfg-home-parallax .section--v9-home-services .section-head,
html.dfg-home-parallax #servicesGrid,
html.dfg-home-parallax .v9-home-process-block,
html.dfg-home-parallax .v9-why-cta > article {
  will-change: transform;
}
/* fine gold mesh: above photo, below scrim + copy (like dianafarm.group) */
.v238-direction-hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--texture-hero-fine);
  opacity: .92;
  pointer-events: none;
}
/* readability scrim + smooth bottom fade into page bg */
.v238-direction-hero--home .v238-direction-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 11, 20, .88) 0%, rgba(4, 11, 20, .58) 42%, rgba(4, 11, 20, .24) 70%, rgba(4, 11, 20, .55) 100%),
    linear-gradient(180deg, rgba(4, 11, 20, .08) 0%, rgba(4, 11, 20, .14) 58%, rgba(4, 11, 20, .22) 82%, rgba(6, 17, 29, .38) 100%);
  pointer-events: none;
}
/* extra soft blend strip at hero bottom (like production) */
.v238-direction-hero--home::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(120px, 15vw, 220px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(6, 17, 29, 0.2) 25%, 
    rgba(6, 17, 29, 0.6) 60%, 
    rgba(6, 17, 29, 0.9) 85%, 
    var(--bg) 100%);
}

/* hero — strictly one viewport, no peek of next section */
.v238-direction-hero--home.page-section {
  padding-block: 0;
}
.v238-direction-hero--home {
  height: 100svh;
  max-height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v238-direction-hero--home .v238-direction-hero__grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .72fr);
  align-items: center;
  align-content: center;
  gap: clamp(40px, 5vw, 80px);
  width: 100%;
  min-height: 0;
  margin: 0;
  padding-block: 0;
  box-sizing: border-box;
}
.v238-direction-hero--home .hero__copy {
  align-self: center;
  padding-top: 0;
  transform: none;
}
.v238-direction-hero--home .v238-direction-hero__panel {
  align-self: center;
  justify-self: end;
  margin-top: 0;
  transform: none;
}

@media (min-width: 981px) {
  .v238-direction-hero--home .hero__copy {
    grid-column: 1;
    grid-row: 1;
  }
  .v238-direction-hero--home .v238-direction-hero__panel {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
  }
}

.v238-direction-hero--home .hero__copy { max-width: 690px; }
.v238-direction-hero--home h1 {
  margin: 0 0 19px;
  font-size: clamp(70px, 5.65vw, 92px);
  line-height: .9;
  letter-spacing: -.035em;
  color: #fff;
  text-shadow: 0 24px 64px rgba(0, 0, 0, .55);
}
.v238-direction-hero--home .hero__eyebrow { color: var(--gold); font-size: 13px; font-weight: 800; letter-spacing: .067em; margin: 0 0 16px; }
.v238-direction-hero--home .hero__lead {
  max-width: 650px;
  margin-top: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
  line-height: 1.56;
}
.v238-direction-hero--home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
/* compact hero: eyebrow + h1 + buttons only — same vertical anchor as home */
.v238-direction-hero--home .hero__copy--compact h1 {
  margin-bottom: 28px;
}
.v238-direction-hero--home .hero__copy--compact .hero__actions {
  margin-top: 0;
}
/* #5 home hero buttons: rectangular, only slightly rounded */
.v238-direction-hero--home .hero__actions .btn {
  border-radius: 12px;
  min-width: 172px;
  min-height: 56px;
  padding: 17px 32px;
  font-size: 15px;
}

/* ---- TRUST PANEL (transparent rows + circle icons, like original) ---- */
.v238-direction-hero__panel {
  display: grid;
  gap: 25px;
  width: min(100%, 430px);
}
.hero-feature {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.hero-feature__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  min-width: 68px;
  border: 1.5px solid rgba(255, 255, 255, .82);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16), inset 0 0 24px rgba(255, 255, 255, .04);
}
/* home trust panel: keep circles even if legacy JS tries to strip ovals */
.v238-direction-hero--home .hero-feature__icon {
  border: 1.5px solid rgba(232, 196, 126, .72) !important;
  border-radius: 999px !important;
  background: rgba(232, 196, 126, .08) !important;
  color: var(--gold) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16), inset 0 0 24px rgba(232, 196, 126, .06) !important;
}
.v238-direction-hero--home .hero-feature__icon svg {
  stroke: var(--gold) !important;
}
.hero-feature__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-feature strong {
  display: block;
  margin: 0;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #fff;
}
.hero-feature p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.52;
}

a.hero-feature.hero-feature--link {
  color: inherit;
  text-decoration: none;
  transition: opacity .22s var(--ease);
}

a.hero-feature.hero-feature--link:hover {
  opacity: .94;
}

a.hero-feature.hero-feature--link:hover strong {
  color: var(--gold);
}

.hero-feature__icon--code {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
}

/* ---- DIRECTION RAIL (pills) — mobile only (#6) ---- */
.v238-direction-hero__rail {
  display: none !important;
}
.v238-direction-hero__rail span {
  padding: 9px 16px;
  border: 1px solid rgba(232, 196, 126, .42);
  border-radius: var(--pill);
  background: rgba(6, 17, 29, .62);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

/* ---- SERVICES SECTION (centered head, gold eyebrow) #7 ---- */
.section--v9-home-services {
  background: var(--bg);
  padding-block: clamp(28px, 3.5vw, 48px);
}
body[data-page="home"] .section--v9-home-services {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
body[data-page="home"] .section--v9-home-services .container {
  padding-bottom: 0;
}
body[data-page="home"] .section--v9-home-services .v9-why-cta {
  margin-bottom: 0;
  padding-bottom: 0;
}
body[data-page="home"] .section--v9-home-services .v9-why-cta > article.v9-final-cta {
  margin-bottom: 0;
  box-shadow:
    0 0 0 1px rgba(232, 196, 126, .05) inset,
    0 8px 22px rgba(0, 0, 0, .14) !important;
}
body[data-page="home"] .section--v9-home-services .v9-why-cta > article.v9-why-panel {
  box-shadow: 0 8px 22px rgba(0, 0, 0, .14);
}
/* Infinite ticker between hero and services (home only) */
body[data-page="home"] .dfg-home-ticker.dfg-services-ticker {
  overflow: hidden;
  width: 100%;
  border-block: 1px solid rgba(232, 196, 126, .16);
  background: var(--bg);
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

body[data-page="home"] .dfg-home-ticker__track {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  width: max-content;
  animation: dfg-home-ticker 36s linear infinite;
  will-change: transform;
}

body[data-page="home"] .dfg-home-ticker__track span {
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(232, 196, 126, .28);
  background: rgba(255, 255, 255, .05);
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}

@keyframes dfg-home-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .dfg-home-ticker__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
}

body[data-page="home"] .v238-direction-hero--home + .dfg-home-ticker + .section--v9-home-services,
body[data-page="home"] .v238-direction-hero--home + .section--v9-home-services {
  margin-top: clamp(-20px, -2vw, -8px);
  padding-top: clamp(16px, 2vw, 28px);
}

body[data-page="home"] .dfg-home-ticker + .section--v9-home-services {
  margin-top: 0;
  padding-top: clamp(16px, 2vw, 28px);
}
.section--v9-home-services .section-head {
  max-width: 760px;
  margin: 0 auto clamp(16px, 2.2vw, 24px);
  text-align: center;
}
.section--v9-home-services .section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: clamp(11px, .72vw, 13px);
  letter-spacing: .16em;
  opacity: .9;
}
.section--v9-home-services .section-head .eyebrow::before,
.section--v9-home-services .section-head .eyebrow::after {
  content: "";
  width: clamp(24px, 3vw, 48px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 173, 111, .78), transparent);
  opacity: .55;
}
.section--v9-home-services .section-head h2 {
  max-width: 720px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.12;
  letter-spacing: .01em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}

.section--v9-home-services #servicesGrid.cards-grid--home {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  width: 100%;
  min-width: 0;
}

/* catalog CTA lives inside #servicesGrid as last grid cell */
.section--v9-home-services .services-all-btn { display: none; }

.section--v9-home-services #servicesGrid.cards-grid--home {
  align-items: stretch;
}
.section--v9-home-services .service-card--catalog-cta,
.section--v9-home-services .service-card--apply-cta {
  align-self: stretch;
  height: 100%;
  min-height: 0;
  padding: 12px 12px 14px;
}
.section--v9-home-services .service-card--catalog-cta__inner {
  align-items: stretch;
  gap: 8px;
  text-align: left;
}
.section--v9-home-services .service-card--catalog-cta__eyebrow {
  font-size: 9px;
  letter-spacing: .14em;
}
.section--v9-home-services .service-card--catalog-cta strong {
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 0;
  font-size: clamp(13px, 3.4vw, 16px);
  line-height: 1.25;
  text-align: left;
}
.section--v9-home-services .service-card--catalog-cta p {
  min-height: 0;
  font-size: 12px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.section--v9-home-services .service-card--catalog-cta__btn {
  width: 100%;
  margin-top: auto;
  padding: 8px 10px;
  font-size: 12px;
}

/* ---- PROCESS — roadmap steps ---- */
.v9-home-process-block {
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: clamp(4px, 0.8vw, 10px);
}
.v9-home-process-head {
  max-width: 640px;
  margin: 0 auto clamp(22px, 3vw, 32px);
  text-align: center;
}
.v9-home-process-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: clamp(11px, .72vw, 13px);
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .92;
}
.v9-home-process-head .eyebrow::before,
.v9-home-process-head .eyebrow::after {
  content: "";
  width: clamp(20px, 2.5vw, 40px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 173, 111, .78), transparent);
  opacity: .55;
}
.v9-home-process-head h2 {
  margin-top: 10px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.12;
  letter-spacing: .01em;
}

.v9-home-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.6vw, 18px);
  margin-top: 0;
  padding-top: 8px;
}
.v9-home-process::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 196, 126, .5), transparent);
  pointer-events: none;
}
.v9-home-process article {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 16px;
  border: 1px solid rgba(232, 196, 126, .16);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(10, 28, 46, .92), rgba(6, 17, 29, .88));
  box-shadow: 0 14px 36px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .04);
  text-align: center;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.v9-home-process article::before,
.v9-home-process article::after {
  display: none !important;
  content: none !important;
}
.v9-home-process article:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 196, 126, .34);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.v9-home-process__num,
.v9-home-process article > span {
  display: inline-grid !important;
  place-items: center;
  flex-shrink: 0;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  min-height: 44px;
  margin: 0 auto 2px;
  border: 2px solid rgba(232, 196, 126, .55) !important;
  border-radius: 999px !important;
  background: rgba(6, 17, 29, .96) !important;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 0 0 4px rgba(232, 196, 126, .08);
  backdrop-filter: none;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.v9-home-process article:hover .v9-home-process__num,
.v9-home-process article:hover > span {
  transform: scale(1.05);
  border-color: rgba(232, 196, 126, .78) !important;
  box-shadow: 0 0 0 6px rgba(232, 196, 126, .10), 0 0 18px rgba(232, 196, 126, .16);
}

.v9-home-process article strong {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255, 249, 239, .96);
  line-height: 1.2;
}
.v9-home-process article p {
  margin: 0;
  color: rgba(180, 204, 232, .78);
  font-size: clamp(12px, .95vw, 13.5px);
  line-height: 1.45;
  max-width: 22ch;
}

/* ---- WHY / FINAL CTA ---- */
.v9-why-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(14px, 1.8vw, 20px);
  margin-top: clamp(32px, 4vw, 48px);
  margin-bottom: 0;
}
.v9-why-cta > article {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(20px, 2.4vw, 28px);
  min-height: 0;
  border: 1px solid var(--gold-line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(8, 22, 36, .98), rgba(6, 17, 29, .96));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
}
.v9-why-cta > article.v9-why-panel {
  border-color: rgba(88, 148, 210, .28);
  padding: clamp(20px, 2.4vw, 28px);
}
.v9-why-cta > article.v9-final-cta {
  padding: clamp(20px, 2.4vw, 28px);
}
.v9-why-panel__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  min-width: 0;
  min-height: 100%;
  padding: 0;
}
.v9-why-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  min-width: 0;
  background: linear-gradient(180deg, rgba(8, 24, 40, .98), rgba(5, 16, 28, .96)) !important;
  box-shadow: none !important;
}
.v9-why-panel::before { display: none; }
.v9-why-panel__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.v9-why-panel__bg::before,
.v9-why-panel__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  opacity: .75;
  animation: v9-why-aurora 14s ease-in-out infinite;
}
.v9-why-panel__bg::before {
  top: -18%;
  left: -10%;
  width: 58%;
  height: 58%;
  background: rgba(52, 116, 176, .34);
}
.v9-why-panel__bg::after {
  right: -8%;
  bottom: -16%;
  width: 48%;
  height: 48%;
  background: rgba(232, 196, 126, .18);
  animation-delay: -7s;
}
@keyframes v9-why-aurora {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .62; }
  50% { transform: translate(6%, -5%) scale(1.1); opacity: .88; }
}
.v9-why-panel__title,
.v9-final-cta__title {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: .01em;
  text-align: left;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.v9-final-cta__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  align-self: stretch;
  width: 100%;
  min-width: 0;
  min-height: 0;
}
.v9-why-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(10px, 1.2vw, 14px);
  min-width: 0;
  min-height: 0;
}
.v9-why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(72, 128, 188, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.v9-why-item:hover {
  transform: translateX(4px);
  border-color: rgba(232, 196, 126, .26);
  background: rgba(255, 255, 255, .04);
}
.v9-why-item__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--gold);
  box-shadow: none;
}
.v9-why-item__icon svg {
  width: 22px;
  height: 22px;
}
@media (prefers-reduced-motion: reduce) {
  .v9-why-panel__bg::before,
  .v9-why-panel__bg::after { animation: none; }
}
.v9-why-item strong {
  min-width: 0;
  flex: 1;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.3;
  color: rgba(220, 236, 255, .96);
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: normal;
}

/* legacy grid cards — old markup fallback */
.v9-why-panel__head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  min-width: 0;
  padding: clamp(14px, 1.7vw, 18px);
  border: 1px solid rgba(126, 176, 226, .14);
  border-radius: 20px;
  background: rgba(255, 255, 255, .025);
  text-align: left;
}
.v9-why-panel__head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: clamp(10px, .66vw, 11px);
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .92;
}
.v9-why-panel__head .eyebrow::before,
.v9-why-panel__head .eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 173, 111, .78), transparent);
  opacity: .55;
}
.v9-why-panel__head .eyebrow::after { display: none; }
.v9-why-panel__head h3 {
  margin: 12px 0 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(25px, 2.05vw, 34px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: .01em;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
.v9-why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}
.v9-why-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 10px;
  row-gap: 4px;
  padding: 14px;
  min-width: 0;
  border: 1px solid rgba(72, 128, 188, .22);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(10, 28, 46, .92), rgba(6, 17, 29, .88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.v9-why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 16% 0%, rgba(126, 176, 226, .10), transparent 36%);
}
.v9-why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 196, 126, .28);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .05);
}
.v9-why-card strong {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.28;
  color: rgba(220, 236, 255, .96);
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  white-space: normal;
}
.v9-why-card p {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  color: rgba(180, 204, 232, .76);
  font-size: 12px;
  line-height: 1.36;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  white-space: normal;
}
.v9-why-card > * {
  position: relative;
  z-index: 1;
}

/* legacy pills — services pages may still reference until rebuilt */
.v9-why-cta h3 {
  margin: 0 0 20px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 700;
  line-height: 1.08;
}
.v9-mini-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.v9-mini-columns span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 58px;
  padding: 12px 10px;
  border: 1px solid rgba(232, 196, 126, .18);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .035);
  color: rgba(255, 249, 239, .88);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.28;
}
.v9-mini-columns span::before { display: none; }
.v9-final-cta {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 196, 126, .32) !important;
  border-radius: 26px;
  background:
    linear-gradient(160deg, rgba(7, 17, 29, .92) 0%, rgba(14, 24, 36, .88) 52%, rgba(28, 22, 16, .84) 100%),
    url("../img/reference/hero-reference-v7.svg");
  background-size: cover;
  background-position: center;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, .28),
    0 0 0 1px rgba(232, 196, 126, .05) inset !important;
}
.v9-final-cta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 60% at 100% 0%, rgba(232, 196, 126, .18), transparent 56%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(72, 128, 188, .12), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 30%);
}
.v9-final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  min-width: 0;
  min-height: 100%;
  padding: 0;
}
.v9-final-cta__lead {
  margin: 0;
  color: rgba(255, 249, 239, .92);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.45;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.v9-final-cta__points {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
  min-height: 0;
}
.v9-final-cta__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: rgba(235, 244, 255, .94);
  font-size: clamp(14px, 1.12vw, 16px);
  line-height: 1.45;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.v9-final-cta__points li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 1px solid rgba(232, 196, 126, .35);
  border-radius: 50%;
  background: rgba(232, 196, 126, .15);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.v9-final-cta .btn {
  align-self: stretch;
  width: 100%;
  margin-top: 12px;
  padding: 15px 24px;
  justify-content: center;
  text-align: center;
  min-height: 52px;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 800;
  letter-spacing: .04em;
  border: 1px solid rgba(255, 255, 255, .32);
  box-shadow:
    0 0 0 1px rgba(232, 196, 126, .18) inset,
    0 22px 44px rgba(232, 196, 126, .34),
    0 10px 28px rgba(0, 0, 0, .30);
}
.v9-final-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .38) inset,
    0 28px 52px rgba(232, 196, 126, .44),
    0 12px 32px rgba(0, 0, 0, .34);
}

@media (max-width: 1024px) {
  .section--v9-home-services #servicesGrid.cards-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 2.5vw, 18px);
  }
  .section--v9-home-services .service-card {
    min-width: 0;
  }
  .section--v9-home-services .service-card__body {
    padding: 12px 12px 14px;
  }
  .section--v9-home-services .service-card__copy h3 {
    font-size: clamp(13px, 3.4vw, 16px);
    line-height: 1.25;
    overflow-wrap: break-word;
  }
  .section--v9-home-services .service-card__category-badge {
    max-width: 100%;
    font-size: 9px;
    padding: 3px 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .section--v9-home-services .service-card__excerpt {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
  .section--v9-home-services .service-card__details-btn {
    width: 100%;
    padding: 8px 10px;
    font-size: 12px;
  }
  .v9-home-process::before { display: none; }
  .v9-home-process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v9-why-cta { grid-template-columns: 1fr; }
  .v9-why-list {
    justify-content: flex-start;
    gap: 10px;
  }
  .v9-final-cta__body {
    flex: 0 0 auto;
    gap: 12px;
  }
  .v9-final-cta__inner {
    flex: 0 0 auto;
    min-height: 0;
  }
  .v9-final-cta__points {
    flex: 0 0 auto;
    justify-content: flex-start;
    gap: 10px;
    margin: 0;
    padding: 0;
  }
  .v9-final-cta__points li {
    flex: 0 0 auto;
  }
  .v9-final-cta .btn {
    flex: 0 0 auto;
    margin-top: 4px;
  }
}

@media (max-width: 980px) {
  .v238-direction-hero--home {
    align-items: center;
    min-height: 100svh;
    height: auto;
    max-height: none;
  }
  .v238-direction-hero--home .v238-direction-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    align-items: center;
    align-content: center;
    padding-block: calc(var(--header-h) + 12px) 32px;
  }
  .v238-direction-hero--home .v238-direction-hero__panel {
    justify-self: stretch;
    transform: none;
    width: 100%;
    max-width: min(1040px, 100%);
  }
  .hero-feature {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
  }
  .hero-feature__icon { width: 52px; height: 52px; }
  .hero-feature__icon svg { width: 28px; height: 28px; }
  .hero-feature strong { font-size: 16px; }
  .hero-feature p { font-size: 13px; }
  .v238-direction-hero--home .hero__copy {
    max-width: 100%;
    min-width: 0;
  }
  .v238-direction-hero--home h1 {
    font-size: clamp(32px, 9vw, 56px);
    line-height: 1.05;
    overflow-wrap: break-word;
  }
  .v238-direction-hero--home .hero__lead {
    max-width: 100%;
    font-size: clamp(15px, 4vw, 18px);
    overflow-wrap: break-word;
  }
  .v238-direction-hero--home .hero__actions {
    width: 100%;
  }
  .v238-direction-hero--home .hero__actions .btn {
    flex: 1 1 calc(50% - 7px);
    min-width: 0;
  }

  /* direction rail — 2 pills per row on mobile */
  .v238-direction-hero__rail { justify-content: center; }
  .v238-direction-hero__rail span {
    flex: 1 1 calc(50% - 4px);
    max-width: calc(50% - 4px);
    box-sizing: border-box;
    text-align: center;
    padding: 10px 8px;
    font-size: 12px;
    line-height: 1.25;
    overflow-wrap: break-word;
    background: rgba(6, 17, 29, .78);
    border-color: rgba(232, 196, 126, .48);
  }
}

@media (max-width: 560px) {
  .section--v9-home-services #servicesGrid.cards-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .section--v9-home-services .section-head h2 {
    font-size: clamp(22px, 6.5vw, 28px);
  }
  .v238-direction-hero--home h1 {
    font-size: clamp(28px, 8.5vw, 44px);
  }
  .v238-direction-hero--home .hero__actions {
    flex-direction: column;
  }
  .v238-direction-hero--home .hero__actions .btn {
    flex: 1 1 auto;
    width: 100%;
  }
  .v9-home-process-block { margin-top: clamp(24px, 5vw, 36px); }
  .v9-home-process { grid-template-columns: 1fr; }
  .v9-why-cta { grid-template-columns: 1fr; }
  .v9-why-cta > article.v9-final-cta {
    height: auto;
    min-height: 0;
  }
  .v9-final-cta__inner,
  .v9-final-cta__body,
  .v9-final-cta__points {
    flex: 0 0 auto;
    min-height: auto;
  }
  .v9-final-cta__points {
    gap: 10px;
  }
  .v9-final-cta .btn {
    margin-top: 8px;
  }
}

/* Services catalog — card typography matches home grid */
body[data-page="services"] .section--v9-services #servicesGrid.cards-grid--home {
  align-items: stretch;
}

@media (max-width: 1024px) {
  body[data-page="services"] .section--v9-services .service-card {
    min-width: 0;
  }
  body[data-page="services"] .section--v9-services .service-card__body {
    padding: 12px 12px 14px;
  }
  body[data-page="services"] .section--v9-services .service-card__copy h3 {
    font-size: clamp(13px, 3.4vw, 16px);
    line-height: 1.25;
    overflow-wrap: break-word;
  }
  body[data-page="services"] .section--v9-services .service-card__category-badge {
    max-width: 100%;
    font-size: 9px;
    padding: 3px 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  body[data-page="services"] .section--v9-services .service-card__excerpt {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
  body[data-page="services"] .section--v9-services .service-card__details-btn {
    width: 100%;
    padding: 8px 10px;
    font-size: 12px;
  }
}

@media (min-width: 1025px) {
  body[data-page="services"] .section--v9-services .service-card__copy h3 {
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.22;
  }
  body[data-page="services"] .section--v9-services .service-card__excerpt {
    font-size: 14px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
  }
  body[data-page="services"] .section--v9-services .service-card__category-badge {
    font-size: 10px;
    padding: 4px 9px;
  }
  body[data-page="services"] .section--v9-services .service-card__details-btn {
    font-size: 13px;
    padding: 10px 14px;
  }
}

/* ===== @part 10-heroes.css ===== */
/* ============================================================================
   10-heroes.css — shared hero systems for inner pages
   A) .v238-direction-hero (photo <img> + shade)  → services/blog/realestate/uae/asia/service
   B) .v9-page-hero (--hero-img background)        → about/contacts/cars/b2b/legal/service-i18n
   + breadcrumbs, hero proof chips
   ============================================================================ */

/* ---------- A) v238 direction heroes (generic, non-home) ---------- */
.v238-direction-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.v238-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.03) brightness(.78);
}
.v238-direction-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 11, 20, .9), rgba(4, 11, 20, .55) 55%, rgba(4, 11, 20, .35)),
    linear-gradient(180deg, rgba(4, 11, 20, .25), rgba(4, 11, 20, .78));
  pointer-events: none;
}
.v238-direction-hero__grid,
.v238-direction-hero > .container {
  position: relative;
  z-index: 2;
}
/* default single-column hero content (blog/regions/realestate — not home/service/services) */
.v238-direction-hero:not(.v238-direction-hero--home):not(.v238-direction-hero--service):not(.v238-direction-hero--services) .v238-direction-hero__grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
  min-height: clamp(360px, 42vw, 480px);
  padding-block: calc(var(--header-h) + 36px) clamp(36px, 5vw, 60px);
}
.v238-direction-hero:not(.v238-direction-hero--home):not(.v238-direction-hero--service):not(.v238-direction-hero--services) h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.02em;
  color: #fff;
}

/* ---- Service hero: same 2-col layout + trust panel as home (#1) ---- */
@media (min-width: 981px) {
  .v238-direction-hero--service .v238-direction-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, .72fr);
    align-items: center;
    gap: clamp(40px, 5vw, 80px);
    min-height: clamp(480px, 55vh, 680px);
    padding-block: calc(var(--header-h) + 24px) clamp(36px, 5vw, 60px);
  }
  .v238-direction-hero--service .hero__copy { max-width: 690px; }
  .v238-direction-hero--service h1 {
    font-size: clamp(46px, 5vw, 72px);
    line-height: .95;
    color: #fff;
    text-shadow: 0 16px 48px rgba(0, 0, 0, .45);
  }
  .v238-direction-hero--service .hero__lead {
    max-width: 56ch;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(15px, 1.4vw, 18px);
  }
  .v238-direction-hero--service .hero__actions .btn { border-radius: 12px; }
  .v238-direction-hero--service .v238-direction-hero__rail { display: none; }
}
.v238-direction-hero--service .v238-breadcrumbs { margin-bottom: 12px; }
.v238-direction-hero--service .v238-breadcrumbs a,
.v238-direction-hero--service .v238-breadcrumbs span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.v238-direction-hero--service .v238-breadcrumbs span { color: var(--text-faint); }

.v238-direction-hero:not(.v238-direction-hero--home) h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.02em;
  color: #fff;
}
.v238-direction-hero p { color: var(--text-muted); font-size: clamp(15px, 1.4vw, 18px); max-width: 56ch; }

/* keep services title stronger than the generic inner hero rule above */
.v238-direction-hero--services h1.services-title-v199 {
  font-size: clamp(58px, 5.2vw, 86px);
  line-height: .92;
  letter-spacing: -.035em;
}

/* All --home heroes share 09-home.css sizing; legacy --services overrides removed. */
.services-title-v199__lead,
.services-title-v199__phrase { color: var(--text-muted); }

/* Inner landing heroes (blog, services, reviews…): same premium look as home + bottom fade */
body.v9-body:not([data-page="home"]) .v238-direction-hero--home {
  height: 100svh;
  max-height: 100svh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.v9-body:not([data-page="home"]) .v238-direction-hero--home .v238-hero-photo {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.02) brightness(.82);
}

body[data-page="blog"] .v238-direction-hero--home .v238-hero-photo {
  object-position: 62% 40%;
  filter: saturate(1.08) contrast(1.03) brightness(.86);
}

body[data-page="contacts"] .v238-direction-hero--home .v238-hero-photo {
  object-position: 58% 42%;
}

body.v9-body:not([data-page="home"]) .v238-direction-hero--home .v238-direction-hero__shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 11, 20, .88) 0%, rgba(4, 11, 20, .58) 42%, rgba(4, 11, 20, .24) 70%, rgba(4, 11, 20, .55) 100%),
    linear-gradient(180deg, rgba(4, 11, 20, .10) 0%, rgba(4, 11, 20, .24) 40%, rgba(6, 17, 29, .6) 70%, var(--bg) 100%);
}

body.v9-body:not([data-page="home"]) .v238-direction-hero--home::after {
  height: clamp(160px, 18vw, 280px);
  z-index: 1;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(6, 17, 29, 0.2) 25%, 
    rgba(6, 17, 29, 0.6) 60%, 
    rgba(6, 17, 29, 0.9) 85%, 
    var(--bg) 100%);
}

body.v9-body:not([data-page="home"]) .v238-direction-hero--home .v238-direction-hero__grid {
  padding-block: 0;
}

body.v9-body:not([data-page="home"]) .v238-direction-hero--home .hero__lead {
  color: rgba(255, 255, 255, .86);
}

body.v9-body:not([data-page="home"]) .v238-direction-hero--home h1 {
  text-shadow: 0 16px 48px rgba(0, 0, 0, .45);
}

@media (max-width: 980px) {
  body.v9-body:not([data-page="home"]) .v238-direction-hero--home {
    height: auto;
    max-height: none;
    min-height: 100svh;
  }

  body.v9-body:not([data-page="home"]) .v238-direction-hero--home .v238-direction-hero__grid {
    padding-block: calc(var(--header-h) + 12px) 32px;
  }

  body[data-page="blog"] .v238-direction-hero--home .v238-hero-photo {
    object-position: 58% 36%;
  }
}

/* ---------- B) v9-page-hero (background image via --hero-img) ---------- */
.v9-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.v9-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
}
.v9-page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 11, 20, .92), rgba(4, 11, 20, .55) 55%, rgba(4, 11, 20, .3)),
    linear-gradient(180deg, rgba(4, 11, 20, .25), rgba(4, 11, 20, .8));
}
.v9-page-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  min-height: clamp(380px, 44vw, 520px);
  padding-block: calc(var(--header-h) + 32px) clamp(36px, 5vw, 60px);
}
.v9-page-hero__copy { max-width: 640px; }
.v9-page-hero__copy h1 {
  margin: 10px 0 16px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.02em;
  color: #fff;
}
.v9-page-hero__copy p { color: var(--text-muted); font-size: clamp(15px, 1.4vw, 18px); }
.v9-page-hero .hero__actions,
.v9-page-hero .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.breadcrumbs a { color: var(--gold); }
.breadcrumbs a::after { content: "›"; margin-left: 8px; color: var(--text-faint); }

/* ---------- Hero proof chips (v103-hero-proof) ---------- */
.v103-hero-proof {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.v103-hero-proof article {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  background: rgba(6, 17, 29, .55);
  backdrop-filter: blur(6px);
}
.v103-hero-proof article span { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.v103-hero-proof article strong { font-family: var(--font-display); font-size: 22px; color: var(--cream); }
.v103-hero-proof article small { color: var(--text-muted); font-size: 12.5px; }

@media (max-width: 980px) {
  .v9-page-hero__grid { grid-template-columns: 1fr; gap: 24px; min-height: auto; padding-block: calc(var(--header-h) + 22px) 36px; }
}

/* ===== @part 11-forms-filters.css ===== */
/* ============================================================================
   11-forms-filters.css — lead forms, fields, tabs, premium filter widgets
   ============================================================================ */

/* ---------- Lead form ---------- */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lead-form__head span.lead-form__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.lead-form__head h3 { font-size: clamp(20px, 2.2vw, 26px); color: var(--cream); }
.lead-form__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  position: relative;
}
.lead-form__head p { margin: 8px 0 0; color: var(--text-muted); font-size: 14px; line-height: 1.55; }

.lead-form__trust--top {
  order: -1;
  margin: 0 0 2px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
}
.lead-form__trust--top span {
  padding: 6px 10px;
  border: 1px solid var(--gold-line);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, .03);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dfg-hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field > span { font-size: 12px; letter-spacing: .04em; color: var(--text-faint); }
.field__control {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .04);
  transition: border-color var(--dur) var(--ease);
}
.field__control:focus-within {
  border-color: rgba(232, 196, 126, .55);
  background: rgba(255, 255, 255, .04);
  box-shadow: none;
}
.field__control input:focus,
.field__control input:focus-visible,
.field__control textarea:focus,
.field__control textarea:focus-visible,
.field--premium:focus-within,
.field--premium:focus-visible {
  outline: none;
}
.field__control input,
.field__control textarea {
  flex: 1;
  width: 100%;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: var(--cream);
  font: inherit;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
/* keep dark theme when browser autofill is used */
.field__control input:-webkit-autofill,
.field__control input:-webkit-autofill:hover,
.field__control input:-webkit-autofill:focus,
.field__control input:-webkit-autofill:active,
.field__control textarea:-webkit-autofill,
.field__control textarea:-webkit-autofill:hover,
.field__control textarea:-webkit-autofill:focus,
.field__control textarea:-webkit-autofill:active {
  -webkit-text-fill-color: var(--cream) !important;
  caret-color: var(--cream);
  box-shadow: 0 0 0 1000px #0c1a29 inset !important;
  transition: background-color 99999s ease-out 0s;
}
.field__control input:autofill,
.field__control textarea:autofill {
  box-shadow: 0 0 0 1000px #0c1a29 inset !important;
  -webkit-text-fill-color: var(--cream) !important;
}
.field__control input::placeholder,
.field__control textarea::placeholder { color: var(--text-faint); }
.field__control--textarea { align-items: flex-start; }
.field__control--textarea textarea { min-height: 96px; resize: vertical; padding-top: 12px; }

.field--invalid .field__control {
  border-color: rgba(255, 120, 120, .72);
  background: rgba(255, 80, 80, .06);
}
.field__error {
  display: none;
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: #ff9a9a;
}
.field--invalid .field__error { display: block; }
.field__control > i { display: inline-flex; color: var(--gold); opacity: .8; }
.field--minimal .field__control { padding-inline: 14px; }

.lead-form__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lead-form__trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.lead-form__trust span strong { color: var(--cream); font-weight: 600; }
.lead-form__trust span small { color: var(--text-faint); }
.lead-form__trust i { color: var(--gold); }

.lead-form__success {
  display: none;
  padding: 14px 16px;
  border: 1px solid var(--gold-line-strong);
  border-radius: var(--r-sm);
  background: var(--gold-tint);
  color: var(--cream);
}
.lead-form.is-sent .lead-form__success { display: block; }

.lead-form__experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid var(--gold-line);
  border-radius: var(--pill);
  background: rgba(6, 17, 29, .55);
  flex-shrink: 0;
}
.lead-form__experience-badge i { color: var(--gold); display: inline-flex; }
.lead-form__experience-badge i svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.lead-form__experience-badge strong { display: block; font-size: 11px; line-height: 1.2; color: var(--cream); }
.lead-form__experience-badge small { color: var(--text-faint); font-size: 10px; letter-spacing: .04em; }

.modal--form .lead-form__experience-badge {
  position: absolute;
  top: 0;
  right: 0;
  max-width: min(168px, 42%);
}
.modal--form .lead-form__title-row h3 {
  padding-right: min(176px, 44%);
  line-height: 1.08;
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.5;
}
.form-note__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: var(--gold-tint);
  color: var(--gold);
}
.form-note__icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-form--premium .btn--wide i { display: none; }

/* ---------- Modal form: minimal, structured ---------- */
.lead-form--modal {
  gap: 12px;
}
.lead-form--modal .lead-form__meta {
  margin: 0;
  padding: 0;
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--text-faint);
}
.lead-form--modal .lead-form__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}
.lead-form--modal .lead-form__head h3 {
  margin: 0;
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1.08;
}
.lead-form--modal .lead-form__subtitle {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
}
.lead-form--modal .form-grid {
  gap: 10px;
}
.lead-form--modal .field > span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
  color: rgba(255, 249, 239, .9);
}
.lead-form--modal .field > span em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}
.lead-form--modal .field__control {
  min-height: 46px;
  border-radius: 12px;
  background: #0c1a29;
}
.lead-form--modal .field__control--textarea {
  min-height: 88px;
  align-items: flex-start;
  padding-top: 10px;
}
.lead-form--modal .field__control input,
.lead-form--modal .field__control textarea {
  padding-block: 11px;
  font-size: 15px;
}
.lead-form--modal .field__control input:-webkit-autofill,
.lead-form--modal .field__control input:-webkit-autofill:focus,
.lead-form--modal .field__control textarea:-webkit-autofill,
.lead-form--modal .field__control textarea:-webkit-autofill:focus {
  box-shadow: 0 0 0 1000px #0c1a29 inset !important;
}
.lead-form--modal .btn--wide {
  margin-top: 4px;
}

/* ---------- Tabs (form tabs) ---------- */
.tabs { display: inline-flex; gap: 4px; padding: 4px; margin-bottom: 18px; border: 1px solid var(--line-2); border-radius: var(--pill); background: rgba(255, 255, 255, .03); }
.tab { padding: 9px 18px; border: 0; border-radius: var(--pill); background: transparent; color: var(--text-muted); font-size: 13px; font-weight: 600; }
.tab.active { background: var(--gold-grad); color: var(--ink); }

/* ---------- Filters: simple chip buttons ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
  padding: 9px 16px;
  border: 1px solid var(--gold-line);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, .04);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}
.filter-btn:hover { color: var(--cream); }
.filter-btn.active { background: var(--gold-grad); color: var(--ink); border-color: transparent; }

/* ---------- Premium filter (dropdown) ---------- */
.catalog-toolbar,
.v9-filter-bar { padding-block: clamp(20px, 3vw, 32px); }
.catalog-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.premium-filter { position: relative; }
.premium-filter__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid var(--gold-line);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, .04);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
}
.premium-filter__button[aria-expanded="true"] { border-color: var(--gold); }
.premium-filter__label { color: var(--text-muted); }
.premium-filter__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 50;
  display: none;
  flex-direction: column;
  gap: 2px;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.premium-filter.is-open .premium-filter__menu { display: flex; }
.premium-filter__option {
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  text-align: left;
}
.premium-filter__option:hover { background: var(--gold-tint); color: var(--cream); }
.premium-filter__option.active { color: var(--gold); }

/* search field inside toolbars */
.catalog-toolbar input[type="search"],
.v9-catalog-toolbar input[type="search"] {
  flex: 1;
  min-width: 200px;
  padding: 11px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, .04);
  color: var(--cream);
  font: inherit;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  color: var(--text-muted);
  border: 1px dashed var(--line-2);
  border-radius: var(--r);
}

@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
  .modal--form .lead-form__experience-badge {
    position: static;
    max-width: none;
    width: 100%;
    margin-top: 8px;
  }
  .modal--form .lead-form__title-row h3 { padding-right: 0; }
  .modal--form .lead-form__title-row { flex-direction: column; }
}

/* ===== @part 12-catalog.css ===== */
/* ============================================================================
   12-catalog.css — object/b2b/blog/location/brand/advantage/legal cards,
   badges, social pills
   ============================================================================ */

.object-grid,
.blog-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

/* ---------- Object card (real estate / cars) ---------- */
.object-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.object-card:hover { transform: translateY(-4px); border-color: var(--gold-line-strong); box-shadow: var(--shadow-lg); }
.object-card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.object-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.object-card:hover .object-card__media img { transform: scale(1.05); }
.badge-row { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.badge {
  padding: 5px 11px;
  border-radius: var(--pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.badge--gold { background: var(--gold-grad); color: var(--ink); }
.badge--green { background: rgba(46, 160, 102, .9); color: #fff; }
.object-card__body { display: flex; flex-direction: column; gap: 10px; padding: 18px; flex: 1; }
.object-card__body h3 { font-size: 18px; color: var(--cream); }
.object-meta { display: flex; flex-wrap: wrap; gap: 12px; color: var(--text-muted); font-size: 13px; }
.object-meta__location::before { content: "📍 "; }
.object-price { margin-top: auto; font-family: var(--font-display); font-size: 22px; color: var(--gold); }
.object-card__actions { display: flex; gap: 10px; padding-top: 4px; }

/* ---------- B2B cards ---------- */
.b2b-category-layout { display: flex; flex-direction: column; gap: clamp(28px, 4vw, 48px); }
.b2b-category-head { margin-bottom: 16px; }
.b2b-category-head h3 { font-size: clamp(22px, 2.4vw, 30px); color: var(--cream); }
.b2b-category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(16px, 2vw, 24px); }
.b2b-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.b2b-card:hover { transform: translateY(-4px); border-color: var(--gold-line-strong); }
.b2b-card__image { aspect-ratio: 16 / 10; overflow: hidden; }
.b2b-card__image img { width: 100%; height: 100%; object-fit: cover; }
.b2b-card__body { display: flex; flex-direction: column; gap: 10px; padding: 18px; flex: 1; }
.b2b-card__category { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.b2b-card__body h3 { font-size: 18px; color: var(--cream); }
.b2b-card__body p { color: var(--text-muted); font-size: 13.5px; }
.b2b-card__body ul { display: flex; flex-direction: column; gap: 6px; margin: 0; }
.b2b-card__body ul li { position: relative; padding-left: 18px; color: var(--text-muted); font-size: 13px; }
.b2b-card__body ul li::before { content: "▸"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Blog cards ---------- */
.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--gold-line-strong); }
.blog-card__image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2); }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { display: flex; flex-direction: column; gap: 10px; padding: 18px; flex: 1; }
.blog-card__body time { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }
.blog-card__body h3 { font-size: 19px; color: var(--cream); }
.blog-card__body p { color: var(--text-muted); font-size: 13.5px; }
.blog-card__footer { margin-top: auto; padding-top: 6px; }

/* ---------- Location cards ---------- */
.location-card {
  padding: 22px;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  background: var(--surface);
}
.location-card h3 { font-size: 18px; color: var(--cream); margin-bottom: 8px; }
.location-card p { color: var(--text-muted); font-size: 13.5px; }

/* ---------- Brand cards (about) — horizontal rows, circular mark ---------- */
.brand-stack { display: grid; gap: 18px; }
.brand-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(232, 196, 126, .22);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(12, 28, 48, .96), rgba(5, 14, 27, .98));
  box-shadow: 0 22px 54px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .055);
}
.brand-card__mark {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(232, 196, 126, .42);
  background:
    radial-gradient(circle at 32% 24%, rgba(232, 196, 126, .24), transparent 58%),
    linear-gradient(155deg, rgba(16, 36, 62, .98), rgba(6, 16, 30, .98));
  color: #e8c47e;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}
.brand-card__mark svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand-card--primary .brand-card__mark {
  border-color: rgba(245, 223, 168, .62);
  color: #f5dfa8;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, .32),
    0 0 0 1px rgba(245, 223, 168, .12),
    inset 0 1px 0 rgba(255, 255, 255, .12);
}
.brand-card h3 { color: #fff9ef; font-size: clamp(25px, 2.1vw, 36px); line-height: 1.04; }
.brand-card__lead {
  margin: 10px 0 0;
  color: rgba(255, 249, 239, .92);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.68;
}
.brand-card--primary h3 { margin: 0; }
.brand-card p { margin: 6px 0 0; color: rgba(255, 249, 239, .82); font-size: clamp(16px, 1.05vw, 18px); line-height: 1.68; }
@media (max-width: 560px) { .brand-card { grid-template-columns: 1fr; } }

/* ---------- Advantage cards ---------- */
.advantage-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  background: var(--surface);
}
.advantage-card h3 { font-size: 18px; color: var(--cream); }
.advantage-card p { color: var(--text-muted); font-size: 13.5px; }

/* ---------- Legal cards ---------- */
.legal-card {
  padding: 22px;
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  background: var(--surface);
}
.legal-card h3 { color: var(--cream); margin-bottom: 8px; }
.legal-card a { color: var(--gold); }

/* ---------- Social pills ---------- */
.social-pill, .social-pill--compact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--gold-line);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, .04);
  color: var(--cream);
  font-size: 13px;
}
.social-pill:hover { border-color: var(--gold); color: var(--gold); }
.social-icon { display: inline-flex; color: var(--gold); }

/* ---------- Blog journal system (replaces 3D motion block) ---------- */
body[data-page="blog"] .blog-system-section {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: clamp(8px, 1.2vw, 16px);
  padding-bottom: clamp(36px, 4.5vw, 56px);
  background: var(--bg);
}

body[data-page="blog"] .blog-system-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 35%, rgba(232, 196, 126, .06), transparent 58%),
    radial-gradient(ellipse 55% 38% at 88% 75%, rgba(52, 116, 176, .05), transparent 52%);
}

body[data-page="blog"] .blog-system-section > .container {
  position: relative;
  z-index: 1;
}

body[data-page="blog"] .section--v9-blog {
  padding-top: clamp(24px, 3vw, 40px);
}

body[data-page="blog"] .v238-direction-hero + .blog-system-section {
  margin-top: 0;
}

.blog-system-head {
  max-width: 760px;
  margin: 0 auto clamp(32px, 4.5vw, 48px);
  text-align: center;
}

.blog-system-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: clamp(11px, .72vw, 13px);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.blog-system-head .eyebrow::before,
.blog-system-head .eyebrow::after {
  content: "";
  width: clamp(28px, 3.5vw, 56px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 173, 111, .82), transparent);
}

.blog-system-head h2 {
  margin-top: 14px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: .01em;
}

.blog-system-head__lead {
  margin: 16px auto 0;
  max-width: 580px;
  color: rgba(180, 204, 232, .82);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.65;
}

/* Unified premium panel */
.blog-system-panel {
  position: relative;
  padding: clamp(28px, 3.5vw, 40px) clamp(20px, 2.5vw, 32px) clamp(24px, 3vw, 36px);
  border: 1px solid rgba(232, 196, 126, .22);
  border-radius: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(180deg, rgba(10, 26, 44, .97), rgba(5, 14, 26, .98));
  box-shadow:
    0 32px 80px rgba(0, 0, 0, .32),
    inset 0 1px 0 rgba(255, 255, 255, .07);
  overflow: hidden;
}

.blog-system-panel::before,
.blog-system-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  opacity: .7;
}

.blog-system-panel::before {
  top: -28%;
  left: -8%;
  width: 42%;
  height: 55%;
  background: rgba(52, 116, 176, .22);
}

.blog-system-panel::after {
  right: -6%;
  bottom: -30%;
  width: 38%;
  height: 50%;
  background: rgba(232, 196, 126, .14);
}

/* Timeline track — dots + connecting line */
.blog-system-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: clamp(20px, 2.5vw, 28px);
  padding-inline: clamp(12px, 2vw, 20px);
}

.blog-system-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    rgba(232, 196, 126, .08),
    rgba(232, 196, 126, .45) 15%,
    rgba(232, 196, 126, .55) 50%,
    rgba(232, 196, 126, .45) 85%,
    rgba(232, 196, 126, .08)
  );
  border-radius: 2px;
}

.blog-system-track__dot {
  position: relative;
  justify-self: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(232, 196, 126, .55);
  background: radial-gradient(circle at 40% 35%, rgba(245, 223, 168, .95), rgba(181, 131, 90, .85));
  box-shadow: 0 0 0 4px rgba(232, 196, 126, .12), 0 0 18px rgba(232, 196, 126, .28);
}

.blog-system-track__dot--final {
  width: 16px;
  height: 16px;
  border-color: rgba(245, 223, 168, .85);
  box-shadow: 0 0 0 5px rgba(232, 196, 126, .16), 0 0 24px rgba(232, 196, 126, .38);
}

/* Connected card strip */
.blog-system-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.blog-system-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
  padding: clamp(18px, 2vw, 26px) clamp(16px, 1.8vw, 22px);
  border: none;
  border-right: 1px solid rgba(72, 128, 188, .16);
  border-radius: 0;
  background: transparent;
  transition: background .45s var(--ease), transform .45s var(--ease);
}

.blog-system-card:last-child {
  border-right: none;
}

.blog-system-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(12px, 1.5vw, 18px);
  right: clamp(12px, 1.5vw, 18px);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--blog-step-accent, rgba(232, 196, 126, .45)), transparent);
  opacity: .55;
  transition: opacity .45s var(--ease);
}

.blog-system-card[data-step="1"] { --blog-step-accent: rgba(88, 148, 210, .75); }
.blog-system-card[data-step="2"] { --blog-step-accent: rgba(232, 196, 126, .75); }
.blog-system-card[data-step="3"] { --blog-step-accent: rgba(96, 180, 168, .75); }
.blog-system-card[data-step="4"],
.blog-system-card--final { --blog-step-accent: rgba(245, 223, 168, .9); }

.blog-system-card:hover {
  background: rgba(255, 255, 255, .025);
  transform: none;
}

.blog-system-card:hover::before {
  opacity: 1;
}

.blog-system-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: clamp(14px, 1.8vw, 20px);
}

.blog-system-card__num {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(232, 196, 126, .38);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, rgba(232, 196, 126, .28), rgba(6, 18, 32, .96));
  color: #f5dfa8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  flex-shrink: 0;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}

.blog-system-card:hover .blog-system-card__num {
  transform: scale(1.06);
  border-color: rgba(232, 196, 126, .65);
  box-shadow: 0 0 0 5px rgba(232, 196, 126, .1), 0 0 22px rgba(232, 196, 126, .2);
}

.blog-system-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(232, 196, 126, .18);
  background: rgba(8, 22, 38, .72);
  color: rgba(232, 196, 126, .92);
  flex-shrink: 0;
  transition: border-color .45s var(--ease), background .45s var(--ease), color .45s var(--ease);
}

.blog-system-card:hover .blog-system-card__icon {
  border-color: rgba(232, 196, 126, .38);
  background: rgba(232, 196, 126, .08);
  color: #f5dfa8;
}

.blog-system-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-system-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}

.blog-system-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.55vw, 22px);
  color: #fff9ef;
  line-height: 1.12;
}

.blog-system-card p {
  margin: 0;
  flex: 1 1 auto;
  color: rgba(180, 204, 232, .8);
  font-size: clamp(13px, .95vw, 14.5px);
  line-height: 1.58;
}

.blog-system-card--final {
  background: linear-gradient(180deg, rgba(232, 196, 126, .06), transparent 55%);
}

.blog-system-card--final:hover {
  background: linear-gradient(180deg, rgba(232, 196, 126, .1), rgba(255, 255, 255, .02) 60%);
}

.blog-system-card__cta {
  align-self: flex-start;
  margin-top: 6px;
  padding: 9px 16px;
  border-color: rgba(232, 196, 126, .42) !important;
  color: #f5dfa8 !important;
  font-size: 12px;
  letter-spacing: .04em;
}

.blog-system-card__cta:hover {
  border-color: rgba(245, 223, 168, .72) !important;
  background: rgba(232, 196, 126, .1) !important;
  color: #fff9ef !important;
}

@media (max-width: 960px) {
  .blog-system-track {
    display: none;
  }

  .blog-system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 16px);
  }

  .blog-system-card {
    border: 1px solid rgba(72, 128, 188, .2);
    border-radius: var(--r-lg);
    background: linear-gradient(165deg, rgba(12, 32, 52, .88), rgba(6, 17, 29, .92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  }

  .blog-system-card:hover {
    transform: translateY(-3px);
    border-color: rgba(232, 196, 126, .32);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .06);
  }

  .blog-system-card--final {
    background: linear-gradient(165deg, rgba(18, 42, 68, .92), rgba(8, 20, 36, .94));
  }
}

@media (max-width: 640px) {
  .blog-system-panel {
    padding: clamp(22px, 5vw, 28px) clamp(16px, 4vw, 20px);
  }

  .blog-system-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .blog-system-card {
    border-right: 1px solid rgba(72, 128, 188, .2);
  }
}

/* ---------- Blog article full-page reader ---------- */
.blog-article-view {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
  background:
    radial-gradient(ellipse 70% 42% at 50% 0%, rgba(232, 196, 126, .05), transparent 58%),
    var(--bg);
}

.blog-article-view__cover {
  position: relative;
  width: 100%;
  max-height: clamp(220px, 36vw, 420px);
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(232, 196, 126, .14);
}

.blog-article-view__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 11, 20, .08) 0%, rgba(6, 17, 29, .72) 100%);
  pointer-events: none;
}

.blog-article-view__cover img {
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 36vw, 420px);
  object-fit: cover;
  object-position: center 42%;
}

.blog-article-view__head {
  width: min(820px, calc(100% - clamp(32px, 6vw, 48px)));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) 0 clamp(12px, 2vw, 18px);
}

.blog-article-view:not(:has(.blog-article-view__cover)) .blog-article-view__head {
  padding-top: calc(var(--header-h) + clamp(52px, 7vw, 72px));
}

.blog-article-view__meta {
  margin: 0;
  color: var(--gold);
  font-size: clamp(11px, .72vw, 13px);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.blog-article-view__title {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--cream);
}

.blog-article-view__body {
  width: min(720px, calc(100% - clamp(32px, 6vw, 48px)));
  margin: 0 auto;
  padding: clamp(8px, 1.5vw, 16px) 0 clamp(28px, 4vw, 40px);
}

.blog-article-view__media {
  margin: clamp(20px, 3vw, 28px) 0 0;
}

.blog-article-view__footer {
  width: min(720px, calc(100% - clamp(32px, 6vw, 48px)));
  margin: 0 auto;
  padding: clamp(24px, 3vw, 32px) 0 clamp(36px, 5vw, 56px);
  border-top: 1px solid rgba(232, 196, 126, .16);
}

.blog-article-view .article-content,
.blog-article-view .article-rich {
  max-width: 100%;
}

.blog-article-view .article-content > .article-rich > :first-child,
.blog-article-view .article-rich > :first-child {
  margin-top: 0;
}

.blog-article-view .article-lead {
  margin: 0 0 clamp(24px, 3vw, 32px);
  padding-bottom: clamp(18px, 2.5vw, 24px);
  border-bottom: 1px solid rgba(232, 196, 126, .16);
  color: rgba(255, 249, 239, .92);
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.72;
}

.blog-article-view .article-content h3,
.blog-article-view .article-rich h3 {
  margin: clamp(28px, 3.5vw, 36px) 0 clamp(12px, 1.6vw, 16px);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
  color: var(--cream);
}

.blog-article-view .article-content h3:first-child,
.blog-article-view .article-rich h3:first-child {
  margin-top: 0;
}

.blog-article-view .article-content p,
.blog-article-view .article-rich p {
  margin: 0 0 clamp(16px, 2vw, 20px);
  color: rgba(180, 204, 232, .88);
  font-size: clamp(15px, 1.02vw, 17px);
  line-height: 1.76;
}

.blog-article-view .article-content ul,
.blog-article-view .article-rich ul,
.blog-article-view .article-content ol,
.blog-article-view .article-rich ol {
  margin: 0 0 clamp(20px, 2.5vw, 26px);
  padding-left: 1.35em;
}

.blog-article-view .article-content ul,
.blog-article-view .article-rich ul {
  list-style: disc;
}

.blog-article-view .article-content ol,
.blog-article-view .article-rich ol {
  list-style: decimal;
}

.blog-article-view .article-content li,
.blog-article-view .article-rich li {
  margin: 0 0 10px;
  padding-left: 4px;
  color: rgba(180, 204, 232, .88);
  font-size: clamp(15px, 1.02vw, 17px);
  line-height: 1.68;
}

.blog-article-view .article-content li::marker,
.blog-article-view .article-rich li::marker {
  color: var(--gold);
}

.blog-article-view .article-content a,
.blog-article-view .article-rich a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: .16em;
}

.blog-article-view .article-content a:hover,
.blog-article-view .article-rich a:hover {
  color: var(--cream);
}

@media (max-width: 640px) {
  .blog-article-view__head,
  .blog-article-view__body,
  .blog-article-view__footer {
    width: calc(100% - 32px);
  }

  .modal.modal--article .modal__close {
    top: calc(var(--header-h) + 6px);
    right: 12px;
  }
}

/* ===== @part 13-reviews.css ===== */
/* ============================================================================
   13-reviews.css — reviews page grid, cards, trust pillars, contact slider
   ============================================================================ */

body[data-page="reviews"] .v238-direction-hero--home .v238-hero-photo {
  object-position: 55% 38%;
}

body[data-page="reviews"] .v238-direction-hero + .reviews-page-section {
  margin-top: 0;
  padding-top: clamp(8px, 1.2vw, 16px);
}

/* ---- Page feed section ---- */
.reviews-page-section {
  position: relative;
  z-index: 1;
  padding-top: clamp(8px, 1.2vw, 16px);
  padding-bottom: clamp(32px, 4vw, 48px);
  background: var(--bg);
}

.reviews-page-head {
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  text-align: center;
}

.reviews-page-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: clamp(11px, .72vw, 13px);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.reviews-page-head .eyebrow::before,
.reviews-page-head .eyebrow::after {
  content: "";
  width: clamp(28px, 3.5vw, 56px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 173, 111, .82), transparent);
}

.reviews-page-head h2 {
  margin-top: 14px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.reviews-page-head__lead {
  margin: 16px auto 0;
  max-width: 580px;
  color: rgba(180, 204, 232, .82);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.65;
}

.reviews-page-panel {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(232, 196, 126, .2);
  border-radius: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(180deg, rgba(10, 26, 44, .97), rgba(5, 14, 26, .98));
  box-shadow: 0 32px 80px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .06);
  overflow: hidden;
}

.reviews-page-panel::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -8%;
  width: 42%;
  height: 55%;
  border-radius: 50%;
  filter: blur(48px);
  background: rgba(52, 116, 176, .18);
  pointer-events: none;
}

.reviews-page-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
}

/* ---- Grid review card ---- */
.review-card--grid {
  display: flex !important;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: clamp(20px, 2.2vw, 28px);
  border: 1px solid rgba(72, 128, 188, .22);
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, rgba(12, 32, 52, .92), rgba(6, 17, 29, .94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}

.review-card--grid:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 196, 126, .34);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .07);
}

.review-card--grid .review-card__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 14px;
}

.review-card__avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 196, 126, .38);
  background: radial-gradient(circle at 50% 30%, rgba(232, 196, 126, .24), rgba(8, 24, 42, .94));
  color: #f5dfa8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.review-card__identity {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.review-card__identity strong {
  color: var(--cream);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.2;
}

.review-card__identity span {
  color: rgba(180, 204, 232, .72);
  font-size: 12.5px;
  line-height: 1.3;
}

.review-card--grid .review-card__rating {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .12em;
  white-space: nowrap;
}

.review-card--grid .review-card__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--pill);
  border: 1px solid rgba(232, 196, 126, .28);
  background: rgba(232, 196, 126, .08);
  color: #f5dfa8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.review-card__quote {
  margin: 0;
  flex: 1 1 auto;
}

.review-card__quote p {
  margin: 0;
  color: rgba(220, 236, 255, .9);
  font-size: clamp(15px, 1.02vw, 17px);
  line-height: 1.72;
}

/* ---- Trust pillars ---- */
.reviews-trust-section {
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(48px, 6vw, 72px);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232, 196, 126, .05), transparent 58%),
    var(--bg);
}

.reviews-trust-head {
  max-width: 640px;
  margin: 0 auto clamp(24px, 3vw, 36px);
  text-align: center;
}

.reviews-trust-head .eyebrow {
  color: var(--gold);
  font-size: clamp(11px, .72vw, 13px);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.reviews-trust-head h2 {
  margin-top: 12px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.12;
}

.reviews-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
}

.reviews-trust-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 2.4vw, 28px);
  border: 1px solid rgba(72, 128, 188, .2);
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, rgba(12, 32, 52, .88), rgba(6, 17, 29, .92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}

.reviews-trust-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 196, 126, .32);
}

.reviews-trust-card__num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(232, 196, 126, .38);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, rgba(232, 196, 126, .22), rgba(8, 24, 42, .94));
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.reviews-trust-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--cream);
  line-height: 1.15;
}

.reviews-trust-card p {
  margin: 0;
  flex: 1 1 auto;
  color: rgba(180, 204, 232, .8);
  font-size: 14px;
  line-height: 1.58;
}

.reviews-trust-card small {
  color: rgba(232, 196, 126, .72);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reviews-page-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 20px;
  margin-top: clamp(32px, 4vw, 48px);
  padding: clamp(22px, 2.8vw, 32px);
  border: 1px solid rgba(232, 196, 126, .2);
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, rgba(18, 42, 68, .72), rgba(8, 20, 36, .82));
}

.reviews-page-cta p {
  margin: 0;
  color: rgba(255, 249, 239, .88);
  font-size: clamp(16px, 1.1vw, 18px);
}

/* ---- Legacy slider (contacts hero) ---- */
.reviews-vertical,
.contact-hero-reviews__slider {
  position: relative;
  display: grid;
  gap: 14px;
}

.review-card:not(.review-card--grid) {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card:not(.review-card--grid) .review-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--pill);
  border: 1px solid var(--gold-line);
  background: var(--gold-tint);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.review-card:not(.review-card--grid) .review-card__rating {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 15px;
}

.review-card:not(.review-card--grid) p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
}

.review-card__footer strong {
  color: var(--cream);
}

.reviews-vertical--premium .review-card:not(.review-card--grid) {
  opacity: 1;
}

.contact-hero-reviews {
  margin-top: 22px;
}

/* ---- Legacy hero (unused on current page) ---- */
.reviews-hero {
  padding-block: var(--section-y);
  background: var(--bg);
}

.reviews-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

@media (max-width: 960px) {
  .reviews-page-grid {
    grid-template-columns: 1fr;
  }

  .reviews-trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .reviews-hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (min-width: 1100px) {
  .reviews-page-grid .review-card--grid:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 10px);
    justify-self: center;
  }
}

/* ===== @part 14-service-detail.css ===== */
/* ============================================================================
   14-service-detail.css — service landing inner blocks
   v103/v10 detail grid, v122 rich, v124 assurance, value grid, process,
   final request. Covers BOTH RU static markup and i18n JS render.
   ============================================================================ */

.v103-section { padding-block: var(--section-y); background: var(--bg); }

/* ---------- Detail grid: main panel + side card ---------- */
.v10-detail-grid,
.v103-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}
.v10-detail-panel,
.v103-detail-panel {
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-xl);
  background: var(--surface);
}
.v10-detail-panel h2,
.v103-detail-panel h2 { font-size: clamp(26px, 3vw, 40px); color: var(--cream); margin-bottom: 16px; }
.v10-detail-panel p,
.v103-detail-panel p { color: var(--text-muted); }

.v10-detail-list,
.v103-detail-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.v10-detail-list li,
.v103-detail-list li {
  padding: 14px 16px;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-sm);
  background: var(--gold-tint);
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
}

.v10-side-card,
.v103-side-card {
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-xl);
  background: var(--surface-2);
  box-shadow: var(--shadow);
}
.v10-side-card img,
.v103-side-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.v10-side-card > *:not(img),
.v103-side-card > *:not(img) { padding-inline: clamp(20px, 2.4vw, 28px); }
.v10-side-card h3,
.v103-side-card h3 { padding-top: 18px; color: var(--cream); }
.v10-side-card p,
.v103-side-card p { color: var(--text-muted); font-size: 14px; }
.v10-side-card .btn,
.v103-side-card .btn { margin: 16px clamp(20px, 2.4vw, 28px) 24px; width: calc(100% - 2 * clamp(20px, 2.4vw, 28px)); }

/* ---------- v122 rich service ---------- */
.v122-rich-service { padding-block: var(--section-y); }
.v122-rich-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(20px, 3vw, 36px); align-items: start; }
.v122-rich-main { padding: clamp(24px, 3vw, 40px); border: 1px solid var(--gold-line); border-radius: var(--r-xl); background: var(--surface); }
.v122-rich-main h2 { font-size: clamp(26px, 3vw, 40px); color: var(--cream); margin-bottom: 16px; }
.v122-rich-main p { color: var(--text-muted); }
.v122-rich-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.v122-rich-cards > * { padding: 16px; border: 1px solid var(--gold-line); border-radius: var(--r-sm); background: var(--gold-tint); color: var(--cream); font-size: 14px; }
.v122-rich-route { padding: clamp(22px, 3vw, 32px); border: 1px solid var(--gold-line); border-radius: var(--r-xl); background: var(--surface-2); }
.v122-rich-route h3 { color: var(--cream); margin-bottom: 12px; }
.v122-rich-route p { color: var(--text-muted); }

/* ---------- v124 assurance ---------- */
.v124-service-assurance { padding-block: var(--section-y); }
.v124-service-assurance__wrap { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(20px, 3vw, 36px); align-items: start; }
.v124-service-assurance__main h2 { font-size: clamp(24px, 2.8vw, 36px); color: var(--cream); margin-bottom: 14px; }
.v124-service-assurance__main p { color: var(--text-muted); }
.v124-service-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.v124-service-mini-card { padding: 18px; border: 1px solid var(--gold-line); border-radius: var(--r); background: var(--surface); }
.v124-service-mini-card h4 { color: var(--cream); margin-bottom: 6px; }
.v124-service-mini-card p { color: var(--text-muted); font-size: 13.5px; }
.v124-service-assurance__side { padding: clamp(22px, 3vw, 32px); border: 1px solid var(--gold-line); border-radius: var(--r-xl); background: var(--surface-2); }

/* ---------- value grid ---------- */
.v103-value-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.v103-value-grid > * { padding: 22px; border: 1px solid var(--gold-line); border-radius: var(--r-lg); background: var(--surface); }
.v103-value-grid h3 { color: var(--cream); margin-bottom: 8px; font-size: 18px; }
.v103-value-grid p { color: var(--text-muted); font-size: 13.5px; }

/* ---------- process (numbered) ---------- */
.v10-process,
.v103-process { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.v10-process > *,
.v103-process > * { padding: 22px; border: 1px solid var(--gold-line); border-radius: var(--r-lg); background: var(--surface); }
.v10-process h3,
.v103-process h3 { color: var(--cream); margin-bottom: 8px; }
.v10-process p,
.v103-process p { color: var(--text-muted); font-size: 13.5px; }

/* ===== @part 15-about-contacts.css ===== */
/* ============================================================================
   15-about-contacts.css — about page blocks + contacts page blocks
   ============================================================================ */

/* lift about hero content to the top so breadcrumbs sit at the very top (#17) */
body[data-page="about"] .v9-page-hero__grid {
  align-items: start;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(28px, 4vw, 56px);
}
body[data-page="about"] .v9-page-hero__copy .breadcrumbs { margin-top: 0; }
body[data-page="about"] .v9-page-hero__copy {
  min-width: 0;
}

.about-hero-image {
  margin: 0;
  max-width: 720px;
}

.about-grid--v119 {
  --about-block-gap: clamp(28px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, min(520px, 40vw));
  gap: var(--about-block-gap);
  align-items: stretch;
}

body[data-page="about"] .about-grid.about-grid--v119 {
  grid-template-columns: minmax(0, 1fr) minmax(0, min(520px, 40vw));
  align-items: stretch;
}

.about-grid--v119 .about-grid__col {
  display: flex;
  flex-direction: column;
  gap: var(--about-block-gap);
  min-width: 0;
  min-height: 100%;
}

.about-grid--v119 .about-grid__col--right {
  min-height: 100%;
}

.about-grid--v119 .about-grid__col--left > .about-hero-image:not(.about-hero-image--secondary) {
  align-self: start;
  min-width: 0;
}

.about-grid--v119 .brand-stack {
  align-self: stretch;
  min-width: 0;
}

.about-grid--v119 .about-intro-v119 {
  margin: 0;
  padding: var(--about-block-gap);
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  align-self: start;
  flex: 0 0 auto;
}

.about-grid--v119 .about-hero-image--secondary {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  max-width: none;
  min-width: 0;
  min-height: clamp(180px, 22vw, 280px);
  margin: 0;
}

.about-grid--v119 .about-hero-image--secondary img {
  width: 100%;
  flex: 1 1 auto;
  min-height: clamp(180px, 22vw, 280px);
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  border-radius: var(--r-lg);
}

.about-grid--v119 .brand-stack .brand-card {
  align-self: start;
}

body[data-page="about"] .brand-card {
  align-items: start !important;
  align-self: start !important;
}

body[data-page="about"] .brand-card__mark {
  align-self: start;
  margin-top: 2px;
}

body[data-page="about"] .about-intro-v119::before {
  display: none;
}

body[data-page="about"] .about-grid--v119 .about-intro-v119.section-head {
  margin: 0;
  max-width: 100%;
}

body[data-page="about"] .about-grid--v119 .about-intro-v119 .eyebrow {
  margin-top: 0;
  padding-top: 2px;
}

.about-grid--v119 .about-hero-image figcaption {
  display: none;
}

body[data-page="about"] .section--v9-about > .container + .container {
  margin-top: clamp(40px, 5vw, 72px);
}

.about-intro-v119 {
  padding: var(--about-block-gap, clamp(28px, 4vw, 64px));
  border: 1px solid rgba(232, 196, 126, .24);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(232, 196, 126, .14), transparent 26rem),
    linear-gradient(145deg, rgba(12, 27, 45, .96), rgba(6, 16, 28, .98));
  box-shadow: 0 26px 70px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .065);
}

.about-hero-image img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
}

.about-hero-image figcaption {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ---------- ABOUT hero side panel ---------- */
.about-hero-panel,
.about-hero-showcase {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-xl);
  background: rgba(6, 17, 29, .58);
  backdrop-filter: blur(8px);
}
.about-hero-showcase__main h3 { color: var(--cream); font-size: 20px; }
.about-hero-showcase__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-hero-showcase__stats > * { padding: 14px; border: 1px solid var(--gold-line); border-radius: var(--r-sm); background: var(--gold-tint); }
.about-hero-showcase__route, .about-hero-showcase__footer { color: var(--text-muted); font-size: 13.5px; }

.about-keyword-tape {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: clamp(22px, 3vw, 34px);
}

.about-keyword-tape__track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  width: 100%;
}

.about-keyword-tape span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--gold-line);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, .05);
  color: var(--cream);
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
}

.about-keyword-tape span:nth-child(n+11) {
  display: none;
}

/* ---------- ABOUT body (v119) ---------- */
.about-intro-v119 .eyebrow { margin: 0 0 12px; font-size: 13px; letter-spacing: .18em; }
.about-intro-v119 h2 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(34px, 3.7vw, 56px);
  line-height: 1.02;
  color: #fff9ef;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

body[data-page="about"] .about-grid--v119 .about-intro-v119 h2 {
  max-width: 100%;
  font-size: clamp(20px, 1.75vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  word-wrap: break-word;
  hyphens: auto;
}

body[data-page="about"] .about-grid--v119 .about-lead-v119 {
  max-width: 100%;
  min-width: 0;
  margin-top: 16px;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  overflow-wrap: break-word;
}

body[data-page="about"] .about-grid--v119 .about-copy-v119 {
  max-width: 100%;
  min-width: 0;
  margin-top: 18px;
  gap: 12px;
}

body[data-page="about"] .about-grid--v119 .about-copy-v119 p {
  max-width: 100%;
  min-width: 0;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.55;
  overflow-wrap: break-word;
}

.about-lead-v119 { max-width: 100%; margin-top: 22px; color: rgba(255, 249, 239, .86); font-size: clamp(18px, 1.45vw, 22px); line-height: 1.58; }
.about-copy-v119 { display: grid; gap: 16px; margin-top: 24px; max-width: 100%; min-width: 0; }
.about-copy-v119 p, .about-copy-v119 li { color: rgba(255, 249, 239, .78); font-size: clamp(15.5px, 1vw, 17.5px); line-height: 1.72; }

/* strategy / effectiveness checklist — aligned 2-col, nothing escapes (#18) */
.about-copy-v119 ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 12px; }
.about-copy-v119 ul li {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px 12px 42px;
  border: 1px solid rgba(232, 196, 126, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
}

body[data-page="about"] .about-grid--v119 .about-copy-v119 ul {
  grid-template-columns: 1fr;
  gap: 8px;
}

body[data-page="about"] .about-grid--v119 .about-copy-v119 li {
  align-items: flex-start;
  min-height: 0;
  padding: 10px 12px 10px 36px;
  font-size: clamp(13px, 0.88vw, 14.5px);
  line-height: 1.45;
  overflow-wrap: break-word;
}

body[data-page="about"] .about-grid--v119 .about-copy-v119 li::before {
  top: 12px;
  transform: none;
}
.about-copy-v119 ul li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5dfa8, #b5835a);
  color: #07111d;
  font-size: 12px;
  font-weight: 900;
}
@media (max-width: 700px) { .about-copy-v119 ul { grid-template-columns: 1fr; } }

/* ---------- new-era-card ---------- */
.new-era-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 3.6vw, 48px);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.new-era-card__glow { position: absolute; inset: 0; background: radial-gradient(60% 50% at 80% 0%, rgba(232, 196, 126, .12), transparent 70%); pointer-events: none; }
.new-era-card__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}
.new-era-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 4vw, 54px);
  margin-top: 26px;
  align-items: start;
}
.new-era-card__intro h3 {
  margin: 0 0 10px;
  color: var(--cream);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.14;
}
.new-era-card__lead {
  color: var(--text-muted);
  line-height: 1.6;
}
.new-era-card__seal {
  display: grid;
  place-items: center;
  min-width: 132px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--gold-line-strong);
  border-radius: 28px;
  color: var(--gold);
  font-family: var(--font-display);
  text-align: center;
  background: rgba(255, 255, 255, .04);
}
.new-era-card__seal strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-size: 46px;
  line-height: 1;
}

.new-era-card__seal .plus {
  font-size: .62em;
  line-height: 1;
  transform: translateY(-.28em);
}
.new-era-card__seal span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.25;
}
.new-era-card__story {
  display: grid;
  gap: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.new-era-card__experience {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(232, 196, 126, .14);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .035);
}
.new-era-card__experience h4 {
  margin: 0;
  color: var(--cream);
  font-size: 17px;
}
.new-era-card__experience ul {
  display: grid;
  gap: 8px;
  margin: 0;
}
.new-era-card__experience li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.5;
}
.new-era-card__experience li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.new-era-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.new-era-card__tags span { padding: 7px 13px; border: 1px solid var(--gold-line); border-radius: var(--pill); background: var(--gold-tint); color: var(--cream); font-size: 12px; }
.new-era-card__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

@media (max-width: 980px) {
  body[data-page="about"] .v9-page-hero__grid,
  .new-era-card__top,
  .new-era-card__content {
    grid-template-columns: 1fr;
  }

  body[data-page="about"] .about-grid.about-grid--v119 {
    --about-block-gap: clamp(18px, 4.5vw, 28px);
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "intro"
      "photo"
      "brands"
      "photo2";
  }

  .about-grid--v119 {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "intro"
      "photo"
      "brands"
      "photo2";
  }

  .about-grid--v119 .about-grid__col {
    display: contents;
  }

  .about-grid--v119 .about-intro-v119 { grid-area: intro; }
  .about-grid--v119 .about-grid__col--left > .about-hero-image:not(.about-hero-image--secondary) { grid-area: photo; }
  .about-grid--v119 .brand-stack { grid-area: brands; }
  .about-grid--v119 .about-hero-image--secondary {
    grid-area: photo2;
    flex: none;
    display: block;
    min-height: 0;
    height: auto;
  }

  .about-grid--v119 .about-hero-image--secondary img {
    min-height: 220px;
    height: auto;
    flex: none;
  }

  body[data-page="about"] .about-grid--v119 .about-intro-v119 {
    width: 100%;
    padding: clamp(18px, 4.5vw, 24px);
    border-radius: var(--r-lg);
  }

  body[data-page="about"] .about-grid--v119 .about-intro-v119 h2 {
    font-size: clamp(22px, 6.2vw, 30px);
    line-height: 1.22;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  body[data-page="about"] .about-grid--v119 .about-lead-v119 {
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.55;
  }

  body[data-page="about"] .about-grid--v119 .about-copy-v119 p,
  body[data-page="about"] .about-grid--v119 .about-copy-v119 li {
    font-size: 14.5px;
    line-height: 1.62;
  }

  body[data-page="about"] .brand-stack {
    width: 100%;
  }

  body[data-page="about"] .brand-stack .brand-card {
    width: 100%;
    border-radius: var(--r-lg);
    padding: 18px 16px;
  }

  body[data-page="about"] .brand-stack .brand-card h3 {
    font-size: clamp(20px, 5.5vw, 26px);
    line-height: 1.15;
  }
}

@media (max-width: 560px) {
  body[data-page="about"] .brand-stack .brand-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  body[data-page="about"] .brand-stack .brand-card__mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}

/* ---------- CONTACTS layout ---------- */
.contacts-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(22px, 3vw, 40px); align-items: start; }
.forms-card,
.contact-visual-card {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.v81-form-intro { margin-bottom: 16px; color: var(--text-muted); }
.contact-column { display: flex; flex-direction: column; gap: 16px; }

/* contact list / items */
.contact-list { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  background: var(--surface);
}
.contact-item__mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-line-strong);
  border-radius: 12px;
  background: var(--gold-tint);
  color: var(--gold);
  font-size: 18px;
}
.contact-item__body { display: flex; flex-direction: column; gap: 3px; }
.contact-item__body strong { color: var(--cream); font-size: 15px; }
.contact-item__body span { color: var(--text-faint); font-size: 13px; }
.contact-item__body a { color: var(--text-muted); font-size: 14px; }
.contact-item__body a:hover { color: var(--gold); }

.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* socials */
.contact-socials-accordion { display: flex; flex-direction: column; gap: 10px; }
.contact-socials-accordion__group { border: 1px solid var(--gold-line); border-radius: var(--r); background: var(--surface); padding: 14px 16px; }
.contact-socials-accordion__links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.human-social-board { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.human-social-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  background: var(--surface);
  color: var(--cream);
}
.human-social-card:hover { border-color: var(--gold); }

/* contact visual card */
.contact-visual-card__eyebrow { color: var(--gold); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.contact-visual-card__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.contact-visual-card__stats > * { padding: 16px; border: 1px solid var(--gold-line); border-radius: var(--r-sm); background: var(--gold-tint); }

@media (max-width: 960px) {
  .contacts-grid { grid-template-columns: 1fr; }
}

/* ---------- CONTACTS page (form-first) ---------- */
body[data-page="contacts"] .contacts-page-section {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(72px, 9vw, 112px);
}

body[data-page="contacts"] .v238-direction-hero + .contacts-page-section {
  margin-top: 0;
}

.contacts-page-section {
  position: relative;
  z-index: 1;
  background: var(--bg);
}

body[data-page="contacts"] .contacts-page-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(232, 196, 126, .22);
  border-radius: clamp(24px, 3vw, 32px);
  background: linear-gradient(180deg, rgba(10, 26, 44, .98), rgba(5, 14, 26, .99));
  box-shadow: 0 20px 56px rgba(0, 0, 0, .2);
  overflow: hidden;
}

body[data-page="contacts"] .contacts-page-panel__form,
body[data-page="contacts"] .contacts-page-panel__aside {
  min-width: 0;
  max-width: 100%;
}

body[data-page="contacts"] .contacts-page-panel__form,
body[data-page="contacts"] .contacts-page-panel__aside,
body[data-page="contacts"] .contacts-page-panel .contacts-page-panel__form,
body[data-page="contacts"] .contacts-page-panel .contacts-page-panel__aside {
  padding: clamp(44px, 5vw, 64px) clamp(40px, 4.5vw, 56px);
  min-width: 0;
}

body[data-page="contacts"] .contacts-page-panel__form {
  border-right: 1px solid rgba(232, 196, 126, .12);
}

.contacts-page-panel__form #inlineForms {
  margin-top: 4px;
}

.contacts-panel-head {
  margin-bottom: clamp(28px, 3.5vw, 36px);
}

.contacts-panel-head--compact {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.contacts-panel-head .eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contacts-panel-head h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
}

.contacts-panel-head__note {
  margin: 10px 0 0;
  color: var(--text-faint);
  font-size: 13px;
  line-height: 1.55;
  max-width: 520px;
}

body[data-page="contacts"] .contacts-page-panel .forms-card,
body[data-page="contacts"] .contacts-page-panel .contact-column {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="contacts"] .tabs {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  margin-bottom: clamp(28px, 3.5vw, 36px);
  padding: 4px;
  border-color: rgba(72, 128, 188, .22);
  background: rgba(255, 255, 255, .03);
}

body[data-page="contacts"] .tab {
  flex: 0 0 auto;
  min-width: 132px;
  padding: 10px 18px;
  text-align: center;
  font-size: 13px;
}

body[data-page="contacts"] .lead-form--contacts-inline {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 40px);
}

body[data-page="contacts"] .lead-form__head,
body[data-page="contacts"] .lead-form__trust--top {
  display: none;
}

body[data-page="contacts"] .contacts-page-panel__form .form-grid,
body[data-page="contacts"] .contacts-page-panel__form .form-grid--contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: clamp(24px, 2.8vw, 32px);
  column-gap: clamp(24px, 3vw, 32px);
  align-items: start;
}

body[data-page="contacts"] .contacts-page-panel__form .form-grid .field--full,
body[data-page="contacts"] .contacts-page-panel__form .form-grid--contacts .field--full {
  grid-column: 1 / -1;
}

body[data-page="contacts"] .contacts-page-panel__form .field {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  min-width: 0;
  padding: 0;
}

body[data-page="contacts"] .contacts-page-panel__form .field > span {
  display: block;
  margin: 0;
  padding: 0 2px;
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--text-faint);
  line-height: 1.4;
}

body[data-page="contacts"] .contacts-page-panel__form .field__control {
  border: 1px solid rgba(72, 128, 188, .24);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
  padding: 0 18px;
  min-height: 52px;
}

body[data-page="contacts"] .contacts-page-panel__form .field__control--textarea {
  min-height: 0;
  padding: 0 18px;
  align-items: stretch;
}

body[data-page="contacts"] .contacts-page-panel__form .field__control:focus-within {
  border-color: rgba(232, 196, 126, .38);
  box-shadow: 0 0 0 1px rgba(232, 196, 126, .1);
}

body[data-page="contacts"] .contacts-page-panel__form .field__control input,
body[data-page="contacts"] .contacts-page-panel__form .field__control textarea {
  padding: 14px 0;
  font-size: 14px;
  line-height: 1.45;
}

body[data-page="contacts"] .contacts-page-panel__form .field__control--textarea textarea {
  min-height: 148px;
  padding: 16px 0;
}

body[data-page="contacts"] .contacts-page-panel__form .btn--wide {
  margin-top: 8px;
  min-height: 54px;
}

body[data-page="contacts"] .contacts-page-panel__form .form-note {
  margin: 0;
  padding: 0 2px;
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--text-faint);
}

.contact-column {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 28px);
}

body[data-page="contacts"] .contacts-office-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: clamp(20px, 2.5vw, 28px);
  padding-top: clamp(18px, 2vw, 22px);
  border-top: 1px solid rgba(232, 196, 126, .12);
}

body[data-page="contacts"] .contacts-office-accordion {
  border: 1px solid rgba(72, 128, 188, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .02);
  overflow: hidden;
}

body[data-page="contacts"] .contacts-office-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

body[data-page="contacts"] .contacts-office-accordion__summary::-webkit-details-marker {
  display: none;
}

body[data-page="contacts"] .contacts-office-accordion__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -.01em;
}

body[data-page="contacts"] .contacts-office-accordion__arrow {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
}

body[data-page="contacts"] .contacts-office-accordion[open] .contacts-office-accordion__arrow {
  transform: rotate(-135deg);
}

body[data-page="contacts"] .contacts-office-accordion__body {
  padding: 0 14px 14px;
  border-top: 1px solid rgba(232, 196, 126, .1);
}

body[data-page="contacts"] .contacts-office-block__address {
  margin: 12px 0;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1.45;
}

body[data-page="contacts"] .contacts-office-block__lines,
body[data-page="contacts"] .contacts-social-block__lines {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body[data-page="contacts"] .contacts-contact-line {
  padding: 8px 0;
}

body[data-page="contacts"] .contacts-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  min-width: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  transition: color .25s var(--ease);
}

body[data-page="contacts"] .contacts-social-link:hover .contacts-social-link__text span {
  color: var(--gold);
}

body[data-page="contacts"] .contacts-social-link__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}

body[data-page="contacts"] .contacts-social-link__icon svg {
  width: 16px;
  height: 16px;
}

body[data-page="contacts"] .contacts-social-link__text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
  line-height: 1.3;
}

body[data-page="contacts"] .contacts-social-link__text strong {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body[data-page="contacts"] .contacts-social-link__text span {
  color: rgba(255, 249, 239, .88);
  font-size: 13px;
  font-weight: 600;
  transition: color .25s var(--ease);
}

body[data-page="contacts"] .contacts-wa-wrap {
  margin-top: clamp(20px, 2.5vw, 28px);
  padding-top: clamp(18px, 2vw, 22px);
  border-top: 1px solid rgba(232, 196, 126, .12);
}

body[data-page="contacts"] .contacts-wa-wrap .footer-whatsapp {
  margin: 0;
}

body[data-page="contacts"] .contact-socials-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 clamp(4px, 1vw, 8px);
  padding: 0;
  border: 0;
}

body[data-page="contacts"] .contact-socials-accordion__title {
  margin: 0 0 2px;
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body[data-page="contacts"] .contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body[data-page="contacts"] .contact-item {
  display: block;
  padding: clamp(18px, 2.5vw, 24px) 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

body[data-page="contacts"] .contact-item + .contact-item {
  border-top: 1px solid rgba(232, 196, 126, .12);
}

body[data-page="contacts"] .contact-item__mark {
  display: none;
}

body[data-page="contacts"] .contact-item__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding-top: 0;
}

body[data-page="contacts"] .contact-item__body strong {
  color: #fff;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -.01em;
}

body[data-page="contacts"] .contact-item__body span {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.45;
}

body[data-page="contacts"] .contact-item__body a {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.5;
}

body[data-page="contacts"] .contact-item__body a:hover {
  color: var(--gold);
}

body[data-page="contacts"] .contact-actions--single-wa {
  margin-top: 6px;
}

body[data-page="contacts"] .contact-actions--single-wa .btn--whatsapp-rotator {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}

body[data-page="contacts"] .contact-socials-accordion__group {
  border: none;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid rgba(232, 196, 126, .1);
}

body[data-page="contacts"] .contact-socials-accordion__group:last-child {
  border-bottom: 0;
}

body[data-page="contacts"] .contact-socials-accordion__group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0 6px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

body[data-page="contacts"] .contact-socials-accordion__group summary::-webkit-details-marker {
  display: none;
}

body[data-page="contacts"] .contact-socials-accordion__group summary i {
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
}

body[data-page="contacts"] .contact-socials-accordion__group[open] summary i {
  transform: rotate(-135deg);
}

body[data-page="contacts"] .contact-socials-accordion__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 0 8px;
}

body[data-page="contacts"] .contact-socials-accordion__links a.contacts-social-link {
  display: flex;
}

/* ============================================================================
   CONTACTS page — tablet + mobile (980 / 768 / 560 — same as site chrome)
   ============================================================================ */

/* Large tablet: stack before columns get squeezed */
@media (max-width: 1100px) {
  body[data-page="contacts"] .contacts-page-panel {
    grid-template-columns: 1fr;
  }

  body[data-page="contacts"] .contacts-page-panel__form {
    border-right: 0;
    border-bottom: 1px solid rgba(232, 196, 126, .12);
  }

  body[data-page="contacts"] .contacts-page-panel__form .form-grid,
  body[data-page="contacts"] .contacts-page-panel__form .form-grid--contacts {
    grid-template-columns: 1fr;
  }
}

/* Tablet + mobile nav breakpoint */
@media (max-width: 980px) {
  body[data-page="contacts"] .v238-direction-hero--contacts.v238-direction-hero--home {
    height: auto;
    min-height: 0;
    max-height: none;
    align-items: stretch;
  }

  body[data-page="contacts"] .v238-direction-hero--contacts .v238-direction-hero__grid {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 28px);
    padding-block: calc(var(--header-h) + 16px) clamp(24px, 5vw, 32px);
  }

  body[data-page="contacts"] .v238-direction-hero--contacts .hero__copy {
    max-width: none;
  }

  body[data-page="contacts"] .v238-direction-hero--contacts.v238-direction-hero--home h1 {
    font-size: clamp(32px, 7vw, 44px);
    line-height: 1.06;
  }

  body[data-page="contacts"] .v238-direction-hero--contacts.v238-direction-hero--home .hero__lead {
    font-size: clamp(14px, 3.4vw, 16px);
    max-width: none;
  }

  body[data-page="contacts"] .v238-direction-hero--contacts .hero__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  body[data-page="contacts"] .v238-direction-hero--contacts .hero__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  body[data-page="contacts"] .v238-direction-hero--contacts .v238-direction-hero__panel {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    gap: 12px;
  }

  body[data-page="contacts"] .v238-direction-hero--contacts .hero-feature {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }

  body[data-page="contacts"] .v238-direction-hero--contacts .hero-feature__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  body[data-page="contacts"] .v238-direction-hero--contacts .hero-feature strong {
    font-size: 16px;
  }

  body[data-page="contacts"] .v238-direction-hero--contacts .hero-feature p {
    font-size: 13px;
    margin-top: 4px;
  }

  body[data-page="contacts"] .contacts-page-section {
    padding-top: clamp(24px, 5vw, 36px);
    padding-bottom: clamp(48px, 7vw, 72px);
  }

  body[data-page="contacts"] .contacts-page-section > .container {
    max-width: 100%;
    overflow-x: clip;
  }

  body[data-page="contacts"] .contacts-page-panel {
    border-radius: clamp(18px, 3.5vw, 24px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .18);
  }

  body[data-page="contacts"] .contacts-page-panel__form,
  body[data-page="contacts"] .contacts-page-panel__aside,
  body[data-page="contacts"] .contacts-page-panel .contacts-page-panel__form,
  body[data-page="contacts"] .contacts-page-panel .contacts-page-panel__aside {
    padding: clamp(22px, 4.5vw, 32px) clamp(18px, 4vw, 24px);
  }

  /* Contacts block first on stacked layout — быстрый доступ к телефонам */
  body[data-page="contacts"] .contacts-page-panel__aside {
    order: -1;
  }

  body[data-page="contacts"] .contacts-page-panel__form {
    order: 0;
  }

  body[data-page="contacts"] .contacts-panel-head,
  body[data-page="contacts"] .contacts-panel-head--compact {
    margin-bottom: clamp(16px, 3.5vw, 22px);
  }

  body[data-page="contacts"] .contacts-panel-head h2 {
    font-size: clamp(20px, 4.5vw, 24px);
  }

  body[data-page="contacts"] .tabs {
    display: flex;
    width: 100%;
    margin-bottom: clamp(18px, 4vw, 24px);
  }

  body[data-page="contacts"] .tab {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 12px;
    font-size: 12.5px;
  }

  body[data-page="contacts"] .contacts-page-panel__form .form-grid,
  body[data-page="contacts"] .contacts-page-panel__form .form-grid--contacts {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  body[data-page="contacts"] .contacts-page-panel__form .field__control {
    min-height: 48px;
  }

  body[data-page="contacts"] .contacts-page-panel__form .field__control input,
  body[data-page="contacts"] .contacts-page-panel__form .field__control textarea,
  body[data-page="contacts"] .contacts-page-panel__form .field__control select {
    font-size: 16px;
  }

  body[data-page="contacts"] .contacts-page-panel__form .field__control--textarea textarea {
    min-height: 120px;
  }

  body[data-page="contacts"] .contacts-page-panel__form .btn--wide {
    width: 100%;
    min-height: 50px;
  }

  body[data-page="contacts"] .contacts-office-list {
    margin-top: clamp(14px, 3vw, 20px);
    padding-top: clamp(12px, 2.5vw, 16px);
  }

  body[data-page="contacts"] .contacts-office-accordion__summary {
    min-height: 44px;
    padding: 10px 12px;
  }

  body[data-page="contacts"] .contacts-office-accordion__title {
    font-size: clamp(14px, 3.6vw, 16px);
    line-height: 1.25;
    padding-right: 8px;
  }

  body[data-page="contacts"] .contacts-office-accordion__body {
    padding: 0 12px 12px;
  }

  body[data-page="contacts"] .contacts-contact-line {
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 8px;
    padding: 6px 0;
  }

  body[data-page="contacts"] .contacts-contact-line .footer-app-icon {
    width: 30px;
    height: 30px;
  }

  body[data-page="contacts"] .contacts-contact-line .footer-app-icon svg {
    width: 16px;
    height: 16px;
  }

  body[data-page="contacts"] .contacts-contact-line .footer-contact-line__value {
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 13px;
  }

  body[data-page="contacts"] .contacts-wa-wrap {
    margin-top: clamp(14px, 3vw, 20px);
    padding-top: clamp(12px, 2.5vw, 16px);
  }

  body[data-page="contacts"] .contacts-wa-wrap .footer-whatsapp {
    width: 100%;
    min-height: 48px;
    font-size: 14px;
  }

  body[data-page="contacts"] .contacts-wa-wrap .footer-whatsapp .wa-country-slot {
    min-width: 0;
    flex: 1 1 auto;
  }

  body[data-page="contacts"] .contact-socials-accordion {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  body[data-page="contacts"] .contact-socials-accordion__group summary {
    min-height: 40px;
    padding: 10px 0 6px;
  }

  body[data-page="contacts"] .contacts-social-link__text {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
  }
}

@media (max-width: 560px) {
  body[data-page="contacts"] .v238-direction-hero--contacts.v238-direction-hero--home h1 {
    font-size: clamp(26px, 8.5vw, 34px);
  }

  body[data-page="contacts"] .v238-direction-hero--contacts .hero-feature {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
  }

  body[data-page="contacts"] .v238-direction-hero--contacts .hero-feature__icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 10px;
  }

  body[data-page="contacts"] .v238-direction-hero--contacts .hero-feature strong {
    font-size: 14px;
  }

  body[data-page="contacts"] .v238-direction-hero--contacts .hero-feature p {
    font-size: 12px;
  }

  body[data-page="contacts"] .contacts-page-section {
    padding-top: 20px;
    padding-bottom: 36px;
  }

  body[data-page="contacts"] .contacts-page-panel {
    border-radius: 14px;
  }

  body[data-page="contacts"] .contacts-page-panel__form,
  body[data-page="contacts"] .contacts-page-panel__aside,
  body[data-page="contacts"] .contacts-page-panel .contacts-page-panel__form,
  body[data-page="contacts"] .contacts-page-panel .contacts-page-panel__aside {
    padding: 18px 14px;
  }

  body[data-page="contacts"] .contacts-panel-head h2 {
    font-size: 18px;
  }

  body[data-page="contacts"] .contacts-panel-head__note {
    font-size: 12px;
  }

  body[data-page="contacts"] .tab {
    padding: 9px 8px;
    font-size: 11.5px;
  }

  body[data-page="contacts"] .lead-form--contacts-inline {
    gap: 20px;
  }

  body[data-page="contacts"] .contacts-office-accordion {
    border-radius: 12px;
  }

  body[data-page="contacts"] .contacts-social-link__text span {
    font-size: 12px;
  }

  body[data-page="contacts"] .contacts-wa-wrap .footer-whatsapp__icon {
    width: 34px;
    height: 34px;
  }

  body[data-page="contacts"] .contacts-wa-wrap .footer-whatsapp__icon img {
    width: 30px;
    height: 30px;
  }
}

/* ===== @part 16-regions-cta.css ===== */
/* ============================================================================
   16-regions-cta.css — regions lux grid, wide-contact CTA, motion sections,
   page proof, services toolbar, featured property, cars hero visual
   ============================================================================ */

/* ---------- Region lux grid (uae / asia) ---------- */
.v9-lux-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(16px, 2vw, 24px); }
.v9-lux-grid > * {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  background: var(--surface);
}
.v9-lux-grid h3 { color: var(--cream); font-size: 20px; margin-bottom: 10px; }
.v9-lux-grid p { color: var(--text-muted); font-size: 14px; }

/* ---------- Wide contact CTA band (used across many pages) ---------- */
.v9-wide-contact,
.v103-final-request {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-xl);
  background: var(--surface-2);
  box-shadow: var(--shadow);
}
.v9-wide-contact h2,
.v103-final-request h2,
.v9-wide-contact h3,
.v103-final-request h3 { font-size: clamp(24px, 3vw, 38px); color: var(--cream); margin-bottom: 12px; }
.v9-wide-contact p,
.v103-final-request p { color: var(--text-muted); }

/* ---------- Motion sections (3D on desktop; clean static fallback) ---------- */
.v238-motion-section { padding-block: var(--section-y); background: var(--bg); }
.v238-motion-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 48px); align-items: center; }
.v238-motion-copy h2 { font-size: clamp(26px, 3vw, 42px); color: var(--cream); margin-bottom: 14px; }
.v238-motion-copy p { color: var(--text-muted); }
.v238-motion-head { margin-bottom: 12px; }
/* stage container must keep position/min-height/perspective so the JS-injected
   .dfg-v303-scene 3D overlay can render on desktop (#20) */
.v238-motion-stage {
  position: relative;
  min-height: clamp(520px, 44vw, 650px);
  border: 1px solid var(--gold-line);
  border-radius: 38px;
  background: radial-gradient(80% 80% at 50% 30%, rgba(232, 196, 126, .08), transparent 70%), var(--surface);
  overflow: hidden;
  perspective: 1100px;
}

/* ---------- Page proof (real-estate) ---------- */
.v10-page-proof { padding-block: clamp(28px, 4vw, 48px); }
.v10-page-proof__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.v10-page-proof__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  background: var(--surface);
}
.v10-page-proof__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-line-strong);
  border-radius: 12px;
  background: var(--gold-tint);
  color: var(--gold);
}
.v10-page-proof__item strong { display: block; color: var(--cream); }
.v10-page-proof__item span { color: var(--text-muted); font-size: 13px; }

/* ---------- Services toolbar ---------- */
.section--v9-services {
  background: var(--bg);
}

/* services catalog — чуть компактнее после «Наши услуги» */
body[data-page="services"] .section--v9-services.page-section {
  padding-top: clamp(28px, 3.2vw, 44px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

body[data-page="services"] .v238-direction-hero--home + .section--v9-services {
  margin-top: clamp(-10px, -1vw, -4px);
}

body[data-page="services"] .section--v9-services .section-head {
  margin-bottom: clamp(12px, 1.6vw, 20px);
}

body[data-page="services"] .section--v9-services .section-head h2 {
  margin-top: clamp(8px, 1vw, 12px);
}

body[data-page="services"] .section--v9-services .v9-service-toolbar {
  margin-bottom: clamp(14px, 1.8vw, 22px);
}

body[data-page="services"] .v9-service-toolbar {
  display: block;
}

body[data-page="services"] .v9-service-toolbar .filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 8px 10px;
  max-width: 980px;
  margin-inline: auto;
  padding: 2px 0 4px;
}

body[data-page="services"] .v9-service-toolbar .filter-btn {
  padding: 10px 16px;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

body[data-page="services"] .v9-service-toolbar .v9-view-tools {
  display: none;
}

@media (max-width: 760px) {
  body[data-page="services"] .v9-service-toolbar .filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: none;
    margin-inline: -4px;
    padding: 2px 4px 8px;
  }

  body[data-page="services"] .v9-service-toolbar .filters::-webkit-scrollbar {
    display: none;
  }
}

body[data-page="services"] .section--v9-services #servicesGrid,
body[data-page="services"] .section--v9-services #servicesGrid.cards-grid--services,
body[data-page="services"] .section--v9-services #servicesGrid.cards-grid--home {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(12px, 2.5vw, 18px) !important;
  width: 100%;
  min-width: 0;
  margin-top: 0;
  align-items: stretch;
}

/* Catalog must stay visible — no scroll-reveal fade on services page */
body[data-page="services"] #servicesGrid.reveal-group > .service-card {
  opacity: 1 !important;
  transform: none !important;
}

body[data-page="services"] .section--v9-services .service-card {
  min-width: 0;
}

body[data-page="services"] .section--v9-services .v9-why-cta {
  margin-top: clamp(20px, 2.6vw, 32px);
}

.section--v9-services .section-head {
  max-width: 760px;
  margin: 0 auto clamp(22px, 3vw, 34px);
  text-align: center;
}

.section--v9-services .section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: clamp(11px, .72vw, 13px);
  letter-spacing: .16em;
  opacity: .9;
}

.section--v9-services .section-head .eyebrow::before,
.section--v9-services .section-head .eyebrow::after {
  content: "";
  width: clamp(24px, 3vw, 48px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 173, 111, .78), transparent);
  opacity: .55;
}

.section--v9-services .section-head h2 {
  max-width: 720px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.12;
  letter-spacing: .01em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}

.v9-service-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.v9-service-toolbar .filters {
  justify-content: center;
}

.v9-view-tools { display: inline-flex; gap: 6px; }
.v9-tool {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  color: var(--text-muted);
}
.v9-tool.active { background: var(--gold-grad); color: var(--ink); }

.v9-view-tools span {
  display: none;
}

@media (max-width: 760px) {
  .v9-service-toolbar {
    grid-template-columns: 1fr;
  }

  .v9-service-toolbar .filters {
    justify-content: flex-start;
  }
}

/* ---------- Featured property ---------- */
.v9-featured-property {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  margin-top: clamp(24px, 3vw, 40px);
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-xl);
  background: var(--surface);
}
.v9-featured-property img { width: 100%; border-radius: var(--r-lg); object-fit: cover; }

/* ---------- Cars hero visual (3D stage; static-safe) ---------- */
.v202-hero-visual { position: relative; }
.v202-hero-stage {
  position: relative;
  min-height: clamp(520px, 44vw, 650px);
  border: 1px solid var(--gold-line);
  border-radius: 38px;
  background: radial-gradient(70% 70% at 60% 30%, rgba(232, 196, 126, .1), transparent 70%), var(--surface);
  overflow: hidden;
  perspective: 1100px;
}
.v202-hero-glass {
  padding: 18px 20px;
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  background: rgba(6, 17, 29, .6);
  backdrop-filter: blur(8px);
}

/* ---------- Legal pages ---------- */
.legal-page-body { background: var(--bg); }
.legal-page-body .v9-page-hero { padding-block: calc(var(--header-h) + 30px) clamp(30px, 4vw, 48px); }
.legal-page-body .v9-page-hero__copy { max-width: 820px; }
.legal-page-body h2 { color: var(--cream); margin: 28px 0 12px; }
.legal-page-body p, .legal-page-body li { color: var(--text-muted); line-height: 1.7; }
.legal-page-body ul { padding-left: 20px; list-style: disc; }

@media (max-width: 960px) {
  .v238-motion-grid,
  .v9-wide-contact,
  .v103-final-request,
  .v9-featured-property { grid-template-columns: 1fr; }
}

/* ===== @part 20-responsive.css ===== */
/* ============================================================================
   20-responsive.css — cross-cutting responsive tweaks (single source)
   Plain width breakpoints — no (pointer: coarse), no JS class dependency.
   ============================================================================ */

/* Tighten header when space is short: drop phone first, then nav already hidden */
@media (max-width: 1180px) and (min-width: 981px) {
  .site-header--v9 .header-phone { display: none; }
}

/* 3D / motion scenes are desktop-only; on mobile the fallback panel is enough */
@media (max-width: 1024px) {
  .v238-motion-stage,
  .v202-hero-stage { min-height: clamp(200px, 50vw, 300px); }
}

/* Generic: stack any 2-col detail/assurance grids on tablets */
@media (max-width: 900px) {
  .v10-detail-grid,
  .v103-detail-grid,
  .v122-rich-grid,
  .v124-service-assurance__wrap { grid-template-columns: 1fr; }
  .v10-detail-list,
  .v103-detail-list,
  .v122-rich-cards,
  .v124-service-mini-grid,
  .about-hero-showcase__stats,
  .contact-visual-card__stats { grid-template-columns: 1fr 1fr; }
}

/* Phones */
@media (max-width: 560px) {
  :root { --section-y: clamp(40px, 9vw, 64px); }
  .v10-detail-list,
  .v103-detail-list,
  .v122-rich-cards,
  .v124-service-mini-grid,
  .v9-mini-columns { grid-template-columns: 1fr; }
  .reviews-hero__meta { gap: 14px; }

  body[data-page="contacts"] .main-content,
  body[data-page="home"] .main-content {
    overflow-x: clip;
  }
}

/* Respect reduced motion globally */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ===== @part 21-home-footer-flush.css ===== */
/* Site-wide — small gap before footer shell (footer interior untouched) */

body.v9-body main.main-content.v9-main {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

body.v9-body main.main-content > .page-section:last-child,
body.v9-body main.main-content > section:last-child {
  padding-bottom: clamp(10px, 2vw, 16px) !important;
  margin-bottom: 0 !important;
}

body.v9-body .v9-why-cta {
  margin-bottom: 0 !important;
}

body.v9-body .v9-why-cta > .v9-final-cta {
  margin-bottom: 0 !important;
  box-shadow:
    0 0 0 1px rgba(232, 196, 126, .05) inset,
    0 8px 20px rgba(0, 0, 0, .12) !important;
}

body.v9-body .v9-final-cta .btn {
  margin-bottom: 0 !important;
  box-shadow:
    0 0 0 1px rgba(232, 196, 126, .18) inset,
    0 8px 18px rgba(232, 196, 126, .18) !important;
}

html.dfg-home-parallax body[data-page="home"] .v9-why-cta > .v9-final-cta {
  transform: none !important;
}

body.v9-body > footer.site-footer--v9 {
  margin-top: 0 !important;
  padding-top: clamp(14px, 2.4vw, 20px) !important;
  border-top: 1px solid rgba(232, 196, 126, .14) !important;
  background: var(--bg-soft) !important;
}

@media (max-width: 980px) {
  body.v9-body main.main-content,
  body.v9-body .v9-main {
    padding-bottom: 0 !important;
  }

  body.v9-body main.main-content > .page-section:last-child,
  body.v9-body main.main-content > section:last-child {
    padding-bottom: clamp(12px, 2.8vw, 18px) !important;
  }

  body.v9-body > footer.site-footer--v9 {
    padding-top: clamp(16px, 3vw, 22px) !important;
  }
}
