/* Bill payment net and box LLC — static site */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;700;900&family=Outfit:wght@100;400;700;900&family=Playfair+Display:ital,wght@1,300;1,700;1,900&display=swap");

:root {
  --brand-blue: #3b82f6;
  --brand-dark: #020202;
  --brand-card: #0a0a0a;
  --text-muted: #9ca3af;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --max-w: 1500px;
  --scroll-pct: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--brand-dark);
  color: #9ca3af;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: default;
}

::selection {
  background: rgba(59, 130, 246, 0.3);
  color: #fff;
}

.italic-serif-header {
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--brand-dark);
  overflow: hidden;
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(to right, rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.bg-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.05);
  filter: blur(100px);
  pointer-events: none;
  top: 20%;
  left: 30%;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #3b82f6;
  transform-origin: left;
  transform: scaleX(var(--scroll-pct));
  z-index: 1000;
  box-shadow: 0 0 10px #3b82f6;
}

.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  transition: padding 0.5s, background 0.5s, border-color 0.5s;
  padding: 2.5rem 0;
}

.nav.is-scrolled {
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
}

.nav-logo-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: #3b82f6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
}

.nav-title {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #fff;
}

.nav-title span {
  color: #3b82f6;
}

.nav-tagline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.nav-tagline::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: rgba(59, 130, 246, 0.5);
}

.nav-tagline span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: #6b7280;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #9ca3af;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
}

.nav-links a.is-active {
  border-bottom: 1px solid rgba(59, 130, 246, 0.5);
}

.nav-mobile a.is-active {
  color: #3b82f6;
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  transition: background 0.2s, border-color 0.2s;
}

@media (min-width: 640px) {
  .nav-cta {
    display: inline-flex;
  }
}

.nav-cta:hover {
  background: #3b82f6;
  border-color: #3b82f6;
}

.nav-toggle-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  #nav-toggle,
  .nav-toggle-btn {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  flex-direction: column;
  gap: 2rem;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

#nav-toggle:checked ~ .nav-mobile {
  display: flex;
}

.nav-mobile a {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
}

.nav-mobile a:hover {
  color: #3b82f6;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.05);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 3rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 0.78;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 2.5rem;
  text-transform: uppercase;
}

.hero h1 strong {
  font-weight: 900;
  color: #3b82f6;
  font-style: italic;
}

.hero h1 .line2 {
  font-weight: 700;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #6b7280;
  line-height: 1.35;
  margin: 0 0 3.5rem;
  max-width: 36rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-left: 2px solid rgba(59, 130, 246, 0.5);
  padding-left: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.75rem 3rem;
  border-radius: 9999px;
  background: #3b82f6;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.25);
  transition: transform 0.15s, background 0.2s;
}

.btn-primary:hover {
  background: #2563eb;
  transform: scale(1.02);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.75rem 3rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(59, 130, 246, 0.5);
}

.hero-note {
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: #6b7280;
  max-width: 36rem;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-visual {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-visual {
    display: block;
  }
}

.hero-visual-frame {
  aspect-ratio: 4/5;
  border-radius: 4.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
}

.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4.2rem;
  filter: grayscale(1) brightness(0.4);
  transition: filter 1s;
}

.hero-visual-frame:hover img {
  filter: grayscale(0) brightness(0.9);
}

/* Ticker */
.ticker {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #000;
  overflow: hidden;
  position: relative;
}

.ticker::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(59, 130, 246, 0.05);
  pointer-events: none;
}

.ticker-track {
  display: flex;
  gap: 5rem;
  width: max-content;
  animation: ticker 40s linear infinite;
}

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

.ticker-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
}

.ticker-item span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #9ca3af;
}

.ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 10px #3b82f6;
}

section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 8rem 0;
  }
}

.section-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: #3b82f6;
  margin: 0 0 2rem;
  font-style: italic;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 0.85;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.section-title strong {
  font-weight: 700;
}

