/* ============================================================
   Danger Power Inc. — Site Stylesheet
   Modern, responsive, accessible. No framework dependencies.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette */
  /* Black base (token names kept as "navy-*" for stability) */
  --navy-900: #0a0a0c;
  --navy-800: #141417;
  --navy-700: #1d1d22;
  --navy-600: #2a2a30;
  --navy-500: #3a3a42;

  /* Red accent (token names kept as "amber-*") */
  --amber-500: #e11d2a;   /* danger red — primary accent */
  --amber-400: #f23b43;
  --amber-300: #ff7178;

  /* Secondary red (token names kept as "green-*") */
  --green-500: #c1121f;
  --green-400: #e63946;

  --ink: #141316;
  --slate-700: #3a3a40;
  --slate-500: #62626a;
  --slate-400: #8a8a92;
  --line: #e5e5e8;
  --mist: #f6f6f7;
  --mist-2: #efeff1;
  --white: #ffffff;

  /* Typography */
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Barlow Semi Condensed", "Barlow", system-ui, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(8, 22, 37, .08), 0 1px 2px rgba(8, 22, 37, .06);
  --shadow: 0 10px 30px rgba(8, 22, 37, .10);
  --shadow-lg: 0 24px 60px rgba(8, 22, 37, .18);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-800);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { color: var(--slate-700); }
strong { color: var(--slate-700); font-weight: 600; }

::selection { background: var(--amber-300); color: var(--navy-900); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--tight { padding: clamp(40px, 5vw, 70px) 0; }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy-800); color: #c9d6e3; }
.section--navy h2, .section--navy h3 { color: var(--white); }

