/* ============================================================
   SBS TELECOM — Enterprise WordPress Theme
   Main Stylesheet
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --navy:          #0A2540;
  --navy-dark:     #061828;
  --blue:          #0066FF;
  --cyan:          #00C2FF;
  --purple:        #6A00FF;
  --light-gray:    #F6F8FB;
  --white:         #FFFFFF;
  --text-dark:     #111827;
  --text-secondary:#6B7280;
  --border:        #E5E7EB;

  --gradient-brand: linear-gradient(135deg, #0066FF 0%, #6A00FF 55%, #00C2FF 100%);
  --gradient-hero:  linear-gradient(135deg, #0A2540 0%, #0D1F3C 40%, #0A1628 100%);

  --shadow-card:  0 1px 3px rgba(0,0,0,.08), 0 8px 24px rgba(0,0,0,.06);
  --shadow-hover: 0 4px 12px rgba(0,0,0,.12), 0 20px 40px rgba(0,0,0,.10);
  --shadow-brand: 0 4px 24px rgba(0,102,255,.25);
  --shadow-glass: 0 8px 32px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.1);

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.375rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-secondary); line-height: 1.7; }

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section-padding { padding: 5rem 0; }
@media (min-width: 1024px) { .section-padding { padding: 6rem 0; } }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
  background: rgba(0,102,255,.07);
  border: 1px solid rgba(0,102,255,.15);
  border-radius: 999px;
  padding: .3rem .875rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.section-heading--white { color: var(--white); }

.section-subtext {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 44rem;
}
.section-subtext--white { color: rgba(255,255,255,.6); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Grid ─────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 3.5rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.04);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.05);
  transform: translateY(-3px);
  border-color: rgba(0,102,255,.15);
}

.card-glass {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-glass);
}

.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: all .2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0,102,255,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-secondary:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}

.btn-sm { padding: .5rem 1rem; font-size: .8125rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform .2s ease; }
.btn:hover svg { transform: translateX(2px); }

/* ── Background Grid Pattern ──────────────────────────────── */
.bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ── Badges / Tags ────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .25rem .75rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
}
.badge-blue { background: rgba(0,102,255,.1); color: var(--blue); }
.badge-cyan { background: rgba(0,194,255,.12); color: var(--cyan); }
.badge-green { background: rgba(16,185,129,.1); color: #10b981; }
.badge-purple { background: rgba(106,0,255,.1); color: var(--purple); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(10,37,64,.95);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,.1);
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-brand);
  flex-shrink: 0;
}
.logo-icon span {
  color: var(--white);
  font-weight: 900;
  font-size: .875rem;
  line-height: 1;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-name {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -.025em;
}
.logo-tagline {
  color: rgba(255,255,255,.4);
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* Desktop Nav */
.main-nav {
  display: none;
  align-items: center;
  gap: 0;
}
@media (min-width: 1200px) {
  .main-nav { display: flex; }
}

.nav-item {
  position: relative;
}
.nav-item > button {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem .625rem;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: var(--radius-sm);
  transition: all .15s ease;
  white-space: nowrap;
}
.nav-item > button:hover,
.nav-item:hover > button {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.nav-item > button svg {
  width: 12px; height: 12px;
  transition: transform .2s ease;
}
.nav-item:hover > button svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.15), 0 0 0 1px rgba(0,0,0,.06);
  padding: 1rem;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .15s ease;
  pointer-events: none;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Bridge to prevent hover gap */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 10px;
}

.nav-dropdown--left   { left: 0; }
.nav-dropdown--right  { right: 0; }
.nav-dropdown--center { left: 50%; transform: translateX(-50%) translateY(-6px); }
.nav-item:hover .nav-dropdown--center { transform: translateX(-50%) translateY(0); }

.nav-dropdown--w1 { width: 240px; }
.nav-dropdown--w2 { width: 500px; }
.nav-dropdown--w3 { width: 680px; }

.dropdown-grid {
  display: grid;
  gap: .25rem;
}
.dropdown-grid--1 { grid-template-columns: 1fr; }
.dropdown-grid--2 { grid-template-columns: repeat(2, 1fr); }
.dropdown-grid--3 { grid-template-columns: repeat(3, 1fr); }

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  padding: .625rem .75rem;
  border-radius: var(--radius-sm);
  transition: background .15s ease;
  text-decoration: none;
}
.dropdown-item:hover { background: #F9FAFB; }
.dropdown-item:hover .dropdown-icon { background: #EBF2FF; }
.dropdown-item:hover .dropdown-icon svg { color: var(--blue); }

.dropdown-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: #F3F4F6;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .15s ease;
}
.dropdown-icon svg { width: 13px; height: 13px; color: var(--navy); }

.dropdown-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.dropdown-desc {
  font-size: .6875rem;
  color: var(--text-secondary);
  margin-top: 1px;
  line-height: 1.3;
}

.dropdown-footer {
  border-top: 1px solid #F3F4F6;
  margin-top: .75rem;
  padding-top: .625rem;
}
.dropdown-footer a {
  font-size: .75rem;
  font-weight: 600;
  color: var(--blue);
  transition: color .15s ease;
}
.dropdown-footer a:hover { color: var(--purple); }

/* Header CTAs */
.header-actions {
  display: none;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  .header-actions { display: flex; }
}
.header-actions a {
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  transition: color .15s ease;
}
.header-actions a:hover { color: var(--white); }

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.7);
  transition: all .15s ease;
}
.mobile-toggle:hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.mobile-toggle svg { width: 20px; height: 20px; }
@media (min-width: 1200px) { .mobile-toggle { display: none; } }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  background: rgba(10,37,64,.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  overflow-y: auto;
  padding: 1rem 1rem 2rem;
}
.mobile-menu.active { display: block; }

