/* =====================================================================
   Verizon Business — styles.css  (Enterprise Professional Edition)
   ===================================================================== */
:root {
  --brand-primary: #CD040B;
  --brand-primary-dark: #A30308;
  --brand-primary-light: #FEE2E2;
  --brand-accent: #000000;
  --brand-ink: #111827;
  --brand-ink-soft: #374151;
  --brand-muted: #6B7280;
  --brand-subtle: #9CA3AF;
  --brand-light: #F8FAFC;
  --brand-lighter: #F1F5F9;
  --brand-border: #E5E7EB;
  --brand-border-soft: #F3F4F6;
  --brand-white: #FFFFFF;
  --brand-success: #059669;
  --brand-warning: #D97706;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, .05);
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
  --shadow: 0 4px 12px rgba(15, 23, 42, .08), 0 2px 4px rgba(15, 23, 42, .04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, .10), 0 4px 8px rgba(15, 23, 42, .04);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, .14), 0 6px 12px rgba(15, 23, 42, .06);
  --shadow-xl: 0 24px 60px rgba(15, 23, 42, .18);
  --shadow-brand: 0 10px 30px rgba(205, 4, 11, .28);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1240px;
  --max-w-narrow: 880px;
  --transition-fast: .15s cubic-bezier(.4, 0, .2, 1);
  --transition: .22s cubic-bezier(.4, 0, .2, 1);
  --transition-slow: .4s cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  color: var(--brand-ink);
  background: var(--brand-white);
  line-height: 1.65;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--brand-primary-dark); }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
strong { font-weight: 700; color: var(--brand-ink); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--brand-ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ── Container ────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 28px; }

