/* ═══════════════════════════════════════════════════
   SNP PERFORMANCE — Premium Automotive Redesign
   Style: OLED Dark · Glassmorphism · Aurora UI
   Fonts: Bebas Neue · Manrope
   ═══════════════════════════════════════════════════ */

:root {
  --bg:           #000000;
  --bg-2:         #060d1a;
  --surface:      rgba(8, 14, 28, 0.72);
  --surface-2:    rgba(10, 18, 34, 0.94);
  --glass:        rgba(255, 255, 255, 0.04);
  --border:       rgba(255, 255, 255, 0.08);
  --border-glow:  rgba(0, 212, 255, 0.30);

  --text:         #ffffff;
  --text-2:       #c4cedf;
  --muted:        #6a7a92;
  --muted-2:      #9ba8be;

  --accent:       #00d4ff;
  --accent-2:     #ff4500;
  --accent-3:     #ffbe00;

  --r-sm:   14px;
  --r-md:   22px;
  --r-lg:   32px;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);

}

/* ════════════════════════════════
   RESET & BASE
════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 70% 55% at 15% 0%, rgba(0, 80, 200, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 5%, rgba(200, 45, 0, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 90% 40% at 50% 100%, rgba(0, 60, 120, 0.10) 0%, transparent 60%);
  background-attachment: fixed;
}

/* ── Noise ── */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.25;
  z-index: -1;
  mix-blend-mode: overlay;
}

/* ── Orbs ── */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  z-index: -2;
  pointer-events: none;
}

.orb-1 {
  width: clamp(280px, 46vw, 660px);
  aspect-ratio: 1;
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.14), transparent 70%);
  animation: drift 20s ease-in-out infinite;
}

.orb-2 {
  width: clamp(240px, 38vw, 560px);
  aspect-ratio: 1;
  right: -8%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(255, 60, 0, 0.10), transparent 70%);
  animation: drift 26s ease-in-out infinite reverse;
}

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 100;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.55);
  transition: width 0.1s linear;
}

/* ── Cursor glow (desktop) ── */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.055), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

@media (hover: hover) {
  .cursor-glow { opacity: 1; }
}

/* ════════════════════════════════
   HEADER
════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px clamp(18px, 3vw, 52px);
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.90);
  border-bottom-color: rgba(0, 212, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.brand-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  letter-spacing: 0.06em;
  line-height: 1;
}

.brand-text span { color: var(--accent); }

.site-header nav {
  display: flex;
  gap: 4px;
}

.site-header nav a {
  color: var(--muted-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 7px 12px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}

.site-header nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.header-cta {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  flex-shrink: 0;
}

.header-cta:hover {
  background: rgba(0, 212, 255, 0.09);
  border-color: rgba(0, 212, 255, 0.36);
  transform: translateY(-1px);
}

/* ── Hamburger ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  background: transparent;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════
   LAYOUT
════════════════════════════════ */

.section {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */

.hero {
  padding-top: clamp(60px, 10vw, 110px);
  padding-bottom: 56px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 60px);
}

.hero-copy { position: relative; }

.hero-copy::before {
  content: "SNP";
  position: absolute;
  left: -0.02em;
  top: clamp(-42px, -4vw, -22px);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.026);
  letter-spacing: 0.08em;
  pointer-events: none;
  user-select: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

h1, h2, h3, p { margin: 0; }

h1 {
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  line-height: 0.88;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
}

h1 span {
  background: linear-gradient(100deg, var(--accent-2) 0%, var(--accent-3) 65%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(1.85rem, 4.5vw, 3.3rem);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.lead {
  max-width: 500px;
  color: var(--text-2);
  margin-top: 20px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* ── Buttons ── */
.btn {
  border-radius: 100px;
  padding: 13px 28px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.btn:hover { transform: translateY(-3px); }

.btn-primary {
  color: #000;
  background: linear-gradient(110deg, var(--accent) 0%, #6eeeff 100%);
  box-shadow: 0 14px 40px rgba(0, 212, 255, 0.34);
}

.btn-primary:hover { box-shadow: 0 20px 55px rgba(0, 212, 255, 0.50); }

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

/* ── Hero feature panel ── */
.hero-panel {
  margin-top: 32px;
  background: rgba(8, 14, 28, 0.68);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
  max-width: 600px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.04), transparent);
  transform: translateX(-100%);
  animation: sweep 10s linear infinite;
}

.hero-panel-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px;
  position: relative;
  z-index: 1;
}

.hero-panel-item strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.hero-panel-item span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.8rem;
}

/* ── Hero visual ── */
.hero-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06) 0%, transparent 40%, rgba(0,0,0,0.50) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.18), transparent 60%);
}

.hero-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  background: rgba(0, 0, 0, 0.80);
  border: 1px solid var(--border);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.7);
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