.mobile-nav-item {}
.mobile-nav-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .875rem 1rem;
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: var(--radius-md);
  transition: all .15s ease;
}
.mobile-nav-toggle:hover { color: var(--white); background: rgba(255,255,255,.08); }
.mobile-nav-toggle svg { width: 16px; height: 16px; transition: transform .2s ease; }
.mobile-nav-item.open .mobile-nav-toggle { color: var(--white); }
.mobile-nav-item.open .mobile-nav-toggle svg { transform: rotate(180deg); }

.mobile-subnav {
  display: none;
  margin-left: .75rem;
  margin-bottom: .5rem;
  padding-bottom: .25rem;
}
.mobile-nav-item.open .mobile-subnav { display: block; }

.mobile-subnav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .25rem;
}
@media (min-width: 480px) {
  .mobile-subnav-grid { grid-template-columns: repeat(2, 1fr); }
}

.mobile-subnav-link {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem 1rem;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  border-radius: var(--radius-sm);
  transition: all .15s ease;
}
.mobile-subnav-link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.mobile-subnav-link svg { width: 15px; height: 15px; flex-shrink: 0; opacity: .4; }

.mobile-view-all {
  display: inline-block;
  padding: .5rem 1rem;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(0,194,255,.8);
  transition: color .15s ease;
}
.mobile-view-all:hover { color: var(--cyan); }

.mobile-actions {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 1rem;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.mobile-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.mobile-actions-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .875rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  transition: all .15s ease;
}
.mobile-actions-row a:hover { color: var(--white); background: rgba(255,255,255,.08); }

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-orb-1 {
  position: absolute;
  top: 25%;
  left: -8rem;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(0,102,255,.12);
  filter: blur(120px);
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute;
  bottom: 25%;
  right: 0;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(106,0,255,.1);
  filter: blur(130px);
  pointer-events: none;
}
.hero-orb-3 {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  border-radius: 50%;
  background: rgba(0,194,255,.04);
  filter: blur(100px);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-network {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  display: none;
  pointer-events: none;
}
@media (min-width: 1024px) { .hero-network { display: block; } }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-content { padding: 0 2rem; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
}

.hero-inner { max-width: 650px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line {
  width: 24px; height: 1px;
  background: var(--cyan);
}
.hero-eyebrow-text {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}

.hero-subtext {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
@media (min-width: 480px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: .875rem 1rem;
  backdrop-filter: blur(8px);
}
.stat-card svg { width: 16px; height: 16px; color: var(--cyan); margin-bottom: .375rem; }
.stat-label { font-size: .8125rem; font-weight: 700; color: var(--white); }
.stat-sub { font-size: .6875rem; color: rgba(255,255,255,.4); margin-top: 2px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */

.trust-strip {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem 1.5rem;
}
.trust-label {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-right: .5rem;
}
.trust-item {
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: .375rem;
}
.trust-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: .7;
}

/* ============================================================
   SOLUTIONS GRID
   ============================================================ */

.solutions-section {
  background: var(--white);
  position: relative;
}
.solutions-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.solutions-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3.5rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .solutions-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .solutions-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

/* ── Solution Cards ──────────────────────────────────────── */
.solution-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.04);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
/* Animated gradient top bar */
.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,102,255,.1), 0 4px 12px rgba(0,0,0,.06);
  border-color: rgba(0,102,255,.18);
}
.solution-card:hover::before { transform: scaleX(1); }
.solution-card:hover .solution-icon { transform: scale(1.08); }
.solution-card:hover .solution-title { color: var(--blue); }

.solution-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.solution-icon svg { width: 26px; height: 26px; }

/* Icon colour variants – slightly richer backgrounds */
.icon-blue   { background: rgba(0,102,255,.1);  } .icon-blue   svg { color: var(--blue);   }
.icon-purple { background: rgba(106,0,255,.1);  } .icon-purple svg { color: var(--purple); }
.icon-green  { background: rgba(16,185,129,.1); } .icon-green  svg { color: #10b981;       }
.icon-orange { background: rgba(249,115,22,.1); } .icon-orange svg { color: #f97316;       }
.icon-sky    { background: rgba(14,165,233,.1); } .icon-sky    svg { color: #0ea5e9;       }
.icon-rose   { background: rgba(244,63,94,.1);  } .icon-rose   svg { color: #f43f5e;       }
.icon-cyan   { background: rgba(0,194,255,.1);  } .icon-cyan   svg { color: var(--cyan);   }

.solution-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color .2s ease;
  line-height: 1.3;
}
.solution-desc {
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}
.solution-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  transition: gap .2s ease;
}
.solution-link svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform .2s ease; }
.solution-card:hover .solution-link { gap: .75rem; }
.solution-card:hover .solution-link svg { transform: translateX(3px); }

.solutions-cta { text-align: center; margin-top: 3.5rem; }

/* ============================================================
   WHY SBS SECTION
   ============================================================ */

.why-section { background: var(--light-gray); }

.why-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

.why-checklist { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem; }
.why-checklist li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  color: var(--text-secondary);
}
.why-checklist li svg { width: 16px; height: 16px; color: #10b981; flex-shrink: 0; }

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
}

