/* ==========================================================================
   Гольфстрим — design system
   Tokens: bg #F4F7FA, text #0B1220, accent #0D9488 / #22D3EE, dark #0B1220 / #111827
   ========================================================================== */

:root {
  --bg: #f3f1ec;
  --bg-elevated: #fffcf8;
  --bg-soft: #ebe7df;
  --text: #0a0c10;
  --text-soft: #3a3f4b;
  --muted: #6b7280;
  --accent: #0c8f86;
  --accent-2: #3dd6e5;
  --accent-deep: #0a6f68;
  --gold: #c4a574;
  --gold-soft: rgba(196, 165, 116, 0.18);
  --dark: #07090f;
  --dark-2: #0e121b;
  --dark-3: #171c28;
  --border: rgba(10, 12, 16, 0.08);
  --border-strong: rgba(10, 12, 16, 0.14);
  --glow: rgba(12, 143, 134, 0.3);
  --glow-cyan: rgba(61, 214, 229, 0.22);
  --danger: #dc2626;
  --danger-bg: #fef2f2;
  --success: #059669;
  --success-bg: #ecfdf5;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --radius-full: 999px;
  --container: 1280px;
  --container-wide: 1440px;
  --header-top-h: 36px;
  --header-h: 64px;
  --header-total: calc(var(--header-top-h) + var(--header-h));
  --shadow-sm: 0 1px 2px rgba(10, 12, 16, 0.04);
  --shadow: 0 18px 40px -24px rgba(10, 12, 16, 0.22), 0 6px 16px -8px rgba(10, 12, 16, 0.08);
  --shadow-lg: 0 32px 64px -28px rgba(10, 12, 16, 0.35);
  --shadow-glow: 0 16px 48px -12px var(--glow), 0 4px 16px -6px var(--glow-cyan);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font);
  --font-serif: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --focus: 0 0 0 3px rgba(12, 143, 134, 0.32);
  --gradient-accent: linear-gradient(135deg, #0a6f68 0%, #0c8f86 40%, #2bc4c9 100%);
  --gradient-dark: linear-gradient(165deg, #07090f 0%, #101522 50%, #0b1020 100%);
  --mesh:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(12, 143, 134, 0.38), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 10%, rgba(196, 165, 116, 0.14), transparent 50%),
    radial-gradient(ellipse 60% 45% at 70% 80%, rgba(12, 143, 134, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 90%, rgba(61, 214, 229, 0.12), transparent 50%);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--accent-deep);
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 0.6em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.6rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.35rem); font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.08rem, 1.5vw, 1.28rem); font-weight: 700; }

p { margin: 0 0 0.85em; color: var(--text-soft); }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Layout ---------- */
.container {
  width: min(100% - 1.5rem, var(--container));
  margin-inline: auto;
}

.container--wide {
  width: min(100% - 1.5rem, var(--container-wide));
}

.section {
  padding: clamp(2rem, 4vw, 3.25rem) 0;
  position: relative;
}

.section--tight {
  padding: clamp(1.25rem, 2.5vw, 2rem) 0;
}

.section-dark {
  background: var(--gradient-dark);
  background-image: linear-gradient(180deg, rgba(11, 18, 32, 0.92), rgba(17, 24, 39, 0.94)), url("/assets/img/pattern-mesh.jpg");
  background-size: cover;
  background-position: center;
  color: #e5e7eb;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark .logo__text {
  color: #f8fafc;
}

.section-dark p,
.section-dark .muted {
  color: #94a3b8;
}

.section-dark a:not(.btn) {
  color: var(--accent-2);
}

.section-mesh {
  background-color: var(--dark);
  background-image: var(--mesh);
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

.section-mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.2), transparent 30%),
    linear-gradient(0deg, rgba(11, 18, 32, 0.55), transparent 40%);
  pointer-events: none;
}

