:root {
  --bg: #06111f;
  --bg-2: #0a1a2f;
  --panel: rgba(12, 25, 44, 0.78);
  --panel-solid: #0c1b30;
  --panel-2: #102540;
  --line: rgba(120, 165, 220, 0.18);
  --line-strong: rgba(93, 173, 255, 0.34);
  --text: #e9f2ff;
  --muted: #a7b9d3;
  --primary: #2f8cff;
  --primary-2: #4dd0ff;
  --accent: #123a63;
  --success: #3dd9b6;
  --warning: #7fd4ff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.22);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(77,208,255,.16), transparent 20%),
    radial-gradient(circle at 85% 12%, rgba(47,140,255,.15), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(22,72,130,.18), transparent 28%),
    linear-gradient(180deg, #04101d 0%, #071425 45%, #09182c 100%);
  line-height: 1.65;
}

a {
  color: var(--primary-2);
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 1200;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 18px rgba(77,208,255,.55);
}

.topbar {
  background: rgba(5, 14, 26, 0.88);
  border-bottom: 1px solid rgba(130, 182, 255, 0.12);
  backdrop-filter: blur(12px);
  color: var(--muted);
  font-size: .94rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .72rem 0;
}

.topbar a {
  color: var(--text);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
}

.topbar-sep {
  opacity: .6;
}

header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(7, 17, 31, 0.72);
  border-bottom: 1px solid rgba(130, 182, 255, 0.12);
  backdrop-filter: blur(14px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 40px rgba(47,140,255,.35);
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-logo {
  height: 62px;
  width: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 0 10px 3px rgba(77,208,255,.30), 0 0 22px 6px rgba(47,140,255,.18);
  transition: box-shadow .3s ease;
  flex: 0 0 auto;
}

.brand-logo:hover {
  box-shadow: 0 0 18px 6px rgba(77,208,255,.55), 0 0 40px 14px rgba(47,140,255,.35);
}

.brand-name {
  font-family: 'Quicksand', sans-serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: .04em;
  line-height: 1.15;
  white-space: normal;
  text-shadow: 0 0 10px rgba(77,208,255,.70), 0 0 22px rgba(47,140,255,.45);
}

.desktop-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 0.8rem 0;
}

.brand-left {
  justify-self: start;
  min-width: 0;
}

.dish-center {
  justify-self: center;
}

.desktop-nav {
  justify-self: end;
}

.mobile-header {
  display: none;
}

.mobile-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mobile-brand {
  min-width: 0;
  flex: 1 1 auto;
}

.mobile-dish-row {
  display: none;
}

.desktop-header .brand-logo-wrap {
  flex: 0 1 auto;
}

.desktop-header .brand-name {
  white-space: nowrap;
}

.dish-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  transition: background .3s ease;
  animation: patriotBreath 9s ease-in-out infinite;
  flex: 0 0 auto;
}

.dish-logo-wrap img {
  height: 55px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .dish-logo-wrap:hover {
    background: rgba(255,255,255,1);
    animation-play-state: paused;
  }
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  align-items: center;
  position: relative;
  line-height: 1;
}

nav a {
  color: var(--text);
  font-weight: 600;
  position: relative;
  line-height: 1;
}

.nav-indicator {
  position: absolute;
  bottom: -10px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-radius: 999px;
  transition: transform .22s ease, width .22s ease;
  pointer-events: none;
}

nav a:not(.btn)::after {
  content: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.18rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), #1974f2);
  box-shadow: 0 14px 28px rgba(47,140,255,.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(47,140,255,.30);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,.03);
  border-color: rgba(130,182,255,.18);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.06);
  box-shadow: 0 10px 22px rgba(0,0,0,.2);
}

.btn:active {
  transform: translateY(0) scale(.98);
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
}

.btn-hero {
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease !important;
}

.btn-hero.btn-primary {
  animation: heroGlowPulse 3s ease-in-out infinite;
}