/* ── Top announcement bar ─────────────────────────────────────────── */
.top-bar {
  background: var(--brand-accent);
  color: rgba(255, 255, 255, .92);
  padding: 9px 0;
  font-size: .78rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  letter-spacing: .01em;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.top-bar a { color: rgba(255, 255, 255, .92); margin-left: 18px; }
.top-bar a:hover { color: #ff6b6b; }
.top-bar-badge { display: inline-flex; align-items: center; gap: 6px; }
.top-bar-badge::before { content: '●'; color: #10B981; font-size: .7rem; }

/* ── Header ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--brand-border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.site-logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.3rem; color: var(--brand-accent); }
.site-logo img { height: 38px; width: auto; }
.site-logo-text { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.site-logo-name { font-size: 1.1rem; font-weight: 800; color: var(--brand-ink); letter-spacing: -0.01em; }
.site-logo-tag { font-size: .68rem; font-weight: 600; color: var(--brand-primary); text-transform: uppercase; letter-spacing: .08em; }

.primary-nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 16px; font-size: .92rem; font-weight: 500;
  color: var(--brand-ink-soft); border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.nav-link:hover, .nav-item.active > .nav-link {
  background: var(--brand-lighter); color: var(--brand-primary);
}
.nav-link-caret { font-size: .65rem; opacity: .55; }

.mega-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--brand-white); border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 28px; min-width: 580px;
  grid-template-columns: repeat(3, 1fr); gap: 14px 24px;
}
.nav-item:hover .mega-menu, .nav-item:focus-within .mega-menu { display: grid; }
.mega-col h4 {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--brand-primary); margin-bottom: 12px; font-weight: 700;
}
.mega-col a {
  display: block; padding: 7px 0; font-size: .88rem;
  color: var(--brand-ink); font-weight: 500;
  transition: color var(--transition-fast);
}
.mega-col a:hover { color: var(--brand-primary); }
.mega-col a small {
  display: block; font-size: .72rem; color: var(--brand-muted);
  font-weight: 400; margin-top: 2px;
}

.btn-header {
  padding: 10px 22px; background: var(--brand-primary);
  color: var(--brand-white) !important; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 600;
  transition: all var(--transition);
  margin-left: 8px;
}
.btn-header:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-brand);
}

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; }
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--brand-ink);
  border-radius: 2px; transition: var(--transition);
}

.mobile-nav {
  display: none; position: fixed; inset: 74px 0 0 0; z-index: 999;
  background: var(--brand-white); padding: 24px; overflow-y: auto;
  flex-direction: column; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 13px 18px; font-size: 1rem; font-weight: 500;
  border-radius: var(--radius-sm); color: var(--brand-ink);
}
.mobile-nav a:hover { background: var(--brand-lighter); color: var(--brand-primary); }
.mobile-nav-group {
  border-bottom: 1px solid var(--brand-border); padding-bottom: 14px; margin-bottom: 6px;
}
.mobile-nav-group span {
  display: block; padding: 10px 18px; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--brand-muted); font-weight: 700;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: .95rem; border: 2px solid transparent;
  transition: all var(--transition); text-decoration: none;
  line-height: 1.3; white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--brand-primary); color: var(--brand-white);
  border-color: var(--brand-primary);
}
.btn-primary:hover {
  background: var(--brand-primary-dark); border-color: var(--brand-primary-dark);
  color: var(--brand-white); transform: translateY(-2px); box-shadow: var(--shadow-brand);
}
.btn-white { background: var(--brand-white); color: var(--brand-ink); border-color: var(--brand-white); }
.btn-white:hover { background: var(--brand-light); color: var(--brand-primary); }
.btn-outline { background: transparent; color: var(--brand-primary); border-color: var(--brand-primary); }
.btn-outline:hover { background: var(--brand-primary); color: var(--brand-white); }
.btn-outline-white { background: transparent; color: var(--brand-white); border-color: rgba(255,255,255,.4); }
.btn-outline-white:hover { background: var(--brand-white); color: var(--brand-ink); border-color: var(--brand-white); }
.btn-dark { background: var(--brand-accent); color: var(--brand-white); border-color: var(--brand-accent); }
.btn-dark:hover { background: #1F2937; border-color: #1F2937; color: var(--brand-white); }
.btn-sm { padding: 9px 20px; font-size: .85rem; }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  background: radial-gradient(ellipse at top left, #1a0000 0%, var(--brand-accent) 60%, #0a0a0a 100%);
  color: var(--brand-white);
  padding: 100px 0 90px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(205,4,11,.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(205,4,11,.08), transparent 45%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px;
  align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  color: var(--brand-white); background: rgba(205,4,11,.12);
  padding: 7px 14px; border-radius: 99px; margin-bottom: 24px;
  border: 1px solid rgba(205,4,11,.3);
}
.hero-eyebrow-dot { width: 7px; height: 7px; background: var(--brand-primary); border-radius: 50%; }
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 22px;
  letter-spacing: -0.03em;
}
.hero h1 em {
  color: var(--brand-primary); font-style: normal;
  background: linear-gradient(135deg, #ff4d52, var(--brand-primary));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-size: 1.13rem; color: rgba(255, 255, 255, .78);
  margin-bottom: 34px; max-width: 520px; line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-meta { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); }
.hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-value { font-size: 1.5rem; font-weight: 800; color: var(--brand-white); line-height: 1; }
.hero-meta-label { font-size: .78rem; color: rgba(255, 255, 255, .6); letter-spacing: .04em; }
.hero-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.hero-img img { width: 100%; display: block; }

/* ── Section base ─────────────────────────────────────────────────── */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-light { background: var(--brand-light); }
.section-accent { background: var(--brand-primary); color: var(--brand-white); }
.section-dark { background: var(--brand-accent); color: var(--brand-white); }
.section-ink { background: var(--brand-ink); color: var(--brand-white); }
.section-brand-banner { background: linear-gradient(135deg, var(--brand-primary) 0%, #8B0006 100%); color: var(--brand-white); padding: 90px 0; }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-label {
  display: inline-block; font-size: .72rem; text-transform: uppercase;
  letter-spacing: .14em; font-weight: 700; margin-bottom: 14px; color: var(--brand-primary);
}
.section-dark .section-label, .section-accent .section-label,
.section-ink .section-label, .section-brand-banner .section-label {
  color: rgba(255, 255, 255, .7);
}
.section-title {
  font-size: clamp(1.75rem, 3.3vw, 2.6rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.025em;
}
.section-sub {
  font-size: 1.08rem; color: var(--brand-muted);
  line-height: 1.7; max-width: 640px;
}
.section-accent .section-sub, .section-dark .section-sub,
.section-ink .section-sub, .section-brand-banner .section-sub {
  color: rgba(255, 255, 255, .82);
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Cards ───────────────────────────────────────────────────────── */
.card {
  background: var(--brand-white); border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg); padding: 30px;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.card:hover {
  border-color: var(--brand-primary); box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card-dark {
  background: var(--brand-accent); border-color: rgba(255,255,255,.08);
  color: var(--brand-white);
}
.card-dark:hover { border-color: var(--brand-primary); }
.card-icon {
  width: 52px; height: 52px; background: var(--brand-primary-light);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 1.5rem; color: var(--brand-primary);
}
.card-dark .card-icon { background: rgba(205, 4, 11, .2); }
.card h3 {
  font-size: 1.15rem; font-weight: 700; margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card p {
  font-size: .92rem; color: var(--brand-muted);
  line-height: 1.65; margin-bottom: 0;
}
.card-dark p { color: rgba(255, 255, 255, .7); }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: .88rem; font-weight: 600;
  color: var(--brand-primary);
}
.card-link::after {
  content: '→'; transition: transform var(--transition-fast);
}
.card-link:hover::after { transform: translateX(4px); }
.card-dark .card-link { color: #FF6B6B; }

/* ── Grids ───────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Stats ───────────────────────────────────────────────────────── */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.stat-card {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-card:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2.3rem, 4.5vw, 3.2rem); font-weight: 800;
  color: var(--brand-white); line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.section-brand-banner .stat-number { color: var(--brand-white); }
.stat-label {
  font-size: .88rem; color: rgba(255, 255, 255, .85);
  line-height: 1.5; max-width: 220px; margin: 0 auto;
}

/* ── Image + Text blocks ────────────────────────────────────────── */
.imgtext-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 70px 0; border-bottom: 1px solid var(--brand-border-soft);
}
.imgtext-block:last-of-type { border-bottom: none; }
.imgtext-block.reverse { direction: rtl; }
.imgtext-block.reverse > * { direction: ltr; }
.imgtext-content h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.15rem); font-weight: 800;
  margin-bottom: 16px; letter-spacing: -0.025em;
}
.imgtext-content p { color: var(--brand-ink-soft); line-height: 1.75; margin-bottom: 18px; }
.imgtext-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.imgtext-features {
  list-style: none; margin: 24px 0;
  display: flex; flex-direction: column; gap: 14px;
}
.imgtext-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .94rem; color: var(--brand-ink-soft);
}
.imgtext-features li::before {
  content: '✓'; display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; background: var(--brand-primary-light);
  color: var(--brand-primary); border-radius: 50%; font-weight: 800;
  flex-shrink: 0; font-size: .8rem; margin-top: 2px;
}

/* ── Trust / Logo cloud ─────────────────────────────────────────── */
.trust-section { padding: 38px 0; background: var(--brand-white); border-bottom: 1px solid var(--brand-border-soft); }
.trust-label {
  text-align: center; font-size: .72rem; text-transform: uppercase;
  letter-spacing: .14em; font-weight: 700;
  color: var(--brand-muted); margin-bottom: 22px;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 44px; flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 600; color: var(--brand-ink-soft);
}
.trust-badge img { height: 34px; width: auto; opacity: .75; filter: grayscale(1); transition: all var(--transition); }
.trust-badge:hover img { opacity: 1; filter: none; }

/* ── Data table ──────────────────────────────────────────────────── */
.data-table-wrap {
  overflow-x: auto; margin: 28px 0;
  border: 1px solid var(--brand-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}
.data-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.data-table thead th {
  background: var(--brand-accent); color: var(--brand-white);
  padding: 15px 20px; text-align: left; font-weight: 700;
  font-size: .84rem; letter-spacing: .02em; text-transform: uppercase;
  position: relative;
}
.data-table thead th:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.1);
}
.data-table tbody tr { transition: background var(--transition-fast); }
.data-table tbody tr:nth-child(even) { background: var(--brand-light); }
.data-table tbody td {
  padding: 15px 20px; border-bottom: 1px solid var(--brand-border-soft);
  vertical-align: top; color: var(--brand-ink-soft);
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--brand-primary-light); }
.data-table strong { color: var(--brand-ink); }
.check { color: var(--brand-success); font-weight: 800; font-size: 1.1rem; }
.cross { color: #DC2626; font-weight: 600; }

/* ── AI chunk ───────────────────────────────────────────────────── */
.ai-chunk {
  border-left: 4px solid var(--brand-primary);
  background: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-white) 100%);
  padding: 26px 30px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 32px 0;
  font-size: .95rem; line-height: 1.75;
  color: var(--brand-ink-soft);
}
.ai-chunk-title {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--brand-primary); font-weight: 800; margin-bottom: 10px;
}

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.accordion-item {
  border: 1px solid var(--brand-border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--brand-white);
  transition: border-color var(--transition-fast);
}
.accordion-item:hover { border-color: var(--brand-subtle); }
.accordion-item[open] { border-color: var(--brand-primary); }
.accordion-item summary {
  list-style: none; cursor: pointer; padding: 20px 26px;
  font-weight: 600; font-size: .98rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: background var(--transition-fast);
  color: var(--brand-ink);
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: '+'; font-size: 1.5rem; color: var(--brand-primary);
  line-height: 1; flex-shrink: 0; font-weight: 400;
  transition: transform var(--transition);
}
.accordion-item[open] summary::after { content: '−'; }
.accordion-item summary:hover { background: var(--brand-lighter); }
.accordion-item[open] summary {
  background: var(--brand-primary-light); color: var(--brand-primary);
  border-bottom: 1px solid var(--brand-primary);
}
.accordion-body {
  padding: 20px 26px; font-size: .92rem;
  color: var(--brand-ink-soft); line-height: 1.75;
}

