/* =====================================================================
   Aegis CyberOps — stylesheet
   Off-black OLED aesthetic · single yellow accent (brand logo)
   Organised: tokens → base → buttons → header/nav/mega → hero →
   sections → cards → article → compare → industries → contact → footer
   ===================================================================== */

/* ---------- Premium display font (headings) ---------- */
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk.woff2') format('woff2');
  font-weight: 400 700; font-display: swap; font-style: normal;
}

/* ---------- Design tokens ---------- */
:root {
  --bg:           #050505;   /* OLED base — never pure #000 */
  --primary:      #0a0a0a;
  --panel:        #0e0e0e;
  --panel-2:      #080808;
  --panel-3:      #111111;

  --accent:       #f4ed36;   /* brand yellow */
  --accent-pale:  #f7f19a;
  --accent-ink:   #0a0a0a;   /* text on yellow fills */
  --green:        #22c55e;
  --danger:       #ef4444;

  --text:         #fafafa;
  --text-bright:  #f5f5f5;
  --text-mid:     #d4d4d4;
  --text-dim:     #a3a3a3;
  --text-faint:   #737373;

  --line:         rgba(255,255,255,0.08);
  --line-soft:    rgba(255,255,255,0.05);
  --accent-line:  rgba(244,237,54,0.22);

  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --display: 'Space Grotesk', var(--sans);

  --maxw: 1200px;
  --radius: 20px;
  --header-h: 69px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);   /* premium spring-like easing */
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background:
    radial-gradient(ellipse 90% 55% at 50% -18%, rgba(244,237,54,0.035), transparent 52%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(255,255,255,0.02), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
a, button, [data-nav], [data-action] { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* Visible keyboard focus (accessibility) */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
main:focus { outline: none; }

/* Skip-to-content link (keyboard a11y) */
.skip-link { position: fixed; top: -64px; left: 16px; z-index: 400; background: var(--accent); color: var(--accent-ink); font-weight: 700; font-size: 14px; padding: 10px 16px; border-radius: 10px; transition: top .25s var(--ease); }
.skip-link:focus { top: 16px; }

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section   { padding: 110px 0; }
.section--alt { background: var(--panel-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent);
}
.section-title { font-size: 38px; font-weight: 800; }
.section-sub   { margin: 12px 0 0; color: var(--text-dim); font-size: 17px; max-width: 62ch; }
.back-link {
  display: inline-block; background: none; border: 0; cursor: pointer;
  color: var(--text-faint); font-family: var(--mono); font-size: 12.5px;
  padding: 0; margin-bottom: 22px;
}
.back-link:hover { color: var(--accent-pale); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 0; border-radius: 11px; cursor: pointer;
  font-size: 15px; font-weight: 700; padding: 13px 24px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn--sm { padding: 10px 18px; font-size: 14px; border-radius: 9px; }
.btn--block { width: 100%; justify-content: center; }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { box-shadow: 0 0 26px rgba(244,237,54,0.6); transform: translateY(-1px); }
.btn--secondary { background: transparent; border: 1.5px solid var(--accent); color: var(--accent-pale); }
.btn--secondary:hover { background: rgba(244,237,54,0.16); color: #fff; }
.btn--ghost { background: rgba(244,237,54,0.1); border: 1px solid rgba(244,237,54,0.32); color: var(--accent-pale); }
.btn--ghost:hover { background: rgba(244,237,54,0.18); color: #fff; }

/* ---------- Utility top bar ---------- */
.topbar { background: var(--panel-3); border-bottom: 1px solid var(--line-soft); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px 24px; min-height: 40px; flex-wrap: wrap; padding-top: 6px; padding-bottom: 6px; }
.topbar-info { display: flex; align-items: center; gap: 8px 22px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--text-dim); }
.topbar-item:hover { color: var(--accent-pale); }
.topbar-item svg { color: var(--accent); flex-shrink: 0; }
.topbar-actions { display: flex; align-items: center; gap: 14px; }
.topbar-social { display: inline-flex; align-items: center; gap: 12px; }
.topbar-social a { color: var(--text-dim); display: inline-flex; }
.topbar-social a:hover { color: var(--accent); }
.topbar .lang-btn { padding: 5px 10px; }

/* ---------- Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5,5,5,0.86); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--accent-line);
}
.nav { display: flex; align-items: center; gap: 20px; height: var(--header-h); }
.brand { display: flex; align-items: center; flex-shrink: 0; cursor: pointer; }
.brand img { height: 44px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 1px; margin-left: 14px; flex: 1; }
.nav-link {
  background: none; border: 0; cursor: pointer; color: var(--text-mid);
  font-size: 14.5px; font-weight: 500; padding: 24px 13px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.nav-link:hover, .nav-link.is-active { color: var(--text); border-bottom-color: var(--accent); }
.nav-caret { font-size: 9px; opacity: .7; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lang-btn {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-mid); cursor: pointer; font-family: var(--mono);
  font-size: 12px; font-weight: 700; padding: 7px 11px; border-radius: 8px; letter-spacing: 0.04em;
}
.lang-btn:hover { background: rgba(255,255,255,0.09); color: var(--text); }

.hamburger {
  display: none; margin-left: auto;
  background: rgba(244,237,54,0.12); border: 1px solid rgba(244,237,54,0.3);
  color: var(--text); cursor: pointer; font-size: 18px; line-height: 1;
  padding: 6px 12px; border-radius: 9px;
}

/* ---------- Mega-menu ---------- */
.mega-backdrop { position: fixed; left: 0; right: 0; top: var(--header-h); bottom: 0; background: rgba(5,5,5,0.68); backdrop-filter: blur(2px); z-index: 40; }
.mega {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 45;
  background: var(--panel-3); border-top: 1px solid rgba(244,237,54,0.16);
  box-shadow: 0 34px 70px rgba(0,0,0,0.65);
}
.mega-inner { display: flex; gap: 36px; align-items: stretch; padding: 30px 24px 34px; }
.mega-main { flex: 1; min-width: 0; }
.mega-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 4px 18px; }
.mega-item { display: block; padding: 12px 14px; border-radius: 11px; border: 1px solid transparent; cursor: pointer; }
.mega-item:hover { background: rgba(244,237,54,0.08); border-color: rgba(244,237,54,0.28); }
.mega-item__title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.mega-item__desc { font-size: 12.5px; line-height: 1.45; color: var(--text-dim); }
.mega-featured {
  flex: 0 0 296px; display: flex; flex-direction: column; cursor: pointer;
  background: linear-gradient(160deg, var(--primary), var(--panel));
  border: 1px solid rgba(244,237,54,0.2); border-radius: var(--radius); padding: 18px;
  transition: border-color .18s, box-shadow .18s;
}
.mega-featured:hover { border-color: rgba(244,237,54,0.5); box-shadow: 0 0 26px rgba(244,237,54,0.12); }
.mega-featured__img {
  height: 118px; border-radius: 11px; margin-bottom: 15px;
  border: 1px solid rgba(244,237,54,0.18);
  background: radial-gradient(circle at 50% 42%, rgba(244,237,54,0.1), transparent 68%);
  display: flex; align-items: center; justify-content: center;
}
.mega-featured__img img { height: 78px; width: auto; object-fit: contain; }
.mega-featured__title { font-size: 16.5px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.mega-featured__body { font-size: 13px; line-height: 1.5; color: var(--text-dim); flex: 1; }
.mega-featured__cta { margin-top: 14px; font-size: 13.5px; font-weight: 700; color: var(--accent); }

/* ---------- Mobile drawer ---------- */
.drawer { display: none; border-top: 1px solid rgba(244,237,54,0.14); background: var(--panel-2); padding: 12px 18px 22px; max-height: 72vh; overflow-y: auto; }
.drawer.is-open { display: block; }
.drawer-group { border-bottom: 1px solid var(--line-soft); }
.drawer-top { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; color: var(--text-bright); font-size: 16px; font-weight: 600; padding: 14px 4px; display: flex; justify-content: space-between; align-items: center; }
.drawer-top .nav-caret { color: var(--accent); font-size: 11px; }
.drawer-children { padding: 0 4px 12px; display: flex; flex-direction: column; gap: 2px; }
.drawer-child { cursor: pointer; color: var(--text-dim); font-size: 14.5px; padding: 9px 12px; border-radius: 8px; background: rgba(255,255,255,0.03); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.hero::before { content: ""; position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 760px; height: 420px; background: radial-gradient(ellipse, rgba(244,237,54,0.16), transparent 70%); pointer-events: none; }
.hero-grid { position: relative; display: flex; flex-wrap: wrap; gap: 56px; align-items: center; padding: 84px 0 96px; }
.hero-copy { flex: 1; min-width: 320px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.28); padding: 6px 13px; border-radius: 999px; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 1.8s ease-in-out infinite; }
.hero-title { margin: 22px 0 0; font-size: 56px; font-weight: 900; line-height: 1.02; max-width: 15ch; text-wrap: balance; }
.hero-sub { margin: 20px 0 0; font-size: 19px; line-height: 1.55; color: var(--text-dim); max-width: 46ch; }
.hero-bullets { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.hero-bullet { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--text-mid); }
.check { flex-shrink: 0; margin-top: 1px; width: 21px; height: 21px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; background: rgba(244,237,54,0.16); border: 1px solid rgba(244,237,54,0.4); color: var(--accent); }
.check--green { background: rgba(34,197,94,0.14); border-color: rgba(34,197,94,0.36); color: #4ade80; }
.hero-cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }

/* Threat console */
.console { flex: 1; min-width: 320px; max-width: 480px; }
.console-card { background: linear-gradient(160deg, var(--panel), var(--panel-2)); border: 1px solid rgba(244,237,54,0.28); border-radius: 18px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(244,237,54,0.08); }
.console-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.02); }
.console-bar .tl { width: 11px; height: 11px; border-radius: 50%; }
.console-bar .tl.r { background: #ef4444; } .console-bar .tl.y { background: #eab308; } .console-bar .tl.g { background: #22c55e; }
.console-name { margin-left: 8px; font-family: var(--mono); font-size: 12px; color: var(--text-faint); }
.console-live { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--green); font-weight: 700; }
.console-body { padding: 18px 18px 22px; font-family: var(--mono); font-size: 12.5px; line-height: 1.85; }
.console-body .muted { color: var(--text-dim); } .console-body .blue { color: var(--accent); } .console-body .ok { color: var(--green); } .console-body .warn { color: #eab308; } .console-body .dim { color: var(--text-faint); }
.console-stats { margin-top: 12px; display: flex; gap: 10px; }
.console-stat { flex: 1; border-radius: 10px; padding: 11px; }
.console-stat.a { background: rgba(244,237,54,0.08); border: 1px solid rgba(244,237,54,0.2); }
.console-stat.b { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); }
.console-stat .k { color: var(--text-faint); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; }
.console-stat .v { font-size: 22px; font-weight: 700; }
.console-stat.a .v { color: var(--accent); } .console-stat.b .v { color: #4ade80; }

/* ---------- Trusted by ---------- */
.trusted { background: var(--panel-2); border-bottom: 1px solid var(--line); padding: 38px 0; }
.trusted-label { text-align: center; margin: 0 0 22px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.trusted-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px 44px; }
.trusted-logos img { height: 30px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.6; }
.trusted-word { font-family: var(--mono); font-weight: 700; font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); opacity: 0.75; }

/* ---------- Split (mission / value) ---------- */
.split { display: flex; flex-wrap: wrap; gap: 28px; }
.split-card { flex: 1; min-width: 300px; background: linear-gradient(160deg, var(--primary), var(--panel)); border: 1px solid var(--line-soft); border-radius: 18px; padding: 34px; }
.split-card p { margin: 14px 0 0; font-size: 19px; line-height: 1.62; color: var(--text-mid); }
.split-card .eyebrow.green { color: var(--green); }

/* ---------- Services grid / cards ---------- */
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }
.card { display: block; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: transform .18s, border-color .18s, box-shadow .18s; }
.card:hover { transform: translateY(-3px); border-color: rgba(244,237,54,0.55); box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 26px rgba(244,237,54,0.12); }
.card-media { height: 150px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 42%, rgba(244,237,54,0.09), transparent 68%); }
.card-media img { height: 90px; width: auto; object-fit: contain; }
.card-body { padding: 24px 26px 26px; }
.card-title { font-size: 18.5px; font-weight: 700; color: var(--text-bright); margin-bottom: 8px; }
.card-desc { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-dim); }
.card-link { display: inline-block; margin-top: 16px; font-size: 13.5px; font-weight: 700; color: var(--accent); }

