﻿/* ═══════════════════════════════════════════════════════════════
   TWIN RIVER DEVELOPMENT - home.css
   Homepage-specific styles only
   ═══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: clamp(92px, 9vw, 132px) var(--sp-10) clamp(70px, 8vw, 104px);
  overflow: hidden;
  border-bottom: 0.5px solid var(--border);
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(3, 8, 16, 0.98) 0%, rgba(3, 8, 16, 0.91) 30%, rgba(3, 8, 16, 0.58) 55%, rgba(3, 8, 16, 0.16) 100%),
    linear-gradient(180deg, rgba(3, 8, 16, 0.38) 0%, rgba(3, 8, 16, 0.04) 44%, rgba(3, 8, 16, 0.45) 100%),
    url('../../assets/images/hero_tr.webp') center right / cover no-repeat;
  color: #FFFFFF;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: min(58vw, 780px);
  height: min(58vw, 780px);
  background: radial-gradient(circle, rgba(0,116,236,0.18) 0%, rgba(0,116,236,0.08) 35%, transparent 68%);
  top: 10%;
  right: 10%;
  mix-blend-mode: screen;
}
.hero::after {
  inset: auto 0 0;
  width: 100%;
  height: 28%;
  border-radius: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 8, 16, 0.72) 100%);
}

.hero-visual-layer,
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-visual-layer {
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,116,236,0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,116,236,0.18) 1px, transparent 1px);
  background-size: 128px 128px;
  opacity: 0.16;
  transform: perspective(700px) rotateX(64deg) translateY(12%);
  transform-origin: center bottom;
  animation: heroGridShift 24s linear infinite alternate;
  mix-blend-mode: screen;
}

.hero-svg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

.hero-haze {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 78%, rgba(0,116,236,0.22) 0%, rgba(0,116,236,0.08) 36%, transparent 70%),
    radial-gradient(ellipse at 17% 48%, rgba(255,255,255,0.12) 0%, transparent 42%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.hero-circuit-group {
  filter: url(#heroGlow);
}

.hero-river-path,
.hero-circuit {
  fill: none;
  stroke: url(#heroCircuitGlow);
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: heroCircuitDash 16s linear infinite;
}

.hero-river-path {
  stroke-width: 3;
  stroke-dasharray: 18 24;
  opacity: 0.44;
}

.hero-river-path--right {
  animation-duration: 20s;
  opacity: 0.38;
}

.hero-circuit {
  stroke-width: 1.35;
  stroke-dasharray: 8 13;
  opacity: 0.4;
}

.hero-circuit--short {
  animation-duration: 18s;
  opacity: 0.32;
}

.hero-circuit--mid {
  animation-duration: 20s;
  opacity: 0.36;
}

.hero-node {
  animation: heroNodePulse 3.4s ease-in-out infinite;
  transform-origin: center;
  filter: url(#heroGlow);
}

.hero-node--delay {
  animation-delay: 1.2s;
}

.hero-node--delay2 {
  animation-delay: 2s;
}

.data-packet {
  opacity: 0.78;
  filter: url(#heroGlow);
}

.data-packet--delay {
  opacity: 0.78;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 660px);
  max-width: 660px;
  margin: 0 auto 0 max(20px, calc((100vw - min(100%, 1200px)) / 2));
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  opacity: 1;
  transform: none;
}
body.has-loaded .hero-content {
  opacity: 1;
  transform: none;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8ecbff;
  margin-bottom: var(--sp-5);
  display: block;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.2vw, 76px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  color: #f8fbff;
  max-width: 680px;
  margin-bottom: var(--sp-2);
  text-shadow: 0 18px 46px rgba(0,0,0,0.45);
}

.hero-rule {
  width: min(190px, 34vw);
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(90,180,247,0));
  border-radius: 2px;
  margin: var(--sp-5) 0 var(--sp-6);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: rgba(248, 251, 255, 0.82);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: var(--sp-10);
}

.hero-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}

.hero .btn-primary {
  color: #fff;
}

.hero .btn-ghost {
  color: #f8fbff;
  border-color: rgba(255,255,255,0.36);
}

.hero .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.58);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  width: fit-content;
  max-width: 100%;
  padding: var(--sp-5) var(--sp-6);
  border: 0.5px solid rgba(255,255,255,0.16);
  background: rgba(3, 8, 16, 0.42);
  backdrop-filter: blur(8px);
  flex-wrap: nowrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat .stat-number,
.hero-stat .stat-label-lg {
  min-height: 32px;
  display: flex;
  align-items: flex-end;
}

.hero-stat:last-child {
  margin-left: 0;
  padding-left: 0;
  flex-shrink: 0;
}

.hero-stat-divider {
  width: 0.5px;
  height: 36px;
  background: rgba(255,255,255,0.16);
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #f8fbff;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: rgba(248, 251, 255, 0.7);
  line-height: 1.4;
}

.stat-label-lg {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f8fbff;
  line-height: 1;
}

@keyframes heroGridShift {
  from { transform: perspective(700px) rotateX(64deg) translateY(12%); }
  to { transform: perspective(700px) rotateX(64deg) translateY(5%); }
}

@keyframes heroCircuitDash {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 320; }
}

@keyframes heroNodePulse {
  0%, 100% { opacity: 0.45; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1.12); }
}

@media (max-width: 900px) {
  .hero {
    padding: 90px var(--sp-6) 72px;
    min-height: 620px;
    background:
      linear-gradient(90deg, rgba(3, 8, 16, 0.98) 0%, rgba(3, 8, 16, 0.86) 54%, rgba(3, 8, 16, 0.46) 100%),
      linear-gradient(180deg, rgba(3, 8, 16, 0.24) 0%, rgba(3, 8, 16, 0.58) 100%),
      url('../../assets/images/hero_tr.webp') right center / cover no-repeat;
  }

  .hero-content {
    margin-left: max(16px, calc((100vw - min(100%, 1200px)) / 2));
    margin-right: auto;
    max-width: min(100%, 580px);
  }

  .hero-svg-overlay {
    opacity: 0.72;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 84px var(--sp-5) 64px;
    background:
      linear-gradient(180deg, rgba(3, 8, 16, 0.86) 0%, rgba(3, 8, 16, 0.74) 44%, rgba(3, 8, 16, 0.92) 100%),
      url('../../assets/images/hero_tr.webp') right center / cover no-repeat;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .hero-eyebrow {
    max-width: 310px;
    font-size: 8px;
    letter-spacing: 0.16em;
    line-height: 1.7;
    color: #9ed3ff;
  }

  .hero h1 {
    color: #fff;
    text-shadow: 0 14px 36px rgba(0,0,0,0.7);
  }

  .hero-reality {
    display: block;
  }

  .hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 8px 22px rgba(0,0,0,0.65);
    margin-bottom: var(--sp-8);
  }

  .hero-actions {
    margin-bottom: var(--sp-8);
  }

  .hero-stats {
    gap: var(--sp-6);
    width: 100%;
    padding: var(--sp-5);
    flex-wrap: wrap;
  }
}

/* ══════════════════════════════════════════════
   SERVICES - THREE PILLARS
══════════════════════════════════════════════ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.service-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-8) var(--sp-6);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  opacity: 0;
  transform: translateY(22px);
}
.service-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--blue);
  flex-shrink: 0;
}
.service-card-icon svg { width: 20px; height: 20px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
  color: var(--text-primary);
  line-height: 1.3;
}

.service-card p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: var(--sp-5);
  font-weight: 300;
}

.service-card-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 8px; }

/* ══════════════════════════════════════════════
   TWIN RIVER DIFFERENCE
══════════════════════════════════════════════ */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: start;
}

