/* ============================================================
   UKUPHI v30 — 3-column hero matching original mockup layout
   ============================================================ */
:root {
  --red:      #ff171d;
  --red-dark: #c9000a;
  --black:    #050505;
  --white:    #ffffff;
  --border:   rgba(255,255,255,.12);
  --grey:     rgba(255,255,255,.75);
  --grey-dim: rgba(255,255,255,.48);
  --font:     'Inter', Arial, Helvetica, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--font); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; }


/* ── NAV ──────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5,5,5,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 0 clamp(24px, 4vw, 64px) 0 calc(2.11vw - 15px);
  height: 72px;
}
.nav-logo-img {
  height: 82px; width: auto;
}
.nav-links {
  display: flex; align-items: center;
  gap: clamp(20px, 2.8vw, 44px);
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px; font-weight: 600; letter-spacing: .3px;
  color: rgba(255,255,255,.8); transition: color .15s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--red); color: #fff !important;
  padding: 9px 22px; border-radius: 7px;
  font-weight: 700 !important;
  transition: background .15s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-demos-btn { display: none; }


/* ── HERO ─────────────────────────────────────────────────── */
/*
  Original proportions (measured at 1802px wide):
  - Left content: 42.7% of viewport
  - Phone: 23.9% wide, 106% of hero height (slight top/bottom overflow)
  - Feature cards: 16.6% wide
  - Hero height: ~520px at 1802px = ~29vw
*/
.hero {
  position: relative;
  overflow: hidden; /* clips phone/cards if they exceed viewport */
  min-height: clamp(360px, 28.8vw, 540px);
  background: var(--black);
}

/* Cityscape background */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../images/hero-bg.jpg') right top / cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  /* Subtle bottom fade to blend into sections below */
  background: linear-gradient(180deg,
    rgba(5,5,5,.0)  0%,
    rgba(5,5,5,.0) 78%,
    rgba(5,5,5,.9) 100%
  );
}

/* Hero inner: exact proportions from mockup (measured at 1802px) */
.hero-inner {
  position: relative; z-index: 2;
  display: flex;
  align-items: stretch;
  min-height: inherit;
  padding: 0 0 0 2.11vw;
}