.section-mesh > * {
  position: relative;
  z-index: 1;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-dark .section__eyebrow,
.section-mesh .section__eyebrow {
  color: var(--accent-2);
}

.section__eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.section__lead {
  font-size: 0.98rem;
  max-width: 40rem;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.55;
}

.grid {
  display: grid;
  gap: 0.9rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.muted { color: var(--muted); }
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Header (compact dark tech bar) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #070b14;
  border-bottom: 1px solid rgba(34, 211, 238, 0.12);
  box-shadow: 0 8px 28px -16px rgba(0, 0, 0, 0.55);
}

.header-top {
  height: var(--header-top-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, rgba(12, 143, 134, 0.16), transparent 42%, rgba(196, 165, 116, 0.1));
  font-size: 0.72rem;
  color: #94a3b8;
}

.header-top__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.header-top__badge {
  flex-shrink: 0;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 165, 116, 0.35);
  color: #e8d5b5;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.62rem;
}

.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-top-h);
  gap: 1rem;
}

.header-top__loc {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.02em;
}

.header-top__contacts {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-top a {
  color: #e2e8f0;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.header-top a:hover {
  color: var(--accent-2);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 0.75rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #f8fafc;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.logo:hover { color: #fff; }

.logo__mark {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 8px;
  background: var(--gradient-accent);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 6px 16px -4px var(--glow);
  position: relative;
  flex-shrink: 0;
}

.logo__mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(-45deg);
}

.logo__stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.05;
}

.logo__text {
  font-size: 1.02rem;
  color: #f8fafc;
}