.reason-card {
  padding: 1.375rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.03);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.reason-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,102,255,.08);
  border-color: rgba(0,102,255,.15);
}
.reason-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem;
}
.reason-icon svg { width: 20px; height: 20px; }
.reason-title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .375rem;
}
.reason-desc {
  font-size: .75rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   COVERAGE SECTION
   ============================================================ */

.coverage-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.coverage-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: .04;
}

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .coverage-stats { grid-template-columns: repeat(4, 1fr); }
}

.coverage-stat {
  text-align: center;
  padding: 1.5rem;
}
.coverage-stat-number {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: .25rem;
}
.coverage-stat-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
}

/* ============================================================
   PLATFORM SHOWCASE
   ============================================================ */

.platform-section { background: var(--white); }

.platform-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .platform-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .platform-features { grid-template-columns: repeat(3, 1fr); } }

.platform-feature {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.03), 0 4px 12px rgba(0,0,0,.03);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.platform-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,102,255,.08);
  border-color: rgba(0,102,255,.15);
}
.platform-feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-card);
}
.platform-feature-icon svg { width: 20px; height: 20px; color: var(--blue); }
.platform-feature h3 {
  font-size: .9375rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.platform-feature p {
  font-size: .8125rem;
  line-height: 1.65;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */

.industries-section { background: var(--light-gray); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }

.industry-card {
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: all .2s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.industry-card:hover .industry-icon { background: #EBF2FF; }
.industry-card:hover .industry-icon svg { color: var(--blue); }

.industry-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.industry-icon svg { width: 22px; height: 22px; color: var(--navy); transition: color .15s ease; }
.industry-name { font-size: .875rem; font-weight: 600; color: var(--text-dark); }
.industry-desc { font-size: .75rem; color: var(--text-secondary); line-height: 1.4; }

/* ============================================================
   DEVELOPER CTA
   ============================================================ */

.dev-cta {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.dev-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .dev-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.dev-cta-code {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  font-family: 'Courier New', monospace;
  font-size: .8125rem;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  min-width: 280px;
  flex-shrink: 0;
}
.dev-cta-code .code-comment { color: rgba(255,255,255,.25); }
.dev-cta-code .code-key { color: var(--cyan); }
.dev-cta-code .code-string { color: #98FF98; }
.dev-cta-code .code-num { color: #FFB347; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-section { background: var(--light-gray); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

.testimonial-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card svg { width: 28px; height: 28px; color: rgba(0,102,255,.2); }
.testimonial-quote {
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .875rem;
  border-top: 1px solid #F3F4F6;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.author-avatar span { color: var(--white); font-weight: 700; font-size: .875rem; }
.author-name { font-size: .875rem; font-weight: 600; color: var(--text-dark); }
.author-role { font-size: .75rem; color: var(--text-secondary); margin-top: 1px; }

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,102,255,.12) 0%, transparent 50%, rgba(106,0,255,.12) 100%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.final-cta-icon svg { width: 28px; height: 28px; color: var(--white); }

.final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.final-cta-subtext {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.6);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem 1.5rem;
}
.trust-badge-item {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}
.trust-badges-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}

/* ============================================================
   FOOTER
   ============================================================ */

#site-footer {
  background: var(--navy);
  color: var(--white);
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px)  { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 2fr repeat(5, 1fr); gap: 1.5rem; } }

.footer-brand {}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.footer-brand-desc {
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 1.5rem;
}
.footer-contact { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1.5rem; }
.footer-contact a, .footer-contact span {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
  transition: color .15s ease;
}
.footer-contact a:hover { color: rgba(255,255,255,.8); }
.footer-contact svg { width: 14px; height: 14px; color: rgba(0,194,255,.6); flex-shrink: 0; }
.footer-socials { display: flex; gap: .625rem; }
.footer-social {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all .15s ease;
}
.footer-social:hover { background: rgba(255,255,255,.15); color: var(--white); }
.footer-social svg { width: 15px; height: 15px; }

.footer-col h3 {
  font-size: .6875rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  transition: color .15s ease;
  line-height: 1.5;
}
.footer-links a:hover { color: rgba(255,255,255,.85); }

.footer-sister {
  border-top: 1px solid rgba(255,255,255,.07);
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer-sister strong { color: rgba(255,255,255,.7); }
.footer-sister a { color: #4EB4FF; text-decoration: none; }
.footer-sister a:hover { color: #7DCFFF; text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-copyright {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  justify-content: center;
}
.footer-legal a {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  transition: color .15s ease;
}
.footer-legal a:hover { color: rgba(255,255,255,.6); }
.status-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10b981;
  margin-right: 4px;
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */

.page-hero {
  background: var(--gradient-hero);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .page-hero { padding: 9rem 0 5rem; } }

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { font-size: 1.0625rem; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.breadcrumbs a { color: rgba(255,255,255,.4); transition: color .15s ease; }
.breadcrumbs a:hover { color: rgba(255,255,255,.8); }
.breadcrumbs span { color: rgba(255,255,255,.65); }
.breadcrumb-sep { opacity: .4; }

/* ============================================================
   INNER PAGE CONTENT
   ============================================================ */

.page-content {
  padding: 4rem 0 5rem;
  background: var(--white);
}

.content-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .content-grid { grid-template-columns: 2fr 1fr; }
}

.prose h2 { margin-bottom: 1rem; margin-top: 2.5rem; color: var(--text-dark); font-size: 1.5rem; }
.prose h3 { margin-bottom: .75rem; margin-top: 1.75rem; color: var(--text-dark); font-size: 1.125rem; }
.prose p { margin-bottom: 1.25rem; color: var(--text-secondary); line-height: 1.75; }
.prose ul { margin-bottom: 1.25rem; padding-left: 0; }
.prose ul li {
  display: flex; align-items: flex-start; gap: .625rem;
  margin-bottom: .625rem;
  font-size: .9375rem;
  color: var(--text-secondary);
}
.prose ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: .5rem;
}

.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.75rem 1.75rem;
  position: sticky;
  top: 88px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.sidebar-card h3 { font-size: .9375rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-dark); }
.sidebar-link-list { display: flex; flex-direction: column; gap: .25rem; }
.sidebar-link {
  display: flex; align-items: center; gap: .5rem;
  padding: .625rem .875rem;
  font-size: .875rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all .15s ease;
  border-left: 2px solid transparent;
}
.sidebar-link:hover {
  background: rgba(0,102,255,.05);
  color: var(--blue);
  border-left-color: var(--blue);
  padding-left: 1.125rem;
}
.sidebar-link--active {
  background: rgba(0,102,255,.07);
  color: var(--blue);
  font-weight: 600;
  border-left-color: var(--blue);
}
.sidebar-link svg { width: 13px; height: 13px; opacity: .45; flex-shrink: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.5fr; align-items: start; }
}

.contact-info h2 { margin-bottom: 1rem; font-size: 1.75rem; }
.contact-info p { margin-bottom: 2rem; }

.contact-methods { display: flex; flex-direction: column; gap: .875rem; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .2s, box-shadow .2s;
}
.contact-method:hover {
  border-color: rgba(0,102,255,.2);
  box-shadow: 0 4px 16px rgba(0,102,255,.06);
}
.contact-method-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-md);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}
.contact-method-icon svg { width: 18px; height: 18px; color: var(--blue); }
.contact-method h4 { font-size: .875rem; font-weight: 600; margin-bottom: .25rem; }
.contact-method p { font-size: .8125rem; margin: 0; }
.contact-method a { color: var(--blue); font-weight: 500; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 2rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-brand);
}
.contact-form-wrap h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.contact-form-wrap > p { font-size: .875rem; margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .375rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .9375rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,102,255,.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   FEATURES / BENEFIT BLOCKS
   ============================================================ */

.features-block {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .features-block { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-block { grid-template-columns: repeat(3, 1fr); } }

.feature-item {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  padding: 1.5rem;
}
.feature-icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon-wrap svg { width: 20px; height: 20px; }
.feature-title { font-size: .9375rem; font-weight: 700; color: var(--text-dark); }
.feature-desc { font-size: .8375rem; color: var(--text-secondary); line-height: 1.65; }

/* ============================================================
   PRICING
   ============================================================ */

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.pricing-card--featured {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.pricing-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  padding: .25rem .75rem;
  background: var(--gradient-brand);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pricing-name { font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.pricing-price { font-size: 2.25rem; font-weight: 800; line-height: 1; margin-bottom: .25rem; }
.pricing-period { font-size: .8125rem; opacity: .6; margin-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1.75rem; }
.pricing-features li {
  display: flex; align-items: center; gap: .625rem;
  font-size: .875rem;
}
.pricing-features li svg { width: 14px; height: 14px; color: #10b981; flex-shrink: 0; }
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,.8); }

/* ============================================================
   BLOG / RESOURCES
   ============================================================ */

.blog-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {}
.blog-card-img {
  height: 200px;
  background: var(--gradient-hero);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-meta {
  display: flex; gap: .5rem; align-items: center;
  font-size: .75rem; color: var(--text-secondary); margin-bottom: .75rem;
}
.blog-card-title {
  font-size: 1rem; font-weight: 700; margin-bottom: .625rem;
  color: var(--text-dark); line-height: 1.4;
  transition: color .15s ease;
}
.blog-card-title a:hover { color: var(--blue); }
.blog-card-excerpt { font-size: .8375rem; line-height: 1.65; }

/* ============================================================
   ANNOUNCEMENTS / ALERTS
   ============================================================ */

.announcement-bar {
  background: var(--gradient-brand);
  padding: .625rem 1rem;
  text-align: center;
  font-size: .8125rem;
  color: rgba(255,255,255,.9);
}
.announcement-bar a { color: var(--white); font-weight: 600; text-decoration: underline; }

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.5rem;
  text-align: center;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,102,255,.2);
  box-shadow: 0 8px 40px rgba(0,0,0,.15);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,102,255,.15) 0%, transparent 60%, rgba(106,0,255,.12) 100%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h3 { color: var(--white); font-size: 1.375rem; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }
.cta-banner .btn {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.cta-banner .btn:hover { background: rgba(255,255,255,.93); transform: translateY(-1px); }

/* ============================================================
   UTILITIES
   ============================================================ */

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: .5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.flex-wrap { flex-wrap: wrap; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.bg-white { background: var(--white); }
.bg-light { background: var(--light-gray); }
.bg-navy { background: var(--navy); }
.text-white { color: var(--white); }
.text-cyan { color: var(--cyan); }
.text-blue { color: var(--blue); }
.w-full { width: 100%; }

/* ── WordPress Core ───────────────────────────────────────── */
.wp-block-image img { border-radius: var(--radius-md); }
.alignwide { max-width: 1000px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .8125rem; color: var(--text-secondary); margin-top: .5rem; text-align: center; }

/* WordPress comment form */
#respond { padding: 2rem 0; }
#respond h3 { margin-bottom: 1.5rem; }
.comment-form input, .comment-form textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); font-family: 'Inter', sans-serif;
  margin-top: .375rem; outline: none;
}
.comment-form input:focus, .comment-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,102,255,.1);
}
.comment-form .submit { margin-top: 1rem; }