/* ── Col 1: Text — 34.79vw (exact mockup measurement) ── */
.hero-content {
  flex: 0 0 34.79vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5vw 2vw 2.5vw 0;
}
.eyebrow {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.red-text { color: var(--red); }
.hero h1 {
  font-size: clamp(30px, 3.4vw, 62px);
  font-weight: 900; line-height: .96; letter-spacing: -2px;
  margin-bottom: 20px;
}
.red { color: var(--red); }
.hero-desc {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.65; color: var(--grey);
  margin-bottom: 26px;
}

/* 4-badge strip */
.hero-badges {
  display: flex;
  gap: 0;
  margin-bottom: 26px;
  padding-top: 4px;
}
.hero-badge {
  display: flex; align-items: center; gap: 10px;
  flex: 1;
  padding: 0 16px 0 0;
  border-left: 1px solid rgba(255,255,255,.18);
  padding-left: 16px;
}
.hero-badge:first-child { border-left: 0; padding-left: 0; }
.hero-badge svg { width: 34px; height: 34px; flex-shrink: 0; }
.hero-badge b   { font-size: 13px; font-weight: 700; display: block; line-height: 1.2; }
.hero-badge span { font-size: 11px; color: var(--grey-dim); display: block; margin-top: 2px; }

/* CTAs */
.hero-actions { display: flex; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 26px;
  border-radius: 8px; font-weight: 800; font-size: 14px;
  white-space: nowrap;
  transition: transform .18s, box-shadow .18s, background .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 12px 40px rgba(255,23,29,.34); }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { border: 1px solid rgba(255,255,255,.34); background: rgba(255,255,255,.06); color: #fff; }
.btn-light { background: #fff; color: #000; box-shadow: 0 12px 40px rgba(0,0,0,.22); }
.btn-light:hover { box-shadow: 0 20px 54px rgba(0,0,0,.32); }

/* ── Col 2: Phone — height-driven, 108% of hero, exact mockup proportions ── */
.hero-phone-col {
  flex: 0 0 18vw;
  margin-left: 24vw;
  position: relative;
  align-self: stretch;
}
.hero-phone-img {
  /* 90% of hero height, centred — 5% padding top & bottom */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 90%;
  width: auto;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,.95))
          drop-shadow(0 0 60px rgba(255,23,29,.1));
}

/* ── Col 3: Feature cards — 17.2vw, 1.66vw gap (exact mockup) ── */
.hero-cards-col {
  flex: 0 0 17.2vw;
  margin-left: 1.66vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(10px, 1vw, 14px);
  padding-left: 0;
}
.feature-card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,.96);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.4), 0 1px 4px rgba(0,0,0,.15);
  color: #111;
  white-space: nowrap;
}
/* Icon: no background box, just the SVG at full readable size */
.fc-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
/* Live Navigation: SVG 04 has its own red circle — just size it */
.fc-icon.fc-red { /* no background needed, SVG provides the red circle */ }
.fc-icon svg { width: 100%; height: 100%; }
.feature-card b    { display: block; font-size: 14px; font-weight: 800; color: #111; line-height: 1.2; }
.feature-card span { display: block; font-size: 12px; color: #666; margin-top: 2px; line-height: 1.3; }

/* Hero card PNG images (not used) */
.hero-card-img { display: none; }


/* ── ENVIRONMENTS STRIP ────────────────────────────────────── */
.environments-strip {
  background: #fff; color: #050505;
  padding: clamp(16px,2vw,28px) clamp(24px,4vw,64px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.strip-heading {
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 3px;
  text-align: center; color: rgba(0,0,0,.55);
  margin-bottom: 20px;
}
.strip-heading::after {
  content: ''; display: block; width: 40px; height: 3px;
  background: var(--red); margin: 10px auto 0;
}
.strip-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(0,0,0,.08);
  max-width: 1280px; margin: 0 auto;
}
.strip-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px; background: #fff;
}
.strip-item svg { width: 52px; height: 52px; flex-shrink: 0; color: var(--red); }
.strip-item b    { display: block; font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.strip-item span { font-size: 13px; color: rgba(0,0,0,.62); line-height: 1.45; }


/* ── CONTENT SECTIONS ──────────────────────────────────────── */
.content-section {
  padding: clamp(64px,7vw,104px) clamp(24px,4vw,64px);
  background: var(--black);
  border-top: 1px solid var(--border);
}
.section-copy { max-width: 680px; }
.section-head { max-width: 840px; }
.section-head.centered { margin: 0 auto 52px; text-align: center; }
.section-head.centered p { margin: 0 auto; }
.content-section h2 {
  font-size: clamp(32px,3.8vw,60px);
  font-weight: 900; line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 18px;
}
.content-section p { font-size: clamp(16px,1.2vw,19px); line-height: 1.65; color: var(--grey); max-width: 680px; }
.proof-line { color: #fff !important; font-weight: 600; margin-top: 14px; }
.small-note  { color: var(--grey-dim) !important; font-size: 15px !important; }

/* Video */
.video-section {
  display: grid; grid-template-columns: 1fr minmax(0,400px);
  gap: clamp(48px,6vw,96px); align-items: center;
  background: radial-gradient(circle at 88% 12%, rgba(255,23,29,.16), transparent 36%), var(--black);
}
.video-steps { margin: 36px 0; border-top: 1px solid var(--border); }
.video-step { display: flex; align-items: flex-start; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.step-num { font-size: 28px; font-weight: 900; color: var(--red); line-height: 1; flex: 0 0 44px; }
.video-step b    { display: block; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.video-step span { font-size: 14px; color: var(--grey-dim); line-height: 1.5; }
.video-frame {
  border: 1px solid var(--border); border-radius: 24px; padding: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.02));
  box-shadow: 0 32px 96px rgba(0,0,0,.65);
}
.video-frame video {
  display: block; width: 100%; height: auto;
  aspect-ratio: 9/16; object-fit: cover;
  border-radius: 16px; background: #000;
  max-height: min(680px, calc(100vh - 160px));
}
.video-caption { text-align: center; margin-top: 12px; font-size: 13px; color: var(--grey-dim); }

/* Examples */
.examples-section { background: #f3f3f3; color: #050505; }
.examples-section .eyebrow { color: var(--red); }
.examples-section h2 { color: #050505; }
.examples-section p  { color: rgba(0,0,0,.65); }
.live-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.live-card {
  min-height: 220px; padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  border-radius: 20px; color: #fff;
  position: relative; isolation: isolate; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.live-card::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .85; z-index: -1;
  transition: opacity .25s;
}
.live-card:hover::before { opacity: 1; }
.live-card--zimbali::before    { background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.72)), url('../images/thumb-zimbali.jpg'); }
.live-card--eikestad::before   { background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.72)), url('../images/thumb-eikestad.jpg'); }
.live-card--avenues::before    { background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.72)), url('../images/thumb-avenues.jpg'); }
.live-card--maritzburg::before { background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.72)), url('../images/thumb-maritzburg.jpg'); }
.live-card:hover { transform: translateY(-5px); box-shadow: 0 30px 80px rgba(0,0,0,.3); }
.live-card span { color: var(--red); font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: 1.4px; }
.live-card b  { font-size: 24px; font-weight: 900; letter-spacing: -.5px; }
.live-card em { font-style: normal; font-weight: 700; font-size: 14px; }

