/* ============================================================
   DRIVVEN — Accident Management Solutions
   Futuristic premium theme
============================================================ */

:root {
  --ink: #0B0D12;
  --ink-2: #0F121A;
  --panel: #141821;
  --panel-2: #191E29;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --red: #E23A2E;
  --red-2: #ff5646;
  --red-deep: #B62A22;
  --red-glow: rgba(226, 58, 46, 0.45);

  --text: #EEF1F7;
  --muted: #98A0AF;
  --muted-2: #6E7686;

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;

  --ff-display: "Space Grotesk", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* radial ambient background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 80% -10%, rgba(226, 58, 46, 0.12), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(60, 90, 200, 0.08), transparent 60%),
    var(--ink);
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
sup { font-size: 0.6em; color: var(--red-2); }

::selection { background: var(--red); color: #fff; }

h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }

.grad {
  background: linear-gradient(100deg, var(--red-2), var(--red) 45%, #ff8a7d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #2a2f3b; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-deep); }

/* ============================================================
   PRELOADER
============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  background: var(--ink);
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; }
.preloader__logo {
  font-family: var(--ff-display); font-weight: 700; font-size: clamp(2.4rem, 7vw, 4rem);
  letter-spacing: -0.03em; color: var(--text);
}
.preloader__logo span { color: var(--red); }
.preloader__bar {
  width: 220px; max-width: 60vw; height: 3px; margin: 22px auto 14px;
  background: rgba(255, 255, 255, 0.1); border-radius: 3px; overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--red-deep), var(--red-2));
  animation: load 1.5s var(--ease) forwards;
}
@keyframes load { to { width: 100%; } }
.preloader__tag { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.28em; text-transform: uppercase; }

/* ============================================================
   CURSOR GLOW + SCROLL PROGRESS
============================================================ */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 340px; height: 340px; z-index: 1;
  border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--red-glow), transparent 62%);
  opacity: 0; transition: opacity 0.4s; mix-blend-mode: screen; filter: blur(6px);
}
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 999;
  background: linear-gradient(90deg, var(--red-deep), var(--red-2));
  box-shadow: 0 0 12px var(--red-glow);
}

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 18px 0; transition: padding 0.35s var(--ease), background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  padding: 10px 0; background: rgba(11, 13, 18, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; flex-direction: column; line-height: 1; align-items: flex-start; }
.brand__logo { height: 34px; width: auto; transition: height 0.35s var(--ease); }
.nav.is-stuck .brand__logo { height: 30px; }
.brand__word {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.55rem;
  letter-spacing: -0.03em; color: var(--text);
}
.brand__accent { color: var(--red); position: relative; }
.brand__sub {
  font-size: 0.56rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px; font-family: var(--ff-body); font-weight: 500;
}

.nav__menu { display: flex; align-items: center; gap: 34px; }
.nav__menu a { font-size: 0.92rem; font-weight: 500; color: var(--muted); position: relative; transition: color 0.25s; }
.nav__menu a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--red); transition: width 0.3s var(--ease);
}
.nav__menu a:not(.nav__cta):hover { color: var(--text); }
.nav__menu a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  padding: 10px 20px; border-radius: 999px; color: #fff !important;
  background: linear-gradient(120deg, var(--red-deep), var(--red));
  box-shadow: 0 8px 24px -8px var(--red-glow); font-weight: 600;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px var(--red-glow); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s var(--ease); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; font-weight: 600; font-size: 0.96rem;
  cursor: pointer; border: 1px solid transparent; transition: 0.3s var(--ease);
  font-family: var(--ff-body);
}
.btn--sm { padding: 11px 20px; font-size: 0.9rem; }
.btn--block { width: 100%; justify-content: center; }
.btn__arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(5px); }

.btn--primary {
  color: #fff; background: linear-gradient(120deg, var(--red-deep), var(--red));
  box-shadow: 0 12px 30px -10px var(--red-glow);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px var(--red-glow); }

.btn--ghost { color: var(--text); border-color: var(--line-strong); background: rgba(255, 255, 255, 0.02); }
.btn--ghost:hover { border-color: var(--red); background: rgba(226, 58, 46, 0.08); transform: translateY(-3px); }