/* Pagination */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; margin-top: 3rem;
}
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  font-size: .875rem; font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  transition: all .15s ease;
}
.pagination a:hover { border-color: var(--blue); color: var(--blue); }
.pagination .current { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* Smooth scroll offset for fixed header */
:target { scroll-margin-top: 80px; }

/* ── Archive / Blog Listing ───────────────────────────────── */
.arch-subcats {
  display: flex; flex-wrap: wrap; gap: .625rem; margin-bottom: 2rem;
}
.arch-subcat-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8125rem; font-weight: 600;
  color: var(--blue);
  background: #EBF2FF; border: 1.5px solid #c7deff;
  padding: .4rem 1rem; border-radius: 999px;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.arch-subcat-pill:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.arch-subcat-count {
  font-size: .6875rem; font-weight: 700;
  background: rgba(0,102,255,.12); color: var(--blue);
  padding: .1rem .45rem; border-radius: 999px;
}
.arch-subcat-pill:hover .arch-subcat-count { background: rgba(255,255,255,.2); color: var(--white); }

.arch-meta {
  font-size: .875rem; color: var(--text-secondary);
  margin-bottom: 1.75rem; font-weight: 500;
}

.arch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 960px) { .arch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .arch-grid { grid-template-columns: 1fr; } }

.arch-card {
  display: flex; flex-direction: column;
  overflow: hidden; padding: 0;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.arch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0,102,255,.15);
}
.arch-card-img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.arch-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.arch-card:hover .arch-card-img { transform: scale(1.04); }