.hero-badge p {
  font-size: 0.8rem;
  color: var(--muted-2);
  font-weight: 700;
}

.hero-badge strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
}

/* ── Stats bar ── */
.stats-bar {
  padding-block: 28px;
  border-block: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.stat-item {
  text-align: center;
  padding: 8px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}

.stat-value {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.0rem);
  line-height: 1;
  background: linear-gradient(90deg, var(--text), var(--text-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.04em;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Ticker ── */
.ticker {
  margin-top: 36px;
  overflow: hidden;
  border-block: 1px solid var(--border);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 24px;
  padding: 14px 0;
  animation: ticker 22s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--muted-2);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  white-space: nowrap;
}

.ticker-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

/* ════════════════════════════════
   SECTION HEADERS
════════════════════════════════ */

.section-head { margin-bottom: 28px; }

/* ════════════════════════════════
   SERVICES
════════════════════════════════ */

.services { padding-block: 88px 40px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 28px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.055), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.005);
  border-color: rgba(0, 212, 255, 0.22);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 212, 255, 0.06);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.16);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--accent);
  transition: background 0.3s, box-shadow 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(0, 212, 255, 0.13);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.18);
}

.service-index {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.9rem;
}

/* ════════════════════════════════
   GALLERY
════════════════════════════════ */

.media-showcase { padding-block: 80px 40px; }

.showcase-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
}

.media-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--bg-2);
  transition: border-color 0.3s, transform 0.35s var(--ease);
}

.media-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.015);
}

.media-card-large {
  grid-row: span 2;
  min-height: 640px;
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.74));
  pointer-events: none;
}

.media-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.media-tag {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.media-copy h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.2;
  max-width: 20ch;
  color: var(--text);
}

.media-card-video video { background: #000; }

/* ════════════════════════════════
   PROCESS
════════════════════════════════ */

.process { padding-block: 80px 40px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.38), rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0.38));
  z-index: 0;
  pointer-events: none;
}

.step {
  position: relative;
  z-index: 1;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--surface);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.step:hover {
  border-color: rgba(0, 212, 255, 0.18);
  transform: translateY(-4px);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.88rem;
  color: #000;
  background: linear-gradient(135deg, var(--accent), #7eeeff);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.04rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* ════════════════════════════════
   HIGHLIGHT
════════════════════════════════ */

.highlight {
  margin-top: 36px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 69, 0, 0.09), rgba(0, 212, 255, 0.07));
  padding: clamp(28px, 5vw, 52px);
  position: relative;
  overflow: hidden;
}

.highlight::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -15%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.07), transparent 70%);
  pointer-events: none;
}

.highlight .eyebrow { margin-bottom: 12px; }
.highlight h2 { max-width: 24ch; }
.highlight > p {
  margin-top: 14px;
  color: var(--muted-2);
  line-height: 1.7;
  max-width: 680px;
  font-size: 1.05rem;
}

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */

.contact { padding-block: 64px 96px; }

.contact-box {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.03), rgba(255, 69, 0, 0.03));
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.055), transparent 70%);
  pointer-events: none;
}

.contact-box h2,
.contact-box p,
.contact-box .btn { position: relative; z-index: 1; }

.contact-box p {
  color: var(--muted-2);
  margin: 14px auto 28px;
  max-width: 500px;
  line-height: 1.7;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 20px 24px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  color: var(--muted);
  font-size: 0.86rem;
}

/* ════════════════════════════════
   FLOATING CTA
════════════════════════════════ */

.float-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  background: linear-gradient(110deg, var(--accent-2), var(--accent-3));
  color: #000;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(255, 69, 0, 0.38);
  animation: floatPulse 3.5s ease-in-out infinite;
}

.float-cta:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 44px rgba(255, 69, 0, 0.52);
  animation: none;
}

/* ════════════════════════════════
   REVEAL
════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════
   KEYFRAMES
════════════════════════════════ */

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -24px) scale(1.06); }
}

@keyframes sweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0.55; }
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */

@media (max-width: 960px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/9; order: -1; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .showcase-grid { grid-template-columns: 1fr; }
  .media-card-large { min-height: 460px; grid-row: span 1; }
  .service-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .hero-panel { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-header nav,
  .header-cta { display: none; }

  .site-header nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 62px;
    background: rgba(0, 0, 0, 0.96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 32px 28px;
    gap: 6px;
    z-index: 49;
    align-items: flex-start;
  }

  .site-header nav.open a {
    font-size: 1.5rem;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }

  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none !important; }
  .hero-panel { grid-template-columns: 1fr; gap: 8px; }
  .float-cta span { display: none; }
  .float-cta { padding: 14px; border-radius: 50%; }
  .media-card { min-height: 280px; }
  .media-copy h3 { max-width: none; }
  .btn { width: 100%; justify-content: center; }
}