.diff-left .section-title { margin-bottom: var(--sp-6); }

.diff-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: var(--sp-5);
}
.diff-body:last-of-type { margin-bottom: var(--sp-8); }

.diff-right { display: flex; flex-direction: column; }

.diff-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-bottom: 0.5px solid var(--border-light);
  align-items: flex-start;
}
.diff-item:first-child { border-top: 0.5px solid var(--border-light); }

.diff-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  min-width: 26px;
  padding-top: 2px;
  flex-shrink: 0;
}

.diff-content h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.diff-content p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════════
   VIDEO SECTION
══════════════════════════════════════════════ */
.video-section .section-label,
.video-section .section-title { text-align: center; }

.video-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  text-align: center;
  max-width: 480px;
  margin: 0 auto var(--sp-10);
  line-height: 1.75;
}

.video-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0.5px solid var(--border);
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}
.video-frame video { width: 100%; display: block; }

/* ══════════════════════════════════════════════
   MANAGED IT - DARK
══════════════════════════════════════════════ */
.msp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.msp-left p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}
.msp-left p strong { color: #FFFFFF; font-weight: 500; }

.msp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
}
.msp-pills li {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: #5AB4F7;
  border: 0.5px solid rgba(90,180,247,0.3);
  padding: 5px 13px;
  border-radius: 20px;
  transition: background var(--transition), border-color var(--transition);
}
.msp-pills li:hover {
  background: rgba(90,180,247,0.1);
  border-color: rgba(90,180,247,0.6);
}

.msp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.msp-card {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-5);
  transition: background var(--transition), border-color var(--transition);
}
.msp-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.msp-card-icon {
  width: 36px;
  height: 36px;
  color: var(--blue);
  margin-bottom: var(--sp-3);
}
.msp-card-icon svg { width: 24px; height: 24px; }

.msp-card h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.msp-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   CLIENT LOGOS
══════════════════════════════════════════════ */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-6) var(--sp-8);
  align-items: center;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
}

.logo-item img {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  opacity: 0.88;
  filter: grayscale(100%) brightness(1.75) contrast(1.08);
  transition: opacity var(--transition);
  object-fit: contain;
}
.logo-item img:hover { opacity: 1; }

