/* ============================================================
   SANOTEK — Stylesheet v2 · "Solid / Structural"
   Industrial blueprint · hard edges · hairline grids · offset shadows
   ============================================================ */

:root {
  /* Surfaces */
  --bg-deep: #050d18;
  --bg: #0a1727;
  --bg-elevated: #0e2138;
  --surface: #15304d;
  --surface-2: #1c3a5c;
  --paper: #f6f8fc;     /* light surfaces for contrast slabs */
  --paper-2: #eaeef5;

  --line: rgba(148, 184, 232, 0.16);
  --line-strong: rgba(148, 184, 232, 0.32);
  --line-bright: rgba(148, 184, 232, 0.60);

  /* Brand */
  --primary: #1F5BD6;
  --primary-2: #1849B0;
  --primary-3: #4E8FF2;
  --primary-deep: #0B2660;
  --primary-soft: rgba(31, 91, 214, 0.16);
  --accent-warm: #E5A23B;

  /* Text */
  --text: #f3f7ff;
  --text-2: #c1cee2;
  --text-muted: #7f95b5;
  --text-dim: #54688a;
  --ink: #0a1727;       /* dark text on light slabs */

  /* No radii — all square */
  --r-sm: 0px; --r: 0px; --r-lg: 0px; --r-xl: 0px;

  /* Hard offset shadows */
  --shadow-sm: 3px 3px 0 rgba(0,0,0,0.35);
  --shadow: 6px 6px 0 rgba(0,0,0,0.45);
  --shadow-lg: 10px 10px 0 rgba(0,0,0,0.55);

  --container: 1320px;
  --font: "Space Grotesk", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --header-height: 104px;
}
@media (max-width: 640px) {
  :root { --header-height: 74px; }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  letter-spacing: 0;
  font-weight: 400;
  background-image:
    linear-gradient(rgba(148, 184, 232, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 184, 232, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  background-attachment: fixed;
}
body.drawer-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  touch-action: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
#main { padding-top: var(--header-height); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

.mono { font-family: var(--font-mono); letter-spacing: 0; }

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.72, 0.22, 1),
    transform 0.86s cubic-bezier(0.2, 0.72, 0.22, 1),
    filter 0.86s cubic-bezier(0.2, 0.72, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
@media (max-width: 640px) {
  .scroll-reveal {
    transform: translate3d(0, 16px, 0) scale(0.99);
    filter: blur(4px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.screen-transition {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(5,13,24,0.98), rgba(7,18,32,0.96) 48%, rgba(5,13,24,0.98)),
    var(--bg-deep);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.34s ease, visibility 0s linear 0.34s;
  overflow: hidden;
}
.screen-transition.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.screen-transition__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(78,143,242,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78,143,242,0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.72;
  transform: translateZ(0);
}
.screen-transition__grid::before,
.screen-transition__grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78,143,242,0.75), transparent);
  opacity: 0.58;
}
.screen-transition__grid::before {
  top: 28%;
}
.screen-transition__grid::after {
  bottom: 26%;
}
.screen-transition__panel {
  position: relative;
  width: min(520px, 100%);
  border: 1.5px solid rgba(148,184,232,0.32);
  background: rgba(6, 17, 31, 0.84);
  box-shadow: 10px 10px 0 rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.04);
  padding: 30px;
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  animation: transitionPanelIn 0.62s cubic-bezier(0.2, 0.72, 0.22, 1) forwards;
}
.screen-transition__panel::before,
.screen-transition__panel::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--primary-3);
  border-style: solid;
  pointer-events: none;
}
.screen-transition__panel::before {
  top: -1.5px;
  left: -1.5px;
  border-width: 1.5px 0 0 1.5px;
}
.screen-transition__panel::after {
  right: -1.5px;
  bottom: -1.5px;
  border-width: 0 1.5px 1.5px 0;
}
.screen-transition__mark {
  margin-bottom: 28px;
}
.screen-transition__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-3);
}
.screen-transition__label {
  color: #fff;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 460px;
  overflow-wrap: anywhere;
}
.screen-transition__line {
  height: 2px;
  margin-top: 28px;
  background: rgba(148,184,232,0.16);
  overflow: hidden;
}
.screen-transition__line span {
  display: block;
  height: 100%;
  width: 46%;
  background: linear-gradient(90deg, var(--primary), var(--primary-3), #fff);
  animation: transitionLoad 0.92s cubic-bezier(0.2, 0.72, 0.22, 1) both;
}
.screen-transition.is-route .screen-transition__panel {
  padding: 24px;
}
.screen-transition.is-route .screen-transition__mark {
  margin-bottom: 20px;
}
.screen-transition.is-route .screen-transition__label {
  font-size: clamp(24px, 4vw, 38px);
}
@keyframes transitionPanelIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes transitionLoad {
  from {
    transform: translateX(-105%);
  }
  to {
    transform: translateX(230%);
  }
}
@media (max-width: 640px) {
  .screen-transition {
    padding: 20px;
  }
  .screen-transition__panel {
    padding: 24px 22px;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.42);
  }
  .screen-transition__meta {
    flex-direction: column;
    gap: 8px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }
  .screen-transition__label {
    font-size: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .screen-transition,
  .screen-transition__panel,
  .screen-transition__line span {
    animation: none;
    transition: none;
  }
  .screen-transition__panel {
    opacity: 1;
    transform: none;
  }
}

/* corner ticks (blueprint corners on cards) */
.tick-corners { position: relative; }
.tick-corners::before,
.tick-corners::after {
  content: ""; position: absolute; width: 12px; height: 12px;
  border: 1.5px solid var(--primary-3);
  pointer-events: none;
}
.tick-corners::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.tick-corners::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

/* ============================================================
   BUTTONS — sharp, solid with offset hover
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1.5px solid transparent;
  border-radius: 0;
  font-family: var(--font);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.12s, background 0.12s, color 0.12s, box-shadow 0.12s, border-color 0.12s;
  white-space: nowrap;
  position: relative;
}
.btn-sm { padding: 10px 16px; font-size: 11px; }
.btn-lg { padding: 16px 28px; font-size: 13px; letter-spacing: 0.16em; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn svg { stroke-width: 2; flex-shrink: 0; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.45);
}
.btn-primary:hover { background: var(--primary-2); border-color: var(--primary-2); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(0,0,0,0.6); }
.btn-primary:active { transform: translate(0, 0); box-shadow: 2px 2px 0 rgba(0,0,0,0.45); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--primary-3); color: #fff; background: var(--primary-soft); }

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border-color: var(--line-strong);
}
.btn-ghost:hover { color: var(--text); background: var(--surface); border-color: var(--line-bright); }

.btn-ghost-light {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.20); }

.btn-white {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.55);
}
.btn-white:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(0,0,0,0.7); }

/* ============================================================
   HEADER — two-tier industrial bar
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: var(--bg-deep);
  border-bottom: 1.5px solid var(--line-strong);
  transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease;
  will-change: background, box-shadow;
}
.site-header.is-scrolled {
  background: rgba(5, 13, 24, 0.92);
  border-bottom-color: rgba(78, 143, 242, 0.34);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  backdrop-filter: blur(14px);
}
.site-header::before {
  /* top utility strip */
  content: "SANOTEK · END\00DCSTR\0130YEL \00C7\00D6Z\00DCMLER · DI\015E  T\0130 CARET · \0130STANBUL · INFO@SANOTEK.COM.TR";
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  padding: 6px 32px;
  border-bottom: 1px solid var(--line);
  background: #03080f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 28px;
  transition: max-height 0.24s ease, padding 0.24s ease, opacity 0.2s ease, border-color 0.24s ease;
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 32px;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  transition: min-height 0.24s ease, padding 0.24s ease, border-color 0.24s ease;
}
@media (max-width: 640px) {
  .site-header::before { padding: 6px 20px; font-size: 9.5px; }
  .site-header__inner { padding: 14px 20px; }
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; transition: gap 0.24s ease; }
.logo__image {
  display: block;
  width: 178px;
  max-width: 42vw;
  height: auto;
  background: var(--bg-deep);
  border: none;
  transition: width 0.24s ease, opacity 0.24s ease;
}
.logo__mark {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--primary);
  border: 1.5px solid var(--primary-3);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.5);
  position: relative;
}
.logo__mark svg { display: block; width: 28px; height: 28px; }
.logo.is-small .logo__mark { width: 36px; height: 36px; }
.logo.is-small .logo__mark svg { width: 22px; height: 22px; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 18px;
  color: #fff;
}
.logo__tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-muted);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: opacity 0.24s ease, font-size 0.24s ease;
}
.logo.is-small .logo__image { width: 148px; }
.logo.is-small .logo__name { font-size: 15px; }
.logo.is-small .logo__tag { font-size: 9px; }