.bg-black-section {
  background: #000;
}

.bg-subtle {
  background: #050505;
}

.bg-blog {
  background: #030303;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.section-aside {
  font-size: 1rem;
  color: #6b7280;
  max-width: 20rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.02em;
  opacity: 0.7;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-auto-rows: minmax(280px, auto);
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 420px;
  }
}

.service-card {
  position: relative;
  padding: 3rem;
  border-radius: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.5s, background 0.5s;
}

.service-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
}

.service-card.lg {
  background: #0a0a0a;
}

@media (min-width: 1024px) {
  .service-card.lg {
    grid-column: span 3;
    grid-row: span 2;
  }

  .service-card:not(.lg) {
    grid-column: span 3;
  }
}

.service-card .icon-box {
  width: 5rem;
  height: 5rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.service-card.lg .icon-box {
  background: #3b82f6;
  color: #fff;
}

.service-card:not(.lg) .icon-box {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.service-tag {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #374151;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}

.service-row-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service-card h4 {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.4;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  max-width: 28rem;
}

.why-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-points {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .why-points {
    grid-template-columns: 1fr 1fr;
  }
}

.why-card {
  padding: 2.5rem;
  border-radius: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  transition: border-color 0.3s, transform 0.3s;
}

.why-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}

.icon-check {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.why-card h4 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.why-card p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
  text-transform: uppercase;
  line-height: 1.5;
}

.process-head {
  text-align: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .process-head {
    margin-bottom: 6rem;
  }
}

.process-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  padding: 3rem;
  border-radius: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  transition: background 0.3s;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.05);
}

.step-num {
  font-size: 10px;
  font-weight: 900;
  color: #374151;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.process-step h4 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.process-step p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  text-transform: uppercase;
}

.coverage-panel {
  border-radius: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .coverage-panel {
    padding: 6rem 5rem;
  }
}

.coverage-panel h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 0.95;
  margin: 0 0 2.5rem;
  text-transform: uppercase;
}

.coverage-panel .lead {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.panel-muted {
  font-size: 10px;
  color: #4b5563;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.provider-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 2rem;
}

.provider-tab {
  flex: 1;
  min-width: 120px;
  padding: 1.25rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  background: transparent;
  color: #6b7280;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.provider-tab.is-active,
.provider-tab:hover {
  color: #fff;
}

.provider-tab.is-active {
  background: #3b82f6;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.package-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  padding: 3rem 4rem;
  border-radius: 4.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 28rem;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}

.package-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.package-label {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 2rem;
}

.package-card h4 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 2rem;
  text-transform: uppercase;
  line-height: 1;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.price-row small {
  font-size: 10px;
  font-weight: 900;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-row .amount {
  font-size: 3.5rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.03em;
}

.feature-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6b7280;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  flex-shrink: 0;
  box-shadow: 0 0 10px #3b82f6;
}

.partners-label {
  font-size: 10px;
  font-weight: 900;
  color: #1f2937;
  text-transform: uppercase;
  letter-spacing: 1em;
  text-align: center;
  margin-bottom: 3rem;
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  opacity: 0.35;
  transition: opacity 0.5s;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .partners-row {
    gap: 6rem;
  }
}

.partners-row:hover {
  opacity: 0.6;
}

.partners-row span {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900;
  font-style: italic;
  color: #fff;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
}

.disclaimer-small {
  font-size: 10px;
  color: #374151;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
  line-height: 1.5;
}

.trust-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: 1fr 3fr;
  }
}

.trust-quote-col {
  display: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 3rem;
}

@media (min-width: 1024px) {
  .trust-quote-col {
    display: block;
  }
}

.trust-quote-col h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin: 2.5rem 0 1.5rem;
}

.trust-quote-col p {
  font-size: 11px;
  font-weight: 900;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0;
}

.testimonial-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  padding: 3rem;
  border-radius: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
}