.logo__tag {
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.logo--footer .logo__text {
  color: #f8fafc;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  flex: 1;
  justify-content: flex-end;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

.site-nav__list--full {
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
  row-gap: 0.15rem;
  max-width: none;
}

.site-header__inner--fullnav {
  gap: 0.5rem;
}

.site-nav--full {
  gap: 0.4rem;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.42rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #cbd5e1;
  border-radius: 8px;
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
  white-space: nowrap;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.site-nav__link:hover,
.site-nav__link.is-active,
.site-nav__more.is-open > .site-nav__more-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.site-nav__link.is-active {
  color: var(--accent-2);
  background: rgba(12, 143, 134, 0.14);
}

.site-nav__more {
  position: relative;
}

.site-nav__more-btn svg {
  opacity: 0.7;
  transition: transform 0.2s var(--ease);
}

.site-nav__more.is-open .site-nav__more-btn svg {
  transform: rotate(180deg);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  min-width: 11.5rem;
  padding: 0.4rem;
  margin: 0;
  list-style: none;
  background: #0f172a;
  border: 1px solid rgba(34, 211, 238, 0.16);
  border-radius: 12px;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
  z-index: 130;
}

.site-nav__more.is-open .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.site-nav__dropdown a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 500;
}

.site-nav__dropdown a:hover {
  background: rgba(13, 148, 136, 0.18);
  color: #fff;
}

.site-nav__cta {
  flex-shrink: 0;
  white-space: nowrap;
  min-height: 2.25rem !important;
  padding: 0.45rem 1rem !important;
  font-size: 0.8125rem !important;
  border-radius: 10px !important;
}

.nav-toggle {
  display: none;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 2px;
  background: #e2e8f0;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Full nav visible on wide screens; burger only on compact */
@media (max-width: 1180px) {
  .logo__tag {
    display: none;
  }
  .site-nav__link {
    padding: 0.32rem 0.36rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 1024px) {
  .header-top__mail {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    z-index: 120;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(var(--header-total) + 0.75rem) 1rem 1.5rem;
    background: #070b14;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    overflow-y: auto;
    flex: none;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    height: 100vh;
  }

  .site-nav__list,
  .site-nav__list--full {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .site-nav__link {
    font-size: 1.05rem;
    padding: 0.8rem 0.9rem;
    border-radius: 10px;
    color: #e2e8f0;
    width: 100%;
    justify-content: flex-start;
  }

  .site-nav__cta {
    width: 100%;
    text-align: center;
    min-height: 2.75rem !important;
  }
}

@media (max-width: 520px) {
  .header-top__loc {
    font-size: 0.68rem;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2;
  border: 1px solid transparent;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #fff !important;
  background: var(--gradient-accent);
  background-size: 140% 140%;
  box-shadow: 0 10px 28px -10px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  color: #fff !important;
  box-shadow: var(--shadow-glow);
  background-position: 100% 50%;
}

.btn-outline {
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  color: var(--accent-deep) !important;
  border-color: rgba(13, 148, 136, 0.45);
  background: #fff;
}

.section-dark .btn-outline,
.section-mesh .btn-outline {
  color: #f8fafc !important;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.section-dark .btn-outline:hover,
.section-mesh .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(34, 211, 238, 0.45);
  color: #fff !important;
}

.btn-ghost {
  color: var(--text-soft) !important;
  background: transparent;
  padding-inline: 0.85rem;
}

.btn-ghost:hover {
  color: var(--accent) !important;
  background: rgba(13, 148, 136, 0.08);
}

.btn-sm {
  min-height: 2.25rem;
  padding: 0.45rem 1rem;
  font-size: 0.8125rem;
}

.btn-lg {
  min-height: 2.75rem;
  padding: 0.7rem 1.35rem;
  font-size: 0.9375rem;
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  background:
    radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(13, 148, 136, 0.1), transparent 40%);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: var(--shadow), 0 0 0 1px rgba(34, 211, 238, 0.08), 0 20px 40px -24px var(--glow);
}

.card:hover::before {
  opacity: 1;
}

.card--dark {
  background: linear-gradient(165deg, #111827, #0B1220);
  border-color: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
}

.card--dark h3 { color: #f8fafc; }
.card--dark p { color: #94a3b8; }

.card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(34, 211, 238, 0.12));
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  margin: -0.15rem 0 0.75rem;
  display: block;
  background: var(--dark-2);
}

.card--service {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card--service__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card--service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.card--service:hover .card--service__media img {
  transform: scale(1.05);
}

.card--service__tag {
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(7, 9, 15, 0.72);
  color: #e8d5b5;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.card--service__body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card--service__body p {
  flex: 1;
}


.card__meta {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(1.75rem, 4vw, 3rem) 0;
  position: relative;
}

.hero--mesh {
  background-color: var(--dark);
  background-image: var(--mesh);
  color: #e5e7eb;
  overflow: hidden;
}

.hero--mesh::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

/* Full AI-video hero */
.hero--video {
  position: relative;
  min-height: min(78vh, 640px);
  padding: clamp(2rem, 5vw, 3.5rem) 0 2.5rem;
  color: #e5e7eb;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  /* Lighter overlay so custom hero video stays visible */
  background:
    linear-gradient(105deg, rgba(7, 11, 20, 0.78) 0%, rgba(7, 11, 20, 0.48) 45%, rgba(7, 11, 20, 0.35) 100%),
    linear-gradient(to top, rgba(7, 11, 20, 0.55) 0%, transparent 45%);
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  inset: auto -10% -20% 30%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(13, 148, 136, 0.28), transparent 65%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100% - 1.5rem, var(--container));
}

.hero--video .hero__copy {
  max-width: 40rem;
}

.hero__copy h1 {
  color: #f8fafc;
  margin-bottom: 0.65rem;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: #cbd5e1;
  max-width: 34rem;
  margin-bottom: 1.15rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(34, 211, 238, 0.18);
  backdrop-filter: blur(8px);
}

.hero__gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.55rem;
  max-height: 340px;
}

.hero__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.65);
  min-height: 120px;
}

.hero__gallery img:first-child {
  grid-row: 1 / span 2;
  min-height: 100%;
}

.hero__visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg), 0 0 60px -20px var(--glow);
  aspect-ratio: 16 / 11;
  max-height: 360px;
  background:
    linear-gradient(145deg, rgba(13, 148, 136, 0.25), transparent 50%),
    linear-gradient(320deg, rgba(34, 211, 238, 0.2), transparent 45%),
    #111827;
}

@media (max-width: 900px) {
  .hero--video {
    min-height: auto;
  }
}

/* Visual marquee strip */
.visual-strip {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: #0b1220;
  padding: 0.55rem 0;
}

.visual-strip__track {
  display: flex;
  gap: 0.55rem;
  width: max-content;
  animation: strip-scroll 42s linear infinite;
}

.visual-strip__track img {
  height: 110px;
  width: 180px;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.92;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Media frames & bento */
.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--dark-2);
}

.media-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.media-frame--glow {
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: var(--shadow), 0 0 40px -16px var(--glow);
}

.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.65rem;
}

.bento__item {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 140px;
  background: var(--dark);
}

.bento__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 140px;
  transition: transform 0.5s var(--ease);
}

.bento__item:hover img {
  transform: scale(1.04);
}