/* ============================================================
   HELPERS
============================================================ */
.eyebrow {
  display: inline-block; font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--red-2); font-weight: 600; margin-bottom: 16px;
}
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px; font-size: 0.82rem; font-weight: 500;
  color: var(--text); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 var(--red-glow); animation: ping 1.8s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 var(--red-glow); } 70% { box-shadow: 0 0 0 10px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

.section { padding: 110px 0; position: relative; }
.section__head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section__title { font-size: clamp(2rem, 4.4vw, 3.3rem); }
.section__lead { color: var(--muted); font-size: 1.06rem; margin-top: 18px; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   HERO — CINEMATIC SLIDER
============================================================ */
.hero { position: relative; height: 100vh; min-height: 660px; overflow: hidden; background: var(--ink); }
.hero__slides { position: absolute; inset: 0; z-index: 0; }

.hero__slide {
  position: absolute; inset: 0; display: flex; align-items: center;
  opacity: 0; visibility: hidden; transition: opacity 1.1s var(--ease), visibility 1.1s;
}
.hero__slide.is-active { opacity: 1; visibility: visible; }

.hero__parallax { position: absolute; inset: 0; overflow: hidden; will-change: transform; }
.hero__bg {
  position: absolute; top: -8%; left: -4%; width: 108%; height: 118%;
  background-size: cover; background-position: center; transform: scale(1.04);
}
.hero__slide.is-active .hero__bg { animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.16); } }

.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 11, 15, 0.94) 0%, rgba(9, 11, 15, 0.72) 42%, rgba(9, 11, 15, 0.28) 78%, rgba(9, 11, 15, 0.15) 100%),
    linear-gradient(0deg, rgba(9, 11, 15, 0.92) 0%, rgba(9, 11, 15, 0.15) 38%, transparent 60%);
}

.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 640px; }
.hero__content > * { opacity: 0; }
.hero__slide.is-active .hero__content > * { animation: heroUp 0.9s var(--ease) forwards; }
.hero__slide.is-active .hero__content > *:nth-child(1) { animation-delay: 0.15s; }
.hero__slide.is-active .hero__content > *:nth-child(2) { animation-delay: 0.30s; }
.hero__slide.is-active .hero__content > *:nth-child(3) { animation-delay: 0.45s; }
.hero__slide.is-active .hero__content > *:nth-child(4) { animation-delay: 0.60s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: none; } }

.hero__title {
  font-size: clamp(2.5rem, 5.6vw, 4.6rem); letter-spacing: -0.035em; margin: 22px 0;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.5);
}
.hero__lead { color: rgba(238, 241, 247, 0.82); font-size: 1.14rem; max-width: 540px; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4); }
.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero__grid {
  position: absolute; inset: 0; z-index: 1; opacity: 0.22; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 40%, #000 30%, transparent 80%);
  animation: gridpan 24s linear infinite;
}
@keyframes gridpan { to { background-position: 60px 60px; } }

/* ---- slider controls ---- */
.hero__nav { position: absolute; left: 0; right: 0; bottom: 116px; z-index: 4; }
.hero__nav-row { display: flex; align-items: center; gap: 16px; }
.hero__arrow {
  width: 48px; height: 48px; flex: 0 0 auto; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-strong); background: rgba(9, 11, 15, 0.45); backdrop-filter: blur(10px);
  color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; transition: 0.3s var(--ease);
}
.hero__arrow:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); box-shadow: 0 10px 24px -8px var(--red-glow); }
.hero__dots { display: flex; gap: 10px; }
.hero__dot {
  width: 40px; height: 4px; border-radius: 4px; background: rgba(255, 255, 255, 0.24);
  cursor: pointer; position: relative; overflow: hidden; transition: background 0.3s;
}
.hero__dot::after { content: ""; position: absolute; inset: 0; width: 0; background: var(--red); }
.hero__dot.is-active { background: rgba(255, 255, 255, 0.35); }
.hero__dot.is-active::after { animation: dotfill 6s linear forwards; }
@keyframes dotfill { to { width: 100%; } }
.hero__scroll {
  margin-left: auto; display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll span { display: inline-block; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(5px); } }

/* hero marquee */
.hero__marquee { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 18px 0; border-top: 1px solid var(--line); background: rgba(9, 11, 15, 0.55); backdrop-filter: blur(8px); }
.marquee { overflow: hidden; }
.marquee__track { display: flex; align-items: center; gap: 26px; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: var(--ff-display); font-weight: 600; font-size: 1rem; color: var(--muted); white-space: nowrap; }
.marquee__track i { color: var(--red); font-size: 0.6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   STATS
============================================================ */
.stats { padding: 70px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.015); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat__num { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.6rem); letter-spacing: -0.03em; line-height: 1; }
.stat__num i { font-style: normal; color: var(--red); }
.stat p { color: var(--muted); font-size: 0.9rem; margin-top: 12px; padding: 0 6px; }