.nav-desktop { display: flex; gap: 0; flex: 1; justify-content: center; }
.nav-link {
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  border-left: 1px solid var(--line);
  transition: color 0.15s, background 0.15s, padding 0.24s ease;
}
.nav-link:first-child { border-left: none; }
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.03); }
.nav-link.is-active { color: var(--primary-3); }
.nav-link.is-active::before {
  content: ""; position: absolute;
  left: 18px; right: 18px; bottom: 2px;
  height: 2px;
  background: var(--primary-3);
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: flex; align-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  border: 1px solid var(--line-strong);
}
.lang-toggle button {
  background: none; border: none;
  color: var(--text-muted);
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  transition: color 0.15s, background 0.15s;
}
.lang-toggle button:hover { color: var(--text); }
.lang-toggle button.is-active { color: #fff; background: var(--primary); }
.lang-toggle span { display: none; }

.hamburger { display: none; background: none; border: 1.5px solid var(--line-strong); color: var(--text); padding: 8px; }
.iconbtn { background: none; border: 1.5px solid var(--line-strong); color: var(--text); padding: 8px; display: inline-flex; align-items: center; justify-content: center; }
.iconbtn:hover { background: var(--surface); border-color: var(--line-bright); }

@media (min-width: 641px) {
  .site-header.is-scrolled::before {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    border-bottom-color: transparent;
  }
  .site-header.is-scrolled .site-header__inner {
    min-height: 64px;
    padding-top: 9px;
    padding-bottom: 9px;
  }
  .site-header.is-scrolled .logo {
    gap: 2px;
  }
  .site-header.is-scrolled .logo__image {
    width: 150px;
    opacity: 0.94;
  }
  .site-header.is-scrolled .logo__tag {
    font-size: 8.5px;
    opacity: 0.72;
  }
  .site-header.is-scrolled .nav-link {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .site-header.is-scrolled .btn-sm {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw);
  height: 100dvh;
  background: var(--bg);
  border-left: 2px solid var(--primary);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex; flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  will-change: transform;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1.5px solid var(--line-strong); }
.mobile-nav { display: flex; flex-direction: column; padding: 0; flex: 1; }
.mobile-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; color: var(--text-2); font-weight: 600; font-size: 13.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  border-left: 4px solid transparent;
}
.mobile-link.is-active { color: var(--primary-3); border-left-color: var(--primary-3); background: var(--primary-soft); }
.mobile-drawer__foot { padding: 20px; border-top: 1.5px solid var(--line-strong); display: flex; flex-direction: column; gap: 14px; }
.drawer-scrim { position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 99; touch-action: none; }

@media (max-width: 1100px) {
  .nav-desktop { display: none; }
  .header-actions {
    margin-left: auto;
    gap: 12px;
  }
  .hamburger {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .header-actions .btn { display: none; }
  .header-actions > .lang-toggle {
    min-height: 36px;
  }
}

@media (max-width: 640px) {
  .site-header::before {
    display: none;
  }
  .site-header__inner {
    gap: 12px;
    padding: 12px 14px;
    min-height: 74px;
  }
  .site-header.is-scrolled .site-header__inner {
    min-height: 62px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .brand {
    min-width: 0;
    flex: 1;
  }
  .logo {
    min-width: 0;
    gap: 4px;
  }
  .logo__image {
    width: 142px;
    max-width: 52vw;
  }
  .site-header.is-scrolled .logo__image {
    width: 124px;
  }
  .logo__mark {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }
  .logo__text {
    min-width: 0;
  }
  .logo__name {
    font-size: 17px;
  }
  .logo__tag {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .site-header.is-scrolled .logo__tag {
    font-size: 8px;
    opacity: 0.68;
  }
  .header-actions {
    flex-shrink: 0;
    margin-left: 0;
    gap: 8px;
  }
  .header-actions > .lang-toggle {
    display: none;
  }
  .hamburger {
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: width 0.24s ease, height 0.24s ease;
  }
  .site-header.is-scrolled .hamburger {
    width: 38px;
    height: 38px;
  }
  .mobile-drawer__foot .lang-toggle {
    display: flex;
    width: max-content;
  }
  .mobile-drawer {
    left: 0;
    width: 100vw;
    max-width: 100vw;
    border-left: 0;
  }
}

/* ============================================================
   HERO — angular split with corner-ticks and stacked metrics
   ============================================================ */
.hero {
  position: relative;
  padding: 64px 0 80px;
  background: var(--bg-deep);
  border-bottom: 1.5px solid var(--line-strong);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,91,214,0.10), transparent 60%),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(148,184,232,0.04) 119px 120px);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero__grid > * { min-width: 0; }

.hero__copy { position: relative; z-index: 2; }
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-3);
  font-weight: 600;
  padding: 7px 14px;
  border: 1px solid var(--primary-3);
  background: var(--primary-soft);
  margin-bottom: 28px;
}
.hero__kicker::before {
  content: ""; width: 6px; height: 6px;
  background: var(--primary-3);
}
.hero__title {
  font-size: clamp(34px, 5.6vw, 68px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 26px;
  color: #fff;
}
.hero__title span { display: block; }
.hero__title--accent { color: var(--primary-3); }
.hero__sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 540px;
  margin: 0 0 32px;
  line-height: 1.65;
}
.hero__pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 36px;
  max-width: 580px;
  border: 1px solid var(--line-strong);
}
.hero-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
}
.hero-pill:nth-child(2n) { border-right: none; }
.hero-pill:nth-last-child(-n+2) { border-bottom: none; }
.hero-pill__icon {
  width: 36px; height: 36px;
  background: var(--primary-soft);
  border: 1px solid var(--primary-3);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary-3);
  flex-shrink: 0;
}
.hero-pill__t {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-2);
  line-height: 1.3;
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero media (split layout) */
.hero__media {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 540px;
}
.hero-tile {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.hero-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.hero-tile:hover img { transform: scale(1.06); }
.hero-tile__label {
  position: absolute; bottom: 0; left: 0;
  background: var(--bg-deep);
  border-top: 1.5px solid var(--primary-3);
  border-right: 1.5px solid var(--primary-3);
  color: #fff; padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-tile--0 { grid-column: 1 / 2; grid-row: 1 / 3; }
.hero-tile--1 { grid-column: 2 / 3; grid-row: 1 / 2; }
.hero-tile--2 { grid-column: 2 / 3; grid-row: 2 / 3; }
.hero-tile--badge {
  position: absolute;
  left: -20px; bottom: -20px;
  width: 140px; height: 140px;
  background: var(--primary);
  border: 4px solid var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.55);
  z-index: 3;
}
.hero-badge { text-align: center; color: #fff; padding: 0 10px; }
.hero-badge__num { font-size: 38px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; font-family: var(--font); }
.hero-badge__lbl { font-family: var(--font-mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.92; margin-top: 8px; }

/* Hero — single layout */
.hero--single {
  background-size: cover;
  background-position: center;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 100px 0;
}
.hero--single .hero__pills { max-width: 760px; grid-template-columns: repeat(4, 1fr); }
.hero--single .hero__copy { max-width: 820px; }
.hero--single .hero-pill:nth-child(2n) { border-right: 1px solid var(--line); }
.hero--single .hero-pill:nth-child(4n) { border-right: none; }
.hero--single .hero-pill:nth-last-child(-n+4) { border-bottom: none; }
@media (max-width: 880px) { .hero--single .hero__pills { grid-template-columns: repeat(2, 1fr); } .hero--single .hero-pill:nth-child(4n) { border-right: 1px solid var(--line); } .hero--single .hero-pill:nth-child(2n) { border-right: none; } }

/* Hero — video bg */
.hero--video { padding: 120px 0; }
.hero__bgwrap { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero__bg {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroPan 26s ease-in-out infinite alternate;
}
.hero__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(5,13,24,0.96) 30%, rgba(5,13,24,0.55) 100%);
}
@keyframes heroPan {
  0%   { transform: scale(1.08) translateX(0); }
  100% { transform: scale(1.16) translateX(-4%); }
}
.hero--video .hero__copy { max-width: 780px; position: relative; z-index: 2; }
.hero--video .hero__pills { max-width: 760px; grid-template-columns: repeat(4, 1fr); }
.hero--video .hero-pill:nth-child(2n) { border-right: 1px solid var(--line); }
.hero--video .hero-pill:nth-child(4n) { border-right: none; }
.hero--video .hero-pill:nth-last-child(-n+4) { border-bottom: none; }
@media (max-width: 880px) { .hero--video .hero__pills { grid-template-columns: repeat(2, 1fr); } .hero--video .hero-pill:nth-child(4n) { border-right: 1px solid var(--line); } .hero--video .hero-pill:nth-child(2n) { border-right: none; } }

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__media { height: 420px; }
  .hero-tile--badge { width: 110px; height: 110px; left: -10px; bottom: -10px; }
  .hero-badge__num { font-size: 28px; }
}
@media (max-width: 640px) {
  .hero__pills { grid-template-columns: 1fr; }
  .hero-pill { border-right: none !important; }
  .hero-pill:not(:last-child) { border-bottom: 1px solid var(--line) !important; }
  .hero {
    padding: 48px 0 56px;
  }
  .hero__grid {
    gap: 32px;
  }
  .hero__kicker {
    max-width: 100%;
    font-size: 10px;
    letter-spacing: 0.13em;
    padding: 7px 11px;
    white-space: normal;
    margin-bottom: 20px;
  }
  .hero__title {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .hero__title span {
    overflow-wrap: anywhere;
  }
  .hero__sub {
    font-size: 15.5px;
    max-width: 100%;
    margin-bottom: 26px;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    min-height: 52px;
  }
  .hero__media {
    width: 100%;
    min-width: 0;
    height: 280px;
    gap: 8px;
    overflow: hidden;
  }
  .hero-tile {
    min-width: 0;
    box-shadow: none;
  }
  .hero-tile__label {
    font-size: 9px;
    padding: 5px 10px;
  }
  .hero-stamp {
    display: none;
  }
}
@media (max-width: 360px) {
  .hero__title {
    font-size: 31px;
  }
}

/* ============================================================
   SECTION + numbered head
   ============================================================ */
.section { padding: 100px 0; position: relative; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

.section-head {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  position: relative;
}
.section-head__eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-3);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-head__eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px; height: 1.5px;
  background: var(--primary-3);
}
.section-head__num {
  font-family: var(--font-mono);
  position: absolute;
  top: -8px; right: 0;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.section-head__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.08; margin: 0;
  color: #fff;
  text-wrap: balance;
  max-width: 880px;
}
.section-head__sub { color: var(--text-2); font-size: 17px; line-height: 1.6; margin: 8px 0 0; max-width: 720px; text-wrap: pretty; }
.section-head.is-center { text-align: center; }
.section-head.is-center .section-head__eyebrow { justify-content: center; }
.section-head.is-center .section-head__title { margin-left: auto; margin-right: auto; }
.section-head.is-center .section-head__sub { margin-left: auto; margin-right: auto; }
.section-head.is-center .section-head__num { display: none; }

/* ============================================================
   FEATURE SPOTLIGHTS — full-bleed key visuals (user's artwork)
   ============================================================ */
.section--spotlights { padding: 0; }
.spotlight {
  position: relative;
  border-top: 1.5px solid var(--line-strong);
  border-bottom: 1.5px solid var(--line-strong);
  background: var(--bg);
  overflow: hidden;
}
.spotlight + .spotlight { border-top: none; }
.spotlight__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 32px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 980px) { .spotlight__inner { grid-template-columns: 1fr; padding: 36px 24px; } }
.spotlight__meta {
  position: relative;
}
.spotlight__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-3);
  margin-bottom: 14px;
}
.spotlight__label::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--primary-3);
}
.spotlight__index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--primary-3);
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}
.spotlight__title {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 14px;
}
.spotlight__d {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0 0 22px;
}
.spotlight__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 24px;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: rgba(5, 13, 24, 0.34);
}
.spotlight__fact {
  min-height: 74px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spotlight__fact:nth-child(2n) { border-right: none; }
.spotlight__fact:nth-last-child(-n+2) { border-bottom: none; }
.spotlight__fact dt {
  margin: 0 0 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.25;
}
.spotlight__fact dd {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: 0;
}
.spotlight__fact:hover {
  background: rgba(31,91,214,0.08);
}
@media (max-width: 420px) {
  .spotlight__facts {
    grid-template-columns: 1fr;
  }
  .spotlight__fact,
  .spotlight__fact:nth-child(2n),
  .spotlight__fact:nth-last-child(-n+2) {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .spotlight__fact:last-child { border-bottom: none; }
}
.spotlight__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line-strong);
  margin-bottom: 24px;
}
.spotlight__stat {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spotlight__stat:nth-child(2n) { border-right: none; }
.spotlight__stat:nth-last-child(-n+2) { border-bottom: none; }
.spotlight__stat-v { font-size: 22px; font-weight: 700; color: var(--primary-3); letter-spacing: -0.02em; line-height: 1; }
.spotlight__stat-l { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 6px; }
.spotlight__visual {
  position: relative;
  border: 1.5px solid var(--line-strong);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.5);
  background: #f6f8fc;
  overflow: hidden;
}
.spotlight__visual img { width: 100%; height: auto; display: block; }
.spotlight__visual::before,
.spotlight__visual::after {
  content: ""; position: absolute; width: 18px; height: 18px;
  border: 2px solid var(--primary-3);
  pointer-events: none; z-index: 2;
}
.spotlight__visual::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.spotlight__visual::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.spotlight.is-flipped .spotlight__inner { grid-template-columns: 1fr 360px; }
.spotlight.is-flipped .spotlight__meta { order: 2; }
.spotlight.is-flipped .spotlight__visual { order: 1; }
@media (max-width: 980px) { .spotlight.is-flipped .spotlight__inner { grid-template-columns: 1fr; } .spotlight.is-flipped .spotlight__meta { order: 1; } .spotlight.is-flipped .spotlight__visual { order: 2; } }