.bento__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #f8fafc;
  background: linear-gradient(to top, rgba(7, 11, 20, 0.85), transparent);
}

.bento__item--lg {
  grid-row: span 2;
  min-height: 300px;
}

.bento__item--lg img {
  min-height: 300px;
}

.bento__item--wide {
  grid-column: 2 / span 2;
}

@media (max-width: 800px) {
  .bento {
    grid-template-columns: 1fr 1fr;
  }
  .bento__item--lg {
    grid-column: span 2;
    grid-row: auto;
    min-height: 180px;
  }
  .bento__item--lg img { min-height: 180px; }
  .bento__item--wide { grid-column: span 2; }
}

/* CTA banner with AI art — 2 columns */
.cta-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(2rem, 4vw, 3.25rem) 0;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(7, 11, 20, 0.94) 0%, rgba(7, 11, 20, 0.88) 48%, rgba(7, 11, 20, 0.78) 100%),
    radial-gradient(ellipse at 15% 20%, rgba(13, 148, 136, 0.28), transparent 50%);
}

.cta-banner__wrap {
  position: relative;
  z-index: 1;
}

.cta-banner__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.cta-banner__info h2 {
  color: #f8fafc;
  margin-bottom: 0.65rem;
}

.cta-banner__lead {
  color: #94a3b8;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 36rem;
  margin: 0 0 1.25rem;
}

.cta-steps {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cta-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-steps__n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  line-height: 1.4;
  min-width: 1.75rem;
}

.cta-steps strong {
  display: block;
  color: #f1f5f9;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.cta-steps span {
  display: block;
  color: #94a3b8;
  font-size: 0.82rem;
  line-height: 1.45;
}

.cta-banner__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.cta-benefit {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.55rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(34, 211, 238, 0.12);
}

.cta-benefit img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 10px;
}

.cta-benefit strong {
  display: block;
  color: #f8fafc;
  font-size: 0.82rem;
  margin-bottom: 0.1rem;
}

.cta-benefit span {
  display: block;
  color: #94a3b8;
  font-size: 0.75rem;
  line-height: 1.35;
}