/* ---------- Falcon bundles teaser ---------- */
.center-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.center-head .section-sub { margin-left: auto; margin-right: auto; }
.bundles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.bundle { background: linear-gradient(160deg, var(--primary), var(--panel)); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.bundle .code { font-family: var(--mono); font-size: 12px; color: var(--text-faint); }
.bundle h3 { margin: 6px 0 10px; font-size: 24px; font-weight: 800; }
.bundle p { margin: 0 0 22px; font-size: 14.5px; line-height: 1.55; color: var(--text-dim); flex: 1; }
.center { text-align: center; }
.mt-36 { margin-top: 36px; }

/* ---------- Newsletter ---------- */
.newsletter { background: linear-gradient(110deg, var(--panel), var(--primary)); border-top: 1px solid var(--accent-line); }
.newsletter-inner { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between; padding: 64px 0; }
.newsletter h2 { font-size: 30px; font-weight: 800; margin-bottom: 10px; }
.newsletter p { margin: 0; color: var(--text-dim); font-size: 16px; max-width: 52ch; }
.newsletter form { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

/* ---------- Inputs ---------- */
.input, .textarea, .select {
  background: var(--bg); border: 1px solid rgba(255,255,255,0.14); color: var(--text);
  font-family: inherit; font-size: 15px; padding: 12px 14px; border-radius: 10px; width: 100%;
}
.input { min-width: 240px; }
.textarea { resize: vertical; }
.input:focus, .textarea:focus, .select:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(244,237,54,0.18); }
.input::placeholder, .textarea::placeholder { color: var(--text-faint); }

/* ---------- Article ---------- */
.article-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line-soft); background: var(--panel-2); }
/* Per-route photo (set via --hero-img inline) under a dark gradient so copy stays readable */
.article-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.90) 0%, rgba(5,5,5,0.58) 45%, rgba(5,5,5,0.32) 100%),
    var(--hero-img, none);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  filter: saturate(1.18) brightness(1.22) contrast(1.04);
}
.article-hero-inner { position: relative; max-width: 1000px; margin: 0 auto; padding: 84px 24px 64px; min-height: 300px; display: flex; flex-direction: column; justify-content: center; }
.article-hero h1 { font-size: 46px; font-weight: 900; line-height: 1.05; max-width: 20ch; text-wrap: balance; }
.article-hero p { margin: 18px 0 0; font-size: 19px; line-height: 1.55; color: var(--text-dim); max-width: 60ch; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 20px; font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.02em; }
.crumbs a { color: var(--text-mid); cursor: pointer; transition: color .15s; }
.crumbs a:hover { color: var(--accent-pale); }
.crumb-sep { color: var(--text-faint); }
.crumb-current { color: var(--accent); }