/* ============================================================
   CATEGORIES GRID — squared cards, hard offset hover
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--bg-elevated);
  border: 1.5px solid var(--line-strong);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  color: var(--text);
  padding: 0;
}
.cat-card:hover {
  transform: translate(-3px, -3px);
  border-color: var(--primary-3);
  box-shadow: 6px 6px 0 var(--primary);
}
.cat-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.cat-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.cat-card:hover .cat-card__media img { transform: scale(1.06); }
.cat-card__index {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em;
  color: #fff; background: rgba(5,13,24,0.85);
  padding: 4px 8px;
  border: 1px solid var(--line-strong);
}
.cat-card__body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.cat-card__icon {
  width: 42px; height: 42px;
  background: var(--cat-color, var(--primary));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
  border: 1px solid rgba(255,255,255,0.15);
}
.cat-card__title {
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0; line-height: 1.3;
  text-wrap: balance;
}
.cat-card__desc { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.55; flex: 1; }
.cat-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-3);
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.cat-card__cta svg { transition: transform 0.18s; }
.cat-card:hover .cat-card__cta svg { transform: translateX(4px); }

.cat-grid--minimal .cat-card { background: transparent; }
.cat-grid--accent .cat-card { border-top: 4px solid var(--cat-color, var(--primary)); }

/* Category layout override */
.section--cats {
  padding: 90px 0 96px;
  background-color: var(--bg-deep);
  background-image:
    linear-gradient(rgba(148, 184, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 184, 232, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  border-top: 1.5px solid var(--line-strong);
  border-bottom: 1.5px solid var(--line-strong);
}
.section--cats .cat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 14px;
}
.section--cats .cat-grid > * {
  min-width: 0;
}
.section--cats .cat-grid > *:nth-child(1) { grid-column: span 2; }
.section--cats .cat-grid > *:nth-child(4) { grid-column: span 2; }
.section--cats .cat-card {
  width: 100%;
  min-height: 180px;
  height: 100%;
  background: rgba(23, 28, 36, 0.92);
  border: 1.5px solid rgba(148, 184, 232, 0.14);
  box-shadow: none;
  padding: 0;
}
.section--cats .cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(78,143,242,0.15), transparent 42%),
    radial-gradient(circle at 85% 20%, rgba(229,162,59,0.12), transparent 30%);
  transition: opacity 0.18s;
}
.section--cats .cat-card:hover {
  transform: none;
  border-color: var(--primary-3);
  box-shadow: inset 0 0 0 1px rgba(78,143,242,0.24);
}
.section--cats .cat-card:hover::before { opacity: 1; }
.section--cats .cat-card__index {
  top: 22px;
  left: 22px;
  z-index: 1;
  color: #d8e7ff;
  background: #07101d;
  border-color: rgba(78,143,242,0.30);
  padding: 5px 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.section--cats .cat-card__body {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
  padding: 0;
}
.section--cats .cat-card__title {
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.section--cats .cat-card__arrow {
  color: #d8e7ff;
  display: inline-flex;
  transition: transform 0.18s, color 0.18s;
}
.section--cats .cat-card:hover .cat-card__arrow {
  color: var(--primary-3);
  transform: translate(3px, -3px);
}
@media (max-width: 820px) {
  .section--cats .cat-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .section--cats .cat-grid > *:nth-child(1),
  .section--cats .cat-grid > *:nth-child(4) {
    grid-column: auto;
  }
  .section--cats .cat-card {
    min-height: 150px;
  }
}

/* ============================================================
   WHY US — 5 across with hairline divider grid
   ============================================================ */
.section--why { padding-top: 30px; padding-bottom: 100px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1.5px solid var(--line-strong);
}
@media (max-width: 1100px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.18s;
}
.why-card:hover { background: rgba(31,91,214,0.06); }
.why-grid > :last-child .why-card { border-right: none; }
@media (min-width: 1101px) {
  .why-grid > :nth-child(5n) .why-card { border-right: none; }
  .why-grid > :nth-last-child(-n+5) .why-card { border-bottom: none; }
}
@media (max-width: 1100px) and (min-width: 561px) {
  .why-grid > :nth-child(2n) .why-card { border-right: none; }
}
@media (max-width: 560px) {
  .why-grid > * .why-card { border-right: none; }
}
.why-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  display: block;
}
.why-card__icon {
  width: 44px; height: 44px;
  background: var(--primary-soft);
  border: 1px solid var(--primary-3);
  color: var(--primary-3);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.why-card__t { font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
.why-card__d { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   STATS — slab over factory image
   ============================================================ */
.section--stats {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 88px 0;
  border-top: 1.5px solid var(--line-strong);
  border-bottom: 1.5px solid var(--line-strong);
}
.section--stats::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(5,13,24,0.92), rgba(11,38,96,0.85));
}
.section--stats .container { position: relative; z-index: 1; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(5,13,24,0.55);
  backdrop-filter: blur(2px);
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.stats-grid > :last-child { border-right: none; }
@media (min-width: 701px) {
  .stats-grid > :nth-child(4n) { border-right: none; }
  .stats-grid > :nth-last-child(-n+4) { border-bottom: none; }
}
@media (max-width: 700px) {
  .stats-grid > :nth-child(2n) { border-right: none; }
}
.stat__v {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700; letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.stat__v sup { color: var(--primary-3); font-size: 0.5em; font-weight: 700; }
.stat__l {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--text-2);
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; margin-top: 14px;
}

/* ============================================================
   SECTOR STRIP — angular tile grid
   ============================================================ */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .sector-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .sector-grid { grid-template-columns: 1fr; } }
.sector-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 3;
  border: 1.5px solid var(--line-strong);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.sector-card:hover {
  transform: translate(-3px, -3px);
  border-color: var(--primary-3);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.5);
}
.sector-card__media { position: absolute; inset: 0; }
.sector-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.sector-card:hover .sector-card__media img { transform: scale(1.06); }
.sector-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,13,24,0) 30%, rgba(5,13,24,0.96) 95%);
}
.sector-card__icon {
  position: absolute; top: 14px; left: 14px;
  width: 40px; height: 40px;
  background: var(--bg-deep);
  border: 1.5px solid var(--primary-3);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary-3);
  z-index: 2;
}
.sector-card__index {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--primary-3);
  z-index: 2;
}
.sector-card__body { position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2; }
.sector-card__t { font-size: 19px; font-weight: 700; color: #fff; margin: 0 0 6px; letter-spacing: -0.01em; }
.sector-card__d { font-size: 13.5px; color: var(--text-2); margin: 0; line-height: 1.5; opacity: 0.95; }

/* ============================================================
   BRANDS — chip strip
   ============================================================ */
.section--brands { padding: 80px 0; border-top: 1.5px solid var(--line-strong); }
.brand-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
  margin-top: 36px;
  border: 1.5px solid var(--line-strong);
}
.brand-chip {
  padding: 16px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-2);
  flex: 1 1 calc(100% / 7);
  text-align: center;
  min-width: 130px;
  transition: color 0.18s, background 0.18s;
}
.brand-chip:hover { color: #fff; background: var(--primary-soft); }

/* ============================================================
   REFERENCES — marquee
   ============================================================ */
.section--refs { padding: 70px 0 90px; overflow: hidden; border-top: 1.5px solid var(--line-strong); }
.section--refs {
  background: #080d15;
  border-bottom: 1.5px solid var(--line-strong);
}
.section--refs .section-head {
  margin-bottom: 44px;
}
.section--refs .section-head__eyebrow {
  color: #c7d9f5;
  font-size: 10px;
}
.section--refs .section-head__eyebrow::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--line-bright);
}
.section--refs .section-head__title {
  max-width: none;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: clamp(22px, 2.8vw, 32px);
}
.section--refs .refs-note,
.section--refs .refs-list {
  display: none;
}
.ref-marquee { margin-top: 40px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.ref-marquee__track {
  display: inline-flex; gap: 0;
  animation: marquee 65s linear infinite;
  white-space: nowrap;
}
.ref-chip {
  display: inline-flex; align-items: center;
  height: 58px; padding: 0 34px;
  border-right: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 800;
  color: #7f8b9b;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.18s;
}
.ref-chip:first-child { border-left: 1px solid var(--line-strong); }
.ref-chip:hover { color: #fff; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ref-marquee__track { animation: none; }
}
@media (max-width: 640px) {
  .section--refs {
    padding: 56px 0 64px;
  }
  .section--refs .section-head {
    margin-bottom: 26px;
  }
  .section--refs .refs-list {
    display: none;
  }
  .ref-marquee {
    display: block;
    margin-top: 28px;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .ref-marquee__track {
    animation-duration: 42s;
  }
  .ref-chip {
    height: 48px;
    padding: 0 22px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }
}

/* ============================================================
   CERTIFICATIONS — squared seals
   ============================================================ */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--line-strong);
}
@media (max-width: 900px) { .certs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .certs-grid { grid-template-columns: 1fr; } }
.cert-card {
  display: flex; align-items: center; gap: 18px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.18s;
}
.cert-card:hover { background: rgba(31,91,214,0.06); }
@media (min-width: 901px) {
  .certs-grid > :nth-child(3n) { border-right: none; }
  .certs-grid > :nth-last-child(-n+3) { border-bottom: none; }
}
@media (max-width: 900px) and (min-width: 541px) {
  .certs-grid > :nth-child(2n) { border-right: none; }
}
.cert-card__seal {
  width: 76px; height: 76px;
  background: var(--primary);
  border: 1.5px solid var(--primary-3);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.45);
}
.cert-card__seal-inner { display: flex; flex-direction: column; align-items: center; color: #fff; }
.cert-card__seal-inner span { font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: 0.06em; margin-top: 4px; }
.cert-card__l { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; }

.section--certs {
  background: var(--bg);
  border-top: 1.5px solid var(--line-strong);
}
.section--certs .certs-grid {
  background: rgba(5,13,24,0.30);
}
.section--certs .cert-card {
  align-items: flex-start;
  min-height: 132px;
  padding: 26px;
}
.section--certs .cert-card__seal {
  width: 68px;
  height: 68px;
  background: #07101d;
  border-color: rgba(78,143,242,0.55);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.35);
}
.section--certs .cert-card__seal-inner svg {
  color: var(--primary-3);
}
.section--certs .cert-card__seal-inner span {
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 5px;
  color: #d8e7ff;
}
.cert-card__k {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--primary-3);
  margin: 2px 0 8px;
}
.section--certs .cert-card__l {
  line-height: 1.45;
}
@media (max-width: 540px) {
  .section--certs .cert-card {
    padding: 22px;
    min-height: 0;
  }
}