/* Larger display for logos that need it */
.logo-item img.logo-lg {
  max-height: 72px;
}
.logo-item img.logo-claw {
  max-height: 108px;
}

/* ══════════════════════════════════════════════
   SIDE-BY-SIDE PROCESS
══════════════════════════════════════════════ */
.process-intro {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: var(--sp-12);
}

.process-tracks {
  position: relative;
  margin-bottom: var(--sp-6);
  padding-left: 100px;
}

/* River lines - both pass through the icon row */
.process-river-wrap {
  position: absolute;
  left: 100px;
  right: 0;
  top: 50%;
  transform: translateY(-60%);
  pointer-events: none;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-river-line {
  height: 2px;
  border-radius: 2px;
  width: 100%;
}

.process-river-line--tr {
  background: var(--blue);
  opacity: 0.5;
}

.process-river-line--client {
  background: var(--gray);
  opacity: 0.6;
}

/* Steps row - icons sit centered over both lines */
.process-steps-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
  padding: var(--sp-10) 0 var(--sp-6);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
}

.process-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: background var(--transition), color var(--transition);
  /* White halo punches cleanly through both lines */
  box-shadow: 0 0 0 6px var(--white);
}
.process-step-icon svg { width: 20px; height: 20px; }
.process-step:hover .process-step-icon {
  background: var(--blue);
  color: #FFFFFF;
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  margin-top: var(--sp-1);
}

.process-step-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.4;
  padding: 0 4px;
}

/* Track labels - left side, one per river line, single line text */
.process-track-labels {
  position: absolute;
  left: 0;
  width: 90px;
  top: 50%;
  transform: translateY(-60%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.track-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
  line-height: 1;
}
.track-label--tr  { color: var(--blue); }
.track-label--client { color: var(--gray); }

.process-cta {
  text-align: center;
  margin-top: var(--sp-8);
}

/* Responsive */
@media (max-width: 900px) {
  .process-tracks { overflow-x: auto; padding-bottom: var(--sp-4); padding-left: 80px; }
  .process-track-labels { width: 70px; }
  .process-river-wrap { left: 80px; }
  .process-steps-row { grid-template-columns: repeat(7, 90px); min-width: 630px; }
}

/* ══════════════════════════════════════════════
   CORE VALUES
══════════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
}

.value-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-4);
  transition: border-color var(--transition), transform var(--transition);
}
.value-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.value-accent {
  width: 22px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: var(--sp-3);
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.value-card p {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   LEADERSHIP TEAM
══════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.team-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.team-card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--transition), transform var(--transition);
}
.team-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.team-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.team-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--off-white);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}
.team-card:hover .team-photo img { transform: scale(1.03); }

.team-info {
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
}

.team-info h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 3px;
  letter-spacing: -0.03em;
}

.team-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.team-bio {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.team-read-more {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  display: inline-block;
  transition: gap var(--transition);
}

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section {
  background: var(--blue);
  border-bottom: none;
  text-align: center;
}
.cta-section .section-inner--narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-4);
  line-height: 1.1;
}
.cta-section p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin-bottom: var(--sp-10);
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  justify-content: center;
}

/* ══════════════════════════════════════════════
   RESPONSIVE - HOME
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero { padding: 80px var(--sp-6) 72px; }
  .hero-rivers-bg { width: 320px; height: 320px; right: -40px; opacity: 0.04; }
  .diff-grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .msp-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps-row { grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
}

@media (max-width: 768px) {
  #nav-hamburger {
    display: flex !important;
    position: fixed;
    top: 16px;
    right: var(--sp-5);
    z-index: 200;
    width: 40px;
    height: 40px;
    background-image:
      linear-gradient(#E8EDF8, #E8EDF8),
      linear-gradient(#E8EDF8, #E8EDF8),
      linear-gradient(#E8EDF8, #E8EDF8);
    background-position: center calc(50% - 7px), center, center calc(50% + 7px);
    background-repeat: no-repeat;
    background-size: 22px 2px;
  }

  .site-header::after {
    content: '';
    position: fixed;
    top: 16px;
    right: var(--sp-5);
    z-index: 201;
    width: 40px;
    height: 40px;
    pointer-events: none;
    background-image:
      linear-gradient(#E8EDF8, #E8EDF8),
      linear-gradient(#E8EDF8, #E8EDF8),
      linear-gradient(#E8EDF8, #E8EDF8);
    background-position: center calc(50% - 7px), center, center calc(50% + 7px);
    background-repeat: no-repeat;
    background-size: 22px 2px;
  }

  .service-grid { grid-template-columns: 1fr; }
  .msp-cards { grid-template-columns: 1fr 1fr; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .hero-stats { gap: var(--sp-6); }
  .hero-stat-divider { display: none; }
  .process-tracks { overflow-x: auto; padding-bottom: var(--sp-4); }
  .process-steps-row { grid-template-columns: repeat(7, 80px); min-width: 560px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .msp-cards { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: stretch; text-align: center; }
}