.cta-banner__contacts {
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-banner__contacts-label {
  margin: 0.85rem 0 0.35rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  font-weight: 600;
}

.cta-banner__phone {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #f8fafc !important;
  letter-spacing: -0.02em;
}

.cta-banner__phone:hover {
  color: var(--accent-2) !important;
}

.cta-banner__mail {
  display: inline-block;
  margin-left: 0.85rem;
  color: #94a3b8 !important;
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-banner__mail:hover {
  color: var(--accent-2) !important;
}

.cta-banner__addr {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  color: #64748b;
}

.cta-banner__form {
  position: sticky;
  top: calc(var(--header-total) + 0.75rem);
}

.cta-banner .cta-form,
.cta-banner .form-panel {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

@media (max-width: 900px) {
  .cta-banner__grid {
    grid-template-columns: 1fr;
  }
  .cta-banner__form {
    position: static;
  }
  .cta-banner__benefits {
    grid-template-columns: 1fr;
  }
  .cta-banner__mail {
    display: block;
    margin-left: 0;
    margin-top: 0.25rem;
  }
}

.page-hero-media {
  margin-top: 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-height: 220px;
}

.page-hero-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ---------- Stats / trust strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.stat {
  padding: 1.15rem 1rem;
  border-radius: 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gradient-accent);
  opacity: 0.9;
}

.stats--portal .stat {
  min-height: 110px;
}

.stat__value {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  letter-spacing: -0.02em;
  background: none;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

@media (max-width: 800px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Forms ---------- */
.cta-form,
.form-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.cta-form__head {
  margin-bottom: 1.25rem;
}

.cta-form__title {
  margin-bottom: 0.35rem;
}

.cta-form__hint {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

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

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: #fff;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
  border-color: rgba(13, 148, 136, 0.4);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--focus);
}

.form-textarea {
  min-height: 7rem;
  resize: vertical;
  line-height: 1.5;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94a3b8;
}

.cta-form__actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

.cta-form__legal {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  max-width: 18rem;
  line-height: 1.4;
}

/* Honeypot — visually hidden, not sr-only so bots still fill it */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Flash ---------- */
.flash-wrap {
  padding-top: 1rem;
}

.flash {
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  border: 1px solid transparent;
}

.flash--success {
  background: var(--success-bg);
  color: var(--success);
  border-color: rgba(5, 150, 105, 0.2);
}

.flash--error {
  background: var(--danger-bg);
  color: var(--danger);
  border-color: rgba(220, 38, 38, 0.2);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: #94a3b8;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0 1.25rem;
}

.site-footer__tagline {
  margin: 1rem 0 0.75rem;
  max-width: 22rem;
  color: #94a3b8;
  font-size: 0.95rem;
}

.site-footer__address {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin: 0;
}

.site-footer__heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e2e8f0;
  margin-bottom: 1rem;
}

.site-footer__nav,
.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer a {
  color: #94a3b8;
  font-size: 0.925rem;
  transition: color 0.2s var(--ease);
}

.site-footer a:hover {
  color: var(--accent-2);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.1rem 0;
}

.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
}

@media (max-width: 800px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ---------- Accordion ---------- */
[data-accordion] {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

[data-accordion-item] {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

[data-accordion-item].is-open {
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: 0 8px 24px -14px var(--glow);
}

[data-accordion-item] > button {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

[data-accordion-item] > button::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
  margin-top: -0.2rem;
}

[data-accordion-item].is-open > button::after {
  transform: rotate(225deg);
  margin-top: 0.2rem;
  border-color: var(--accent);
}

[data-accordion-item] .accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.25s;
  padding: 0 1.25rem;
  color: var(--text-soft);
}

[data-accordion-item].is-open .accordion__panel {
  max-height: 480px;
  padding: 0 1.25rem 1.15rem;
}

/* ---------- Reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="left"] {
  transform: translateX(-20px);
}

[data-reveal="right"] {
  transform: translateX(20px);
}

[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible {
  transform: none;
}

/* ---------- Badges / chips ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(13, 148, 136, 0.1);
  color: var(--accent-deep);
}

.badge--cyan {
  background: rgba(34, 211, 238, 0.12);
  color: #0e7490;
}

/* ---------- Table (admin) ---------- */
.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
}

.admin-table,
table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td,
table.data-table th,
table.data-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.admin-table th,
table.data-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 600;
  background: rgba(244, 247, 250, 0.8);
}

.admin-table tr:last-child td,
table.data-table tr:last-child td {
  border-bottom: none;
}

.admin-table tbody tr:hover,
table.data-table tbody tr:hover {
  background: rgba(13, 148, 136, 0.04);
}

.admin-table .actions,
table.data-table .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* Admin shell helpers */
.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--dark);
  color: #cbd5e1;
  padding: 1.5rem 1rem;
}

.admin-sidebar a {
  display: block;
  color: #94a3b8;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.admin-sidebar a:hover,
.admin-sidebar a.is-active {
  background: rgba(13, 148, 136, 0.15);
  color: #f8fafc;
}

.admin-main {
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  background: var(--bg);
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 800px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 1rem;
  }
  .admin-sidebar a {
    margin: 0;
  }
}

/* ---------- Utilities ---------- */
.divider {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 1.5rem 0;
}

.prose {
  max-width: 65ch;
}

.prose h2, .prose h3 {
  margin-top: 1.5em;
}

.prose ul {
  padding-left: 1.2rem;
  margin: 0 0 1em;
}

.prose li {
  list-style: disc;
  margin-bottom: 0.35em;
  color: var(--text-soft);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.surface {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

/* Glass panel */
.glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

/* Main content min height for sticky footer feel */
body {
  display: flex;
  flex-direction: column;
}

#main {
  flex: 1 0 auto;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* ==========================================================================
   CORPORATE PORTAL — premium layer
   ========================================================================== */
body.portal {
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(12, 143, 134, 0.07), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(196, 165, 116, 0.06), transparent 50%),
    var(--bg);
}

.section {
  padding: clamp(2.75rem, 5.5vw, 5rem) 0;
}

.section--tight {
  padding: clamp(1.75rem, 3vw, 2.75rem) 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.65), rgba(235, 231, 223, 0.55));
}

.section--elevated .stat {
  background: var(--bg-elevated);
  border-color: rgba(10, 12, 16, 0.06);
  box-shadow: var(--shadow);
}