.article-body { max-width: 1000px; margin: 0 auto; padding: 24px 24px 88px; }
.article-section { padding: 36px 0; border-bottom: 1px solid var(--line-soft); }
.article-section h2 { font-size: 27px; font-weight: 800; color: var(--text-bright); margin-bottom: 14px; }
.lead { margin: 0; font-size: 17.5px; white-space: pre-line; line-height: 1.7; color: var(--text-mid); max-width: 72ch; }

.bullet-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; }
.bullet { display: flex; gap: 13px; align-items: flex-start; background: var(--panel); border: 1px solid var(--line); border-radius: 13px; padding: 18px; font-size: 15.5px; line-height: 1.55; color: var(--text-mid); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
table.compare { width: 100%; border-collapse: collapse; min-width: 520px; }
table.compare th { text-align: left; padding: 15px 18px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-pale); border-bottom: 1px solid var(--line); background: rgba(244,237,54,0.08); }
table.compare td { padding: 15px 18px; font-size: 14.5px; border-bottom: 1px solid var(--line-soft); }
table.compare td.feat { font-weight: 600; color: var(--text-bright); font-size: 15px; }
table.compare td.aegis { color: #4ade80; font-weight: 600; }
table.compare td.comp { color: var(--text-dim); }

.cta-block { background: linear-gradient(135deg, rgba(244,237,54,0.12), rgba(34,197,94,0.08)); border: 1px solid rgba(244,237,54,0.28); border-radius: var(--radius); padding: 30px; }
.cta-block p { margin: 0 0 20px; font-size: 17px; line-height: 1.6; color: var(--text-mid); max-width: 64ch; }

/* ---------- Platform showcase / stats / feature grid ---------- */
.showcase { text-align: center; }
.showcase-img {
  border: 1px solid var(--accent-line); border-radius: var(--radius);
  background: radial-gradient(ellipse at 50% 40%, rgba(244,237,54,0.06), transparent 70%), var(--panel-2);
  padding: 24px; overflow: hidden;
}
.showcase-img img { width: 100%; max-width: 920px; height: auto; margin: 0 auto; }
.showcase-cap { margin: 16px auto 0; max-width: 70ch; font-size: 14px; line-height: 1.6; color: var(--text-dim); }

.stat-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.stat { background: linear-gradient(160deg, var(--primary), var(--panel)); border: 1px solid rgba(244,237,54,0.18); border-radius: 14px; padding: 24px 20px; text-align: center; }
.stat-v { font-size: 40px; font-weight: 900; line-height: 1; color: var(--accent); letter-spacing: -0.02em; }
.stat-l { margin-top: 10px; font-size: 13.5px; line-height: 1.45; color: var(--text-mid); }
.stat-note { margin: 16px 0 0; font-size: 12px; color: var(--text-faint); font-family: var(--mono); }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.feature { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 22px; transition: transform .18s, border-color .18s, box-shadow .18s; }
.feature:hover { transform: translateY(-3px); border-color: rgba(244,237,54,0.5); box-shadow: 0 16px 40px rgba(0,0,0,0.45); }
.feature h3 { font-size: 16.5px; font-weight: 800; color: var(--text-bright); margin-bottom: 8px; }
.feature p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--text-dim); }
.feature--link { display: block; cursor: pointer; }
.feature-link { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--accent); }
.feature-media { margin: -22px -22px 16px; aspect-ratio: 16 / 10; overflow: hidden; background: var(--panel-2); border-bottom: 1px solid var(--line); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Leadership ---------- */
.leaders-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.leader { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; }
.leader-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.leader-avatar { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; background: rgba(244,237,54,0.12); border: 1px solid rgba(244,237,54,0.4); color: var(--accent); }
.leader-name { font-size: 18px; font-weight: 800; color: var(--text-bright); line-height: 1.2; }
.leader-role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-top: 4px; }
.leader-bio { margin: 0; font-size: 14.5px; line-height: 1.62; color: var(--text-dim); }

