/* ============================================================
   SUPRAFRP — Shared stylesheet  (dark / royal-blue / silver)
   An IndiGrate Composites brand
   One file controls the look of every page.
   ============================================================ */

/* ---- Design tokens (change these to re-skin the whole site) ---- */
:root {
  --bg:        #0a0c11;   /* near-black page background (matches logo bg) */
  --bg-2:      #0e1118;   /* slightly lighter band */
  --card:      #13161f;   /* card surface */
  --card-2:    #171b26;
  --line:      #242a37;   /* borders */
  --blue:      #2347ab;   /* royal/cobalt blue — matches the logo wordmark */
  --blue-br:   #4a72e8;   /* brighter blue for links/hovers on dark bg */
  --blue-dk:   #18316f;
  --silver:    #b9c2cd;   /* silver/grey from logo */
  --text:      #e7ecf3;   /* main text on dark */
  --muted:     #93a0b2;   /* secondary text */
  --white:     #ffffff;
  --radius:    16px;
  --shadow:    0 14px 40px rgba(0,0,0,.45);
  --glow:      0 10px 30px rgba(35,71,171,.45);
  --maxw:      1180px;
}

/* ---- Reset ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: "Sora", "Inter", sans-serif;
  color: var(--white);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

/* ---- Preloader (shining logo) ---- */
#preloader {
  position: fixed; inset: 0; z-index: 9999; background: #0a0c11;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.pl-logo { position: relative; display: inline-block; overflow: hidden; animation: pl-fade .9s ease both; }
.pl-logo img { height: 76px; width: auto; display: block; }
.pl-logo .logo-fallback { font-size: 2rem; }
.pl-logo::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 60%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
  mix-blend-mode: screen; transform: translateX(-180%);
  animation: pl-shine 2s ease-in-out infinite;
}
.pl-bar { width: 170px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.12); overflow: hidden; }
.pl-bar i { display: block; height: 100%; width: 40%; border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-br), transparent); animation: pl-bar 1.2s linear infinite; }
@keyframes pl-shine { 0% { transform: translateX(-180%); } 60%, 100% { transform: translateX(320%); } }
@keyframes pl-fade { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
@keyframes pl-bar { from { transform: translateX(-110%); } to { transform: translateX(370%); } }
@media (prefers-reduced-motion: reduce) { .pl-logo::after, .pl-bar i { animation: none; } }

/* ---- Layout helpers ---- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.bg-2 { background: var(--bg-2); }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-br); margin-bottom: 14px;
}
.lead { font-size: 1.12rem; color: var(--muted); max-width: 660px; }
.center .lead { margin-left: auto; margin-right: auto; }
h2.title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.title .hl { color: var(--blue-br); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.97rem; cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--glow); }
.btn--primary:hover { background: var(--blue-br); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue-br); color: var(--blue-br); }
.btn--light { background: #fff; color: #0a0c11; }
.btn--light:hover { background: #e7ecf3; }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.28); }
.btn--outline:hover { border-color: var(--blue-br); color: var(--blue-br); }

/* ---- Logo image with text fallback ---- */
.logo-img { height: 42px; width: auto; display: block; }
.logo-fallback {
  font-family: "Sora"; font-weight: 800; font-style: italic;
  font-size: 1.18rem; letter-spacing: .01em; white-space: nowrap;
}
.logo-fallback .b { color: var(--blue-br); }
.logo-fallback .s { color: var(--silver); }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,12,17,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); text-align: center; padding: 7px 0;
  border-bottom: 1px solid var(--line); background: #070809;
}
.topbar b { color: var(--silver); font-weight: 600; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 92px; }
.site-header .brand .logo-img { height: 56px; }
.brand { display: flex; align-items: center; gap: 11px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 0.96rem; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active { position: relative; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; bottom: -33px; height: 2px; width: 100%;
  background: var(--blue-br);
}
.nav .btn { padding: 9px 20px; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 480px at 82% -8%, rgba(35,71,171,.30), transparent 60%),
    radial-gradient(800px 420px at 8% 110%, rgba(35,71,171,.14), transparent 60%),
    linear-gradient(180deg, #0a0c11, #0c0f16 60%, #0a0c11);
  color: var(--text);
  padding: 92px 0 100px; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  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(900px 420px at 72% 28%, #000, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5.2vw, 3.9rem); max-width: 15ch; }
.hero h1 .hl { color: var(--blue-br); }
.hero p { color: var(--muted); font-size: 1.18rem; max-width: 600px; margin: 22px 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 52px; }
.hero-badges .b { display: flex; flex-direction: column; }
.hero-badges .b b { font-family: "Sora"; color: #fff; font-size: 1.7rem; }
.hero-badges .b span { color: var(--muted); font-size: .9rem; }

/* ---- Grid of cards ---- */
.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s, background .2s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #2f3a55; background: var(--card-2); }
.card .ico {
  width: 52px; height: 52px; border-radius: 13px; margin-bottom: 18px;
  display: grid; place-items: center; font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(35,71,171,.28), rgba(35,71,171,.08));
  color: var(--blue-br); border: 1px solid rgba(74,114,232,.25);
}
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ---- Brand cards ---- */
.brand-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s;
}
.brand-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--blue); }
.brand-card .logo-wrap {
  background: #000; padding: 24px 26px; display: flex; align-items: center; justify-content: center;
  min-height: 150px; border-bottom: 1px solid var(--line);
}
.brand-card .logo-wrap .logo-img { height: auto; width: 100%; max-width: 340px; }
.brand-card .body { padding: 22px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.brand-card .kind { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-br); font-weight: 700; margin-bottom: 6px; }
.brand-card .body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.brand-card .body p { color: var(--muted); font-size: .94rem; flex: 1; }
.brand-card .body .btn { margin-top: 18px; width: 100%; justify-content: center; }