/* ── Breadcrumbs ─────────────────────────────────────────────────── */
.breadcrumbs {
  padding: 18px 0; font-size: .84rem;
  color: var(--brand-muted);
  border-bottom: 1px solid var(--brand-border-soft);
  background: var(--brand-light);
}
.breadcrumbs a { color: var(--brand-muted); transition: color var(--transition-fast); }
.breadcrumbs a:hover { color: var(--brand-primary); }
.breadcrumbs span { margin: 0 10px; color: var(--brand-subtle); }

/* ── Page hero ──────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--brand-accent) 0%, #1a1a1a 60%, #2a0005 100%);
  color: var(--brand-white); padding: 72px 0;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(205,4,11,.15), transparent 60%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800; margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.page-hero .lead {
  font-size: 1.1rem; color: rgba(255, 255, 255, .82);
  max-width: 660px; line-height: 1.7;
}

/* ── CTA block ──────────────────────────────────────────────────── */
.cta-block {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: var(--brand-white); padding: 84px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(255,255,255,.1), transparent 40%),
                    radial-gradient(circle at 70% 60%, rgba(0,0,0,.15), transparent 50%);
  pointer-events: none;
}
.cta-block > .container { position: relative; z-index: 1; }
.cta-block h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800; margin-bottom: 16px; color: var(--brand-white);
  letter-spacing: -0.025em;
}
.cta-block p {
  font-size: 1.08rem; color: rgba(255, 255, 255, .92);
  margin-bottom: 34px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Testimonials ───────────────────────────────────────────────── */
.testimonial-card {
  background: var(--brand-white);
  border: 1px solid var(--brand-border); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars { color: #F59E0B; font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 3px; }
.testimonial-text {
  font-size: .98rem; color: var(--brand-ink); line-height: 1.75;
  margin-bottom: 22px;
}
.testimonial-text::before { content: '"'; font-size: 2.4rem; color: var(--brand-primary); line-height: 0; margin-right: 4px; vertical-align: -0.3em; font-family: Georgia, serif; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--brand-lighter); overflow: hidden; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: .94rem; color: var(--brand-ink); }
.testimonial-title { font-size: .82rem; color: var(--brand-muted); margin-top: 2px; }

/* ── HowTo steps ────────────────────────────────────────────────── */
.howto-steps {
  counter-reset: steps; display: flex; flex-direction: column; gap: 28px;
}
.howto-step {
  display: grid; grid-template-columns: auto 1fr; gap: 24px;
  align-items: flex-start;
  padding: 24px; background: var(--brand-white);
  border: 1px solid var(--brand-border); border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.howto-step:hover { border-color: var(--brand-primary); box-shadow: var(--shadow-sm); }
.howto-step::before {
  counter-increment: steps; content: counter(steps);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-primary); color: var(--brand-white);
  font-weight: 800; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: var(--shadow-brand);
}
.howto-step h4 { font-size: 1.08rem; font-weight: 700; margin-bottom: 6px; color: var(--brand-ink); letter-spacing: -0.01em; }
.howto-step p { font-size: .92rem; color: var(--brand-ink-soft); line-height: 1.7; }

/* ── Related services ───────────────────────────────────────────── */
.related-services {
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid var(--brand-border);
}
.related-services h3 {
  font-size: 1.3rem; font-weight: 700; margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-link {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px; background: var(--brand-white);
  border: 1px solid var(--brand-border); border-radius: var(--radius);
  font-size: .9rem; font-weight: 600;
  color: var(--brand-ink); transition: all var(--transition);
}
.related-link::before { content: '→'; color: var(--brand-primary); transition: transform var(--transition-fast); }
.related-link:hover {
  background: var(--brand-primary); color: var(--brand-white);
  border-color: var(--brand-primary); transform: translateX(3px);
}
.related-link:hover::before { color: var(--brand-white); transform: translateX(2px); }

/* ── Quick access ───────────────────────────────────────────────── */
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.quick-card {
  display: block; background: var(--brand-white);
  border: 1px solid var(--brand-border); border-radius: var(--radius-lg);
  padding: 28px 24px; transition: all var(--transition);
  text-decoration: none; color: var(--brand-ink);
  position: relative; overflow: hidden;
}
.quick-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--brand-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.quick-card:hover { border-color: var(--brand-primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.quick-card:hover::before { transform: scaleX(1); }
.quick-card-icon {
  font-size: 1.8rem; color: var(--brand-primary); margin-bottom: 14px;
  width: 48px; height: 48px; background: var(--brand-primary-light);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
}
.quick-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.quick-card p { font-size: .84rem; color: var(--brand-muted); line-height: 1.55; margin: 0; }

/* ── Pills / badges ─────────────────────────────────────────────── */
.pill {
  display: inline-block; padding: 4px 12px;
  border-radius: 99px; font-size: .75rem;
  font-weight: 700; letter-spacing: .02em;
}
.pill-red { background: var(--brand-primary-light); color: var(--brand-primary); }
.pill-green { background: #D1FAE5; color: #059669; }
.pill-gray { background: var(--brand-lighter); color: var(--brand-muted); }
.pill-dark { background: var(--brand-ink); color: var(--brand-white); }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: #0A0A0A; color: rgba(255, 255, 255, .72);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  font-size: 1.35rem; font-weight: 800;
  color: var(--brand-white); margin-bottom: 14px;
}
.footer-logo span { color: var(--brand-primary); }
.footer-tagline {
  font-size: .88rem; color: rgba(255, 255, 255, .65);
  line-height: 1.7; margin-bottom: 22px;
}
.footer-contact { font-size: .88rem; line-height: 1.9; }
.footer-contact a { color: rgba(255, 255, 255, .85); display: block; }
.footer-contact a:hover { color: var(--brand-primary); }
.footer-col h4 {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255, 255, 255, .45); margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .88rem; color: rgba(255, 255, 255, .72);
  transition: color var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--brand-primary); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-badges { display: flex; gap: 10px; align-items: center; }
.footer-badge {
  font-size: .68rem; padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .18); border-radius: 4px;
  color: rgba(255, 255, 255, .55); font-weight: 700;
  letter-spacing: .06em;
}
.footer-copy { font-size: .82rem; color: rgba(255, 255, 255, .45); }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a {
  font-size: .82rem; color: rgba(255, 255, 255, .55);
  transition: color var(--transition-fast);
}
.footer-legal-links a:hover { color: var(--brand-white); }

/* ── Utilities ──────────────────────────────────────────────────── */
.mt-0 { margin-top: 0; } .mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; } .mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; }
.highlight { color: var(--brand-primary); }
.lead { font-size: 1.1rem; line-height: 1.75; color: var(--brand-ink-soft); }
.muted { color: var(--brand-muted); font-size: .88rem; }
.content-wrap { max-width: 820px; margin: 0 auto; }
.content-wrap h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 800; margin: 40px 0 18px; letter-spacing: -0.02em; }
.content-wrap h3 { font-size: 1.2rem; font-weight: 700; margin: 28px 0 12px; letter-spacing: -0.01em; }
.content-wrap p { margin-bottom: 18px; color: var(--brand-ink-soft); line-height: 1.75; }
.content-wrap ul:not(.imgtext-features):not(.faq-list) { list-style: disc; margin: 16px 0 20px 24px; color: var(--brand-ink-soft); }
.content-wrap ul:not(.imgtext-features):not(.faq-list) li { margin-bottom: 8px; line-height: 1.7; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4, .stats-grid, .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-card:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
  .mega-menu { min-width: 380px; grid-template-columns: repeat(2, 1fr); }
  .mega-col:last-child { display: none; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .hero-grid, .grid-2, .imgtext-block, .imgtext-block.reverse {
    grid-template-columns: 1fr; gap: 32px;
  }
  .hero-img { order: -1; }
  .imgtext-block.reverse { direction: ltr; }
  .grid-3, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); border: 1px solid rgba(255,255,255,.12); }
  .stats-grid .stat-card { border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
  .stats-grid .stat-card:nth-child(2n) { border-right: none; }
  .stats-grid .stat-card:nth-last-child(-n+2) { border-bottom: none; }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 56px; }
  .top-bar-inner { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 480px) {
  .grid-3, .related-grid, .grid-4, .stats-grid, .quick-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .stats-grid .stat-card:nth-child(n) { border-right: none; }
  .hero-cta, .cta-buttons { flex-direction: column; align-items: stretch; }
  .trust-inner { gap: 20px; }
}

/* ── Accessibility ──────────────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--brand-primary); outline-offset: 3px; border-radius: 3px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── Print ──────────────────────────────────────────────────────── */
@media print {
  .site-header, .mobile-nav, .site-footer, .cta-block, .top-bar { display: none; }
  body { font-size: 11pt; color: #000; }
  a { color: #000; }
  .section { padding: 20px 0; }
}

/* ── Performance: content-visibility ───────────────────────────── */
.section, .site-footer { content-visibility: auto; contain-intrinsic-size: 0 500px; }