/* ---------- Compare plans ---------- */
.compare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.compare-grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.plan-tier { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #f87171; margin-bottom: 8px; }
.plan--managed { border-color: rgba(96,165,250,0.45); box-shadow: 0 18px 50px rgba(59,130,246,0.12); }
.plan--managed .plan-tier { color: var(--accent-pale); }
.plan-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.feat-row.off .ic { color: var(--text-faint); }
.feat-row.on .ic { color: #f87171; }
.plan { position: relative; background: linear-gradient(165deg, var(--primary), var(--panel)); border: 1px solid var(--line); border-radius: 18px; padding: 30px 26px; display: flex; flex-direction: column; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.plan--popular { border-color: rgba(244,237,54,0.5); box-shadow: 0 18px 50px rgba(244,237,54,0.18); }
.plan--ent { border-color: rgba(34,197,94,0.4); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--accent-ink); font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.plan h3 { font-size: 24px; font-weight: 800; }
.plan .tagline { margin: 8px 0 18px; font-size: 14px; line-height: 1.5; color: var(--text-dim); min-height: 42px; }
.plan .bestfor { font-family: var(--mono); font-size: 13px; color: var(--text-faint); margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.plan-features { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.feat-row { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.feat-row .ic { flex-shrink: 0; font-weight: 900; font-size: 13px; margin-top: 1px; }
.feat-row.on { color: var(--text-mid); } .feat-row.on .ic { color: #4ade80; }
.feat-row.off { color: var(--text-faint); } .feat-row.off .ic { color: var(--text-faint); }
.compare-note { margin: 28px 0 0; font-size: 13px; color: var(--text-faint); font-family: var(--mono); }

/* ---------- Industries ---------- */
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.industry { display: flex; align-items: center; gap: 14px; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 22px; cursor: pointer; transition: transform .18s, border-color .18s, box-shadow .18s; }
.industry:hover { transform: translateY(-3px); border-color: rgba(244,237,54,0.55); box-shadow: 0 16px 40px rgba(0,0,0,0.45); }
.industry-icon { width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; background: rgba(244,237,54,0.12); border: 1px solid rgba(244,237,54,0.3); }
.industry span.name { font-size: 16px; font-weight: 700; color: var(--text-bright); }

/* ---------- Contact ---------- */
.contact-wrap { position: relative; overflow: hidden; }
.contact-wrap::before { content: ""; position: absolute; top: -140px; left: 50%; transform: translateX(-50%); width: 600px; height: 340px; background: radial-gradient(ellipse, rgba(34,197,94,0.16), transparent 70%); }
.contact-inner { position: relative; max-width: 900px; margin: 0 auto; padding: 74px 24px 88px; }
.contact-grid { display: grid; grid-template-columns: 300px 1fr; gap: 28px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 18px; background: linear-gradient(160deg, var(--primary), var(--panel)); border: 1px solid var(--line); border-radius: 18px; padding: 26px; }
.ci-item { display: flex; flex-direction: column; gap: 3px; }
.ci-k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); }
.ci-item a, .ci-item > span:not(.ci-k) { font-size: 15px; color: var(--text); }
.ci-item a:hover { color: var(--accent-pale); }
.offices { display: flex; flex-direction: column; gap: 16px; }
.office-city { font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
.office address { font-style: normal; margin: 0; }
.office-map-link { display: inline-block; font-size: 14px; line-height: 1.55; color: var(--text-dim); }
.office-map-link:hover { color: var(--accent-pale); }
.office-map-cta { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--accent); }
.office-map-cta:hover { color: var(--accent-pale); }
.form-error { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.4); color: #fca5a5; border-radius: 10px; padding: 12px 14px; font-size: 14px; }
.news-ok { color: #4ade80; font-weight: 700; font-size: 15px; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-inner h1 { font-size: 44px; font-weight: 900; margin-bottom: 12px; }
.contact-inner > p.sub { margin: 0 0 36px; color: var(--text-dim); font-size: 18px; line-height: 1.55; }
.form { display: flex; flex-direction: column; gap: 20px; background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 32px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 600; color: var(--text-mid); }
.field .req { color: var(--danger); margin-left: 4px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 8px; }
.checkbox { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text-mid); cursor: pointer; background: var(--bg); border: 1px solid var(--line); border-radius: 9px; padding: 10px 12px; }
.checkbox input { accent-color: var(--accent); width: 16px; height: 16px; }
.privacy { margin: 0; font-size: 12.5px; color: var(--text-faint); line-height: 1.5; }
.thanks { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.4); border-radius: 16px; padding: 36px; text-align: center; }
.thanks .big { font-size: 40px; margin-bottom: 10px; }
.thanks h2 { font-size: 24px; font-weight: 800; color: #4ade80; margin-bottom: 8px; }
.thanks p { margin: 0; color: var(--text-mid); font-size: 16px; }

/* ---------- Footer ---------- */
.footer { background: var(--panel-2); border-top: 1px solid var(--accent-line); }
.footer-inner { padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 36px; }
.footer-brand { min-width: 220px; }
.footer-brand img { height: 38px; width: auto; margin-bottom: 16px; }
.footer-blurb { margin: 0 0 16px; font-size: 14px; line-height: 1.6; color: var(--text-faint); max-width: 30ch; }
.footer-tag { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; color: var(--green); background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.24); padding: 5px 11px; border-radius: 999px; }
.footer-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a { color: var(--text-faint); display: inline-flex; }
.footer-social a:hover { color: var(--accent); }
.footer-col h4 { margin: 0 0 14px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-faint); cursor: pointer; }
.footer-col a:hover { color: var(--accent-pale); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 13px; color: var(--text-faint); }
.footer-bottom .tm { font-family: var(--mono); font-size: 12px; }

/* ---------- Cookie consent + footer legal ---------- */
.consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300;
  display: none; gap: 18px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  max-width: 760px; margin: 0 auto;
  background: var(--panel-3); border: 1px solid var(--accent-line); border-radius: 14px;
  padding: 16px 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.consent.is-open { display: flex; }
.consent-text { margin: 0; flex: 1; min-width: 240px; font-size: 14px; line-height: 1.55; color: var(--text-mid); }
.consent-actions { display: flex; gap: 10px; flex-shrink: 0; }

.footer-legal { display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.linklike { background: none; border: 0; padding: 0; cursor: pointer; font: inherit; font-size: 13px; color: var(--text-dim); text-decoration: underline; }
.linklike:hover { color: var(--accent-pale); }
.recaptcha-note { margin: 14px 0 0; font-size: 11.5px; color: var(--text-faint); }
.recaptcha-note a { color: var(--text-dim); text-decoration: underline; }
.recaptcha-note a:hover { color: var(--accent-pale); }

/* ---------- Animations ---------- */
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* =====================================================================
   2026 motion & effects layer  (all additive · respects reduced-motion)
   ===================================================================== */

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--accent), #fff7a8, var(--green));
  box-shadow: 0 0 12px rgba(244,237,54,0.6);
  will-change: transform;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); filter: blur(6px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease;
  transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; filter: none; }

/* Animated aurora + grid behind the hero */
.hero::before { animation: floatGlow 11s ease-in-out infinite; will-change: transform; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    linear-gradient(rgba(244,237,54,0.045) 1px, transparent 1px) 0 0 / 100% 46px,
    linear-gradient(90deg, rgba(244,237,54,0.045) 1px, transparent 1px) 0 0 / 46px 100%;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 35%, transparent 78%);
          mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 35%, transparent 78%);
  animation: gridDrift 24s linear infinite;
}
.hero-grid { z-index: 1; }
@keyframes floatGlow {
  0%,100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; }
  50%     { transform: translateX(-48%) translateY(26px) scale(1.08); opacity: .82; }
}
@keyframes gridDrift { to { background-position: 0 46px, 46px 0; } }