.btn-hero.btn-primary:hover {
  transform: scale(1.08) translateY(-2px) !important;
  box-shadow: 0 0 18px 5px rgba(47,140,255,.55), 0 0 40px 12px rgba(77,208,255,.35), 0 20px 40px rgba(47,140,255,.30) !important;
}

.btn-hero.btn-secondary:hover {
  transform: scale(1.07) translateY(-2px) !important;
  box-shadow: 0 0 14px 4px rgba(77,208,255,.38), 0 0 30px 8px rgba(47,140,255,.22), 0 14px 30px rgba(0,0,0,.28) !important;
}

.mobile-only {
  display: none;
}

.hamburger-btn {
  background: none;
  border: 1px solid rgba(130,182,255,.18);
  border-radius: 10px;
  padding: .55rem .65rem;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.hamburger-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 3.2rem 0 2.5rem;
  overflow: hidden;
}

.helper-image {
  margin-top: 1.5rem;
}

.helper-image img {
  max-width: 280px;
  width: 100%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.signal-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(118,163,220,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118,163,220,.06) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 95%);
  pointer-events: none;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
}

.hero::before {
  width: 360px;
  height: 360px;
  right: -60px;
  top: -40px;
  background: radial-gradient(circle, rgba(77,208,255,.20), transparent 65%);
  animation: floatGlow 11s ease-in-out infinite;
}

.hero::after {
  width: 260px;
  height: 260px;
  left: -60px;
  top: 40px;
  background: radial-gradient(circle, rgba(47,140,255,.18), transparent 65%);
  animation: floatGlow 13s ease-in-out infinite reverse;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.6rem;
  align-items: start;
}

.hero-copy {
  padding-top: .15rem;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero-copy-narrow {
  max-width: 720px;
}

.hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: .2rem;
}

.hero-media img {
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  border: 1px solid rgba(130,182,255,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}

.hero-media img.object-cover {
  object-fit: cover;
  max-height: 340px;
}

.hero-media img.object-contain {
  object-fit: contain;
}

.kicker,
.section-label {
  display: inline-block;
  padding: .45rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(130, 182, 255, 0.18);
  background: rgba(20, 45, 76, 0.48);
  color: var(--warning);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  font-weight: 800;
}

h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0 0 .8rem;
}

h1, h2 {
  font-family: 'Cormorant Garamond', serif;
}

h3, .section-label, .pill, .btn {
  font-family: 'Quicksand', sans-serif;
}

h1 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
h3 { font-size: 1.15rem; }

h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-2);
  margin: 0 0 .5rem;
  letter-spacing: .02em;
}

p { color: var(--muted); }

.lead {
  font-size: 1.08rem;
  max-width: 62ch;
}

.about-lead {
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.4rem;
}

.pills,
.mini-badge-row,
.logo-strip,
.proof-ribbon,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.pills { margin-top: 1rem; }

.hero-actions { margin-top: 1.5rem; }

.pill,
.mini-badge,
.logo-pill,
.pill-link {
  padding: .58rem .86rem;
  border-radius: 999px;
  border: 1px solid rgba(130, 182, 255, 0.16);
  background: rgba(255,255,255,.04);
  color: var(--text);
  backdrop-filter: blur(8px);
  font-weight: 600;
}

.pill-link {
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.pill-link:hover {
  transform: scale(1.07) translateY(-2px);
  background: rgba(77,208,255,.10);
  border-color: rgba(77,208,255,.50);
  box-shadow: 0 0 12px 3px rgba(77,208,255,.28), 0 0 28px 7px rgba(47,140,255,.16);
  color: #fff;
  text-decoration: none;
}

.card-detail-link,
.contact-link {
  display: inline-block;
  margin-top: .85rem;
  font-family: 'Quicksand', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary-2);
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .2s ease, letter-spacing .2s ease;
}

.card-detail-link:hover,
.contact-link:hover {
  color: #fff;
  letter-spacing: .07em;
  text-decoration: none;
}