/* Analytics */
.analytics-section {
  display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: clamp(48px,6vw,100px); align-items: center;
  background: radial-gradient(circle at 72% 40%, rgba(255,23,29,.08), transparent 40%), #030303;
}
.dashboard {
  border: 1px solid var(--border); border-radius: 24px;
  padding: clamp(20px,2.5vw,36px);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.015));
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
}
.dash-header { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid var(--border); padding-bottom: 18px; margin-bottom: 18px; }
.dash-label  { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--grey-dim); }
.dash-title  { display: block; font-size: clamp(22px,2vw,32px); font-weight: 900; letter-spacing: -1px; margin-top: 4px; }
.dash-date   { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--red); margin-top: 6px; }
.dash-stats  { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 12px; }
.stat { border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(0,0,0,.22); padding: 14px 12px; }
.stat-val { display: block; font-size: clamp(26px,2.5vw,42px); font-weight: 900; line-height: 1; letter-spacing: -1.5px; }
.stat-lbl { display: block; font-size: 12px; font-weight: 600; color: var(--grey-dim); margin-top: 5px; }
.dash-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dash-panel { display: flex; align-items: center; gap: 14px; min-height: 90px; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(255,255,255,.03); padding: 14px; }
.panel-icon { width: 38px; height: 38px; flex-shrink: 0; }
.panel-icon svg { width: 100%; height: 100%; fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dash-panel strong { display: block; font-size: clamp(13px,1vw,16px); font-weight: 800; line-height: 1.25; }
.dash-panel span   { display: block; font-size: 13px; color: var(--grey-dim); margin-top: 3px; }
.dash-footer { display: grid; grid-template-columns: 170px 1fr; gap: 20px; align-items: flex-end; margin-top: 16px; border-top: 1px solid var(--border); padding-top: 16px; }
.dash-time { display: block; font-size: clamp(26px,2.2vw,36px); font-weight: 900; letter-spacing: -1px; margin-top: 4px; }
.mini-chart { height: 52px; display: flex; align-items: flex-end; gap: 6px; }
.mini-chart i { flex: 1; display: block; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, rgba(255,23,29,.95), rgba(255,23,29,.28)); min-height: 7px; }

.about-section {
  background: #0a0a0a;
  padding-top: clamp(32px, 3.5vw, 52px); /* tighter top */
}
.about-section .eyebrow {
  margin-bottom: 28px;
  padding-bottom: 20px;
}