/* Gradient-animated hero title */
.hero-title {
  background: linear-gradient(100deg, #ffffff 0%, #ffffff 38%, var(--accent) 55%, #fff7b0 70%, #ffffff 88%);
  background-size: 240% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: titleSheen 7s ease-in-out infinite;
}
@keyframes titleSheen { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Pointer-tracking glow on cards & tiles */
.card, .bundle, .industry, .split-card, .leader, .plan {
  position: relative; --mx: 50%; --my: 50%;
}
.card::after, .bundle::after, .industry::after,
.split-card::after, .leader::after, .plan::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(244,237,54,0.14), transparent 42%);
  opacity: 0; transition: opacity .3s ease; z-index: 1;
}
.card:hover::after, .bundle:hover::after, .industry:hover::after,
.split-card:hover::after, .leader:hover::after, .plan:hover::after { opacity: 1; }
.card-body, .bundle > *, .industry > *, .split-card > *, .leader > *, .plan > * { position: relative; z-index: 2; }

/* Button shine sweep */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg); transition: left .55s ease; pointer-events: none;
}
.btn:hover::before { left: 130%; }
.btn--secondary::before, .btn--ghost::before { background: linear-gradient(100deg, transparent, rgba(244,237,54,0.3), transparent); }

/* Live threat console: scanline + blinking caret */
.console-card { position: relative; }
.console-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 3; border-radius: inherit;
  background: linear-gradient(rgba(255,255,255,0.03) 50%, transparent 50%) 0 0 / 100% 4px;
  mix-blend-mode: overlay; opacity: .5;
}
.console-body { position: relative; }
.console-body > .muted:last-of-type::after {
  content: "▋"; color: var(--accent); margin-left: 4px;
  animation: caret 1s step-end infinite;
}
@keyframes caret { 50% { opacity: 0; } }

