/* ==========================================================================
   We10 — Design tokens
   ========================================================================== */
:root {
  --navy-900: #0B2340;
  --navy-800: #0F2E52;
  --blue-700: #185FA5;
  --blue-600: #1E6FBD;
  --blue-100: #E6F1FB;
  --blue-50: #F2F8FD;
  --amber-500: #F2A623;
  --amber-100: #FDF0DA;
  --ink: #16202C;
  --ink-muted: #556072;
  --ink-faint: #8A93A3;
  --line: #E3E8EF;
  --line-strong: #C9D2DE;
  --surface: #FFFFFF;
  --bg: #F6F9FC;

  --font-display: "Sora", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --container: 1160px;

  --shadow-card: 0 1px 2px rgba(11, 35, 64, 0.04), 0 8px 24px rgba(11, 35, 64, 0.06);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; color: var(--ink-muted); }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
:focus-visible { outline: 2px solid var(--blue-600); outline-offset: 2px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--navy { background: var(--navy-900); color: #C9D6E8; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--blue { background: var(--blue-50); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--amber-500); }

.lede {
  font-size: 19px;
  color: var(--ink-muted);
  max-width: 620px;
}
.section--navy .lede { color: #A9BAD2; }

/* ==========================================================================
   Signature shape — SIM-card cut corner, echoes the logo mark
   ========================================================================== */
.sim-card {
  position: relative;
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 30%);
  background: var(--surface);
  border: 1px solid var(--line);
}
.sim-notch {
  position: relative;
}
.sim-notch::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--bg) 50%, transparent 50.5%);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue-700); color: #fff; }
.btn-primary:hover { background: var(--navy-800); }
.btn-ghost { background: transparent; color: var(--navy-900); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--blue-700); color: var(--blue-700); }
.btn-on-navy { background: var(--amber-500); color: var(--navy-900); }
.btn-on-navy:hover { background: #ffbb4a; }
.btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.brand img { height: 58px; width: auto; }
.nav-primary {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
}
.nav-primary > li { position: relative; }
.nav-primary > li > a { padding: 10px 0; color: var(--navy-900); }
.nav-primary > li > a:hover, .nav-primary > li.is-active > a { color: var(--blue-700); }
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: 2px;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 300px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.15s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--navy-900);
}
.dropdown a:hover { background: var(--blue-50); color: var(--blue-700); }
.dropdown .dd-desc { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12.5px; color: var(--ink-faint); margin-top: 2px; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions .portal-link { font-family: var(--font-display); font-weight: 500; font-size: 14.5px; color: var(--navy-900); }
.header-actions .portal-link:hover { color: var(--blue-700); }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-primary, .header-actions .portal-link { display: none; }
  .nav-toggle {
    display: inline-flex;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line-strong);
    background: none;
  }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ""; display: block; width: 18px; height: 2px; background: var(--navy-900); position: relative;
  }
  .nav-toggle span::before { position: absolute; top: -6px; }
  .nav-toggle span::after { position: absolute; top: 6px; }
  .mobile-nav {
    display: none;
    position: fixed; inset: 84px 0 0 0;
    background: #fff; z-index: 49;
    overflow-y: auto;
    padding: 24px;
  }
  .mobile-nav.is-open { display: block; }
  .mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
  .mobile-nav > ul > li > a { display: block; padding: 14px 4px; font-family: var(--font-display); font-weight: 600; font-size: 17px; border-bottom: 1px solid var(--line); }
  .mobile-nav .sub { padding-left: 12px; }
  .mobile-nav .sub a { font-weight: 500; font-size: 15px; color: var(--ink-muted); padding: 10px 4px; }
  .mobile-nav .mobile-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
}
@media (min-width: 901px) { .mobile-nav { display: none !important; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding: 88px 0 96px; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(32px, 4vw, 50px); letter-spacing: -0.01em; }
.hero .lede { margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trustline { display: flex; gap: 28px; flex-wrap: wrap; font-family: var(--font-display); font-size: 13.5px; color: var(--ink-faint); }
.hero-trustline strong { color: var(--navy-900); }

.hero-visual { position: relative; }
.hero-panel {
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 15%);
  background: var(--navy-900);
  color: #fff;
  padding: 64px 32px 34px;
  box-shadow: var(--shadow-card);
}
.hero-panel .panel-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.12); font-size: 14px; }
.hero-panel .panel-row:last-child { border-bottom: none; }
.hero-panel .panel-label { color: #9AAAC4; }
.hero-panel .panel-value { font-family: var(--font-display); font-weight: 600; }
.hero-panel .panel-value.amber { color: var(--amber-500); }
.hero-panel-head { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero-panel-dot { width: 8px; height: 8px; border-radius: 50%; background: #2FD07A; flex-shrink: 0; }

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 28px;
}
.card h3 { font-size: 18px; margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 9%);
  padding: 32px 26px 26px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.service-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.service-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; margin-bottom: 16px; }
.service-card .card-link { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--blue-700); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 15.5px;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--blue-700);
}
.check-list li::after {
  content: "";
  position: absolute; left: 5px; top: 7px;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.section--navy .check-list li::before { background: var(--amber-500); }
.section--navy .check-list li::after { border-color: var(--navy-900); }
.section--navy .check-list li { color: #DCE5F2; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: #fff; }
.stat-label { font-size: 14px; color: #9AAAC4; margin-top: 6px; }

/* ==========================================================================
   Logo strip
   ========================================================================== */
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy-900);
  background: #fff;
}
.section--navy .chip { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); color: #fff; }

/* ==========================================================================
   Comparison tiers (no pricing)
   ========================================================================== */
.tier-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tier-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.tier-card.is-highlight { border-color: var(--blue-700); box-shadow: var(--shadow-card); }
.tier-head { padding: 24px 26px; border-bottom: 1px solid var(--line); }
.tier-head .tier-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.tier-head .tier-tag { display: inline-block; margin-top: 8px; font-size: 12.5px; font-weight: 600; color: var(--blue-700); background: var(--blue-100); padding: 4px 10px; border-radius: 999px; }
.tier-body { padding: 24px 26px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: var(--navy-900);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 4% 100%, 0 88%);
  color: #fff;
  padding: 64px 0 84px;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band .lede { margin: 0 auto 30px; color: #A9BAD2; }
.cta-band .hero-ctas { justify-content: center; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--navy-900); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-700); }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.checkbox-group label { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 400; color: var(--ink); }
.form-note { font-size: 13px; color: var(--ink-faint); margin-top: 16px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-900); color: #A9BAD2; padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-brand p { color: #7E90AC; font-size: 14px; max-width: 260px; }
.footer-col h4 { font-family: var(--font-display); font-size: 13.5px; letter-spacing: 0.03em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col li { margin-bottom: 11px; font-size: 14.5px; }
.footer-col a:hover { color: #fff; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  font-size: 12.5px;
  color: #6E80A0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a:hover { color: #fff; }

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-hero { padding: 56px 0 64px; }
.breadcrumb { font-size: 13.5px; color: var(--ink-faint); margin-bottom: 18px; font-family: var(--font-display); }
.breadcrumb a:hover { color: var(--blue-700); }
.page-hero h1 { font-size: clamp(28px, 3.6vw, 42px); max-width: 760px; }

/* ==========================================================================
   Utility
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4, .tier-grid, .stat-grid, .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-legal { flex-direction: column; }
  .field.full, .form-grid .field { grid-column: 1 / -1; }
}

/* ==========================================================================
   Cookie consent banner
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: var(--navy-900);
  color: #C9D6E8;
  border-top: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 -8px 24px rgba(11, 35, 64, 0.18);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-inner p { margin: 0; font-size: 13.5px; max-width: 640px; color: #C9D6E8; }
.cookie-banner-inner a { color: #fff; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner .btn-ghost { border-color: rgba(255,255,255,0.3); color: #fff; }
.cookie-banner .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.06); }
.cookie-banner .btn-primary { background: var(--amber-500); color: var(--navy-900); }
.cookie-banner .btn-primary:hover { background: #ffbb4a; }
@media (max-width: 640px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; text-align: left; }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-banner-actions .btn { width: 100%; justify-content: center; }
}
