/*
 * Colabs marketing + legal site — stylesheet.
 * Self-contained (no external fonts/CDNs). Brand: navy #0c4a6e + cyan #22d3ee,
 * white "∞ Colabs" wordmark (assets/logo.png) on dark surfaces.
 */
:root {
  --navy: #0c4a6e;
  --navy-2: #0a3f5f;
  --navy-deep: #062338;
  --navy-ink: #041c2e;
  --accent: #22d3ee;
  --accent-2: #38bdf8;
  --accent-strong: #0891b2;
  --ink: #0f172a;
  --body: #3b4a5a;
  --muted: #6b7c8c;
  --line: #e6ecf1;
  --bg: #ffffff;
  --bg-soft: #f5f8fa;
  --radius: 18px;
  --maxw: 1160px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--accent-strong); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; margin: 0 0 0.5em; letter-spacing: -0.02em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.logo-img { height: 30px; width: auto; display: block; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 35, 56, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header.scrolled { background: rgba(6, 35, 56, 0.9); box-shadow: 0 10px 34px -20px rgba(0, 0, 0, 0.7); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand:hover { text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: #cfe0ec; font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-cta {
  background: var(--accent); color: var(--navy-ink) !important; padding: 9px 18px;
  border-radius: 999px; font-size: 15px; font-weight: 700;
  box-shadow: 0 6px 20px -8px rgba(34, 211, 238, 0.7);
}
.nav-cta:hover { background: #67e8f9; text-decoration: none; }
@media (max-width: 680px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden; color: #e6f3fb;
  background:
    radial-gradient(900px 480px at 15% 0%, rgba(56, 189, 248, 0.20), transparent 55%),
    radial-gradient(760px 520px at 92% 12%, rgba(34, 211, 238, 0.20), transparent 55%),
    linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 62%, var(--navy-ink) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 40%, transparent 78%);
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 40%, transparent 78%);
}
.hero .wrap {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
  padding-top: 84px; padding-bottom: 96px;
}
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; gap: 52px; padding-bottom: 72px; }
  .hero-copy .cta-row, .hero-copy .trust { justify-content: center; }
  .hero-copy .eyebrow { margin-left: auto; margin-right: auto; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 12.5px; font-weight: 700; color: var(--accent);
  border: 1px solid rgba(34, 211, 238, 0.3); background: rgba(34, 211, 238, 0.07);
  border-radius: 999px; padding: 6px 14px; margin-bottom: 26px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.hero h1 {
  color: #fff; font-size: clamp(36px, 5.4vw, 62px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.04; margin: 0 0 22px;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede { font-size: clamp(17px, 2.1vw, 20px); color: #a9c8dc; max-width: 540px; margin: 0 0 34px; }
@media (max-width: 900px) { .hero p.lede { margin-left: auto; margin-right: auto; } }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.trust { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 26px; color: #8fb0c6; font-size: 14px; }
.trust > span { display: inline-flex; align-items: center; gap: 7px; }
.trust svg { width: 15px; height: 15px; color: var(--accent); }
.trust .sep { width: 4px; height: 4px; padding: 0; border-radius: 999px; background: #395a70; }

/* store badges */
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: #0b1620; color: #fff !important; border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px; padding: 10px 18px; transition: transform 0.12s ease, border-color 0.12s ease;
}
.store-badge:hover { text-decoration: none; transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.4); }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge .bt { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge .bt small { font-size: 10.5px; letter-spacing: 0.04em; opacity: 0.8; text-transform: uppercase; }
.store-badge .bt strong { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font-weight: 700; font-size: 16px;
  transition: transform 0.12s ease, background 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--navy-ink) !important; box-shadow: 0 10px 30px -10px rgba(34, 211, 238, 0.7); }
.btn-primary:hover { background: #67e8f9; }
.btn-ghost { background: rgba(255, 255, 255, 0.06); color: #fff !important; border: 1px solid rgba(255, 255, 255, 0.22); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.13); }

/* ── Phone mockup ───────────────────────────────────────── */
.hero-visual { display: flex; justify-content: center; }
.phone {
  position: relative; width: 300px; height: 610px; border-radius: 44px;
  background: linear-gradient(160deg, #12324a, #0a2033); padding: 12px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 0 2px rgba(255, 255, 255, 0.05);
}
.phone::before {
  content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 26px; background: #06121d; border-radius: 0 0 16px 16px; z-index: 3;
}
.phone-screen {
  position: relative; height: 100%; border-radius: 34px; overflow: hidden;
  background: linear-gradient(180deg, #f4f8fb 0%, #eaf1f6 100%); display: flex; flex-direction: column;
}
.pscreen-top {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 40px 18px 20px; color: #fff;
}
.pscreen-top .row { display: flex; align-items: center; justify-content: space-between; }
.pscreen-top .mk { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; }
.pscreen-top .mk img { width: 22px; height: 22px; border-radius: 6px; }
.pscreen-top .pill { width: 30px; height: 30px; border-radius: 999px; background: rgba(255, 255, 255, 0.14); }
.pscreen-top h4 { color: #fff; font-size: 19px; margin: 18px 0 4px; letter-spacing: -0.02em; }
.pscreen-top p { color: #a9c8dc; font-size: 12px; margin: 0; }
.pbody { padding: 14px; display: flex; flex-direction: column; gap: 11px; overflow: hidden; }
.pcard { background: #fff; border: 1px solid #e7eef3; border-radius: 15px; padding: 13px; box-shadow: 0 8px 20px -16px rgba(12, 74, 110, 0.5); }
.pcard .ph { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; }
.pcard .av { width: 30px; height: 30px; border-radius: 999px; flex: none; }
.pcard .nm { height: 8px; width: 96px; border-radius: 4px; background: #d5e0e8; }
.pcard .nm.s { width: 60px; margin-top: 5px; height: 7px; background: #e4ecf1; }
.pcard .tag { display: inline-block; font-size: 10px; font-weight: 700; color: var(--accent-strong); background: #e6f8fc; border-radius: 999px; padding: 3px 9px; }
.pcard .ln { height: 8px; border-radius: 4px; background: #eaf0f4; margin-top: 8px; }
.pcard .ln.w1 { width: 92%; } .pcard .ln.w2 { width: 78%; } .pcard .ln.w3 { width: 64%; }
.pcard .foot { display: flex; gap: 14px; margin-top: 11px; }
.pcard .foot span { height: 8px; width: 34px; border-radius: 4px; background: #eef3f6; }
.ptabs { margin-top: auto; background: #fff; border-top: 1px solid #e7eef3; display: flex; justify-content: space-around; padding: 12px 0 16px; }
.ptabs i { width: 22px; height: 22px; border-radius: 7px; background: #dbe6ee; display: block; }
.ptabs i.on { background: var(--navy); }

.g1 { background: linear-gradient(135deg, #22d3ee, #0891b2); }
.g2 { background: linear-gradient(135deg, #38bdf8, #6366f1); }
.g3 { background: linear-gradient(135deg, #fb7185, #f59e0b); }
.g4 { background: linear-gradient(135deg, #34d399, #0891b2); }

/* ── Marquee / logos band ───────────────────────────────── */
.subhero { background: var(--navy-ink); color: #7fa6bd; padding: 26px 0; text-align: center; }
.subhero .wrap { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: center; font-size: 14px; }
.subhero b { color: #cfe0ec; font-weight: 600; }
.subhero .sep { width: 5px; height: 5px; border-radius: 999px; background: #395a70; }

/* ── Sections ───────────────────────────────────────────── */
section { padding: 96px 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-head .kicker { color: var(--accent-strong); font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 44px); font-weight: 800; }
.section-head p { color: var(--muted); font-size: 18px; margin: 12px 0 0; }

/* bento feature grid */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { border-color: #cdd9e2; transform: translateY(-3px); box-shadow: 0 20px 40px -26px rgba(12, 74, 110, 0.45); }
.card.s2 { grid-column: span 2; } .card.s3 { grid-column: span 3; } .card.s6 { grid-column: span 6; }
@media (max-width: 860px) { .bento { grid-template-columns: 1fr 1fr; } .card.s2, .card.s3, .card.s6 { grid-column: span 1; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .card.s2, .card.s3, .card.s6 { grid-column: span 1; } }
.card .ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy), var(--navy-2)); color: var(--accent); margin-bottom: 18px; }
.card .ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { margin: 0; color: var(--body); font-size: 16px; }

.band { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; gap: 30px; } }
.step { text-align: center; position: relative; }
.step .num { width: 52px; height: 52px; border-radius: 999px; margin: 0 auto 18px; display: grid; place-items: center;
  font-weight: 800; color: #fff; background: linear-gradient(150deg, var(--navy), var(--navy-2)); font-size: 20px;
  box-shadow: 0 12px 26px -12px rgba(12, 74, 110, 0.7); }
.step h3 { font-size: 20px; } .step p { color: var(--muted); margin: 0; }

/* split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split .kicker { color: var(--accent-strong); font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
.split h2 { font-size: clamp(28px, 3.6vw, 38px); font-weight: 800; margin: 12px 0 16px; }
.split ul { list-style: none; padding: 0; margin: 22px 0 0; }
.split li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--body); }
.split li svg { width: 22px; height: 22px; color: var(--accent-strong); flex: none; margin-top: 2px; }
.split-art { position: relative; overflow: hidden; border-radius: 24px; padding: 44px 34px; color: #fff; min-height: 340px;
  background: radial-gradient(560px 300px at 22% 0%, rgba(56,189,248,0.28), transparent 60%), linear-gradient(160deg, var(--navy), var(--navy-deep));
  display: flex; align-items: center; justify-content: center; box-shadow: 0 34px 70px -34px rgba(6,35,56,0.75); }
.split-art::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 75%); mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 75%); }
.split-art-inner { position: relative; z-index: 1; text-align: center; }
.split-art .glyph { width: 180px; height: auto; margin: 0 auto 22px; opacity: 0.97; }
.split-tag { color: #a9c8dc; font-size: 15px; margin: 0 0 20px; }
.split-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.split-chips span { font-size: 13px; font-weight: 600; color: #cfe0ec; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; padding: 6px 14px; }

.cta-band { position: relative; overflow: hidden; color: #fff; text-align: center;
  background: radial-gradient(700px 380px at 50% -10%, rgba(34,211,238,0.25), transparent 60%), linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%); }
.cta-band h2 { color: #fff; font-size: clamp(30px, 4.2vw, 46px); font-weight: 800; }
.cta-band p { color: #a9c8dc; font-size: 19px; max-width: 560px; margin: 14px auto 34px; }
.cta-band .cta-row { justify-content: center; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--navy-ink); color: #8fb0c6; padding: 60px 0 40px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 36px; margin-bottom: 44px; }
.footer-brand { max-width: 300px; }
.footer-brand .logo-img { margin-bottom: 16px; }
.footer-brand p { color: #6f96ad; font-size: 15px; margin: 0; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { color: #cfe0ec; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.07em; margin: 0 0 15px; }
.footer-col a { display: block; color: #8fb0c6; font-size: 15px; margin-bottom: 11px; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.09); padding-top: 26px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px 24px; font-size: 14px; color: #5f849b; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-legal a { color: #8fb0c6; }
.footer-legal a:hover { color: #fff; text-decoration: none; }

/* ── Scroll reveal ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── Legal pages ────────────────────────────────────────── */
.legal-hero { position: relative; overflow: hidden; color: #fff; padding: 72px 0 52px;
  background: radial-gradient(700px 300px at 85% 0%, rgba(34,211,238,0.18), transparent 60%), linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); }
.legal-hero h1 { color: #fff; font-size: clamp(30px, 5vw, 46px); margin-bottom: 12px; }
.legal-hero .meta { color: #a9c8dc; font-size: 15px; }
.legal-body { padding: 60px 0 96px; }
.legal-layout { display: grid; grid-template-columns: 268px 1fr; gap: 60px; align-items: start; }
@media (max-width: 880px) { .legal-layout { grid-template-columns: 1fr; } .toc { display: none; } }
.toc { position: sticky; top: 92px; }
.toc h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin: 0 0 14px; }
.toc ol { list-style: none; margin: 0; padding: 0; }
.toc li { margin-bottom: 9px; }
.toc a { color: var(--body); font-size: 14px; }
.toc a:hover { color: var(--navy); }
.legal-content { max-width: 760px; }
.legal-content .notice { background: #ecfbfe; border: 1px solid #a5eef8; border-left: 4px solid var(--accent-strong);
  border-radius: 12px; padding: 18px 22px; color: #0e5a72; font-size: 15px; margin-bottom: 40px; }
.legal-content h2 { font-size: 22px; margin-top: 44px; margin-bottom: 12px; scroll-margin-top: 92px; padding-top: 4px; }
.legal-content h2 .n { color: var(--accent-strong); font-weight: 800; margin-right: 8px; }
.legal-content p { margin: 0 0 16px; }
.legal-content .footnote { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; font-style: italic; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: #a9c8dc; font-size: 14px; margin-bottom: 20px; }
.back-link:hover { color: #fff; text-decoration: none; }

/* ── Contact page ───────────────────────────────────────── */
.contact-card { max-width: 640px; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 34px 34px 30px; box-shadow: 0 10px 30px rgba(6, 35, 56, 0.06); }
.contact-card form { display: flex; flex-direction: column; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field > span { font-size: 13px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; }
.field input:not([type="checkbox"]), .field select, .field textarea { font: inherit; color: var(--body); background: #fff;
  border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px; width: 100%; }
.field textarea { resize: vertical; min-height: 140px; }
.field input:not([type="checkbox"]):focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent-strong); box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.15); }
.field.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-card .btn { align-self: flex-start; border: 0; cursor: pointer; }
.contact-card .btn[disabled] { opacity: 0.6; cursor: default; }
.form-status { margin: 0; font-size: 15px; color: var(--muted); min-height: 1.4em; }
.form-status.ok { color: #15803d; }
.form-status.err { color: #b91c1c; }

/* ── Contact page: inquiry types ────────────────────────── */
.contact-hero .eyebrow { margin-bottom: 14px; }
.inquiry-selector { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 30px; }
@media (max-width: 880px) { .inquiry-selector { grid-template-columns: repeat(2, 1fr); } }
.iq-btn { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; text-align: left;
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 14px;
  padding: 14px 16px; cursor: pointer; font: inherit; color: #fff;
  transition: background 0.12s ease, border-color 0.12s ease, transform 0.12s ease; }
.iq-btn:hover { background: rgba(255, 255, 255, 0.13); transform: translateY(-1px); }
.iq-btn.active { background: rgba(34, 211, 238, 0.16); border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset; }
.iq-icon svg { width: 20px; height: 20px; color: var(--accent); }
.iq-label { font-weight: 800; font-size: 15px; }
.iq-sub { font-size: 12.5px; color: #a9c8dc; }

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }

.info-panel h2 { font-size: clamp(26px, 3.4vw, 34px); margin: 12px 0 14px; }
.info-panel > p { color: var(--body); margin: 0 0 26px; }
.info-panel .kicker { color: var(--accent-strong); font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
.info-stats { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.info-stat { display: flex; align-items: flex-start; gap: 12px; }
.info-stat-icon { flex: none; width: 34px; height: 34px; border-radius: 10px; background: #ecfbfe;
  display: inline-flex; align-items: center; justify-content: center; }
.info-stat-icon svg { width: 17px; height: 17px; color: var(--accent-strong); }
.info-stat-num { font-weight: 800; color: var(--navy); font-size: 15.5px; }
.info-stat-label { color: var(--muted); font-size: 14px; }
.direct-links { display: flex; flex-direction: column; gap: 10px; }
.direct-link { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 13px 16px;
  cursor: pointer; font: inherit; color: var(--navy); font-weight: 700; font-size: 15px;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease; }
.direct-link:hover { border-color: var(--accent-strong); transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(6, 35, 56, 0.07); }
.direct-link .dl-arrow { color: var(--accent-strong); }

.form-section-title { font-size: 13px; font-weight: 800; color: var(--navy); text-transform: uppercase;
  letter-spacing: 0.07em; padding-top: 10px; border-top: 1px solid var(--line); }
.contact-card form > .form-section-title:first-child { border-top: 0; padding-top: 0; }
.type-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.type-pill { font: inherit; font-size: 14px; font-weight: 700; color: var(--body); background: #f2f6f9;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease; }
.type-pill:hover { border-color: var(--accent-strong); color: var(--navy); }
.type-pill.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.type-fields { display: none; }
.type-fields .field { margin-top: 16px; }
.type-fields .form-section-title { margin-bottom: 2px; }
.checkbox-group { display: flex; flex-direction: column; gap: 9px; }
.checkbox-item { display: flex; align-items: flex-start; gap: 11px; background: #f8fafc;
  border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px; cursor: pointer; }
.checkbox-item:hover { border-color: var(--accent-strong); }
.checkbox-item input { flex: none; width: 16px; height: 16px; margin-top: 3px; accent-color: var(--accent-strong); }
.cb-label { display: flex; flex-direction: column; font-size: 14px; color: var(--muted); }
.cb-label strong { color: var(--navy); font-size: 14.5px; }
.form-footnote { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.success-state { display: none; flex-direction: column; align-items: flex-start; gap: 12px; }
.success-icon { width: 52px; height: 52px; border-radius: 999px; background: #ecfdf5;
  display: inline-flex; align-items: center; justify-content: center; }
.success-icon svg { width: 26px; height: 26px; color: #15803d; }
.success-state h3 { font-size: 24px; margin: 4px 0 0; }
.success-state p { color: var(--body); margin: 0 0 8px; }

.why-band .section-head { margin-bottom: 44px; }
.why-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 900px; margin: 0 auto; }
@media (max-width: 720px) { .why-points { grid-template-columns: 1fr; } }
.why-point { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px; padding: 22px 24px; }
.why-point h4 { color: #fff; font-size: 17px; margin: 0 0 8px; }
.why-point p { color: #a9c8dc; font-size: 14.5px; margin: 0; line-height: 1.6; }
.why-band { background: radial-gradient(700px 300px at 85% 0%, rgba(34,211,238,0.14), transparent 60%),
  linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); border-top: 0; border-bottom: 0; }
.why-band .section-head h2 { color: #fff; }
.why-band .section-head p { color: #a9c8dc; }
.why-band .section-head .kicker { color: var(--accent); }