/* ============================================================
   FAQ — square outlined accordions
   ============================================================ */
.faq-container { max-width: 900px; }
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1.5px solid var(--line-strong); }
.faq-item {
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background 0.18s;
}
.faq-item:last-child { border-bottom: none; }
.faq-item.is-open { background: rgba(31,91,214,0.06); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 28px;
  background: none; border: none;
  color: #fff; font-weight: 600; font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.faq-q svg { flex-shrink: 0; color: var(--primary-3); }
.faq-q::before {
  content: counter(faq-counter, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--primary-3);
  letter-spacing: 0.1em;
  margin-right: 18px;
  flex-shrink: 0;
}
.faq-list { counter-reset: faq-counter; }
.faq-item { counter-increment: faq-counter; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a__inner {
  overflow: hidden;
  padding: 0 28px 0 70px;
  color: var(--text-muted);
  font-size: 14.5px; line-height: 1.7;
}
.faq-item.is-open .faq-a__inner { padding-bottom: 24px; }
@media (max-width: 640px) {
  .faq-q { padding: 18px 20px; font-size: 15px; }
  .faq-q::before { margin-right: 12px; font-size: 11px; }
  .faq-a__inner { padding: 0 20px 0 50px; }
}

/* ============================================================
   CTA card — square slab over factory bg
   ============================================================ */
.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: center;
  gap: 36px;
  padding: 60px 56px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1.5px solid var(--line-bright);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 880px) { .cta-card { grid-template-columns: 1fr; padding: 40px 28px; } }
.cta-card__eyebrow { font-family: var(--font-mono); color: var(--primary-3); font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; display: inline-flex; align-items: center; gap: 12px; }
.cta-card__eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--primary-3); }
.cta-card__title { font-size: clamp(26px, 3.6vw, 44px); font-weight: 700; color: #fff; line-height: 1.1; margin: 0 0 14px; letter-spacing: -0.02em; }
.cta-card__title em { font-style: normal; color: var(--primary-3); display: block; }
.cta-card__sub { color: rgba(255,255,255,0.86); font-size: 16px; line-height: 1.6; margin: 0; max-width: 540px; }
.cta-card__actions { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.cta-card__actions .btn { justify-content: center; }
@media (min-width: 880px) { .cta-card__actions { align-items: flex-end; } .cta-card__actions .btn { width: auto; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #03080f;
  border-top: 1.5px solid var(--line-strong);
  padding: 0;
  margin-top: 0;
}
.site-footer .container { padding-top: 72px; padding-bottom: 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.4fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-about { color: var(--text-muted); font-size: 13.5px; line-height: 1.7; margin: 18px 0 22px; max-width: 340px; }
.footer-social { display: flex; gap: 0; }
.social-btn {
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-left: none;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-2);
  transition: background 0.18s, color 0.18s;
}
.social-btn:first-child { border-left: 1px solid var(--line-strong); }
.social-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.footer-h {
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-list a, .footer-list span { color: var(--text-muted); font-size: 14px; transition: color 0.18s; }
.footer-list a:hover { color: var(--primary-3); }
.footer-contact li { display: flex; align-items: center; gap: 12px; color: var(--text-muted); }
.footer-contact svg { color: var(--primary-3); flex-shrink: 0; }

.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px; color: var(--text-dim);
  flex-wrap: wrap; gap: 12px;
  letter-spacing: 0.06em;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-dim); transition: color 0.18s; }
.footer-legal a:hover { color: var(--text); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-scrim {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(2, 6, 14, 0.82);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 0.18s ease;
  overflow-y: auto;
}
.modal {
  position: relative;
  width: 100%; max-width: 760px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--line-bright);
  box-shadow: 12px 12px 0 rgba(0,0,0,0.55);
  animation: pop 0.2s cubic-bezier(.16,1,.3,1);
  max-height: 92vh;
  display: flex; flex-direction: column;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { transform: translateY(12px) scale(0.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal__head {
  padding: 28px 32px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 20px;
  border-bottom: 1.5px solid var(--line-strong);
}
.modal__eyebrow { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary-3); margin-bottom: 10px; }
.modal__title { font-size: 26px; font-weight: 700; margin: 0; color: #fff; letter-spacing: -0.015em; }
.modal__sub { font-size: 14.5px; color: var(--text-muted); margin: 10px 0 0; }
.modal__body { padding: 28px 32px 24px; overflow-y: auto; display: flex; flex-direction: column; gap: 18px; }
.modal__foot { display: flex; justify-content: flex-end; gap: 14px; padding-top: 8px; }

/* ============================================================
   FORM FIELDS — square outlined inputs
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.field__label em { font-style: normal; color: #f87171; margin-left: 4px; }
.field input, .field textarea, .field select {
  font-family: inherit;
  font-size: 14.5px;
  padding: 12px 14px;
  background: rgba(5,13,24,0.6);
  border: 1.5px solid var(--line-strong);
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
  border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--primary-3);
  background: rgba(5,13,24,0.9);
  box-shadow: 3px 3px 0 var(--primary-soft);
}
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #f87171; }
.field__error { font-family: var(--font-mono); font-size: 11px; color: #fca5a5; margin-top: 2px; letter-spacing: 0.06em; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .grid-2 { grid-template-columns: 1fr; } }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; right: 24px; bottom: 24px; z-index: 300;
  background: var(--bg-elevated);
  border: 1.5px solid var(--primary-3);
  border-left: 4px solid var(--primary);
  padding: 14px 22px 14px 16px;
  display: flex; align-items: flex-start; gap: 12px;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.55);
  min-width: 280px; max-width: 380px;
  animation: slideUp 0.25s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.toast svg { color: var(--primary-3); flex-shrink: 0; margin-top: 2px; }
.toast__t { font-weight: 700; color: #fff; font-size: 14px; }
.toast__d { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  padding: 100px 0 80px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-deep);
  border-bottom: 1.5px solid var(--line-strong);
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,13,24,0.86), rgba(5,13,24,0.95));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary-3); font-weight: 600; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 12px;
}
.page-hero__eyebrow::before { content: ""; width: 32px; height: 1.5px; background: var(--primary-3); }
.page-hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.05; margin: 0 0 22px; color: #fff;
  max-width: 880px;
  text-wrap: balance;
}
.page-hero__sub { font-size: 18px; color: var(--text-2); max-width: 720px; line-height: 1.6; margin: 0; text-wrap: pretty; }
@media (max-width: 640px) {
  .page-hero {
    padding: 64px 0 52px;
  }
  .page-hero__eyebrow {
    font-size: 10px;
    letter-spacing: 0.13em;
    margin-bottom: 14px;
  }
  .page-hero__eyebrow::before {
    width: 24px;
  }
  .page-hero__title {
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: 0;
    margin-bottom: 16px;
  }
  .page-hero__sub {
    font-size: 15.5px;
    line-height: 1.55;
  }
}
@media (max-width: 360px) {
  .page-hero__title {
    font-size: 29px;
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 960px) { .about-intro { grid-template-columns: 1fr; } }
.about-intro__copy p { color: var(--text-2); font-size: 16.5px; line-height: 1.75; margin: 0 0 18px; }
.about-intro__media { position: relative; }
.about-intro__media img { aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow-lg); border: 1.5px solid var(--line-strong); }
.about-intro__badge {
  position: absolute;
  left: -20px; bottom: -20px;
  width: 150px; height: 150px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--bg-deep);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.55);
  text-align: center;
}
.about-intro__badge-n { font-size: 38px; font-weight: 800; color: #fff; line-height: 1; }
.about-intro__badge-l { font-family: var(--font-mono); font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.92); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; max-width: 110px; }

.section--mvv { padding-top: 30px; }
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid var(--line-strong);
}
@media (max-width: 1024px) { .mvv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .mvv-grid { grid-template-columns: 1fr; } }
.mvv-card {
  padding: 32px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.18s;
}
.mvv-card:hover { background: rgba(31,91,214,0.06); }
@media (min-width: 1025px) {
  .mvv-grid > :nth-child(4n) .mvv-card { border-right: none; }
  .mvv-grid > :nth-last-child(-n+4) .mvv-card { border-bottom: none; }
}
@media (max-width: 1024px) and (min-width: 541px) {
  .mvv-grid > :nth-child(2n) .mvv-card { border-right: none; }
}
.mvv-card__icon {
  width: 52px; height: 52px;
  background: var(--primary-soft);
  border: 1.5px solid var(--primary-3);
  color: var(--primary-3);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.mvv-card__t { font-size: 18px; font-weight: 700; color: #fff; margin: 0 0 10px; letter-spacing: -0.01em; }
.mvv-card__d { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }

.section--timeline { padding-top: 30px; }
.timeline { position: relative; padding-left: 24px; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: var(--primary-3); }
.tl-item { position: relative; display: grid; grid-template-columns: 90px 1fr; gap: 28px; padding: 18px 0; align-items: flex-start; }
.tl-year { font-family: var(--font-mono); font-size: 22px; font-weight: 700; color: var(--primary-3); letter-spacing: 0; }
.tl-dot { position: absolute; left: -22px; top: 26px; width: 14px; height: 14px; background: var(--primary); border: 3px solid var(--bg-deep); box-shadow: 0 0 0 2px var(--primary-3); }
.tl-card { background: var(--bg-elevated); border: 1.5px solid var(--line-strong); padding: 20px 24px; box-shadow: 4px 4px 0 rgba(0,0,0,0.4); }
.tl-card__t { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 6px; letter-spacing: -0.01em; }
.tl-card__d { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ============================================================
   PRODUCTS LIST + DETAIL
   ============================================================ */
.products-list { display: flex; flex-direction: column; gap: 24px; }
.product-row {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 0;
  background: var(--bg-elevated);
  border: 1.5px solid var(--line-strong);
  border-left: 6px solid var(--cat-color, var(--primary));
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-row:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 rgba(0,0,0,0.55); }
@media (max-width: 880px) { .product-row { grid-template-columns: 1fr; } }
.product-row__media { position: relative; aspect-ratio: 4 / 3; background: #f6f8fc; }
.product-row__media img { width: 100%; height: 100%; object-fit: cover; }
.product-row__media img[src*="sandalyeler-web"],
.spotlight__visual img[src*="sandalyeler-web"],
.sector-card__media img[src*="sandalyeler-web"],
.sector-page-card__media img[src*="sandalyeler-web"],
.hero-tile img[src*="sandalyeler-web"] {
  object-fit: contain;
  background: #fff;
  padding: 16px;
}
.product-row__icon {
  position: absolute; top: 16px; left: 16px;
  width: 42px; height: 42px;
  background: var(--cat-color, var(--primary)); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
}
.product-row__index {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em;
  color: #fff; background: rgba(5,13,24,0.85);
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
}
.product-row__body { padding: 32px; display: flex; flex-direction: column; gap: 16px; justify-content: center; }
@media (max-width: 880px) { .product-row__body { padding: 24px; } }
.product-row__t { font-size: 26px; font-weight: 700; color: #fff; margin: 0; letter-spacing: -0.02em; line-height: 1.1; }
.product-row__d { font-size: 14.5px; color: var(--text-2); line-height: 1.65; margin: 0; }
.product-row__chips { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--line); }
.chip {
  display: inline-flex; align-items: center;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-2);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.chip:last-child { border-right: none; }
.chip--lg { padding: 10px 16px; font-size: 12px; }
.chip--more { background: var(--primary-soft); color: var(--primary-3); }
@media (max-width: 640px) {
  .products-list {
    gap: 18px;
  }
  .product-row {
    border-left-width: 4px;
  }
  .product-row:hover {
    transform: none;
    box-shadow: none;
  }
  .product-row__media {
    aspect-ratio: 16 / 10;
  }
  .product-row__media img {
    object-position: center;
  }
  .product-row__icon,
  .product-row__index {
    display: none;
  }
  .product-row__body {
    padding: 20px;
    gap: 13px;
  }
  .product-row__t {
    font-size: 21px;
    line-height: 1.18;
    letter-spacing: 0;
  }
  .product-row__d {
    font-size: 13.5px;
    line-height: 1.6;
  }
  .product-row__chips {
    border-right: none;
  }
  .product-row__chips .chip {
    flex: 1 1 50%;
    min-width: 0;
    padding: 8px 10px;
    font-size: 10px;
    letter-spacing: 0.04em;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
  .product-row .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

/* product detail */
.product-hero {
  padding: 80px 0 64px;
  background-size: cover; background-position: center;
  background-color: var(--bg-deep);
  border-bottom: 1.5px solid var(--line-strong);
  position: relative;
}
.product-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(5,13,24,0.96) 35%, rgba(5,13,24,0.55) 100%);
}
.product-hero .container { position: relative; z-index: 1; }
.link-back {
  background: none; border: none;
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  width: fit-content;
  margin-bottom: 28px; padding: 0;
  transition: color 0.18s;
}
.link-back:hover { color: var(--primary-3); }
.product-hero__icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  border: 1.5px solid rgba(255,255,255,0.18);
}
.product-hero__t { font-size: clamp(34px, 5vw, 56px); font-weight: 700; color: #fff; margin: 0 0 16px; letter-spacing: -0.025em; line-height: 1.05; max-width: 820px; }
.product-hero__d { font-size: 18px; color: var(--text-2); max-width: 720px; line-height: 1.6; margin: 0 0 30px; }
.product-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .product-hero {
    padding: 56px 0 52px;
  }
  .link-back {
    max-width: 100%;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    line-height: 1.35;
    white-space: normal;
    text-align: left;
    margin-bottom: 22px;
  }
  .product-hero__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }
  .product-hero__t {
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: 0;
    margin-bottom: 14px;
  }
  .product-hero__d {
    font-size: 15.5px;
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .product-hero__ctas {
    flex-direction: column;
  }
  .product-hero__ctas .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}
@media (max-width: 360px) {
  .product-hero__t {
    font-size: 29px;
  }
}

.pd-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; }
@media (max-width: 960px) { .pd-grid { grid-template-columns: 1fr; } }
.pd-lead { font-size: 17px; color: var(--text-2); line-height: 1.75; margin: 0 0 40px; }
.pd-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -18px 0 38px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.42);
}
.pd-note svg { color: var(--primary-3); flex-shrink: 0; }
.pd-note span { font-size: 14px; line-height: 1.55; }
.pd-h {
  font-size: 22px; font-weight: 700; color: #fff;
  margin: 40px 0 22px; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 16px;
}
.pd-h::before {
  content: ""; display: inline-block;
  width: 32px; height: 1.5px; background: var(--primary-3);
}
.pd-h:first-of-type { margin-top: 0; }
.pd-features { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
@media (max-width: 560px) { .pd-features { grid-template-columns: 1fr; } }
.pd-feature { display: flex; gap: 14px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (min-width: 561px) {
  .pd-features > :nth-child(2n) { border-right: none; }
  .pd-features > :nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 560px) {
  .pd-features > * { border-right: none; }
  .pd-features > :last-child { border-bottom: none; }
}
.pd-feature__icon { width: 32px; height: 32px; background: var(--primary-soft); border: 1px solid var(--primary-3); color: var(--primary-3); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pd-feature__t { font-size: 14.5px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.pd-feature__d { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }

.pd-subs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--line); }
@media (max-width: 560px) { .pd-subs { grid-template-columns: 1fr; } }
.pd-sub { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 14px; color: var(--text-2); }
@media (min-width: 561px) {
  .pd-subs > :nth-child(2n) { border-right: none; }
}
@media (max-width: 560px) {
  .pd-subs > * { border-right: none; }
}
.pd-sub svg { color: var(--primary-3); }

.pd-apps { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--line); }

.pd-gallery-wrap { margin-top: 44px; }
.pd-gallery-group { margin-top: 28px; }
.pd-gallery-group:first-of-type { margin-top: 0; }
.pd-gallery-group__head {
  padding: 16px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-bottom: none;
}
.pd-gallery-group__head h4 {
  margin: 0;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.35;
}
.pd-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-strong);
  border-right: none;
  border-bottom: none;
}
.pd-gallery-card {
  background: var(--bg-elevated);
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  min-width: 0;
}
.pd-gallery-card__media {
  aspect-ratio: 4 / 5;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.pd-gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}
.pd-gallery-card__name {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--text-2);
  overflow-wrap: anywhere;
}
@media (max-width: 760px) {
  .pd-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pd-gallery { grid-template-columns: 1fr; }
  .pd-gallery-card__media { aspect-ratio: 1 / 1; }
}