/* ============================================================
   CARDS / SERVICES
============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative; padding: 30px; border-radius: var(--radius);
  background: linear-gradient(165deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line); overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(226, 58, 46, 0.14), transparent 55%);
}
.card:hover { border-color: rgba(226, 58, 46, 0.4); box-shadow: 0 30px 60px -30px rgba(226, 58, 46, 0.4); }
.card:hover::before { opacity: 1; }
.card__ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(145deg, rgba(226, 58, 46, 0.18), rgba(226, 58, 46, 0.04));
  border: 1px solid rgba(226, 58, 46, 0.25);
}
.card__ic svg { width: 28px; height: 28px; fill: none; stroke: var(--red-2); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card__tag { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red-2); font-weight: 600; }
.card h3 { font-size: 1.28rem; margin: 8px 0 12px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card__link { display: inline-block; margin-top: 18px; color: var(--text); font-weight: 600; font-size: 0.9rem; transition: color 0.25s, letter-spacing 0.25s; }
.card__link:hover { color: var(--red-2); letter-spacing: 0.01em; }

.card--feature { background: linear-gradient(165deg, rgba(226, 58, 46, 0.16), var(--ink-2)); border-color: rgba(226, 58, 46, 0.3); }
.card--cta { display: flex; flex-direction: column; justify-content: center; text-align: center; align-items: center; background: linear-gradient(165deg, var(--panel-2), var(--ink-2)); }
.card--cta h3 { font-size: 1.4rem; }
.card--cta p { margin-bottom: 20px; }

/* ============================================================
   SECTORS
============================================================ */
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sector {
  padding: 34px 30px; border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--ink-2)); position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.sector:hover { transform: translateY(-8px); border-color: var(--line-strong); }
.sector__no { font-family: var(--ff-display); font-size: 3rem; font-weight: 700; color: rgba(255, 255, 255, 0.06); position: absolute; top: 14px; right: 22px; }
.sector h3 { font-size: 1.4rem; margin-bottom: 12px; }
.sector p { color: var(--muted); font-size: 0.95rem; }
.sector ul { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
.sector li { position: relative; padding-left: 24px; font-size: 0.9rem; color: var(--text); }
.sector li::before { content: "▹"; position: absolute; left: 0; color: var(--red); }

/* ============================================================
   PROCESS / TIMELINE
============================================================ */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, transparent, var(--red-deep), var(--red), var(--red-deep), transparent); opacity: 0.5; }
.tl { text-align: center; position: relative; }
.tl__node {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; color: #fff; position: relative; z-index: 1;
  background: linear-gradient(145deg, var(--red-deep), var(--red)); box-shadow: 0 0 0 6px var(--ink), 0 10px 24px -8px var(--red-glow);
}
.tl h3 { font-size: 1.2rem; margin-bottom: 8px; }
.tl p { color: var(--muted); font-size: 0.92rem; padding: 0 8px; }

/* ============================================================
   ELECTRIC
============================================================ */
.electric { overflow: hidden; }
.electric__glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(53, 208, 127, 0.14), transparent 62%); top: -10%; right: -10%; filter: blur(30px); }
.electric__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.ticklist { list-style: none; margin: 26px 0 32px; display: grid; gap: 14px; }
.ticklist li { position: relative; padding-left: 34px; color: var(--text); }
.ticklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: 0.72rem; font-weight: 700; color: #06210f; background: #35d07f;
}