.testimonial p {
  font-size: 1.25rem;
  color: #fff;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0 0 3rem;
}

.testimonial .author {
  font-size: 10px;
  font-weight: 900;
  color: #3b82f6;
  text-transform: uppercase;
}

.testimonial .role {
  font-size: 9px;
  font-weight: 900;
  color: #374151;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-right: 2px solid #3b82f6;
  border-bottom: 2px solid #3b82f6;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item summary:hover {
  color: #3b82f6;
}

.faq-answer {
  padding: 0 0 1rem;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  text-transform: uppercase;
  max-width: 42rem;
}

.blog-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card .thumb {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 3rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2.5rem;
  background: #0a0a0a;
}

.blog-card .thumb .tag {
  position: absolute;
  top: 2rem;
  left: 2rem;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s, opacity 0.5s;
  opacity: 0.9;
}

.blog-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-meta .date {
  color: #3b82f6;
}

.blog-meta .sep {
  width: 2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.blog-meta .read {
  color: #374151;
}

.blog-card h4 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  transition: color 0.2s;
}

.blog-card:hover h4 {
  color: #3b82f6;
}

.blog-link {
  font-size: 10px;
  font-weight: 900;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.4em;
}

.contact-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: 6rem;
    align-items: start;
  }
}

.contact-block {
  margin-bottom: 4rem;
}

.contact-block .label {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: #374151;
  margin-bottom: 1rem;
}

.contact-block .value {
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.contact-block .sub {
  font-size: 9px;
  font-weight: 900;
  color: #1f2937;
  text-transform: uppercase;
}

.contact-form-wrap {
  padding: 2.5rem 1.5rem;
  border-radius: 4.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), transparent);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.05);
}

@media (min-width: 768px) {
  .contact-form-wrap {
    padding: 5rem;
  }
}

.form-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .form-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: #374151;
  margin: 0 0 1rem 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2.5rem;
  padding: 2rem 2.5rem;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  font-family: inherit;
}