.arch-card-body {
  display: flex; flex-direction: column; flex: 1;
  padding: 1.5rem;
}
.arch-card-cat {
  font-size: .6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--blue);
  text-decoration: none; margin-bottom: .625rem; display: block;
}
.arch-card-cat:hover { text-decoration: underline; }
.arch-card-title {
  font-size: 1rem; font-weight: 700; line-height: 1.4;
  color: var(--text-dark); margin: 0 0 .75rem;
}
.arch-card-title a { text-decoration: none; color: inherit; }
.arch-card-title a:hover { color: var(--blue); }
.arch-card-excerpt {
  font-size: .875rem; color: var(--text-secondary);
  line-height: 1.65; margin: 0 0 1.25rem; flex: 1;
}
.arch-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 1rem;
  margin-top: auto;
}
.arch-card-date { font-size: .75rem; color: var(--text-secondary); }
.arch-card-link {
  font-size: .8125rem; font-weight: 700; color: var(--blue);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: .3rem;
}
.arch-card-link svg { width: 14px; height: 14px; }
.arch-card-link:hover { gap: .5rem; }

.arch-empty {
  text-align: center; padding: 4rem 0;
  color: var(--text-secondary);
}
.arch-empty p { margin-bottom: 1.5rem; }

/* ══════════════════════════════════════════════════════════
   LEADERSHIP & VISION PAGE
   ══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────── */
.lv-hero { position: relative; overflow: hidden; }

.lv-hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 0;
}
.lv-hero-glow--1 {
  width: 520px; height: 520px;
  background: rgba(0,102,255,.13);
  top: -140px; right: -80px;
}
.lv-hero-glow--2 {
  width: 380px; height: 380px;
  background: rgba(106,0,255,.1);
  bottom: -100px; left: -60px;
}

.lv-hero-content {
  position: relative; z-index: 1;
  /* override page-hero-content centering for left-aligned hero */
  text-align: left;
  max-width: 1280px;
}

.lv-hero-eyebrow { color: var(--cyan) !important; opacity: .9; }

.lv-hero-body { max-width: 660px; }

.lv-hero-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white);
  line-height: 1.15; letter-spacing: -.025em;
  margin: .5rem 0 1rem;
}
.lv-br { display: block; }

.lv-hero-sub {
  font-size: 1.0625rem; color: rgba(255,255,255,.65);
  line-height: 1.75; margin: 0 0 2.75rem;
}