.center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--slate-500); }
.section--navy .lead { color: #aebed0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber-500);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--amber-500); display: inline-block; }
.center .eyebrow::after { content: ""; width: 26px; height: 2px; background: var(--amber-500); display: inline-block; }

.section-head { max-width: 720px; margin-bottom: 48px; }
.center.section-head, .section-head.center { margin-inline: auto; }
.section-head h2 { margin: .55rem 0 .9rem; }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; letter-spacing: .02em;
  padding: .85rem 1.6rem; border-radius: var(--radius-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  white-space: nowrap; line-height: 1; font-size: 1.02rem;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--amber-500); color: #fff; box-shadow: 0 8px 20px rgba(225, 29, 42, .32); }
.btn-primary:hover { background: var(--amber-400); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(225, 29, 42, .42); }
.btn-dark { background: var(--navy-800); color: var(--white); }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy-800); box-shadow: inset 0 0 0 2px var(--line); }
.btn-outline:hover { box-shadow: inset 0 0 0 2px var(--navy-800); transform: translateY(-2px); }
.btn-ghost-light { color: var(--white); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .35); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .1); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 31, 51, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled { background: var(--navy-900); box-shadow: 0 6px 24px rgba(0, 0, 0, .28); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }
.brand-name { font-family: var(--font-head); font-weight: 700; color: var(--white); line-height: 1; font-size: 1.28rem; letter-spacing: .01em; }
.brand-name span { color: var(--amber-500); }
.brand-name .brand-sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--slate-400); margin-top: 3px; }
.brand-name .brand-c { font-size: .42em; vertical-align: super; color: var(--slate-400); margin-left: 1px; font-weight: 600; }
.brand-logo { display: inline-flex; align-items: flex-start; gap: 3px; background: #fff; border-radius: 10px; padding: 7px 12px; line-height: 0; box-shadow: 0 3px 14px rgba(0, 0, 0, .45); }
.brand-logo img { height: 54px; width: auto; display: block; }
.brand-logo .brand-c { font-size: 11px; line-height: 1; color: #6b7280; font-weight: 700; margin-top: 1px; }
.footer-brand .brand-logo { padding: 7px 11px; box-shadow: none; }
.footer-brand .brand-logo img { height: 44px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: #cfdbe8; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem;
  padding: .55rem .85rem; border-radius: 8px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255, 255, 255, .07); }
.nav-links a.active { color: var(--amber-400); }

.nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--white); font-family: var(--font-head); font-weight: 700; }
.nav-phone svg { width: 18px; height: 18px; color: var(--amber-500); }
.nav-phone:hover { color: var(--amber-400); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 10px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: .25s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--white); overflow: hidden;
  background:
    radial-gradient(1100px 600px at 75% -10%, rgba(225, 29, 42, .22), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(140, 15, 20, .28), transparent 55%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-600) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(80% 80% at 60% 30%, #000, transparent);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; padding: clamp(60px, 9vw, 120px) 0 clamp(70px, 9vw, 120px); }
.hero h1 { color: var(--white); margin-bottom: 1.1rem; }
.hero h1 .hl { color: var(--amber-400); }
.hero p { color: #c4d2e1; font-size: 1.2rem; max-width: 540px; margin-bottom: 1.8rem; }
.hero .btn-row { margin-bottom: 2.2rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px 20px; color: #9fb1c4; font-weight: 600; font-size: .95rem; }
.hero-tags span { display: inline-flex; align-items: center; gap: 8px; }
.hero-tags svg { width: 18px; height: 18px; color: var(--green-400); }

.hero-card {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 6px; }
.hero-card .muted { color: #9fb1c4; font-size: .95rem; margin-bottom: 20px; }
.hero-card .pillars { display: grid; gap: 12px; }
.hero-pillar { display: flex; gap: 14px; align-items: flex-start; padding: 14px; border-radius: var(--radius-sm); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); }
.hero-pillar .ic { width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px; background: var(--amber-500); color: #fff; display: grid; place-items: center; }
.hero-pillar .ic svg { width: 22px; height: 22px; }
.hero-pillar b { color: var(--white); display: block; font-family: var(--font-head); font-size: 1.05rem; }
.hero-pillar small { color: #9fb1c4; font-size: .88rem; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--navy-900); border-bottom: 1px solid rgba(255, 255, 255, .07); }
.trustbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 30px; padding-block: 18px; }
.trustbar .item { display: inline-flex; align-items: center; gap: 10px; color: #b9c7d6; font-weight: 600; font-size: .95rem; }
.trustbar .item svg { width: 20px; height: 20px; color: var(--amber-500); }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card .ic {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500)); color: var(--amber-400);
}
.card .ic svg { width: 28px; height: 28px; }
.card.green .ic { background: linear-gradient(135deg, #7a0b12, var(--green-500)); color: #ffe3e5; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--slate-500); font-size: 1rem; }
.card ul.ticks { margin-top: 14px; display: grid; gap: 8px; }
.card ul.ticks li { position: relative; padding-left: 26px; color: var(--slate-700); font-size: .98rem; }
.card ul.ticks li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--green-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--navy-700); font-family: var(--font-head); font-weight: 700; }
.card-link svg { width: 18px; height: 18px; transition: transform .2s; }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- EPC pillars ---------- */
.pillar {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; height: 100%;
  position: relative; overflow: hidden;
}
.pillar .step { font-family: var(--font-head); font-weight: 700; font-size: 3.4rem; color: var(--mist-2); line-height: 1; position: absolute; top: 16px; right: 22px; }
.pillar .ic { width: 60px; height: 60px; border-radius: 16px; background: var(--navy-800); color: var(--amber-400); display: grid; place-items: center; margin-bottom: 18px; }
.pillar .ic svg { width: 30px; height: 30px; }
.pillar h3 { margin-bottom: .5rem; }
.pillar p { color: var(--slate-500); }
.pillar ul.ticks { margin-top: 16px; display: grid; gap: 9px; }
.pillar ul.ticks li { position: relative; padding-left: 26px; font-size: .98rem; color: var(--slate-700); }
.pillar ul.ticks li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--amber-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* ---------- Process timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.tl-step { position: relative; padding-top: 46px; }
.tl-step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--amber-500); color: #fff; font-family: var(--font-head); font-weight: 700;
  display: grid; place-items: center; z-index: 1;
}
.tl-step::after { content: ""; position: absolute; top: 17px; left: 36px; right: -18px; height: 2px; background: var(--line); }
.tl-step:last-child::after { display: none; }
.tl-step h4 { font-size: 1.1rem; margin-bottom: 4px; color: var(--navy-800); }
.tl-step p { font-size: .92rem; color: var(--slate-500); }
.section--navy .tl-step h4 { color: var(--white); }
.section--navy .tl-step::after { background: rgba(255, 255, 255, .15); }
.section--navy .tl-step p { color: #aebed0; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem, 4vw, 3.2rem); color: var(--amber-400); line-height: 1; }
.stat .label { color: #aebed0; font-size: .98rem; margin-top: 6px; }

/* ---------- Split / feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.split-media img, .split-media svg { width: 100%; height: 100%; object-fit: cover; }
.split h2 { margin-bottom: 1rem; }
.feature-list { display: grid; gap: 18px; margin-top: 22px; }
.feature-list li { display: flex; gap: 16px; }
.feature-list .ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--mist); color: var(--navy-700); display: grid; place-items: center; }
.feature-list .ic svg { width: 24px; height: 24px; }
.feature-list b { display: block; font-family: var(--font-head); color: var(--navy-800); font-size: 1.12rem; }
.feature-list p { color: var(--slate-500); font-size: .98rem; }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); height: 100%; }
.quote-card .stars { color: var(--amber-500); letter-spacing: 2px; margin-bottom: 14px; font-size: 1.1rem; }
.quote-card blockquote { font-size: 1.08rem; color: var(--slate-700); margin-bottom: 18px; }
.quote-card .who { display: flex; align-items: center; gap: 12px; }
.quote-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-600), var(--navy-500)); color: var(--white); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote-card .who b { color: var(--navy-800); font-family: var(--font-head); }
.quote-card .who small { color: var(--slate-400); display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; color: var(--white); border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 70px); text-align: center;
  background: radial-gradient(700px 400px at 80% -20%, rgba(225, 29, 42, .30), transparent 60%), linear-gradient(135deg, var(--navy-800), var(--navy-600));
}
.cta-band h2 { color: var(--white); margin-bottom: .7rem; }
.cta-band p { color: #c4d2e1; max-width: 620px; margin: 0 auto 1.8rem; font-size: 1.12rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; color: var(--white); overflow: hidden; padding: clamp(60px, 8vw, 96px) 0 clamp(50px, 7vw, 80px);
  background: radial-gradient(900px 500px at 80% -30%, rgba(225, 29, 42, .22), transparent 60%), linear-gradient(150deg, var(--navy-900), var(--navy-700)); }
.page-hero h1 { color: var(--white); margin: .6rem 0 .8rem; max-width: 16ch; }
.page-hero p { color: #c4d2e1; font-size: 1.15rem; max-width: 620px; }
.breadcrumb { color: var(--slate-400); font-size: .92rem; }
.breadcrumb a:hover { color: var(--amber-400); }
.breadcrumb span { color: var(--amber-400); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 600; color: var(--navy-800); font-size: .96rem; }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: .8rem .9rem; color: var(--ink); background: var(--white); transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber-500); box-shadow: 0 0 0 3px rgba(225, 29, 42, .18); }
.field .err { color: #d23b3b; font-size: .85rem; display: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #d23b3b; }
.field.invalid .err { display: block; }
.form-note { font-size: .9rem; color: var(--slate-400); }
.form-success { display: none; background: #e8f7ef; border: 1px solid #b6e6cd; color: #14613b; padding: 16px 18px; border-radius: var(--radius-sm); font-weight: 600; }
.form-success.show { display: block; }

/* contact info cards */
.info-card { display: flex; gap: 16px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.info-card .ic { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--navy-800); color: var(--amber-400); display: grid; place-items: center; }
.info-card .ic svg { width: 24px; height: 24px; }
.info-card b { font-family: var(--font-head); color: var(--navy-800); display: block; font-size: 1.08rem; }
.info-card a, .info-card p { color: var(--slate-500); }
.info-card a:hover { color: var(--navy-700); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #9fb1c4; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.site-footer h4 { color: var(--white); font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a:hover { color: var(--amber-400); }
.footer-links { display: grid; gap: 11px; }
.footer-about p { margin: 16px 0; max-width: 34ch; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 40px; }
.footer-brand .brand-name { font-size: 1.2rem; }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 13px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--amber-500); flex-shrink: 0; margin-top: 4px; }
.lic-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.lic-badges span { font-size: .82rem; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); padding: 5px 10px; border-radius: 7px; color: #c4d2e1; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .9rem; color: var(--slate-400); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, .06); display: grid; place-items: center; color: #c4d2e1; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--amber-500); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Misc ---------- */
.divider-cta { margin-top: -1px; }
.badge-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(225,29,42,.14); color: var(--amber-400); border:1px solid rgba(225,29,42,.4); font-family: var(--font-head); font-weight:700; padding:.4rem .9rem; border-radius:999px; font-size:.85rem; letter-spacing:.04em; }

/* ---------- Scope / capabilities matrix ---------- */
.scope-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.scope-col { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.scope-col .h { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.scope-col .h .ic { width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy-700), var(--navy-500)); color: var(--amber-400); }
.scope-col .h .ic svg { width: 22px; height: 22px; }
.scope-col.green .h .ic { background: linear-gradient(135deg, #7a0b12, var(--green-500)); color: #ffe3e5; }
.scope-col .h b { font-family: var(--font-head); font-size: 1.14rem; color: var(--navy-800); line-height: 1.1; }
.scope-col ul { display: grid; gap: 10px; }
.scope-col li { position: relative; padding-left: 20px; font-size: .96rem; color: var(--slate-700); line-height: 1.4; }
.scope-col li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--amber-500); }
.scope-col.green li::before { background: var(--green-500); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-card { max-width: 520px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .tl-step::after { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .brand-logo img { height: 46px; }
}

@media (max-width: 760px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .brand-logo { padding: 6px 9px; box-shadow: 0 2px 9px rgba(0, 0, 0, .4); }
  .brand-logo img { height: 42px; }
  .mobile-menu {
    position: fixed; inset: 76px 0 0 0; background: var(--navy-900); z-index: 99;
    transform: translateX(100%); transition: transform .3s var(--ease); padding: 28px 22px; overflow-y: auto;
    display: flex; flex-direction: column; gap: 6px;
  }
  .mobile-menu.open { transform: none; }
  .mobile-menu a { color: #e3edf6; font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; padding: 14px 8px; border-bottom: 1px solid rgba(255, 255, 255, .07); }
  .mobile-menu .btn { margin-top: 18px; }
  .mobile-menu .m-phone { color: var(--amber-400); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}

@media (min-width: 761px) { .mobile-menu { display: none; } }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
