/* ============================================================
   styles.css — VisionLogix  |  Bold Editorial Dark Theme
   Fonts: Bebas Neue (display) + Figtree (body)
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --bg:        #06080d;
  --bg2:       #0a0d14;
  --bg3:       #0f1420;
  --border:    rgba(255,255,255,0.07);
  --green:     #00ff88;       /* primary accent */
  --green-dim: rgba(0,255,136,0.12);
  --green-glow:rgba(0,255,136,0.3);
  --white:     #eef2ff;
  --muted:     #6b7a99;
  --red:       #ff4d4d;
  --yellow:    #ffd600;

  /* Fonts — NO stretching because we set specific weights */
  --ff-display: 'Bebas Neue', sans-serif;
  --ff-body:    'Figtree', sans-serif;

  --r:    12px;
  --r-lg: 20px;
  --ease: 0.3s ease;
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 400;          /* normal weight — prevents stretching */
  font-style: normal;        /* never italic by default */
  line-height: 1.65;
  overflow-x: hidden;
}
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; padding: 0; }
em  { font-style: italic; color: var(--green); }  /* italic = green accent */
strong { font-weight: 600; }

/* ── CUSTOM CURSOR ─────────────────────────────────────── */
#cursor {
  width: 12px; height: 12px;
  background: var(--green);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.2s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
body:hover #cursor { opacity: 1; }