.proof-ribbon {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(130,182,255,.16);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow-soft);
}

.proof-item strong {
  display: block;
  color: var(--text);
  margin-bottom: .18rem;
}

.panel,
.hero-panel,
.card,
.quote-card,
.statbox,
.case-card,
.story-card,
.timeline-step,
.contact-card,
.contact-form-wrap,
.contact-note,
.rate-type-card,
.expertise-card {
  background: linear-gradient(180deg, rgba(14,28,48,.86), rgba(9,20,35,.88));
  border: 1px solid rgba(130,182,255,.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-panel {
  padding: 1.3rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(77,208,255,.35), transparent 28%, transparent 72%, rgba(47,140,255,.28));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.metrics, .grid-3, .grid-2, .statline, .testimonial-grid, .form-grid,
.contact-grid, .form-row, .rate-type-grid, .expertise-grid, .case-grid,
.timeline, .mini-proof-grid, .story-grid, .contact-stack, .contact-list {
  display: grid;
  gap: 1.2rem;
}

.metrics { grid-template-columns: repeat(2, 1fr); margin-top: 1rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.statline { grid-template-columns: repeat(4, 1fr); margin-top: 1.45rem; }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); margin-top: 1.5rem; }
.form-grid { grid-template-columns: repeat(2, 1fr); }
.contact-grid { grid-template-columns: 1fr 1.15fr; align-items: start; }
.form-row { grid-template-columns: 1fr 1fr; }
.rate-type-grid { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 1.5rem; }
.expertise-grid { grid-template-columns: repeat(3,1fr); margin-top: 1.5rem; }
.case-grid { grid-template-columns: repeat(3, 1fr); margin-top: 1.5rem; }
.timeline { grid-template-columns: repeat(4, 1fr); margin-top: 1.5rem; }
.mini-proof-grid { grid-template-columns: repeat(3, 1fr); margin-top: .75rem; }
.story-grid { grid-template-columns: repeat(3, 1fr); margin-top: 1.5rem; }
.contact-stack,
.contact-list { gap: 1rem; }

.metric,
.card,
.statbox,
.quote-card,
.case-card,
.story-card {
  position: relative;
  overflow: hidden;
}

.metric {
  background: linear-gradient(180deg, rgba(19,37,62,.88), rgba(13,28,49,.9));
  border: 1px solid rgba(130,182,255,.12);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.card,
.quote-card,
.statbox,
.case-card,
.story-card,
.timeline-step,
.contact-card,
.contact-form-wrap,
.contact-note,
.rate-type-card,
.expertise-card {
  padding: 1.35rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.card:hover,
.quote-card:hover,
.statbox:hover,
.case-card:hover,
.story-card:hover,
.rate-type-card:hover,
.expertise-card:hover {
  transform: translateY(-5px);
  border-color: rgba(77,208,255,.28);
  box-shadow: 0 28px 70px rgba(0,0,0,.38);
}

.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(47,140,255,.95), rgba(77,208,255,.72));
  box-shadow: 0 12px 24px rgba(47,140,255,.22);
  margin-bottom: .95rem;
}

.section {
  position: relative;
  padding: 4.2rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top: 1px solid rgba(130,182,255,.08);
  border-bottom: 1px solid rgba(130,182,255,.08);
}

.section-heading {
  margin-bottom: 1.25rem;
}

.section-heading.text-left {
  text-align: left;
}

.band {
  padding: 2rem;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(15,39,68,.95) 0%, rgba(19,86,168,.82) 60%, rgba(26,131,220,.82) 100%);
  box-shadow: 0 26px 60px rgba(0,0,0,.34);
  border: 1px solid rgba(130,182,255,.18);
}

.band p {
  color: rgba(233,242,255,.88);
}

.statbox strong,
.contact-item strong,
.mini-proof strong,
.value-line strong {
  display: block;
  color: var(--text);
  font-size: 1.04rem;
  margin-bottom: .2rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
}