/* Mega-menu entrance */
.mega { animation: megaIn .22s ease-out; transform-origin: top center; }
@keyframes megaIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* Stat value glow */
.console-stat .v { transition: text-shadow .3s ease; }
.console-stat.a:hover .v { text-shadow: 0 0 18px rgba(244,237,54,0.7); }
.console-stat.b:hover .v { text-shadow: 0 0 18px rgba(74,222,128,0.6); }

/* Hero badge upgraded glow ring */
.hero-badge { backdrop-filter: blur(4px); }

/* Article pages: richer hero (glyph + grid + gradient title) + sectioned text */
.article-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(rgba(244,237,54,0.04) 1px, transparent 1px) 0 0 / 100% 44px,
    linear-gradient(90deg, rgba(244,237,54,0.04) 1px, transparent 1px) 0 0 / 44px 100%;
  -webkit-mask-image: radial-gradient(ellipse 60% 85% at 86% 45%, #000 8%, transparent 72%);
          mask-image: radial-gradient(ellipse 60% 85% at 86% 45%, #000 8%, transparent 72%);
  animation: gridDrift 26s linear infinite;
}
.article-hero-inner { z-index: 1; }
.article-hero h1 {
  background: linear-gradient(100deg, #fff 0%, #fff 45%, var(--accent) 62%, #fff7b0 75%, #fff 92%);
  background-size: 240% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: titleSheen 8s ease-in-out infinite;
}
.article-section h2 { position: relative; padding-left: 18px; }
.article-section h2::before {
  content: ""; position: absolute; left: 0; top: .15em; bottom: .15em; width: 4px; border-radius: 3px;
  background: linear-gradient(180deg, var(--accent), var(--green));
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero::before, .hero::after, .hero-title, .console-body > .muted:last-of-type::after,
  .mega, .scroll-progress, .article-hero::after, .article-hero h1 { animation: none !important; }
  .btn::before { display: none; }
  .hero-title, .article-hero h1 { -webkit-text-fill-color: var(--text); color: var(--text); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav-links, .nav-actions, .mega, .mega-backdrop { display: none; }
  .hamburger { display: inline-flex; }
  .nav { gap: 12px; }
}
@media (max-width: 900px) {
  .topbar-item--addr { display: none; }   /* keep the bar to one line on tablets */
}
@media (max-width: 760px) {
  .hero-title { font-size: 40px; }
  .section-title { font-size: 30px; }
  .article-hero h1 { font-size: 34px; }
  .contact-inner h1 { font-size: 34px; }
  .section { padding: 60px 0; }
  .topbar-item--mail span { display: none; }   /* show mail icon only */
  .topbar-inner { justify-content: space-between; }
  .brand img { height: 38px; }
}

/* =====================================================================
   High-end polish — premium materials, motion & texture (site-wide)
   ===================================================================== */

/* Subtle film-grain over the whole page for physical richness (fixed, inert) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

/* Pill buttons + tactile press (Linear/Apple-tier) */
.btn { border-radius: 999px; transition: transform .5s var(--ease), box-shadow .45s var(--ease), background .3s var(--ease), color .3s var(--ease); }
.btn:active { transform: scale(.97); }

/* Card materials — hairline + inset top highlight + soft, diffused depth */
.card, .plan, .feature, .bundle, .split-card, .leader, .contact-info, .console-card, .showcase-img, .stat, .industry, .bullet {
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.05), 0 1px 2px rgba(0,0,0,0.35), 0 20px 44px -26px rgba(0,0,0,0.75);
}
.card, .feature, .industry, .plan, .bundle, .leader {
  transition: transform .5s var(--ease), border-color .4s var(--ease), box-shadow .5s var(--ease);
}
.card:hover, .feature:hover, .industry:hover, .leader:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.08), 0 30px 64px -30px rgba(0,0,0,0.85), 0 0 32px rgba(244,237,54,0.10);
}

