/* SmartLoji — Modern tech reskin */
/* Design tokens */
:root {
  --bg: #f4f4f2;
  --bg-elev: #ebebe8;
  --surface: #ffffff;
  --surface-2: #fafaf8;
  --border: #e1e1dd;
  --border-strong: #cfcfc9;
  --text: #0e0e0c;
  --text-muted: #5a5a55;
  --text-dim: #8a8a83;
  --orange: #ff6b1a;
  --orange-hover: #ea5a0a;
  --orange-soft: rgba(255, 107, 26, 0.10);
  --orange-glow: rgba(255, 107, 26, 0.30);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1240px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}
.display-1 { font-size: clamp(40px, 6.4vw, 84px); font-weight: 500; letter-spacing: -0.035em; }
.display-2 { font-size: clamp(32px, 4.6vw, 56px); font-weight: 500; letter-spacing: -0.03em; }
.display-3 { font-size: clamp(26px, 3vw, 38px); font-weight: 500; letter-spacing: -0.02em; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--orange);
}
.eyebrow.no-line::before { display: none; }
.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-muted);
  max-width: 60ch;
  text-wrap: pretty;
}
.mono { font-family: var(--font-mono); }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: clamp(64px, 9vw, 128px) 0; }
.section-head { display: flex; flex-direction: column; gap: 20px; max-width: 760px; margin-bottom: 56px; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 244, 242, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
  padding: 0 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.nav-logo img { height: 32px; width: 109px; max-width: none; object-fit: contain; object-position: left center; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--text); background: rgba(0, 0, 0, 0.04); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 1px;
  background: var(--orange);
}

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.lang-toggle button {
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--text-dim);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.lang-toggle button.active {
  background: var(--text);
  color: #fff;
}
.lang-toggle button:not(.active):hover { color: var(--text); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px var(--orange-glow);
}
.nav-cta .arrow { transition: transform 0.25s var(--ease); }
.nav-cta:hover .arrow { transform: translateX(3px); }

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.menu-btn svg { width: 18px; height: 18px; }

.nav-mobile { display: none; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  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);
  position: relative;
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.3s var(--ease-out); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -16px var(--orange-glow), 0 0 0 1px rgba(255, 107, 26, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* ============ HERO ============ */
.hero {
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 5vw, 72px);
  position: relative;
}

/* ============ HERO · VIDEO ============ */
.hero-video {
  padding: 0;
  position: relative;
  min-height: clamp(640px, 88vh, 880px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: #0e0d0b;
  color: #fff;
}
.hero-video__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-video__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(110% 80% at 12% 68%, rgba(8,7,5,0.92), transparent 65%),
    linear-gradient(90deg, rgba(8,7,5,0.7) 0%, rgba(8,7,5,0.35) 45%, rgba(8,7,5,0.15) 70%, transparent 100%),
    linear-gradient(180deg, rgba(8,7,5,0.55) 0%, rgba(8,7,5,0.2) 25%, rgba(8,7,5,0.6) 75%, rgba(8,7,5,0.92) 100%);
}
.hero-video__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 2px);
}

.hero-video__top {
  padding: clamp(20px, 3vw, 32px) 0 0;
}
.hero-video__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-video__top .chip {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(8px);
}
.hero-video__top .chip .dot {
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,26,0.25);
  animation: pulse 2s infinite;
}
.hero-video__top .corner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(15,12,8,0.4);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.78);
}
.hero-video__top .corner .live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2bd17e;
  box-shadow: 0 0 0 3px rgba(43,209,126,0.2);
  animation: pulse 2s infinite;
}

.hero-video__content {
  padding: clamp(48px, 9vw, 120px) 0 clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 920px;
}
.hero-video__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-video__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--orange);
}
.hero-video h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.35);
}
.hero-video h1 .accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 400;
}
.hero-video__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 58ch;
  text-wrap: pretty;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-video__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-video__actions .btn-ghost {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  backdrop-filter: blur(8px);
}
.hero-video__actions .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--orange);
  color: var(--orange);
}