/* Stats bar — centred with margin auto */
.lv-stats-bar {
  display: inline-flex; flex-wrap: wrap;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.125rem 2rem;
  margin: 0 auto 0 0; /* left-align by default */
}
.lv-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 1.75rem;
}
.lv-stat-num {
  font-size: 1.5rem; font-weight: 800;
  color: var(--white); line-height: 1; letter-spacing: -.02em;
}
.lv-stat-lbl {
  font-size: .6875rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .08em;
  margin-top: .375rem; white-space: nowrap;
}
.lv-stat-div {
  display: block; width: 1px; height: 38px;
  background: rgba(255,255,255,.12); flex-shrink: 0;
}
@media (max-width: 600px) {
  .lv-stats-bar { padding: .875rem 1rem; }
  .lv-stat { padding: 0 .875rem; }
  .lv-stat-num { font-size: 1.1875rem; }
  .lv-stat-div { height: 28px; }
}

/* ── Founder ──────────────────────────────────────────────── */
.lv-founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 960px) {
  .lv-founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Identity card — light on light-gray background */
.lv-id-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.lv-id-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 50%, var(--purple) 100%);
}
.lv-id-card-body {
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: .875rem;
}
.lv-id-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, #EBF2FF 0%, #F0F9FF 100%);
  border: 3px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lv-id-initial {
  font-size: 2.125rem; font-weight: 800;
  color: var(--blue); font-family: 'Inter', sans-serif;
  line-height: 1;
}
.lv-id-name {
  font-size: 1.0625rem; font-weight: 700;
  color: var(--text-dark); margin: 0; line-height: 1.3;
}
.lv-id-title {
  font-size: .8125rem; font-weight: 600;
  color: var(--blue); margin: 0; letter-spacing: .02em;
}
.lv-id-badges {
  display: flex; gap: .4rem; flex-wrap: wrap; justify-content: center;
}
.lv-badge-pill {
  font-size: .6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; padding: .3rem .8rem; border-radius: 999px;
}
.lv-badge-pill--blue { background: #EBF2FF; color: #0052cc; border: 1px solid #c7deff; }
.lv-badge-pill--teal { background: #E0FFF9; color: #007a5e; border: 1px solid #b3ede3; }
.lv-id-divider {
  width: 100%; border: none; border-top: 1px solid var(--border); margin: .25rem 0;
}
.lv-id-focus-list {
  display: flex; flex-wrap: wrap; gap: .375rem; justify-content: center;
}
.lv-focus-tag {
  font-size: .6875rem; color: var(--text-secondary);
  background: var(--light-gray);
  border: 1px solid var(--border);
  padding: .25rem .65rem; border-radius: 6px;
}

/* Bio column — constrained for readability */
.lv-bio-col { max-width: 680px; }

.lv-bio-title {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 800; color: var(--text-dark); line-height: 1.3;
}
.lv-bio-text {
  font-size: 1rem; color: var(--text-secondary);
  line-height: 1.75; max-width: 640px;
}
.lv-bio-text strong { color: var(--text-dark); }

.lv-meta-block {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  max-width: 640px;
}
.lv-meta-row { display: flex; align-items: flex-start; gap: .875rem; }
.lv-meta-icon-wrap {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.lv-meta-label {
  font-size: .6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--text-secondary); margin: 0 0 .2rem;
}
.lv-meta-value {
  font-size: .875rem; color: var(--text-dark); font-weight: 500; margin: 0;
}

.lv-pullquote {
  position: relative;
  border-left: 3px solid var(--cyan);
  padding: 1.125rem 1.5rem 1.125rem 1.75rem;
  margin: 0; max-width: 640px;
  background: linear-gradient(90deg, rgba(0,194,255,.05) 0%, transparent 70%);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.lv-pullquote-mark {
  position: absolute; top: -.25rem; left: .5rem;
  font-size: 3.5rem; line-height: 1; font-weight: 900;
  color: var(--cyan); opacity: .2; font-family: Georgia, serif;
  pointer-events: none; user-select: none;
}
.lv-pullquote p {
  font-size: .9375rem; color: var(--text-secondary);
  font-style: italic; line-height: 1.75; margin: 0 0 .625rem;
}
.lv-pullquote cite {
  font-size: .8rem; font-weight: 700;
  color: var(--blue); font-style: normal; letter-spacing: .02em;
}

/* ── Executive Pillars ────────────────────────────────────── */
.lv-section-hd { max-width: 48rem; margin: 0 auto 3rem; }
.lv-section-sub { max-width: 42rem !important; }

.lv-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 960px) { .lv-pillars-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .lv-pillars-grid { grid-template-columns: 1fr; } }

.lv-pillar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
}
/* Gradient top accent using CSS custom property --pillar-grad */
.lv-pillar-card::before {
  content: ''; display: block;
  height: 3px;
  background: var(--pillar-grad, var(--gradient-brand));
}
.lv-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0,102,255,.15);
}
.lv-pc-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 1.75rem 1.75rem 0;
}
.lv-pc-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.lv-pc-num {
  font-size: .6875rem; font-weight: 800;
  color: #d1d5db; letter-spacing: .08em;
}
.lv-pc-badge {
  display: inline-block;
  font-size: .6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; padding: .3rem .75rem;
  border-radius: 6px; margin: 1rem 1.75rem .5rem;
}
.lv-pc-title {
  font-size: 1rem; font-weight: 700;
  color: var(--text-dark); margin: 0;
  padding: 0 1.75rem;
}
.lv-pc-role {
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-secondary);
  margin: .375rem 0 0; padding: 0 1.75rem;
}
.lv-pc-desc {
  font-size: .875rem; color: var(--text-secondary);
  line-height: 1.7; margin: .875rem 0 0;
  padding: 0 1.75rem;
}
.lv-pc-list {
  list-style: none; padding: 1.25rem 1.75rem;
  margin: auto 0 0;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: .5rem;
}
.lv-pc-list li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8125rem; color: var(--text-secondary);
}