/* Optical heading tracking at large sizes */
.hero-title { letter-spacing: -0.035em; }
.section-title, .article-hero h1, .contact-inner h1, .compare-grid + *, .plan h3, .bundle h3 { letter-spacing: -0.02em; }

/* SVG icon tiles (services) — replaces emoji/PNG glyphs */
.svc-ic { width: 54px; height: 54px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; color: var(--accent); background: rgba(244,237,54,0.1); border: 1px solid rgba(244,237,54,0.28); margin-bottom: 18px; }
.svc-ic svg { width: 26px; height: 26px; }
.industry-icon { color: var(--accent); }
.industry-icon svg { width: 22px; height: 22px; }

/* Bento grid — asymmetric services layout (featured tile + grid) */
.bento { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
@media (min-width: 980px) {
  .bento { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; }
  .bento > :first-child { grid-column: span 2; grid-row: span 2; background: linear-gradient(165deg, var(--primary), var(--panel)); border-color: rgba(244,237,54,0.28); }
  .bento > :first-child .card-body { display: flex; flex-direction: column; height: 100%; }
  .bento > :first-child .svc-ic { width: 66px; height: 66px; }
  .bento > :first-child .svc-ic svg { width: 32px; height: 32px; }
  .bento > :first-child .card-title { font-size: 26px; }
  .bento > :first-child .card-link { margin-top: auto; padding-top: 18px; }
}
.svc-points { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.svc-points li { position: relative; padding-left: 26px; font-size: 14.5px; line-height: 1.5; color: var(--text-mid); }
.svc-points li::before { content: ""; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 6px; background: rgba(244,237,54,0.14); border: 1px solid rgba(244,237,54,0.4); }
.svc-points li::after { content: "✓"; position: absolute; left: 4px; top: 0; font-size: 11px; font-weight: 900; color: var(--accent); }

/* Editorial split rows (alternating text / image) */
.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 48px 0; border-bottom: 1px solid var(--line-soft); }
.split-row--rev .split-text { order: 2; }
.split-text h2 { font-size: 27px; font-weight: 800; color: var(--text-bright); margin-bottom: 14px; }
.split-media { border: 1px solid var(--accent-line); border-radius: var(--radius); overflow: hidden; padding: 8px; background: radial-gradient(ellipse at 50% 40%, rgba(244,237,54,0.06), transparent 70%), var(--panel-2); box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.05), 0 24px 50px -28px rgba(0,0,0,0.8); }
.split-media img { width: 100%; height: auto; display: block; border-radius: 12px; }
.split-points { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.split-points li { position: relative; padding-left: 26px; color: var(--text-mid); font-size: 15px; line-height: 1.55; }
.split-points li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 900; }
@media (max-width: 760px) {
  .split-row { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
  .split-row--rev .split-text { order: 0; }
}