.pd-aside { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; align-self: flex-start; }
.pd-aside__card { background: var(--bg-elevated); border: 1.5px solid var(--line-strong); padding: 28px; box-shadow: 6px 6px 0 rgba(0,0,0,0.45); }
.pd-aside__eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary-3); font-weight: 600; margin-bottom: 10px; }
.pd-aside__t { font-size: 22px; font-weight: 700; color: #fff; margin: 0 0 10px; letter-spacing: -0.01em; }
.pd-aside__d { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0 0 20px; }
.pd-aside__divider { height: 1px; background: var(--line-strong); margin: 22px 0; }
.pd-aside__contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.pd-aside__contact li { display: flex; align-items: center; gap: 12px; color: var(--text-2); }
.pd-aside__contact svg { color: var(--primary-3); }

.pd-aside__related { background: var(--bg-elevated); border: 1.5px solid var(--line-strong); padding: 22px; box-shadow: 6px 6px 0 rgba(0,0,0,0.45); }
.pd-aside__related h4 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary-3); margin: 0 0 16px; font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.pd-related {
  display: flex; align-items: center; gap: 12px;
  width: 100%; text-align: left;
  padding: 12px 14px;
  background: none; border: 1px solid transparent;
  color: var(--text-2);
  font-size: 13.5px;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.pd-related span { flex: 1; }
.pd-related:hover { background: var(--surface); border-color: var(--line-strong); color: #fff; }
.pd-related svg:first-child { color: var(--primary-3); flex-shrink: 0; }

/* ============================================================
   SECTORS PAGE
   ============================================================ */
.sectors-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .sectors-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sectors-page-grid { grid-template-columns: 1fr; } }
.sector-page-card {
  background: var(--bg-elevated);
  border: 1.5px solid var(--line-strong);
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sector-page-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--primary); }
.sector-page-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-bottom: 1px solid var(--line); }
.sector-page-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.sector-page-card:hover .sector-page-card__media img { transform: scale(1.06); }
.sector-page-card__icon {
  position: absolute; left: 16px; top: 16px;
  width: 44px; height: 44px;
  background: var(--bg-deep);
  border: 1.5px solid var(--primary-3);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary-3);
}
.sector-page-card__body { padding: 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.sector-page-card__t { font-size: 18px; font-weight: 700; color: #fff; margin: 0; letter-spacing: -0.01em; }
.sector-page-card__d { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; flex: 1; }
.link-cta {
  background: none; border: none; padding: 0;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary-3);
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  transition: gap 0.18s;
}
.link-cta:hover { gap: 12px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: flex-start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 0; border: 1.5px solid var(--line-strong); }
.contact-block { display: flex; gap: 18px; align-items: flex-start; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.contact-block:last-of-type { border-bottom: none; }
.contact-block__icon {
  width: 44px; height: 44px;
  background: var(--primary-soft); border: 1.5px solid var(--primary-3);
  color: var(--primary-3);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-block__t { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary-3); margin-bottom: 8px; }
.contact-block__d { font-size: 14.5px; color: var(--text); line-height: 1.6; }
.contact-block__d a { color: var(--text); }
.contact-block__d a:hover { color: var(--primary-3); }
.contact-block__phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-map {
  margin-top: 24px;
  aspect-ratio: 16 / 9;
  border: 1.5px solid var(--line-strong);
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}
.contact-map__inner { position: absolute; inset: 0; }
.contact-map__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(78,143,242,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78,143,242,0.12) 1px, transparent 1px);
  background-size: 30px 30px;
}
.contact-map__pin {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -100%);
  color: #fff;
  background: var(--primary);
  width: 44px; height: 44px;
  border: 2px solid #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 4px 4px 0 rgba(0,0,0,0.5), 0 0 0 0 rgba(31,91,214,0.6); }
  50% { box-shadow: 4px 4px 0 rgba(0,0,0,0.5), 0 0 0 24px rgba(31,91,214,0); }
}
.contact-map__label { position: absolute; left: 50%; top: 50%; transform: translate(-50%, 20px); background: var(--bg-deep); border: 1.5px solid var(--primary-3); padding: 6px 14px; font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: #fff; letter-spacing: 0.12em; text-transform: uppercase; }

.contact-form {
  background: var(--bg-elevated);
  border: 1.5px solid var(--line-strong);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.45);
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
}