.electric__viz { display: flex; justify-content: center; }
.ev-card {
  width: 100%; max-width: 380px; padding: 30px; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line-strong); backdrop-filter: blur(14px); box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.6);
}
.ev-ring { position: relative; width: 170px; height: 170px; margin: 0 auto 24px; }
.ev-ring svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.ev-ring__bg { fill: none; stroke: rgba(255, 255, 255, 0.08); stroke-width: 8; }
.ev-ring__fg { fill: none; stroke: url(#g); stroke: #35d07f; stroke-width: 8; stroke-linecap: round; stroke-dasharray: 327; stroke-dashoffset: 327; transition: stroke-dashoffset 1.6s var(--ease); filter: drop-shadow(0 0 6px rgba(53, 208, 127, 0.6)); }
.ev-ring.is-in .ev-ring__fg { stroke-dashoffset: 42; }
.ev-ring__label { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.ev-ring__label b { font-family: var(--ff-display); font-size: 2.2rem; display: block; }
.ev-ring__label span { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.ev-card__rows { display: grid; gap: 4px; }
.ev-row { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--line); font-size: 0.92rem; }
.ev-row span { color: var(--muted); }
.ev-row b.ok { color: #35d07f; }

/* ============================================================
   ABOUT
============================================================ */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.about__intro { position: sticky; top: 110px; }
.about__actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feat { padding: 28px; border-radius: var(--radius); background: linear-gradient(165deg, var(--panel), var(--ink-2)); border: 1px solid var(--line); transition: transform 0.4s var(--ease), border-color 0.4s; }
.feat:hover { transform: translateY(-6px); border-color: rgba(226, 58, 46, 0.35); }
.feat__ic { font-size: 1.6rem; color: var(--red); margin-bottom: 14px; }
.feat h3 { font-size: 1.14rem; margin-bottom: 8px; }
.feat p { color: var(--muted); font-size: 0.92rem; }

/* ============================================================
   AWARDS
============================================================ */
.awards__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; }
.award { text-align: center; padding: 30px 20px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, var(--panel), var(--ink-2)); transition: transform 0.4s var(--ease); }
.award:hover { transform: translateY(-6px); }
.award__ic { font-size: 2rem; display: block; margin-bottom: 12px; }
.award b { font-family: var(--ff-display); display: block; font-size: 1.05rem; }
.award small { color: var(--muted); font-size: 0.82rem; }

.quote-band { max-width: 900px; margin: 0 auto; text-align: center; padding: 46px 40px; border-radius: var(--radius); background: linear-gradient(160deg, rgba(226, 58, 46, 0.1), var(--ink-2)); border: 1px solid rgba(226, 58, 46, 0.22); }
.quote-band blockquote { font-family: var(--ff-display); font-size: clamp(1.15rem, 2.4vw, 1.6rem); line-height: 1.4; letter-spacing: -0.01em; }
.quote-band__by { display: inline-flex; align-items: center; gap: 14px; margin-top: 26px; }
.quote-band__avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; background: linear-gradient(145deg, var(--red-deep), var(--red)); color: #fff; }
.quote-band__by b { display: block; }
.quote-band__by small { color: var(--muted); }
.quote-band__by div { text-align: left; }

/* ============================================================
   CONTACT
============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__list { list-style: none; margin-top: 34px; display: grid; gap: 2px; }
.contact__list li { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-top: 1px solid var(--line); }
.contact__list span { color: var(--muted); font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; }
.contact__list a, .contact__list b { font-family: var(--ff-display); font-size: 1.05rem; }
.contact__list a:hover { color: var(--red-2); }

.contact__form { padding: 34px; border-radius: var(--radius); background: linear-gradient(165deg, var(--panel), var(--ink-2)); border: 1px solid var(--line); }
.field { position: relative; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 16px 14px; border-radius: var(--radius-sm); font-family: var(--ff-body); font-size: 0.96rem;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line-strong); color: var(--text); transition: border-color 0.25s, box-shadow 0.25s;
}
.field textarea { resize: vertical; }
.field select { color: var(--muted); cursor: pointer; }
.field select option { background: var(--panel); color: var(--text); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(226, 58, 46, 0.18); }
.field label {
  position: absolute; left: 14px; top: 16px; color: var(--muted); font-size: 0.96rem; pointer-events: none;
  transition: 0.2s var(--ease); background: linear-gradient(180deg, transparent 45%, #12151d 45%); padding: 0 4px;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: -9px; left: 10px; font-size: 0.74rem; color: var(--red-2);
}
.form-note { margin-top: 14px; font-size: 0.9rem; color: #35d07f; min-height: 20px; text-align: center; }

/* ============================================================
   FOOTER
============================================================ */
.footer { border-top: 1px solid var(--line); padding-top: 70px; background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3)); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.brand--footer { margin-bottom: 18px; }
.footer__brand p { color: var(--muted); font-size: 0.92rem; max-width: 320px; }
.footer__col h4 { font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text); margin-bottom: 18px; }
.footer__col a { display: block; color: var(--muted); font-size: 0.92rem; padding: 6px 0; transition: color 0.25s, padding-left 0.25s; }
.footer__col a:hover { color: var(--red-2); padding-left: 5px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 26px 0; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 0.84rem; }
.footer__fine { color: var(--muted-2); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 980px) {
  .hero__overlay { background:
    linear-gradient(90deg, rgba(9, 11, 15, 0.92) 0%, rgba(9, 11, 15, 0.7) 60%, rgba(9, 11, 15, 0.4) 100%),
    linear-gradient(0deg, rgba(9, 11, 15, 0.95) 0%, rgba(9, 11, 15, 0.2) 45%, transparent 65%); }
  .cards, .sector-grid, .awards__grid, .about__features { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .timeline::before { display: none; }
  .electric__inner, .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__intro { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px; padding: 40px;
    background: rgba(15, 18, 26, 0.96); backdrop-filter: blur(20px); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform 0.4s var(--ease); z-index: 899;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu a { font-size: 1.15rem; }
  .nav__toggle { display: flex; z-index: 901; }
  .section { padding: 80px 0; }
  .cards, .sector-grid, .awards__grid, .about__features, .stats__grid, .timeline, .footer__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero { min-height: 600px; }
  .hero__nav { bottom: 104px; }
  .hero__arrow { width: 42px; height: 42px; font-size: 1.3rem; }
  .hero__scroll { display: none; }
  .hero__dots { flex: 1; }
  .hero__title { margin: 16px 0; }
  .brand__sub { display: none; }
  .footer__bottom { flex-direction: column; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