/* Stats strip at the bottom of the video */
.hero-video__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 28px 0;
  gap: 0;
}
.hero-video__stat {
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-video__stat:first-child { padding-left: 0; }
.hero-video__stat:last-child { border-right: 0; padding-right: 0; }
.hero-video__stat .v {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}
.hero-video__stat .v .unit { color: var(--orange); }
.hero-video__stat .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Scroll hint */
.hero-video__hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.hero-video__hint .line {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.5);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Hide hint on small screens (stats already crowded) */
@media (max-width: 720px) {
  .hero-video__stats { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .hero-video__stat { padding: 0 16px; }
  .hero-video__stat:nth-child(2) { border-right: 0; padding-right: 0; }
  .hero-video__stat:nth-child(3) { padding-left: 0; }
  .hero-video__hint { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video__bg video { display: none; }
  .hero-video__hint .line { animation: none; }
}
.hero-grid {
  display: grid;
  gap: 56px;
}

/* ============ SCALE BAND ============ */
.scale-band {
  position: relative;
  overflow: hidden;
  background: #0b0a08;
  color: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(72px, 10vw, 128px) 0;
  isolation: isolate;
}
.scale-band__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 30%, transparent 100%);
}
.scale-band__glow {
  position: absolute;
  right: -10%;
  top: 30%;
  width: 60%;
  height: 80%;
  z-index: -1;
  background: radial-gradient(circle, rgba(255,107,26,0.18) 0%, rgba(255,107,26,0) 65%);
  pointer-events: none;
}
.scale-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.scale-band__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 22px;
}
.scale-band__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #fff;
}
.scale-band__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 46ch;
  margin: 0;
}

/* spectrum */
.scale-spectrum {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.scale-spectrum__bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: clamp(140px, 18vw, 220px);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.scale-bar {
  flex: 1;
  height: var(--h);
  min-width: 0;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--orange) 0%, #c24a08 100%);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d);
  opacity: 0.55;
}
.scale-bar:last-child {
  opacity: 1;
  box-shadow: 0 0 24px rgba(255,107,26,0.5);
}
.scale-band.in-view .scale-bar {
  transform: scaleY(1);
}
.scale-spectrum__axis {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.scale-endpoint {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.scale-endpoint--mid { align-items: center; opacity: 0.6; }
.scale-endpoint--end { align-items: flex-end; text-align: right; }
.scale-endpoint__num {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.scale-endpoint--end .scale-endpoint__num { color: var(--orange); }
.scale-endpoint__num .plus { color: var(--orange); }
.scale-endpoint__lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 860px) {
  .scale-band__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (prefers-reduced-motion: reduce) {
  .scale-bar { transition: none; transform: scaleY(1); }
}

/* ============ MEDIA BAND (video with overlaid text) ============ */
.media-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: #fff;
  isolation: isolate;
}
.media-band__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.media-band__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-band__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8,7,5,0.92) 0%, rgba(8,7,5,0.78) 38%, rgba(8,7,5,0.35) 70%, rgba(8,7,5,0.15) 100%),
    linear-gradient(180deg, rgba(8,7,5,0.55) 0%, rgba(8,7,5,0.25) 40%, rgba(8,7,5,0.55) 100%);
}
.media-band__inner {
  padding: clamp(72px, 12vw, 160px) 0;
}
.media-band__content {
  max-width: 620px;
}
.media-band .eyebrow {
  color: var(--orange);
}
.media-band .display-2 {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.35);
}
.media-band .lead {
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.media-band__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 8px 16px;
  backdrop-filter: blur(8px);
}
.media-band__tag .live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,26,0.25);
  animation: pulse 2s infinite;
}
@media (max-width: 720px) {
  .media-band__scrim {
    background: linear-gradient(180deg, rgba(8,7,5,0.6) 0%, rgba(8,7,5,0.45) 40%, rgba(8,7,5,0.78) 100%);
  }
  .media-band__inner { padding: clamp(56px, 16vw, 96px) 0; }
}
@media (prefers-reduced-motion: reduce) {
  .media-band__bg video { display: none; }
}
.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}
.hero-headline {
  margin-top: 24px;
}
.hero-headline .accent { color: var(--orange); font-style: italic; font-weight: 400; }
.hero-sub { margin-top: 28px; }
.hero-actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.stat-num .unit { color: var(--orange); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 12px;
}