/* ── CONTAINER ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-fill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green);
  color: #000;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 13px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--ease);
}
.btn-fill:hover { background: #33ffaa; transform: translateY(-2px); box-shadow: 0 8px 24px var(--green-glow); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent;
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--ease);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

.btn-full { width: 100%; justify-content: center; }

/* ── SECTION LABELS ────────────────────────────────────── */
.sec-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.sec-h2 {
  font-family: var(--ff-display);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sec-h2 em { font-style: italic; color: var(--green); }
.sec-h2.center { text-align: center; }

/* ── NAVBAR ────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 28px;
  transition: background 0.4s, border-color 0.4s;
}
#navbar.scrolled {
  background: rgba(6,8,13,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

/* LOGO — Bebas for mark, Figtree for name */
.logo { display: flex; align-items: center; gap: 10px; }
.lmark {
  background: var(--green);
  color: #000;
  font-family: var(--ff-display);
  font-size: 18px;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}
.lname {
  font-family: var(--ff-body);
  font-weight: 700;       /* specific weight — no stretching */
  font-size: 18px;
  letter-spacing: -0.3px;
}
.lname em { font-style: normal; color: var(--green); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  padding: 7px 13px;
  border-radius: 6px;
  color: var(--muted);
  transition: var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--green) !important; color: #000 !important; font-weight: 700 !important; }
.nav-cta:hover { background: #33ffaa !important; }

.nav-toggle { display: none; flex-direction: column; gap: 6px; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* ── MOBILE DRAWER ─────────────────────────────────────── */
.mob-drawer {
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  position: fixed; inset: 0;
  background: rgba(6,8,13,0.97);
  z-index: 200;
}
.mob-drawer.open { display: flex; }
.mob-close { position: absolute; top: 20px; right: 24px; font-size: 26px; color: var(--muted); cursor: pointer; background: none; border: none; }
.mob-lnk {
  font-family: var(--ff-display);
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--white);
  padding: 8px 24px;
  transition: var(--ease);
}
.mob-lnk:hover { color: var(--green); }
.mob-cta-lnk { color: var(--green); }

/* ── HERO ──────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 28px 60px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Film grain noise texture */
.noise-layer {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* Horizontal scan lines */
.scan-lines {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    rgba(0,255,136,0.015) 2px, rgba(0,255,136,0.015) 4px
  );
}

/* Hero text block */
.hero-left { position: relative; z-index: 2; flex: 1; max-width: 580px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-dim); border: 1px solid rgba(0,255,136,0.2);
  border-radius: 999px; padding: 5px 14px;
  font-size: 11px; font-weight: 600; color: var(--green);
  letter-spacing: 0.5px; margin-bottom: 24px;
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse { 0%,100%{box-shadow:0 0 0 0 rgba(0,255,136,.5)} 50%{box-shadow:0 0 0 6px rgba(0,255,136,0)} }

/* HERO HEADLINE — Bebas Neue, no letter-spacing weirdness */
.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(72px, 12vw, 140px);
  line-height: 0.92;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex; flex-direction: column;
  margin-bottom: 28px;
}
.hero-h1 .accent { color: var(--green); }

.hero-sub { font-size: 17px; color: var(--muted); max-width: 480px; margin-bottom: 32px; line-height: 1.7; font-weight: 400; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* Stats row */
.hero-stats { display: flex; align-items: center; gap: 0; }
.hst { display: flex; flex-direction: column; align-items: center; padding: 0 20px; }
.hst span { font-family: var(--ff-display); font-size: 32px; color: var(--green); line-height: 1; }
.hst p { font-size: 10px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }
.hst-bar { width: 1px; height: 36px; background: var(--border); }

/* Hero camera widget */
.hero-right { position: relative; z-index: 2; flex-shrink: 0; }

.cam-widget {
  width: 300px;
  background: #080d18;
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,255,136,0.06), 0 0 0 1px var(--border);
  font-family: var(--ff-body);
}
.cw-header {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #050810;
  border-bottom: 1px solid var(--border);
}
.cw-dots { display: flex; gap: 5px; }
.cw-dots span { width: 10px; height: 10px; border-radius: 50%; }
.cw-dots .r { background: #ff5f57; }
.cw-dots .y { background: #febc2e; }
.cw-dots .g { background: #28c840; }
.cw-title { font-size: 10px; color: var(--green); letter-spacing: 1px; margin-left: 4px; flex: 1; }
.cw-rec { font-size: 9px; color: var(--red); font-weight: 700; animation: blink 1s step-start infinite; }

.cw-screen {
  position: relative; height: 200px;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(255,100,0,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 70%, rgba(0,255,136,0.04) 0%, transparent 50%),
    #060c18;
  overflow: hidden;
}
.cw-sweep {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: 0 0 8px var(--green);
  animation: sweep 2s linear infinite;
}
@keyframes sweep { 0%{top:0%} 100%{top:100%} }

.cw-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,255,136,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,255,136,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.bbox {
  position: absolute;
  border: 1.5px solid var(--green);
  border-radius: 3px;
}
.bbox-a { top: 20%; left: 10%; width: 100px; height: 110px; }
.bbox-b { top: 30%; right: 12%; width: 70px; height: 90px; border-color: #00cfff; }
.bb-lbl {
  position: absolute; top: -18px; left: 0;
  font-size: 9px; font-weight: 600;
  background: var(--green); color: #000;
  padding: 2px 6px; border-radius: 3px; white-space: nowrap;
}
.bbox-b .bb-lbl { background: #00cfff; }
.cw-temp { position: absolute; top: 8px; right: 10px; font-size: 11px; color: #ff8844; font-weight: 600; }

.cw-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 14px;
  background: #050810;
  border-top: 1px solid var(--border);
  font-size: 10px; color: var(--muted);
}
.cw-alert { color: var(--red); font-weight: 700; animation: blink 0.8s step-start infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-scroll {
  position: absolute; bottom: 32px; left: 28px;
  font-size: 11px; letter-spacing: 3px;
  color: var(--muted); text-transform: uppercase;
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(4px)} }

/* ── ANIMATIONS ────────────────────────────────────────── */
.anim-up { opacity: 0; transform: translateY(32px); animation: riseUp 0.7s ease forwards; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.15s; }
.d3 { animation-delay: 0.25s; }
.d4 { animation-delay: 0.35s; }
.d5 { animation-delay: 0.45s; }
.d6 { animation-delay: 0.55s; }
@keyframes riseUp { to { opacity:1; transform:translateY(0); } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── TICKER ────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--green);
  overflow: hidden;
  padding: 12px 0;
}
.ticker-belt {
  display: flex; gap: 0; white-space: nowrap;
  animation: tickerRoll 25s linear infinite;
}
@keyframes tickerRoll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-belt span {
  font-family: var(--ff-body);
  font-weight: 600; font-size: 13px;
  color: #000; padding: 0 18px;
  letter-spacing: 0.5px;
}
.t-sep { color: rgba(0,0,0,0.3) !important; padding: 0 4px !important; }

/* ── SERVICES ──────────────────────────────────────────── */
#services { padding: 100px 0; background: var(--bg2); }

.split-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end;
  margin-bottom: 64px;
}
.sh-right { color: var(--muted); font-size: 16px; padding-bottom: 6px; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.svc-card:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.svc-feat { border-color: rgba(0,255,136,0.25); background: linear-gradient(135deg, rgba(0,255,136,0.04) 0%, var(--bg3) 60%); }

.svc-num { font-family: var(--ff-display); font-size: 48px; color: rgba(0,255,136,0.12); line-height: 1; margin-bottom: 8px; letter-spacing: 0; }
.svc-ico { font-size: 32px; margin-bottom: 12px; }
.svc-card h3 { font-family: var(--ff-body); font-weight: 700; font-size: 17px; margin-bottom: 10px; }
.svc-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

.pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.pills span {
  font-size: 10px; font-weight: 600; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--green-dim); color: var(--green);
}

.feat-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--green); color: #000;
  font-size: 9px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
}

/* ── PRODUCTS ──────────────────────────────────────────── */
#products { padding: 100px 0; background: var(--bg); }

.prod-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}
.prod-tag-strip {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 48px;
  background: var(--green);
  font-family: var(--ff-body);
  font-weight: 700; font-size: 12px; letter-spacing: 2px; color: #000;
  text-transform: uppercase;
}
.pts-line { flex: 1; height: 1px; background: rgba(0,0,0,0.2); }

.prod-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px 48px; align-items: center; }