.section-head {
  margin-bottom: 1.75rem;
  max-width: 46rem;
}

.section-head--row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.section-head .section__lead {
  margin-top: 0.5rem;
}

.section__eyebrow {
  color: var(--accent-deep);
}

.section-dark .section__eyebrow {
  color: var(--gold);
}

/* Header portal refinements */
.site-header--portal {
  background: rgba(7, 9, 15, 0.92);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(196, 165, 116, 0.12);
}

.site-header--portal .site-header__inner {
  height: var(--header-h);
}

/* full flat nav — mega/dropdown removed */
/* Hero portal */
.hero--portal {
  min-height: min(88vh, 760px);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 3rem;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 30% 40%, #000 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.45;
}

.hero__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0a0c10;
  background: linear-gradient(135deg, #e8d5b5, #c4a574);
}

.pill--ghost {
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero--portal h1 {
  max-width: 14ch;
  background: linear-gradient(180deg, #ffffff 20%, #b8c0d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.35rem 0 0;
  max-width: 28rem;
}

.hero__metrics > div {
  padding: 0.7rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__metrics dt {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #f8fafc;
  font-weight: 600;
}

.hero__metrics dd {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__panel {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(8, 12, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(196, 165, 116, 0.08);
  backdrop-filter: blur(10px);
}

.hero__panel-head,
.hero__panel-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.95rem;
  font-size: 0.78rem;
  color: #94a3b8;
}

.hero__panel-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.dot-live {
  color: #86efac;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dot-live::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.hero__gallery--panel {
  max-height: none;
  padding: 0.55rem;
  gap: 0.45rem;
}

.hero__panel-foot a {
  color: var(--accent-2) !important;
  font-weight: 700;
}

/* Trust ribbon */
.trust-ribbon {
  border-block: 1px solid var(--border);
  background: rgba(255, 252, 248, 0.7);
  backdrop-filter: blur(8px);
}

.trust-ribbon__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.95rem 0;
  overflow: hidden;
}

.trust-ribbon__label {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.trust-ribbon__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
}

.trust-ribbon__items span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-soft);
}

/* Portal map tiles */
.portal-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.portal-tile {
  position: relative;
  min-height: 200px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: #fff !important;
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.portal-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portal-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  z-index: 0;
}

.portal-tile:hover img {
  transform: scale(1.06);
}

.portal-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 9, 15, 0.15), rgba(7, 9, 15, 0.88));
}

.portal-tile__n {
  position: absolute;
  top: 0.9rem;
  right: 0.95rem;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.45);
}

.portal-tile__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.1rem 1.15rem 1.2rem;
}

.portal-tile__body strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
  color: #fff;
}