.hero-image-wrap {
  margin-top: 64px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/8;
  object-fit: cover;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.55) 100%);
  pointer-events: none;
}
.hero-image-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(15, 15, 13, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #fff;
}
.hero-image-tag .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg-elev);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee-item::after {
  content: "·";
  color: var(--orange);
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============ FEATURE CARDS ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease), transform 0.4s var(--ease-out);
}
.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.feature-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.feature-card:hover .feature-card-img img { transform: scale(1.04); }
.feature-card-img-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(15, 15, 13, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #fff;
}
.feature-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.feature-card-body h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  text-wrap: balance;
}
.feature-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-card-body li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.feature-card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--orange);
}

/* ============ KOBI / 4-up benefits ============ */
.benefit-band {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.benefit-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.benefit {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.benefit:last-child { border-right: 0; padding-right: 0; }
.benefit:not(:first-child) { padding-left: 28px; }
.benefit-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.1em;
}
.benefit h3 {
  font-size: 19px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.benefit p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============ LOCATION SPLIT ============ */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 5/4;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-content { display: flex; flex-direction: column; gap: 24px; }
.split-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-top: 12px;
}
.split-bullets li {
  font-size: 14px;
  color: var(--text);
  padding: 14px 0 14px 22px;
  position: relative;
  border-top: 1px solid var(--border);
}
.split-bullets li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--orange);
  font-family: var(--font-mono);
}

/* ============ PROCESS ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color 0.3s var(--ease), transform 0.4s var(--ease-out);
}
.process-step:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.process-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.process-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.process-step h3 {
  font-size: 22px;
  letter-spacing: -0.01em;
}
.process-step p { font-size: 14px; color: var(--text-muted); }

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
  border-top: 1px solid var(--border);
}
.cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ============ FOOTER (dark) ============ */
.footer {
  --f-bg: #0f0f0e;
  --f-bg-2: #161614;
  --f-border: #2a2a26;
  --f-border-soft: rgba(255,255,255,0.06);
  --f-text: #f2f1ed;
  --f-text-muted: #9e9c95;
  --f-text-dim: #6b6964;
  background: var(--f-bg);
  color: var(--f-text);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 280px at 12% 0%, rgba(255,107,26,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

/* CTA strip across the top */
.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--f-border);
}
.footer-cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.footer-cta-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--orange); }
.footer-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 22ch;
  color: var(--f-text);
}
.footer-cta .btn-primary {
  background: var(--orange);
  color: #fff;
  align-self: end;
}
.footer-cta .btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 18px 40px -16px rgba(255,107,26,0.5), 0 0 0 1px rgba(255,107,26,0.4);
}

/* Main grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1.1fr 0.9fr;
  gap: 48px;
  padding: 56px 0;
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-brand img {
  height: 44px;
  width: 150px;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 14px;
  color: var(--f-text-muted);
  max-width: 34ch;
  line-height: 1.65;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--f-text-dim);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col h4::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li {
  font-size: 14px;
  color: var(--f-text-muted);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--orange); }
.footer-col-links a {
  position: relative;
  display: inline-block;
}
.footer-col-links a::after {
  content: "→";
  margin-left: 6px;
  opacity: 0;
  transform: translateX(-4px);
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}
.footer-col-links a:hover::after { opacity: 1; transform: translateX(0); }

/* Office card */
.footer-office {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-office .office-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--f-text-dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-office .office-name .flag {
  width: 16px;
  height: 11px;
  border-radius: 2px;
  display: inline-block;
  background: var(--orange);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.footer-office .office-name .flag.us {
  background: linear-gradient(180deg,
    #b22234 0 8.3%, #fff 8.3% 16.6%, #b22234 16.6% 25%,
    #fff 25% 33.3%, #b22234 33.3% 41.6%, #fff 41.6% 50%,
    #b22234 50% 58.3%, #fff 58.3% 66.6%, #b22234 66.6% 75%,
    #fff 75% 83.3%, #b22234 83.3% 91.6%, #fff 91.6% 100%);
}
.footer-office .office-name .flag.us::before {
  content: "";
  position: absolute;
  inset: 0 60% 46% 0;
  background: #3c3b6e;
}
.footer-office .office-name .flag.tr {
  background: #e30a17;
}
.footer-office .office-name .flag.tr::after {
  content: "";
  position: absolute;
  left: 4px; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #e30a17;
  box-shadow: 0 0 0 1.5px #fff, 2.5px 0 0 0.8px #e30a17;
}
.footer-office .office-line {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--f-text);
  letter-spacing: -0.01em;
}
.footer-office .office-sub {
  font-size: 13px;
  color: var(--f-text-muted);
}
.footer-office a {
  color: var(--f-text);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.footer-office a:hover { color: var(--orange); border-bottom-color: var(--orange); }
.footer-office + .footer-office { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--f-border-soft); }

/* Bottom row */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--f-border);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--f-text-dim);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a { color: var(--f-text-dim); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--orange); }