.prod-h2 { font-family: var(--ff-display); font-size: clamp(48px, 5vw, 72px); line-height: 1; text-transform: uppercase; margin-bottom: 20px; }
.prod-h2 em { font-style: italic; color: var(--green); }
.prod-sub { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.prod-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.prod-list li { font-size: 14px; color: var(--white); padding-left: 20px; position: relative; }
.prod-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* Thermal UI mock */
.tui { background: #07101e; border: 1px solid rgba(0,255,136,0.15); border-radius: var(--r); overflow: hidden; font-family: var(--ff-body); }
.tui-top { display: flex; align-items: center; gap: 6px; padding: 11px 16px; background: #040810; border-bottom: 1px solid var(--border); font-size: 10px; color: var(--green); letter-spacing: 1px; }
.tui-dots { display: flex; gap: 5px; }
.tui-dots span { width: 10px; height: 10px; border-radius: 50%; }
.tui-dots .r { background: #ff5f57; }
.tui-dots .y { background: #febc2e; }
.tui-dots .g { background: #28c840; }
.tui-body { position: relative; height: 200px; background: radial-gradient(ellipse at 55% 45%, rgba(255,100,0,0.1) 0%, transparent 65%), #06101e; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.tui-scan { position: absolute; left: 0; right: 0; height: 1.5px; background: linear-gradient(90deg, transparent, rgba(0,255,136,0.6), transparent); animation: sweep 2.5s linear infinite; }
.tui-animal { font-size: 56px; filter: drop-shadow(0 0 20px rgba(255,120,0,0.5)); position: relative; z-index: 2; }
.tui-box { position: absolute; top: 50%; left: 50%; transform: translate(-42%, -55%); width: 108px; height: 102px; border: 1.5px solid var(--green); border-radius: 3px; }
.tui-conf { position: absolute; top: -18px; left: 0; font-size: 9px; background: var(--green); color: #000; padding: 2px 6px; border-radius: 3px; white-space: nowrap; font-weight: 700; }
.tui-heat { position: absolute; top: 10px; right: 14px; font-size: 12px; color: #ff7755; font-weight: 600; }
.tui-bot { display: flex; justify-content: space-between; padding: 10px 16px; background: #040810; border-top: 1px solid var(--border); font-size: 10px; color: var(--muted); }
.tui-blink { color: var(--red); font-weight: 700; animation: blink 0.9s step-start infinite; }

/* ── INDUSTRIES ────────────────────────────────────────── */
#industries { padding: 100px 0; background: var(--bg2); }

.sec-header-center { text-align: center; margin-bottom: 56px; }

.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ind-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 22px;
  transition: border-color var(--ease), transform var(--ease);
}
.ind-card:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-4px); }
.ind-card > span { font-size: 30px; display: block; margin-bottom: 12px; }
.ind-card h4 { font-weight: 700; font-size: 15px; margin-bottom: 7px; }
.ind-card p  { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── ABOUT ─────────────────────────────────────────────── */
#about { padding: 100px 0; background: var(--bg); }

.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-h2 { font-family: var(--ff-display); font-size: clamp(44px, 5.5vw, 72px); line-height: 1; text-transform: uppercase; margin-bottom: 20px; }
.about-h2 em { font-style: italic; color: var(--green); }
.about-left > p { font-size: 15px; color: var(--muted); margin-bottom: 12px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.about-tags span { font-size: 12px; font-weight: 600; padding: 7px 14px; border-radius: 8px; background: var(--green-dim); color: var(--green); border: 1px solid rgba(0,255,136,0.15); }

.about-right { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.big-m {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 22px;
  transition: border-color var(--ease), transform var(--ease);
}
.big-m:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-4px); }
.bm-shift { margin-top: 24px; }
.bm-val { font-family: var(--ff-display); font-size: 42px; color: var(--green); line-height: 1; display: block; margin-bottom: 6px; }
.bm-val em { font-style: normal; font-size: 28px; }
.big-m p { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; }

/* ── CONTACT ───────────────────────────────────────────── */
#contact { padding: 100px 0; background: var(--bg2); }

.contact-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }

.ctc-h2 { font-family: var(--ff-display); font-size: clamp(40px, 5vw, 64px); line-height: 1; text-transform: uppercase; margin-bottom: 16px; }
.ctc-h2 em { font-style: italic; color: var(--green); }
.ctc-left > p { font-size: 15px; color: var(--muted); margin-bottom: 32px; }

.ctc-info { display: flex; flex-direction: column; gap: 18px; }
.ci-row { display: flex; gap: 12px; align-items: flex-start; }
.ci-row > span { font-size: 18px; }
.ci-row strong { font-size: 12px; font-weight: 700; display: block; margin-bottom: 2px; }
.ci-row p { font-size: 13px; color: var(--muted); }

/* Form */
.ctc-right {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
}
.ctc-right h3 { font-family: var(--ff-body); font-weight: 700; font-size: 20px; margin-bottom: 28px; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.fg label { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.3px; }
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  padding: 11px 14px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;    /* ← prevents stretched text */
  outline: none;
  width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,255,136,0.1);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.2); }
.fg select option { background: var(--bg3); color: var(--white); }
.fg textarea { resize: vertical; min-height: 100px; }

.f-status {
  padding: 12px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 500;
  margin-bottom: 16px;
}
.f-status.ok  { background: rgba(0,255,136,0.08); border: 1px solid rgba(0,255,136,0.25); color: var(--green); }
.f-status.err { background: rgba(255,77,77,0.08);  border: 1px solid rgba(255,77,77,0.25);  color: var(--red); }
.f-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }

/* ── FOOTER ────────────────────────────────────────────── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 64px 0 24px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.foot-brand .logo { margin-bottom: 12px; }
.foot-brand p { font-size: 13px; color: var(--muted); max-width: 220px; }
footer h5 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; font-weight: 600; }
footer li { margin-bottom: 10px; }
footer a { font-size: 14px; color: var(--muted); transition: color var(--ease); }
footer a:hover { color: var(--green); }
.foot-bar { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.foot-bar p { font-size: 13px; color: var(--muted); }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  #hero       { flex-direction: column; align-items: flex-start; padding-top: 110px; }
  .hero-right { display: none; }
  .svc-grid   { grid-template-columns: repeat(2, 1fr); }
  .ind-grid   { grid-template-columns: repeat(2, 1fr); }
  .prod-inner { grid-template-columns: 1fr; }
  .about-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .split-header { grid-template-columns: 1fr; gap: 16px; }
  .foot-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }
  .svc-grid   { grid-template-columns: 1fr; }
  .frow       { grid-template-columns: 1fr; }
  .about-right { grid-template-columns: 1fr 1fr; }
  .prod-inner { padding: 32px 24px; }
  .prod-tag-strip { padding: 14px 24px; }
  .ctc-right  { padding: 28px; }
  .hero-h1    { font-size: clamp(60px, 18vw, 100px); }
  .hero-stats { flex-wrap: wrap; }
  .hst-bar    { display: none; }
  .foot-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .ind-grid   { grid-template-columns: 1fr; }
  .about-right { grid-template-columns: 1fr; }
  .hero-btns  { flex-direction: column; }
}