.form-group textarea {
  border-radius: 3rem;
  min-height: 8rem;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 1rem;
  margin: 2rem 0;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

.form-footnote {
  font-size: 10px;
  color: #4b5563;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-top: 1.5rem;
}

footer {
  padding: 5rem 0 8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.footer-grid {
  display: grid;
  gap: 4rem;
  margin-bottom: 6rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.footer-brand p.lead {
  font-size: 10px;
  font-weight: 900;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin: 0 0 2rem;
  font-style: italic;
}

.footer-brand p.desc {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.6;
  max-width: 20rem;
  opacity: 0.7;
  margin: 0;
}

footer h4 {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1em;
  text-transform: uppercase;
  color: #1f2937;
  margin: 0 0 3rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-nav a,
.footer-nav button {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #6b7280;
  text-decoration: none;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.footer-nav a:hover,
.footer-nav button:hover {
  color: #fff;
}

.footer-addr {
  font-size: 12px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-addr a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #6b7280;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-addr a:hover {
  color: #3b82f6;
}

.office-box {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.6);
  margin-top: 2rem;
}

.office-box .t {
  font-size: 9px;
  font-weight: 900;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 0.75rem;
}

.office-box .hours {
  font-size: 10px;
  font-weight: 900;
  color: #374151;
  text-transform: uppercase;
}

.footer-bottom {
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }
}

.footer-copy {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #1f2937;
  margin: 0;
}

.footer-copy-sub {
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  color: #111827;
  margin: 0.5rem 0 0;
}

.footer-disclaimer {
  font-size: 8px;
  color: #111827;
  text-transform: uppercase;
  max-width: 42rem;
  line-height: 1.5;
  margin: 0;
}

/* Inner pages */
.page-hero {
  padding: 8rem 0 4rem;
  scroll-margin-top: 5rem;
}

.page-hero-title {
  margin: 1rem 0 0;
}

.page-hero-lead {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  font-size: 1.125rem;
  color: #6b7280;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.6;
}

.page-section-bottom {
  padding-bottom: 6rem;
}

.page-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

.provider-tabs-wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.home-links-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .home-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .home-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.home-link-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 2rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.home-link-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.home-link-label {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.home-link-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.home-link-card p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 1.5rem;
  flex: 1;
  line-height: 1.5;
}

.home-link-cta {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3b82f6;
}

.legal-page {
  max-width: 48rem;
}

.legal-page p {
  font-size: 1rem;
  color: #9ca3af;
  line-height: 1.75;
  margin: 0 0 1.5rem;
}

.legal-page a {
  color: #3b82f6;
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

.legal-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem !important;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-page-links a {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cookie-actions .link {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.cookie-actions .link:hover {
  color: #fff;
}

dialog.legal-dialog {
  max-width: 42rem;
  width: calc(100% - 2rem);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4rem;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(40px);
  color: #9ca3af;
}

dialog.legal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.legal-dialog-inner {
  padding: 4rem 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .legal-dialog-inner {
    padding: 4rem;
  }
}

.legal-dialog h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 2rem;
  font-style: italic;
  font-family: "Playfair Display", serif;
}

.legal-dialog p {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin: 0 0 2.5rem;
}

.legal-dialog .btn-close-modal {
  width: 100%;
  padding: 2rem;
  border-radius: 9999px;
  border: none;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.5rem;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

/* When cookie banner is visible, lift floating buttons above it */
body.has-cookie-banner .call-now-fab {
  bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
}

body.has-cookie-banner .scroll-top {
  bottom: calc(9.5rem + env(safe-area-inset-bottom, 0px));
}

.cookie-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .cookie-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.cookie-text {
  font-size: 10px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin: 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}

.cookie-actions button.link {
  background: none;
  border: none;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4b5563;
  cursor: pointer;
  font-family: inherit;
}

.cookie-actions button.link:hover {
  color: #fff;
}

.cookie-actions button.accept {
  background: #3b82f6;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  font-family: inherit;
}

.scroll-top {
  position: fixed;
  bottom: 3rem;
  left: 3rem;
  z-index: 500;
  width: 4rem;
  height: 4rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(59, 130, 246, 0.6);
  transition: border-color 0.2s, background 0.2s;
}

.scroll-top.is-visible {
  display: flex;
}

.scroll-top:hover {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(0, 0, 0, 0.8);
}

.package-panel {
  display: none;
}

.package-panel.is-active {
  display: grid;
}

.border-y-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.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;
}

/* Floating Call Now — mobile phones only */
.call-now-fab {
  position: fixed;
  z-index: 1200;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  border-radius: 50%;
  padding: 0;
  background: linear-gradient(145deg, #22c55e, #16a34a);
  border: 2px solid rgba(187, 247, 208, 0.5);
  box-shadow:
    0 8px 28px rgba(34, 197, 94, 0.5),
    0 0 0 0 rgba(34, 197, 94, 0.35);
  animation: call-now-pop 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .call-now-fab {
    display: none !important;
  }
}

.call-now-fab:hover {
  filter: brightness(1.08);
}

.call-now-fab:active {
  transform: scale(0.96);
}

.call-now-fab:focus-visible {
  outline: 2px solid #86efac;
  outline-offset: 3px;
}

.call-now-fab__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.5);
  animation: call-now-ring 2s ease-out infinite;
  pointer-events: none;
}

.call-now-fab__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

@keyframes call-now-pop {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 8px 28px rgba(34, 197, 94, 0.5),
      0 0 0 0 rgba(34, 197, 94, 0.35);
  }
  50% {
    transform: scale(1.05);
    box-shadow:
      0 12px 36px rgba(34, 197, 94, 0.6),
      0 0 0 8px rgba(34, 197, 94, 0.1);
  }
}

@keyframes call-now-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #000;
}
::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.25);
  border-radius: 9999px;
}