/* CTA */
.cta-section {
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; padding: clamp(56px,6vw,88px) clamp(24px,5vw,64px);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}
.cta-text h2 { font-size: clamp(28px,3.5vw,52px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 10px; }
.cta-text p  { color: rgba(255,255,255,.9); font-size: 18px; max-width: none; }
.cta-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.cta-email {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.cta-email a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,.4);
  transition: text-decoration-color .15s;
}
.cta-email a:hover { text-decoration-color: #fff; }


/* ── BREAKPOINTS ───────────────────────────────────────────── */
/* 1500px: start reducing phone margin so cards stay in viewport */
@media (max-width: 1500px) {
  .hero-phone-col { margin-left: 16vw; }
}
@media (max-width: 1350px) {
  .hero-phone-col { margin-left: 10vw; }
}
/* 1250px: hide cards — phone snaps to right edge using auto margin */
@media (max-width: 1250px) {
  .hero-cards-col { display: none; }
  .hero-content { flex: 0 0 36vw; }
  .hero-phone-col { flex: 0 0 20vw; margin-left: auto; margin-right: 4vw; }
}
@media (max-width: 1050px) {
  .hero-content { flex: 0 0 40vw; }
  .hero-phone-col { flex: 0 0 22vw; margin-left: auto; margin-right: 3vw; }
}
@media (max-width: 900px) {
  .hero-phone-col { display: none; }
  .hero-content { flex: 0 0 100%; max-width: 600px; }
  .strip-grid, .live-grid { grid-template-columns: repeat(2,1fr); }
  .video-section, .analytics-section { grid-template-columns: 1fr; }
  .cta-section { flex-direction: column; text-align: center; }
  .dash-stats { grid-template-columns: repeat(2,1fr); }
  .dash-footer { grid-template-columns: 1fr; }
}



/* Feature card PNG images */
.hero-card-img {
  width: 100%;
  display: block;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,.45);
}

/* Mobile phone section — desktop: hidden */
.mobile-phone-section { display: none; }

/* Hamburger — desktop: hidden */
.nav-hamburger { display: none; }
.mobile-nav-overlay { display: none; }