/* ── Guiding Principles ───────────────────────────────────── */
.lv-principles-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 960px) {
  .lv-principles-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

.lv-pr-left { position: sticky; top: 100px; }
@media (max-width: 960px) { .lv-pr-left { position: static; } }

.lv-pr-right { display: flex; flex-direction: column; }

.lv-pr-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.lv-pr-item:first-child { padding-top: 0; }
.lv-pr-item:last-child { border-bottom: none; padding-bottom: 0; }
.lv-pr-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.lv-pr-content { flex: 1; }
.lv-pr-num {
  font-size: .6875rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; display: block;
  margin-bottom: .3rem;
}
.lv-pr-title {
  font-size: 1rem; font-weight: 700;
  color: var(--text-dark); margin: 0 0 .5rem;
}
.lv-pr-desc {
  font-size: .9rem; color: var(--text-secondary);
  line-height: 1.7; margin: 0; max-width: 520px;
}

/* ── Board Message ────────────────────────────────────────── */
.lv-board-section {
  position: relative; overflow: hidden;
  background: var(--navy);
}
.lv-board-radial {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,102,255,.14) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.lv-board-inner {
  position: relative; z-index: 1;
  max-width: 740px; margin: 0 auto; text-align: center;
}
.lv-board-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--cyan);
  background: rgba(0,194,255,.08);
  border: 1px solid rgba(0,194,255,.18);
  padding: .4rem 1rem; border-radius: 999px;
  margin-bottom: 1.75rem;
}
.lv-board-deco {
  font-size: 5rem; line-height: .8; font-weight: 900;
  color: rgba(0,194,255,.14); font-family: Georgia, serif;
  margin-bottom: -.75rem; user-select: none;
}
.lv-board-quote {
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  line-height: 1.75; font-style: italic; font-weight: 400;
  color: rgba(255,255,255,.88);
  margin: 0 0 1.5rem; letter-spacing: .01em;
}
.lv-board-cite {
  display: block; font-size: .875rem;
  color: var(--cyan); font-style: normal;
  font-weight: 600; letter-spacing: .03em;
  margin-bottom: 2.5rem;
}
.lv-board-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem;
}
.lv-chip {
  font-size: .6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .07em; color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: .35rem .9rem; border-radius: 999px;
}

/* ============================================================
   PRICING TABLE  —  page-pricing.php
   ============================================================ */

/* Hero tweaks */
.pr-hero-sub { font-size: 1.0625rem; max-width: 600px; opacity: .85; margin-bottom: 1.5rem; }
.pr-hero-sub .pr-hero-link { color: var(--cyan); text-decoration: none; font-weight: 600; }
.pr-hero-sub .pr-hero-link:hover { text-decoration: underline; }

.pr-hero-badges {
  display: flex; flex-wrap: wrap; gap: .625rem; margin-top: .5rem;
}
.pr-badge {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .8125rem; font-weight: 500;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: .35rem .9rem; border-radius: 999px;
}
.pr-badge svg { color: var(--cyan); flex-shrink: 0; }

/* Controls bar */
.pr-controls {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1rem; margin-bottom: 1.25rem;
}

.pr-search-wrap {
  position: relative; flex: 1 1 260px; min-width: 200px;
}
.pr-search-icon {
  position: absolute; left: .875rem; top: 50%; transform: translateY(-50%);
  color: var(--text-secondary); pointer-events: none;
}
.pr-search-input {
  width: 100%; padding: .625rem 2.5rem .625rem 2.625rem;
  font-size: .9375rem; font-family: inherit;
  background: #fff; color: var(--text-dark);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  outline: none; transition: border-color .18s;
}
.pr-search-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,102,255,.12); }
.pr-search-input::placeholder { color: var(--text-secondary); }
.pr-search-clear {
  position: absolute; right: .75rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; padding: .2rem;
  color: var(--text-secondary); line-height: 0;
}
.pr-search-clear:hover { color: var(--text-dark); }

.pr-region-filters {
  display: flex; flex-wrap: wrap; gap: .375rem;
}
.pr-region-btn {
  font-size: .8125rem; font-weight: 500; font-family: inherit;
  padding: .45rem .875rem; border-radius: 999px;
  border: 1.5px solid var(--border);
  background: #fff; color: var(--text-secondary);
  cursor: pointer; transition: all .18s; white-space: nowrap;
}
.pr-region-btn:hover { border-color: var(--blue); color: var(--blue); }
.pr-region-btn.active {
  background: var(--blue); color: #fff;
  border-color: var(--blue); box-shadow: 0 2px 8px rgba(0,102,255,.28);
}