.socials { display: flex; gap: 8px; margin-top: 4px; }
.social-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--f-border);
  background: var(--f-bg-2);
  border-radius: 8px;
  color: var(--f-text-muted);
  transition: all 0.2s var(--ease);
}
.social-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,26,0.08);
  transform: translateY(-2px);
}
.social-btn svg { width: 16px; height: 16px; }

/* Status pill — live operations */
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: var(--f-bg-2);
  border: 1px solid var(--f-border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--f-text-muted);
}
.footer-status .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #1f8a5b;
  box-shadow: 0 0 0 3px rgba(31,138,91,0.18);
  animation: pulse 2s infinite;
}
.footer-hours {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--f-text-muted);
}

/* Responsive: footer */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-cta { grid-template-columns: 1fr; gap: 24px; }
  .footer-cta .btn-primary { justify-self: start; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ SERVICES PAGE ============ */
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.service-tile {
  padding: 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s var(--ease);
  position: relative;
}
.service-tile:hover { background: var(--surface); }
.service-tile-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.12em;
}
.service-tile h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.service-tile p { font-size: 14px; color: var(--text-muted); }

.carriers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.carrier {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  background: var(--surface);
}
.carrier:hover { border-color: var(--orange); transform: translateY(-3px); }
.carrier-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.carrier-desc {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.platform-marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  overflow: hidden;
}
.platform-track {
  display: flex;
  gap: 56px;
  animation: scroll 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.platform-item {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: -0.02em;
  transition: color 0.2s var(--ease);
  cursor: default;
}
.platform-item:hover { color: var(--orange); }

.audience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.audience-row {
  padding: 32px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: padding-left 0.3s var(--ease), color 0.3s var(--ease);
  cursor: pointer;
}
.audience-row:nth-child(odd) { border-right: 1px solid var(--border); }
.audience-row:hover { padding-left: 40px; color: var(--orange); }
.audience-row .arrow {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 14px;
  transition: transform 0.3s var(--ease);
}
.audience-row:hover .arrow { transform: translateX(8px); }

/* ============ ABOUT PAGE ============ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about-story-content { display: flex; flex-direction: column; gap: 28px; }
.about-story-content p { color: var(--text-muted); font-size: 16px; line-height: 1.7; }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 80px;
}
.pillar {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pillar:last-child { border-right: 0; padding-right: 0; }
.pillar:not(:first-child) { padding-left: 28px; }
.pillar h3 { font-size: 20px; letter-spacing: -0.01em; font-weight: 500; }
.pillar p { font-size: 14px; color: var(--text-muted); }

.georgia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.georgia-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s var(--ease);
}
.georgia-card:hover { border-color: var(--orange); }
.georgia-card h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.georgia-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; }

.map-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21/9;
  background: var(--surface);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15); }

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.field input, .field textarea, .field select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--surface-2);
}
.field textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.3s var(--ease);
}
.info-card:hover { border-color: var(--border-strong); }
.info-card .label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.info-card .value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
}
.info-card a.value {
  transition: color 0.25s var(--ease);
}
.info-card a.value:hover {
  color: var(--orange);
}
.info-card .meta { font-size: 13px; color: var(--text-muted); }
.info-card a { display: block; }

/* ============ BLOG PAGE ============ */
.blog-empty {
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 80px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.blog-empty-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.blog-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.blog-card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-card h3 { font-size: 20px; line-height: 1.25; }
.blog-card-meta {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

/* Skeleton loading card */
.blog-skeleton {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 360px;
  position: relative;
}
.blog-skeleton::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.04), transparent);
  animation: shimmer 1.6s linear infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.blog-status {
  padding: 32px 28px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ============ BLOG POST READING ============ */
.post-hero {
  padding: clamp(40px, 6vw, 88px) 0 clamp(32px, 4vw, 48px);
}
.post-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  align-self: flex-start;
}
.post-back:hover { color: var(--orange); }
.post-back::before { content: "←"; }
.post-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.post-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--orange);
}
.post-eyebrow .sep { color: var(--text-dim); margin: 0 2px; }
.post-eyebrow .date { color: var(--text-muted); }
.post-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.2vw, 60px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}
.post-excerpt {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--text-muted);
  text-wrap: pretty;
  max-width: 60ch;
}
.post-meta-row {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-top: 8px;
}
.post-meta-row .v { color: var(--text); }