.quote-card::before {
  content: '"';
  position: absolute;
  top: .55rem;
  right: 1rem;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(77,208,255,.22);
  font-weight: 800;
  font-family: Georgia, serif;
}

.quote-text {
  color: var(--text);
  font-weight: 500;
  margin-bottom: .95rem;
}

.quote-meta {
  color: var(--muted);
  font-size: .94rem;
}

.cred-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid rgba(77,208,255,.45);
  background: rgba(77,208,255,.09);
  box-shadow: 0 0 12px 2px rgba(77,208,255,.15), inset 0 0 10px rgba(77,208,255,.06);
  backdrop-filter: blur(10px);
  transition: box-shadow .28s ease, border-color .28s ease, background .28s ease;
  white-space: nowrap;
  flex: 1 1 auto;
  min-width: 0;
}

.cred-badge:hover {
  background: rgba(77,208,255,.16);
  border-color: rgba(77,208,255,.70);
  box-shadow: 0 0 22px 6px rgba(77,208,255,.28), 0 0 44px 12px rgba(47,140,255,.16), inset 0 0 14px rgba(77,208,255,.10);
}

.cred-icon {
  color: var(--primary-2);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}

.cred-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .02em;
}

.mini-badge-row {
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.mini-badge-row .cred-badge {
  justify-content: center;
  padding: .85rem 1.25rem;
}

.contact-item {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(130,182,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

label {
  display: block;
  font-size: .94rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .35rem;
  font-family: 'Quicksand', sans-serif;
}

input, select, textarea {
  width: 100%;
  padding: .95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(130,182,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(77,208,255,.42);
  box-shadow: 0 0 0 4px rgba(47,140,255,.16);
  background: rgba(255,255,255,.06);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.helper-text,
.notice {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6;
}

.value-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-line {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(130,182,255,.12);
  background: rgba(255,255,255,.03);
}

.value-line p {
  margin: 0;
  color: var(--muted);
}

.case-meta,
.eyebrow-row,
.pdf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.case-tag,
.eyebrow-chip {
  display: inline-block;
  padding: .28rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(77,208,255,.3);
  background: rgba(77,208,255,.08);
  color: var(--primary-2);
  font-family: 'Quicksand', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.case-card h3,
.story-card h3 {
  margin-top: 0;
}

.step-no {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  font-family: 'Quicksand', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(47,140,255,.3);
}

.pdf-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pdf-viewer {
  width: 100%;
  height: 720px;
  border: 1px solid rgba(130,182,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  display: block;
}

.section-divider {
  height: 1px;
  background: rgba(130,182,255,.10);
  margin-top: 1.5rem;
}

.ticker-label-wrap {
  text-align: center;
  padding-bottom: 1.4rem;
}

.ticker-label {
  font-family: 'Quicksand', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker-block {
  margin-top: 3rem;
}

.ticker-outer-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
  display: flex;
  align-items: center;
  margin-bottom: -100px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.6) 6%, black 14%, black 86%, rgba(0,0,0,.6) 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.6) 6%, black 14%, black 86%, rgba(0,0,0,.6) 94%, transparent 100%);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
}

.ticker-set {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  padding: 0 2.25rem;
}

.ticker-item {
  position: relative;
  flex-shrink: 0;
  z-index: 1;
}

.ticker-item img {
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 12px;
  opacity: .68;
  filter: grayscale(25%);
  display: block;
  transition: opacity .32s ease, filter .32s ease, transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
  transform-origin: center center;
}

@media (hover: hover) and (pointer: fine) {
  .ticker-track:hover {
    animation-play-state: paused;
  }

  .ticker-item img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1.08);
    transform: scale(2);
    position: relative;
    z-index: 20;
    box-shadow: 0 0 0 3px rgba(77,208,255,.22), 0 0 22px 7px rgba(77,208,255,.52), 0 0 50px 18px rgba(47,140,255,.34), 0 0 80px 32px rgba(47,140,255,.16);
  }
}

.reveal-section, .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal-section.visible, .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.card[id] {
  scroll-margin-top: 110px;
}

.anchor-offset {
  scroll-margin-top: 90px;
}

.card-highlight {
  animation: cardPulse 2.4s ease-in-out forwards;
}

.mobile-call-bar {
  display: none;
}

footer {
  margin-top: 3rem;
  background: linear-gradient(180deg, rgba(4,11,20,.96), rgba(5,13,24,1));
  border-top: 1px solid rgba(130,182,255,.08);
  color: rgba(233,242,255,.92);
}

footer a {
  color: var(--text);
}

footer .container {
  padding: 2.45rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 1.2rem;
}

.small {
  font-size: .94rem;
}

.case-card img,
.hero-grid img,
.navbar img[alt*="DISH Network"] {
  transition: transform .25s ease, box-shadow .25s ease, filter .4s ease;
}

.case-card img:hover,
.hero-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 26px 60px rgba(0,0,0,.45);
}

.navbar img[alt*="DISH Network"]:hover {
  transform: translateY(-1px) scale(1.03);
  filter: drop-shadow(0 0 12px rgba(77,208,255,.6));
}

@keyframes patriotBreath {
  0%   { box-shadow: 0 0 14px 5px rgba(210,35,35,.60), 0 0 30px 11px rgba(210,35,35,.28), 0 0 50px 20px rgba(210,35,35,.11); }
  16%  { box-shadow: 0 0 6px 2px rgba(210,35,35,.08), 0 0 12px 4px rgba(210,35,35,.04), 0 0 20px 6px rgba(210,35,35,.02); }
  33%  { box-shadow: 0 0 14px 5px rgba(255,255,255,.36), 0 0 30px 11px rgba(255,255,255,.17), 0 0 50px 20px rgba(255,255,255,.07); }
  49%  { box-shadow: 0 0 6px 2px rgba(255,255,255,.08), 0 0 12px 4px rgba(255,255,255,.04), 0 0 20px 6px rgba(255,255,255,.02); }
  66%  { box-shadow: 0 0 14px 5px rgba(28,78,216,.60), 0 0 30px 11px rgba(28,78,216,.28), 0 0 50px 20px rgba(28,78,216,.11); }
  82%  { box-shadow: 0 0 6px 2px rgba(28,78,216,.08), 0 0 12px 4px rgba(28,78,216,.04), 0 0 20px 6px rgba(28,78,216,.02); }
  100% { box-shadow: 0 0 14px 5px rgba(210,35,35,.60), 0 0 30px 11px rgba(210,35,35,.28), 0 0 50px 20px rgba(210,35,35,.11); }
}

@keyframes heroGlowPulse {
  0%, 100% { box-shadow: 0 14px 28px rgba(47,140,255,.22); }
  50% { box-shadow: 0 14px 28px rgba(47,140,255,.22), 0 0 22px 6px rgba(77,208,255,.30); }
}

@keyframes cardPulse {
  0%, 100% { box-shadow: var(--shadow); border-color: rgba(130,182,255,.14); }
  20%, 65% { box-shadow: 0 0 0 5px rgba(77,208,255,.40), 0 0 32px 12px rgba(77,208,255,.35), 0 28px 70px rgba(0,0,0,.38); border-color: rgba(77,208,255,.75); }
  40%, 90% { box-shadow: var(--shadow); border-color: rgba(130,182,255,.14); }
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-section,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .btn-hero,
  .dish-logo-wrap,
  .ticker-item img,
  .card,
  .quote-card,
  .statbox,
  .navbar img[alt*="DISH Network"] {
    transition: none !important;
  }
}

@media (max-width: 930px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .metrics,
  .statline,
  .testimonial-grid,
  .proof-ribbon,
  .footer-grid,
  .form-grid,
  .case-grid,
  .timeline,
  .mini-proof-grid,
  .story-grid,
  .contact-grid,
  .form-row,
  .rate-type-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    font-size: 0.84rem;
  }

  .topbar .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.4rem;
    padding: 0.55rem 0;
  }

  .topbar-left,
  .topbar-right {
    width: 100%;
    text-align: center;
  }

  .topbar-right {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    font-size: 0.78rem;
  }

  .topbar-sep {
    display: inline;
  }

  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.7rem 0;
  }

  .mobile-header .mobile-only {
    display: inline-flex;
  }

  .mobile-brand {
    gap: 0.65rem;
    max-width: calc(100% - 70px);
  }

  .mobile-brand .brand-logo {
    height: 44px;
    border-radius: 12px;
  }

  .mobile-brand .brand-name {
    font-size: 0.92rem;
    line-height: 1.1;
    white-space: normal;
  }

  .mobile-dish-row {
    display: flex;
    justify-content: center;
  }

  .mobile-dish-row .dish-logo-wrap {
    padding: 6px 14px;
    border-radius: 10px;
  }

  .mobile-dish-row .dish-logo-wrap img {
    height: 50px !important;
  }

  .mobile-nav {
    position: relative;
  }

  .mobile-nav ul {
    display: none;
  }

  .mobile-nav ul.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    background: rgba(7,17,31,.96);
    padding: 1.2rem 1rem;
    border: 1px solid rgba(130,182,255,.12);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    z-index: 1099;
    gap: 1rem;
  }

  .navbar {
    gap: 0.75rem;
    padding: 0;
  }

  nav ul {
    display: none;
  }

  .mobile-only,
  .hamburger-btn {
    display: flex;
  }

  .hero {
    padding: 2.2rem 0 1.7rem;
  }

  .hero-panel {
    padding: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .pill-link {
    width: 100%;
    text-align: center;
  }

  .mini-badge-row {
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .mini-badge-row .cred-badge {
    flex: 1 1 100%;
    white-space: normal;
    padding: 0.8rem 1rem;
  }

  .ticker-outer-wrap {
    height: 150px;
    margin-bottom: -30px;
  }

  .ticker-set {
    gap: 2rem;
    padding: 0 1rem;
  }

  .ticker-item img {
    height: 52px;
    max-width: 120px;
  }

  /* Mobile tap highlight for ticker logos */
  .ticker-item img.tapped {
    opacity: 1;
    filter: grayscale(0%) brightness(1.25);
    box-shadow: 0 0 14px 4px rgba(77,208,255,.55);
  }

  .mobile-call-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10,14,30,.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(77,208,255,.22);
    padding: .75rem 1.25rem;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .mobile-call-bar a {
    flex: 1;
    text-align: center;
    padding: .75rem 1rem;
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: opacity .2s ease;
  }

  .mobile-call-bar .call-btn {
    background: var(--primary);
    color: #fff;
  }

  .mobile-call-bar .email-btn {
    border: 1.5px solid rgba(77,208,255,.45);
    color: var(--primary-2);
  }

  .pdf-viewer {
    height: 480px;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

@media (max-width: 640px) {
  .mobile-brand .brand-logo {
    height: 38px;
  }

  .mobile-brand .brand-name {
    font-size: 0.82rem;
  }

  .mobile-dish-row .dish-logo-wrap img {
    height: 50px !important;
  }

  .topbar {
    font-size: 0.8rem;
  }

  .topbar-sep {
    display: none;
  }

  .hero {
    padding: 1.9rem 0 1.35rem;
  }
}

/* LG Pro:Centric tool link under Smartbox image */
.hero-tool-link {
  margin-top: 1rem;
  text-align: center;
}

.hero-tool-link .btn {
  display: inline-block;
  margin-bottom: 0.6rem;
}

.hero-tool-link .small {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* FAQ styles */
.faq-section .faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0;
}

/* ... rest of FAQ styles ... */

.faq-item p {
  margin: 0 0 1rem 0;
  padding-right: 2rem;
  line-height: 1.7;
  color: var(--muted);
}