.portal-tile__body em {
  font-style: normal;
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.industry-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.industry-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.industry-card > div {
  padding: 0.95rem 1rem 1.1rem;
}

.industry-card h3 {
  color: #f8fafc;
  margin-bottom: 0.35rem;
}

.industry-card p {
  color: #94a3b8;
  font-size: 0.88rem;
  margin: 0;
}

/* Process rail */
.process-rail {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.process-rail__item {
  position: relative;
  padding: 1.15rem 1rem 1.2rem;
  border-radius: 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  min-height: 100%;
}

.process-rail__n {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.55rem;
  line-height: 1;
}

.process-rail__item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.process-rail__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Case spotlight */
.case-spotlight {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
}

.case-spotlight__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.case-spotlight__body {
  padding: clamp(1.25rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.case-spotlight__body h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  margin-bottom: 0.5rem;
}

.case-spotlight__body .cluster {
  margin-top: 0.85rem;
}

/* Dual columns media/career */
.dual-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
}

.media-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.65rem;
  border-radius: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: inherit !important;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.media-row:hover {
  border-color: rgba(12, 143, 134, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.media-row img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}

.media-row strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.media-row em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.82rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card--job h3 {
  margin-bottom: 0.65rem;
}

.card--cta-mini {
  background: linear-gradient(160deg, #0e121b, #07090f) !important;
}

.card--cta-mini h3 {
  color: #f8fafc;
}

.card--cta-mini p {
  color: #94a3b8;
}

/* Cards premium */
.card {
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  box-shadow: var(--shadow);
}

.btn-primary {
  box-shadow: 0 12px 28px -12px rgba(12, 143, 134, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Footer portal */
.footer-cta-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse at 20% 50%, rgba(12, 143, 134, 0.18), transparent 50%),
    rgba(255, 255, 255, 0.02);
}

.footer-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}

.footer-cta-strip__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
}

.footer-cta-strip__title {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.site-footer__grid--portal {
  grid-template-columns: 1.4fr repeat(4, 0.85fr);
  gap: 1.5rem 1.25rem;
  padding: clamp(2.25rem, 4vw, 3.5rem) 0 1.75rem;
}

.site-footer__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.site-footer__certs span {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 165, 116, 0.25);
  color: #d6c3a2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__legal {
  color: #64748b !important;
  font-size: 0.75rem !important;
  max-width: 28rem;
}

.site-footer .logo__stack {
  gap: 0.1rem;
}

/* Page interiors feel richer */
.hero--mesh {
  padding: clamp(2.25rem, 5vw, 3.75rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero--mesh h1 {
  max-width: 18ch;
}

/* Responsive portal */
@media (max-width: 1100px) {
  .portal-map,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-rail {
    grid-template-columns: repeat(3, 1fr);
  }
  .site-footer__grid--portal {
    grid-template-columns: 1fr 1fr;
  }
  .mega {
    left: 0;
    transform: translateX(0) translateY(8px);
    width: min(640px, 92vw);
  }
  .site-nav__mega.is-open .mega {
    transform: translateX(0) translateY(0);
  }
}

@media (max-width: 900px) {
  .hero--portal {
    min-height: auto;
  }
  .case-spotlight,
  .dual-columns {
    grid-template-columns: 1fr;
  }
  .case-spotlight__media img {
    min-height: 220px;
  }
  .process-rail {
    grid-template-columns: 1fr 1fr;
  }
  .site-nav__secondary {
    display: none;
  }
  .mega {
    position: static;
    width: 100%;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    display: none;
    margin-top: 0.35rem;
    box-shadow: none;
  }
  .site-nav__mega.is-open .mega {
    display: block;
  }
  .mega__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .portal-map,
  .industry-grid,
  .process-rail,
  .site-footer__grid--portal {
    grid-template-columns: 1fr;
  }
  .hero__metrics {
    grid-template-columns: 1fr;
  }
  .header-top__badge {
    display: none;
  }
}

/* ==========================================================================
   PRICING PAGE
   ========================================================================== */
.pricing-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 3rem;
  color: #e5e7eb;
}

.pricing-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pricing-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(7, 9, 15, 0.94) 0%, rgba(7, 9, 15, 0.82) 48%, rgba(7, 9, 15, 0.7) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(12, 143, 134, 0.25), transparent 50%);
}

.pricing-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.pricing-hero h1 {
  color: #f8fafc;
  max-width: 12ch;
  margin-bottom: 0.75rem;
}

.pricing-hero__lead {
  color: #cbd5e1;
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 0 1rem;
  line-height: 1.55;
}

.pricing-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pricing-hero .chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(196, 165, 116, 0.25);
  color: #e8d5b5;
}