.post-cover {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 28px;
}
.post-cover img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.post-body-wrap { padding-bottom: clamp(64px, 8vw, 120px); }
.post-body {
  max-width: 680px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
}
.post-body h1, .post-body h2, .post-body h3, .post-body h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin-top: 44px;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.2;
}
.post-body h1 { font-size: 32px; }
.post-body h2 { font-size: 26px; }
.post-body h3 { font-size: 21px; }
.post-body h4 { font-size: 18px; }
.post-body h2:first-child, .post-body h3:first-child { margin-top: 0; }
.post-body p { margin-bottom: 22px; text-wrap: pretty; }
.post-body a { color: var(--orange); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.post-body a:hover { text-decoration-thickness: 2px; }
.post-body strong { color: var(--text); font-weight: 600; }
.post-body em { font-style: italic; }
.post-body ul, .post-body ol { margin: 0 0 22px 0; padding-left: 22px; }
.post-body li { margin-bottom: 8px; }
.post-body li::marker { color: var(--orange); }
.post-body blockquote {
  border-left: 3px solid var(--orange);
  padding: 6px 0 6px 22px;
  margin: 28px 0;
  color: var(--text-muted);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
}
.post-body code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
}
.post-body pre {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  overflow-x: auto;
  margin: 28px 0;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.55;
}
.post-body pre code { background: transparent; border: 0; padding: 0; }
.post-body img {
  width: 100%;
  border-radius: var(--radius);
  margin: 32px 0;
  border: 1px solid var(--border);
}
.post-body hr { border: 0; border-top: 1px solid var(--border); margin: 40px 0; }

.post-loading {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 0;
  text-align: center;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* ============ PAGE HERO ============ */
.page-hero {
  padding: clamp(56px, 8vw, 110px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--border);
}
.page-hero-grid { display: flex; flex-direction: column; gap: 24px; max-width: 880px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: inline-flex; }
  .feature-grid, .process-grid, .benefit-grid, .pillars, .georgia-grid, .blog-grid, .audience-list, .service-list {
    grid-template-columns: 1fr;
  }
  .audience-row { border-right: 0 !important; }
  .benefit, .pillar {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 28px 0 !important;
  }
  .benefit:last-child, .pillar:last-child { border-bottom: 0; }
  .service-list { grid-template-columns: 1fr; border-left: 0; }
  .service-tile { border-right: 0; }
  .carriers { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-bullets { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats { grid-template-columns: 1fr; gap: 24px; padding-top: 28px; }
  .stats > div { padding-bottom: 24px; border-bottom: 1px solid var(--border); }
  .stats > div:last-child { border-bottom: 0; padding-bottom: 0; }
  .benefit-head { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .nav-mobile.open { display: flex; }
  .nav-mobile {
    display: none;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--bg);
    z-index: 99;
    flex-direction: column;
    padding: 28px;
    gap: 6px;
    border-top: 1px solid var(--border);
  }
  .nav-mobile a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 18px;
    font-family: var(--font-display);
    color: var(--text);
  }
  .nav-mobile a:last-of-type { border-bottom: 0; }
  .nav-mobile .btn-primary { margin-top: 20px; align-self: flex-start; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .audience-row { padding: 22px 0; font-size: 22px; }
  .audience-row:hover { padding-left: 16px; }
}

/* Reveal — visible by default; IO is a no-op if it doesn't fire */
.reveal { opacity: 1; transform: none; }