/* ---- Feature split ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.panel {
  border-radius: 20px; min-height: 340px; padding: 30px;
  background:
    radial-gradient(460px 280px at 30% 18%, rgba(35,71,171,.4), transparent 60%),
    #000;
  border: 1px solid var(--line);
  position: relative; overflow: hidden; box-shadow: var(--shadow);
  display: grid; place-items: center;
}
.panel .logo-img { height: auto; width: 100%; max-width: 460px; }
.panel .mono {
  font-family: "Sora"; color: #fff; font-weight: 800; font-style: italic;
  font-size: 2.2rem; text-align: center; line-height: 1.2;
}
.panel .mono small { display: block; font-style: normal; font-size: .82rem; letter-spacing: .18em; color: var(--blue-br); font-weight: 600; margin-top: 10px; }

/* ---- Stats strip ---- */
.stats { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { text-align: center; padding: 14px; }
.stat b { display: block; font-family: "Sora"; font-size: 2.4rem; color: var(--blue-br); }
.stat span { color: var(--muted); font-size: .96rem; }

/* ---- CTA band ---- */
.cta-band {
  background:
    radial-gradient(700px 320px at 80% 0%, rgba(35,71,171,.35), transparent 60%),
    linear-gradient(135deg, #11203f, #0a0c11);
  border: 1px solid var(--line);
  color: #fff; border-radius: 22px; padding: 56px 48px; text-align: center;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.cta-band p { color: var(--muted); max-width: 560px; margin: 14px auto 28px; }
.cta-band .hero-actions { justify-content: center; }

/* ---- Contact ---- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; }
.contact-info .row { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info .row .ic {
  width: 44px; height: 44px; border-radius: 12px; flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(35,71,171,.28), rgba(35,71,171,.08));
  border: 1px solid rgba(74,114,232,.25);
  color: var(--blue-br); display: grid; place-items: center; font-size: 1.2rem;
}
.contact-info .row b { display: block; color: #fff; }
.contact-info .row span { color: var(--muted); font-size: .96rem; }
.form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: 10px; font: inherit; color: var(--text); background: #0c0f16;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #5f6c7e; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue-br); box-shadow: 0 0 0 3px rgba(35,71,171,.22);
}
.field textarea { resize: vertical; min-height: 120px; }
.checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 16px; }
.cb { display: flex; align-items: center; gap: 9px; font-size: .92rem; color: var(--text); font-weight: 400; cursor: pointer; }
.cb input { width: auto; accent-color: var(--blue); flex: 0 0 auto; }
@media (max-width: 480px) { .checkboxes { grid-template-columns: 1fr; } }

/* WhatsApp floating button */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.4); transition: transform .15s ease;
}
.wa-float:hover { transform: translateY(-3px); }
.wa-float svg { width: 30px; height: 30px; }

/* Floating brochure download button */
.brochure-float {
  position: fixed; left: 18px; bottom: 18px; z-index: 60;
  background: var(--blue); color: #fff; display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 18px; border-radius: 999px; font-size: .88rem; font-weight: 600;
  box-shadow: 0 10px 26px rgba(0,0,0,.4); transition: transform .15s ease, background .2s ease;
}
.brochure-float:hover { transform: translateY(-3px); background: var(--blue-br); }
.brochure-float svg { width: 18px; height: 18px; }
@media (max-width: 560px) {
  .brochure-float span { display: none; }
  .brochure-float { padding: 14px; border-radius: 50%; }
}

/* ---- Industry pills ---- */
.pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill {
  background: var(--card); border: 1px solid var(--line); color: var(--text);
  padding: 10px 18px; border-radius: 999px; font-size: .94rem; transition: border-color .2s, color .2s;
}
.pill:hover { border-color: var(--blue-br); color: var(--blue-br); }

/* ---- Footer ---- */
.site-footer { background: #070809; border-top: 1px solid var(--line); color: var(--muted); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 30px; margin-bottom: 36px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.site-footer a { color: var(--muted); display: block; padding: 5px 0; font-size: .94rem; transition: color .2s; }
.site-footer a:hover { color: var(--blue-br); }
.footer-about p { font-size: .94rem; max-width: 320px; margin-top: 14px; }
.footer-about .parent { margin-top: 16px; font-size: .86rem; color: var(--silver); }
.parent-logo {
  margin-top: 16px; display: inline-flex; flex-direction: column; gap: 7px;
}
.parent-logo .lbl { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.parent-logo .chip {
  background: #fff; border-radius: 10px; padding: 10px 14px; display: inline-flex;
  align-items: center; width: max-content; box-shadow: var(--shadow);
}
.parent-logo .chip img { height: 50px; width: auto; }
.parent-logo .chip .logo-fallback { font-style: normal; text-align: center; line-height: 1; }
.parent-logo .chip .logo-fallback .b { color: #2347ab; }
.parent-logo .chip .logo-fallback .s { color: #7a8694; }
.logo-fallback small.ig-sub {
  display: block; font-size: .42em; letter-spacing: .34em;
  color: #7a8694; font-weight: 600; margin-top: 3px; padding-left: .34em;
}
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .86rem; color: #6b7889;
}

/* ---- Product detail page ---- */
.checklist { list-style: none; display: grid; gap: 11px; }
.checklist li { position: relative; padding-left: 30px; color: var(--text); font-size: .98rem; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--blue-br); font-weight: 800; }
.prod-tagline { font-style: italic; color: var(--silver); font-size: 1.15rem; margin: 6px 0 0; }
.prod-nav { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.prod-nav a { color: var(--muted); font-weight: 600; font-size: .95rem; }
.prod-nav a:hover { color: var(--blue-br); }

/* ---- FRP vs Steel calculator ---- */
.calc input[type=range] { accent-color: var(--blue); width: 100%; }
.calc-results { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 6px; }
.calc-tile { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; }
.calc-tile b { display: block; font-family: "Sora", sans-serif; font-size: 1.7rem; color: var(--blue-br); line-height: 1.1; }
.calc-tile span { color: var(--muted); font-size: .84rem; }
.calc-note { margin-top: 14px; color: var(--muted); font-size: .88rem; }
@media (max-width: 520px) { .calc-results { grid-template-columns: 1fr; } }

/* ---- Brand finder ---- */
.finder-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 12px; }
.finder-label { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-right: 6px; min-width: 130px; }
.chip-btn { background: var(--card); border: 1px solid var(--line); color: var(--text); padding: 8px 15px; border-radius: 999px; font-size: .86rem; font-family: inherit; cursor: pointer; transition: border-color .15s, background .15s, color .15s; }
.chip-btn:hover { border-color: var(--blue-br); }
.chip-btn.on { background: var(--blue); border-color: var(--blue); color: #fff; }
.finder-meta { margin-top: 8px; color: var(--muted); font-size: .92rem; display: flex; gap: 16px; align-items: center; }
#finder-clear { padding: 5px 12px; font-size: .8rem; }

/* ---- Blog ---- */
.post-card { display: flex; flex-direction: column; }
.post-card .cat { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-br); font-weight: 700; }
.post-card h3 { font-size: 1.18rem; margin: 8px 0 8px; line-height: 1.25; }
.post-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.post-card .meta { color: #6b7889; font-size: .82rem; margin-top: 14px; }
.post-card .more { color: var(--blue-br); font-weight: 600; font-size: .9rem; margin-top: 12px; display: inline-block; }

.article { max-width: 760px; margin: 0 auto; }
.article .meta { color: var(--muted); font-size: .9rem; margin-bottom: 26px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.article .meta .cat { color: var(--blue-br); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .74rem; }
.article p { color: #c7d0db; font-size: 1.04rem; line-height: 1.85; margin-bottom: 18px; }
.article h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.article h3 { font-size: 1.18rem; margin: 26px 0 10px; }
.article ul, .article ol { margin: 0 0 18px; padding-left: 22px; }
.article li { color: #c7d0db; font-size: 1.02rem; line-height: 1.75; margin-bottom: 9px; }
.article strong { color: #fff; font-weight: 600; }
.article .lede { font-size: 1.15rem; color: #dbe3ec; line-height: 1.8; }
.article blockquote { margin: 22px 0; padding: 14px 22px; border-left: 3px solid var(--blue); background: var(--card); border-radius: 0 10px 10px 0; color: #dbe3ec; }

/* Blog images (with brand-gradient fallback) */
.card.post-card { padding: 0; overflow: hidden; }
.post-thumb { display: block; position: relative; height: 190px; overflow: hidden;
  background: radial-gradient(420px 200px at 30% 25%, rgba(35,71,171,.55), transparent 60%), #0c0f16; }
.post-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.post-thumb .pt-mark { position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center;
  font-family: "Sora", sans-serif; font-weight: 800; font-style: italic; color: rgba(255,255,255,.16); font-size: 1.7rem; }
.post-thumb .pt-tag { position: absolute; left: 14px; bottom: 12px; z-index: 2;
  background: rgba(10,12,17,.62); color: #cfe0ff; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; padding: 5px 10px; border-radius: 6px; }
.post-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }

.post-banner { position: relative; height: 320px; border-radius: 18px; overflow: hidden; margin-bottom: 6px;
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  background: radial-gradient(520px 260px at 30% 25%, rgba(35,71,171,.5), transparent 60%), #0c0f16; }
.post-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.post-banner .pb-mark { z-index: 0; font-family: "Sora", sans-serif; font-weight: 800; font-style: italic; color: rgba(255,255,255,.2); font-size: 2.2rem; }
@media (max-width: 600px) { .post-banner { height: 220px; } }

/* ---- FAQ accordion ---- */
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq summary {
  cursor: pointer; padding: 18px 22px; font-family: "Sora", sans-serif; font-weight: 600;
  color: #fff; font-size: 1rem; list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue-br); font-size: 1.5rem; line-height: 1; flex: 0 0 auto; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .ans { padding: 16px 22px; color: var(--muted); font-size: .96rem; }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---- Tables ---- */
.tbl { width: 100%; border-collapse: collapse; min-width: 560px; }
.tbl thead tr { background: #0c0f16; text-align: left; }
.tbl th { padding: 16px 22px; font-family: "Sora"; color: #fff; font-size: .95rem; }
.tbl td { padding: 15px 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .95rem; }
.tbl td b { color: var(--blue-br); }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split, .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none; position: absolute; top: 92px; left: 0; right: 0;
    background: #0a0c11; flex-direction: column; gap: 0; padding: 12px 24px 22px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: block; }
  .nav .nav-cta { display: none; }
}
@media (max-width: 560px) {
  .grid-3, .grid-2, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .cta-band { padding: 40px 24px; }
  .hero-badges { gap: 22px; }
  .topbar { font-size: .68rem; }
}