.pr-currency-toggle {
  display: flex; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.pr-cur-btn {
  font-size: .8125rem; font-weight: 600; font-family: inherit;
  padding: .45rem .875rem;
  background: #fff; color: var(--text-secondary);
  border: none; cursor: pointer; transition: background .15s, color .15s;
  border-right: 1.5px solid var(--border);
}
.pr-cur-btn:last-child { border-right: none; }
.pr-cur-btn.active { background: var(--navy); color: #fff; }

/* Result count */
.pr-result-count {
  font-size: .8125rem; color: var(--text-secondary);
  margin-bottom: .75rem;
}

/* Table */
.pr-table-wrap {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: auto;
  box-shadow: var(--shadow-card);
}

.pr-table {
  width: 100%; border-collapse: collapse;
  font-size: .9375rem;
}

.pr-table thead {
  background: var(--navy);
}
.pr-table thead th {
  color: rgba(255,255,255,.85);
  font-weight: 600; font-size: .8125rem; letter-spacing: .04em; text-transform: uppercase;
  padding: .875rem 1.25rem;
  text-align: left; border: none; white-space: nowrap;
}
.pr-th-country { min-width: 200px; }

.pr-sort-btn {
  background: none; border: none; color: inherit; font: inherit;
  font-size: inherit; letter-spacing: inherit; text-transform: inherit;
  cursor: pointer; display: inline-flex; align-items: center; gap: .375rem;
  padding: 0;
}
.pr-sort-btn:hover { color: var(--cyan); }
.pr-sort-icon { opacity: .6; font-size: .75rem; }

.pr-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .12s;
}
.pr-table tbody tr:last-child { border-bottom: none; }
.pr-table tbody tr:hover { background: #F0F7FF; }

.pr-table tbody td {
  padding: .875rem 1.25rem;
  vertical-align: middle;
  color: var(--text-dark);
}

.pr-td-country {
  display: flex; align-items: center; gap: .625rem; min-width: 180px;
}
.pr-country-flag { font-size: 1.25rem; line-height: 1; }
.pr-country-name { font-weight: 500; }

.pr-td-rate { font-size: 1rem; }
.pr-td-rate strong { color: var(--blue); font-weight: 700; }
.pr-td-cur { color: var(--text-secondary); font-size: .875rem; }

/* Region pills */
.pr-region-pill {
  display: inline-block; font-size: .75rem; font-weight: 600;
  padding: .25rem .7rem; border-radius: 999px;
  white-space: nowrap;
}
.pr-region--ap  { background: #E8F4FE; color: #0066CC; }
.pr-region--eu  { background: #EBF5EC; color: #166534; }
.pr-region--mea { background: #FEF3E2; color: #92400E; }
.pr-region--am  { background: #F3E8FF; color: #6B21A8; }
.pr-region--ca  { background: #FFE4E1; color: #9F1239; }

/* Route badges */
.pr-route-badge {
  display: inline-block; font-size: .75rem; font-weight: 600;
  padding: .25rem .7rem; border-radius: 999px;
}
.pr-route--direct { background: #DCFCE7; color: #166534; }
.pr-route--hub    { background: #F1F5F9; color: #475569; }

/* No results */
.pr-no-results {
  text-align: center; color: var(--text-secondary);
  padding: 3rem 1.5rem !important;
}
.pr-reset-link {
  background: none; border: none; color: var(--blue);
  font: inherit; cursor: pointer; text-decoration: underline;
}

/* Disclaimer */
.pr-disclaimer {
  font-size: .8rem; color: var(--text-secondary);
  margin-top: 1.25rem; line-height: 1.6;
  max-width: 860px;
}
.pr-disclaimer a { color: var(--blue); }

/* Volume tier cards */
.pr-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 960px; margin: 0 auto;
}

.pr-tier-card {
  background: var(--light-gray);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.pr-tier-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.pr-tier-card--highlight {
  background: var(--navy);
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(0,102,255,.2);
}
.pr-tier-card--highlight .pr-tier-label,
.pr-tier-card--highlight .pr-tier-vol,
.pr-tier-card--highlight .pr-tier-desc { color: rgba(255,255,255,.9); }

.pr-tier-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: .6875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 0 0 999px 999px;
}

.pr-tier-label {
  font-size: 1.125rem; font-weight: 700;
  color: var(--navy); margin-bottom: .375rem;
  margin-top: .75rem;
}
.pr-tier-vol {
  font-size: .9375rem; font-weight: 600;
  color: var(--blue); margin-bottom: .75rem;
}
.pr-tier-desc {
  font-size: .875rem; color: var(--text-secondary);
  line-height: 1.6; margin-bottom: 1.5rem;
}
.pr-tier-btn { display: inline-block; }

/* Responsive */
@media (max-width: 768px) {
  .pr-controls { gap: .75rem; }
  .pr-region-filters { display: none; }
  .pr-table thead th,
  .pr-table tbody td { padding: .75rem 1rem; font-size: .875rem; }
  .pr-country-flag { font-size: 1.1rem; }
  .pr-tier-card { padding: 1.75rem 1.5rem; }
}
@media (max-width: 480px) {
  .pr-region-pill { display: none; }
}