.pricing-aside-card {
  border-radius: 22px;
  padding: 1.25rem 1.3rem 1.35rem;
  background: rgba(12, 16, 26, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.pricing-aside-card__label {
  margin: 0 0 0.9rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.pricing-aside-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-aside-card__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-aside-card__list strong {
  font-family: var(--font-serif);
  color: var(--accent-2);
  font-size: 1rem;
  line-height: 1.2;
}

.pricing-aside-card__list span {
  color: #cbd5e1;
  font-size: 0.88rem;
  line-height: 1.4;
}

.pricing-aside-card__note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.45;
}

/* Package cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(12, 143, 134, 0.22);
}

.price-card--featured {
  border-color: rgba(12, 143, 134, 0.4);
  box-shadow: var(--shadow), 0 0 0 1px rgba(12, 143, 134, 0.12), 0 20px 50px -28px var(--glow);
  background:
    linear-gradient(180deg, rgba(12, 143, 134, 0.06), transparent 40%),
    var(--bg-elevated);
}

.price-card__ribbon {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--gradient-accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px -8px var(--glow);
}

.price-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.price-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.price-card:hover .price-card__media img {
  transform: scale(1.05);
}

.price-card__badge {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(7, 9, 15, 0.72);
  color: #e8d5b5;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.price-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.15rem 1.25rem;
}

.price-card__title {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
}

.price-card__price-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.price-card__price {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.price-card--featured .price-card__price {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-card__unit {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-card__note {
  font-size: 0.86rem;
  color: var(--text-soft);
  margin: 0 0 0.85rem;
  line-height: 1.45;
}

.price-card__points {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.price-card__points li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.4;
}

.price-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(12, 143, 134, 0.12);
  box-shadow: inset 0 0 0 2px var(--accent);
}

.price-card__cta {
  width: 100%;
  margin-top: auto;
}

/* Comparison table */
.pricing-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.pricing-table th,
.pricing-table td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.pricing-table thead th {
  background: #0e121b;
  color: #e2e8f0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-table thead th:first-child {
  border-radius: 0;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table tbody tr:hover td {
  background: rgba(12, 143, 134, 0.04);
}

.pricing-table__feature {
  font-weight: 600;
  color: var(--text);
  min-width: 11rem;
}

.pricing-table__cell {
  text-align: center !important;
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 1rem;
}

/* Trust strip on pricing */
.pricing-trust {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.pricing-trust h2 {
  color: #f8fafc;
}

.pricing-trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.pricing-trust__item {
  padding: 0.95rem 1.05rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-trust__item strong {
  display: block;
  color: #f8fafc;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.pricing-trust__item span {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .pricing-hero__inner,
  .pricing-trust {
    grid-template-columns: 1fr;
  }
}

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

/* ==========================================================================
   INNER PAGES — shared content layout
   ========================================================================== */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.25rem) 0 2.75rem;
  color: #e5e7eb;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(7, 9, 15, 0.92) 0%, rgba(7, 9, 15, 0.78) 48%, rgba(7, 9, 15, 0.62) 100%),
    linear-gradient(to top, rgba(7, 9, 15, 0.5), transparent 45%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: end;
}

.page-hero h1 {
  color: #f8fafc;
  max-width: 16ch;
  margin-bottom: 0.75rem;
}

.page-hero__lead {
  color: #cbd5e1;
  font-size: 1.05rem;
  max-width: 38rem;
  margin: 0 0 1.15rem;
  line-height: 1.55;
}

.page-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.page-hero__stats > div {
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.page-hero__stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #f8fafc;
  margin-bottom: 0.2rem;
}

.page-hero__stats span {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.35;
}

.crumb-link {
  color: inherit !important;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 213, 181, 0.35);
}

.crumb-link:hover {
  color: #e8d5b5 !important;
}

.check-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--accent);
  background: rgba(12, 143, 134, 0.12);
}

.check-list a {
  font-weight: 600;
}

.review-card__title {
  font-size: 1.05rem;
  margin: 0 0 0.65rem;
}

.review-card__role {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}

.faq-group {
  margin-bottom: 2rem;
}

.faq-group__title {
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.contact-card__title {
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-rows > div span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-rows > div strong {
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--dark-2);
}

.map-frame iframe {
  display: block;
  border: 0;
  width: 100%;
  min-height: 300px;
}

.vacancy-card__title {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin: 0 0 0.35rem;
}

.vacancy-card__salary {
  font-weight: 700;
  color: var(--accent-deep);
  margin: 0 0 1rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
}

.article-cover {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

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

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.article-aside {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: sticky;
  top: calc(var(--header-total) + 0.75rem);
}

.content-block h3 {
  margin-top: 1.5rem;
}

.prose ul {
  list-style: none;
  margin: 0.75rem 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.prose ul li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.prose ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.industry-card h3 {
  margin-bottom: 0.35rem;
}

.industry-grid--light .industry-card {
  background: var(--bg-elevated);
  border-color: var(--border);
}

.industry-grid--light .industry-card h3 {
  color: var(--text);
}

.industry-grid--light .industry-card p {
  color: var(--muted);
}


@media (max-width: 900px) {
  .page-hero__inner,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-aside {
    position: static;
  }
  .page-hero__stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .page-hero__stats {
    grid-template-columns: 1fr;
  }
}