/* Not found */
.notfound-wrap {
  display: flex;
  justify-content: center;
}
.notfound-panel {
  width: min(760px, 100%);
  border: 1.5px solid var(--line-strong);
  background: var(--bg-elevated);
  padding: clamp(28px, 6vw, 56px);
  text-align: center;
  box-shadow: var(--shadow);
}
.notfound-code {
  font-family: var(--font-mono);
  font-size: clamp(44px, 10vw, 96px);
  font-weight: 700;
  line-height: 1;
  color: var(--primary-3);
  letter-spacing: 0;
}
.notfound-path {
  margin: 18px auto 0;
  max-width: 100%;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  overflow-wrap: anywhere;
}
.notfound-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
@media (max-width: 540px) { .contact-form { padding: 24px; } }
.contact-form__t { font-size: 24px; font-weight: 700; color: #fff; margin: 0; letter-spacing: -0.015em; }
.contact-form__sub { font-size: 14px; color: var(--text-muted); margin: 0 0 8px; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   LOADER
   ============================================================ */
#root:empty::before {
  content: "";
  position: fixed; inset: 0;
  background: var(--bg-deep);
}
#root:empty::after {
  content: "";
  position: fixed; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border: 2px solid var(--primary-soft);
  border-top-color: var(--primary-3);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