/* ══════════════════════════════════════════════════════════════
   MOBILE ≤ 640px — matches ukuphi-homepage-mockup_mobile.png
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* ── Nav: logo left, hamburger right ── */
  .nav-links { display: none; }
  .nav-demos-btn { display: none; }
  .nav-logo-img { height: 82px; }
  .nav-inner { height: 90px; padding: 0 20px 0 7px; }

  .nav-hamburger {
    display: flex; flex-direction: column;
    justify-content: center; gap: 5px;
    width: 40px; height: 40px;
    background: none; border: none; cursor: pointer; padding: 4px;
    margin-left: auto;
  }
  .nav-hamburger span {
    display: block; height: 2.5px; width: 100%;
    background: #fff; border-radius: 2px;
    transition: transform .25s, opacity .2s;
  }
  .nav-hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* Mobile nav overlay */
  .mobile-nav-overlay {
    display: block;
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(5,5,5,.98);
    backdrop-filter: blur(20px);
    z-index: 200;
    padding: 76px 28px 28px;
    transform: translateY(-100%); opacity: 0;
    transition: transform .28s ease, opacity .22s ease;
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0,0,0,.6);
  }
  .mobile-nav-overlay.is-open {
    transform: translateY(0); opacity: 1;
    pointer-events: all;
  }
  /* X close button inside overlay */
  .mob-close-btn {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; cursor: pointer;
    color: #fff; font-size: 20px; line-height: 1;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: background .15s;
  }
  .mob-close-btn:hover { background: rgba(255,255,255,.1); }
  /* Nav links — compact list */
  .mob-nav-links {
    display: flex; flex-direction: column; gap: 0;
  }
  .mob-link {
    font-size: 15px; font-weight: 600; color: rgba(255,255,255,.9);
    padding: 13px 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,.08);
    letter-spacing: .2px;
  }
  .mob-link:last-child { border-bottom: none; }
  .mob-cta {
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 16px; height: 44px; width: 100%;
    background: var(--red); border-radius: 8px;
    font-size: 14px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .5px;
    border-bottom: none !important;
  }

  /* ── Hero: full-screen, aerial bg, all text content ── */
  .hero { min-height: auto; overflow: hidden; }
  .hero-bg { background-position: 65% 25%; }
  .hero-bg::after {
    background:
      linear-gradient(90deg,
        rgba(5,5,5,.97)  0%,
        rgba(5,5,5,.90) 45%,
        rgba(5,5,5,.60) 68%,
        rgba(5,5,5,.20) 85%,
        rgba(5,5,5,.05) 100%
      ),
      linear-gradient(180deg,
        rgba(5,5,5,.20)  0%,
        rgba(5,5,5,.0)  12%,
        rgba(5,5,5,.0)  55%,
        rgba(5,5,5,.85) 82%,
        rgba(5,5,5,1.0) 100%
      );
  }
  .hero-inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 32px 22px 14px;
    min-height: auto;
  }
  .hero-content { flex: none; width: 100%; padding: 0; }
  .hero-phone-col { display: none; }
  .hero-cards-col { display: none; }
  .hero-card-img { display: none; }

  /* Headline: large, 3-line as in mockup */
  .hero h1 {
    font-size: clamp(32px, 9vw, 43px);
    letter-spacing: -1.5px; line-height: .97;
    margin-bottom: 18px;
  }
  .hero-desc { font-size: 16px; line-height: 1.6; margin-bottom: 24px; }

  /* Badges: horizontal row, icon + text, pipe dividers — matches mockup */
  .hero-badges {
    display: flex; gap: 0;
    margin-bottom: 24px; padding-top: 4px;
  }
  .hero-badge {
    flex: 1; background: none;
    display: flex; align-items: center; gap: 8px;
    padding: 0 12px;
    border-left: 1px solid rgba(255,255,255,.18);
  }
  .hero-badge:first-child { border-left: 0; padding-left: 0; }
  .hero-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
  .hero-badge b   { font-size: 11px; font-weight: 800; display: block; line-height: 1.2; }
  .hero-badge span { font-size: 10px; color: rgba(255,255,255,.6); display: block; margin-top: 1px; }

  /* CTAs side by side */
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-actions .btn { width: 100%; height: 52px; font-size: 13px; padding: 0 12px; }

  /* ── Mobile phone + cards section ── */
  .mobile-phone-section {
    display: block;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .mobile-phone-row {
    display: flex; align-items: flex-end;
    padding: 10px 16px 0; gap: 12px;
  }
  .mobile-phone-col { flex: 0 0 54%; }
  .mobile-phone-img {
    width: 100%; height: auto; display: block;
    filter: drop-shadow(0 16px 40px rgba(0,0,0,.9));
  }
  .mobile-cards-col {
    flex: 1; display: flex; flex-direction: column;
    justify-content: center; gap: 10px; padding-bottom: 20px;
  }
  .mob-card-img {
    width: 100%; display: block;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,.4);
  }

  /* ── Environments: icon above text, 4-column ── */
  .environments-strip { padding: 28px 12px; }
  .strip-heading { font-size: 11px; margin-bottom: 24px; }
  .strip-grid {
    grid-template-columns: repeat(4,1fr);
    background: none; gap: 0;
    border-top: 1px solid rgba(0,0,0,.08);
  }
  .strip-item {
    flex-direction: column; align-items: center;
    text-align: center; padding: 14px 6px;
    border-left: 1px solid rgba(0,0,0,.08); gap: 8px;
  }
  .strip-item:first-child { border-left: none; }
  .strip-item svg { width: 32px; height: 32px; }
  .strip-item b { font-size: 11px; line-height: 1.3; margin-bottom: 0; }
  .strip-item span { display: none; }


  /* Mobile feature cards: frameless larger icons */
  .mob-fc {
    white-space: normal;
    padding: 12px 14px;
    gap: 12px;
  }
  .mob-fc .fc-icon { width: 44px; height: 44px; background: none; }
  .mob-fc b { font-size: 13px; }
  .mob-fc span { font-size: 11px; }

  /* ── Remaining sections ── */
  .content-section { padding: 44px 20px; }
  .content-section h2 { font-size: clamp(26px,8vw,38px); letter-spacing: -1px; }
  .content-section p { font-size: 16px; }
  .video-section { grid-template-columns: 1fr; gap: 32px; }
  .video-frame video { max-height: calc(100svh - 180px); }
  .live-grid { grid-template-columns: 1fr; gap: 12px; }
  .live-card {
    min-height: 130px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 18px 20px;
  }
  .live-card span { font-size: 10px; }
  .live-card b { font-size: 20px; }
  .live-card em { font-size: 13px; }
  .analytics-section { grid-template-columns: 1fr; gap: 32px; }
  .dash-stats { grid-template-columns: repeat(2,1fr); }
  .dash-panels { grid-template-columns: 1fr; }
  .dash-footer { grid-template-columns: 1fr; gap: 12px; }
  .cta-section { flex-direction: column; text-align: center; padding: 48px 20px 60px; }
  .cta-text h2 { font-size: clamp(24px,8vw,38px); }
  .cta-section .btn { width: 100%; max-width: 320px; }
  .cta-contact { align-items: center; }
}


/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px clamp(20px, 4vw, 64px);
  text-align: center;
}
.site-footer p {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  margin: 0;
}
