/* SOURCE: variables.css */
/* ================================================================
   DESIGN TOKENS
   Burgundy / black / white palette with a deep plum undertone.
   ================================================================ */

:root {
  --orange: #800020;
  --orange-dark: #5f0017;
  --accent-2: #3f1a4d;
  --espresso: #241521;
  --charcoal: #0c0910;
  --charcoal-2: #17111b;
  --ink: #18131c;
  --muted: #5f5664;
  --line: #ddd6dd;
  --soft: #f7f5f8;
  --grey: #bababa;
  --white: #ffffff;
  --accent-rgb: 128, 0, 32;

  /* Legacy alias keeps the original template component names working. */
  --amber: var(--orange);
  --amber-dark: var(--orange-dark);

  --shadow: 0 18px 48px rgba(12, 9, 16, 0.18);
  --shadow-soft: 0 6px 18px rgba(12, 9, 16, 0.10);
  --radius: 3px;
  --container: 1180px;
  --section-space: 82px;
  --heading: "Arial Narrow", "Trebuchet MS", Arial, sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

/* SOURCE: base.css */
/* ================================================================
   BASE, TYPOGRAPHY AND GLOBAL COMPONENTS
   ================================================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.72;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.42);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 44px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
  overflow: hidden;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--charcoal-2);
  color: var(--white);
}

.section-orange {
  background: var(--orange);
  color: var(--charcoal);
}

.section-orange .eyebrow {
  color: var(--charcoal);
}

.section-orange .section-title h2,
.section-orange .split-copy h2,
.section-orange .cta-panel h2 {
  color: var(--charcoal);
}

.section-orange .section-title p,
.section-orange .split-copy p,
.section-orange .feature-item p {
  color: rgba(22, 19, 22, 0.82);
}

.section-orange .section-title h2::after,
.section-orange .split-copy h2::after {
  background: var(--white);
}

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

.section-line::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("../images/template/lines-3.png");
  background-size: cover;
  opacity: 0.04;
}

.grid {
  display: grid;
  gap: 26px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.align-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.section-title {
  max-width: 740px;
  margin-bottom: 46px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.section-title h2,
.split-copy h2,
.cta-panel h2 {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-family: var(--heading);
  font-size: clamp(28px, 3.25vw, 42px);
  font-weight: 800;
  line-height: 1.08;
  text-transform: none;
}

.section-dark .section-title h2,
.section-dark .split-copy h2,
.section-dark .cta-panel h2,
.cta-section .cta-panel h2 {
  color: var(--white);
}

.section-title h2::after,
.split-copy h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 21px;
  background: var(--orange);
}

.section-title.center h2::after {
  margin-inline: auto;
}

.section-title p,
.split-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
}

.section-dark .section-title p,
.section-dark .split-copy p,
.cta-section .cta-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.split-copy .check-list {
  margin-top: 28px;
}

/* BUTTONS */

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 24px;
  overflow: hidden;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.45px;
  line-height: 1.2;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--orange);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 320ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(22, 19, 22, 0.18);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
  transform: scaleX(0);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: var(--orange);
  background: var(--charcoal);
}

.btn-dark {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.btn-dark::before {
  background: var(--charcoal);
}

.btn-dark:hover::before,
.btn-dark:focus-visible::before {
  transform: scaleX(0);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  color: var(--charcoal);
  background: var(--white);
}

.btn-border {
  color: var(--white);
  border-color: var(--white);
}

.btn-border::before {
  background: var(--white);
  transform: scaleX(0);
}

.btn-border:hover,
.btn-border:focus-visible {
  color: var(--charcoal);
}

.btn-border:hover::before,
.btn-border:focus-visible::before {
  transform: scaleX(1);
}

.btn-lg {
  min-height: 54px;
  padding: 14px 32px;
}

.btn-compact {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 11px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.btn-card-call {
  gap: 8px;
  margin-top: 24px;
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.btn-card-call::before {
  background: var(--charcoal);
  transform: scaleX(0);
  transform-origin: right;
}

.btn-card-call:hover,
.btn-card-call:focus-visible {
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-card-call:hover::before,
.btn-card-call:focus-visible::before {
  transform: scaleX(1);
}

/* CARDS */

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    transform 320ms ease,
    box-shadow 320ms ease,
    border-color 320ms ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0.22);
  transform-origin: top;
  transition: transform 320ms ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.55);
  box-shadow: var(--shadow);
}

.card:hover::before {
  transform: scaleY(1);
}

.card .card-number,
.icon-chip {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 900;
}

.card h3 {
  margin: 22px 0 11px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.13;
  text-transform: none;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
}

.card .btn-card-call {
  align-self: flex-start;
  margin-top: 24px;
}

.section-dark .card h3,
.section-dark .card p {
  color: var(--ink);
}

/* LISTS AND MEDIA */

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 29px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.image-frame {
  position: relative;
}

.image-frame img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 1;
  visibility: visible;
  transition: transform 380ms ease;
}

.image-frame:hover img {
  transform: scale(1.015);
  opacity: 1;
  visibility: visible;
}

.image-frame::before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: -18px;
  z-index: -1;
  width: 120px;
  height: 120px;
  background: var(--orange);
}

.image-frame::after {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: -1;
  width: 70px;
  height: 70px;
  border: 1px solid var(--orange);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.badge {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

/* STATS AND COMPARISON TABLES */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: transparent;
}

.stat {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.stat strong {
  display: block;
  color: var(--orange);
  font-family: var(--heading);
  font-size: 34px;
  line-height: 1;
}

.stat span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison-table thead th {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--heading);
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.comparison-table tbody th {
  font-family: var(--heading);
  font-weight: 800;
  text-transform: none;
}

.comparison-table tr:last-child td,
.comparison-table tr:last-child th {
  border-bottom: 0;
}

.comparison-table .highlight {
  color: var(--orange);
  font-weight: 800;
}

/* FAQ ACCORDION */

.accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.faq-item.open {
  border-color: var(--orange);
  box-shadow: 0 12px 28px rgba(22, 19, 22, 0.13);
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 20px 62px 20px 22px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 21px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  transform: translateY(-50%) rotate(0deg);
  transition:
    transform 260ms ease,
    background 260ms ease;
}

.faq-item.open .faq-question::after {
  content: "−";
  background: var(--charcoal);
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  opacity: 0;
  transition:
    max-height 360ms ease,
    opacity 260ms ease;
}

.faq-item.open .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 22px 22px;
}

.faq-answer p:first-child {
  margin-top: 0;
}

/* CALLOUTS */

.callout {
  padding: 32px;
  border-left: 6px solid var(--orange);
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow);
}

.callout strong {
  color: var(--white);
  font-family: var(--heading);
  font-size: 19px;
  font-weight: 800;
  text-transform: none;
}

.callout p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.disclaimer {
  color: #777;
  font-size: 12px;
  line-height: 1.55;
}

.provider-disclaimer {
  padding: 17px 20px;
  border: 1px solid rgba(var(--accent-rgb), 0.42);
  background: #fff4ee;
  color: #563124;
  font-size: 13px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 10px;
  z-index: 10000;
  padding: 12px 18px;
  background: var(--orange);
  color: var(--white);
}

.skip-link:focus {
  top: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ================================================================
   REVISION OVERRIDES
   Burgundy palette refinements, typography sizing, FAQ usability.
   ================================================================ */

:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.38);
}

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

.section-orange .eyebrow,
.section-orange .section-title h2,
.section-orange .split-copy h2,
.section-orange .cta-panel h2,
.section-orange .feature-item h3,
.section-orange .card h3 {
  color: var(--white);
}

.section-orange .section-title p,
.section-orange .split-copy p,
.section-orange .feature-item p,
.section-orange .card p {
  color: rgba(255, 255, 255, 0.82);
}

.section-dark h3,
.section-dark h4,
.section-dark strong,
.cta-section h3,
.cta-section h4,
.cta-section strong {
  color: var(--white);
}

.section-title h2,
.split-copy h2,
.cta-panel h2 {
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.12;
}

.section-title p,
.split-copy p,
.card p,
.feature-item p {
  font-size: 14px;
}

.feature-item h3,
.card h3,
.legal-nav h2,
.callout strong {
  font-size: 18px;
}

.btn {
  border-color: var(--orange);
}

.btn::before {
  background: var(--orange);
}

.btn-dark {
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-dark::before {
  background: var(--charcoal);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  border-color: var(--orange);
}

.faq-item {
  border-left: 4px solid var(--orange);
}

.faq-question {
  font-size: 15px;
  font-weight: 400;
}

.faq-question::after {
  background: var(--orange);
}

.faq-item.open .faq-question::after {
  background: var(--charcoal);
}

.faq-answer {
  will-change: max-height, opacity;
}

.provider-disclaimer {
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  background: #f7edf1;
  color: #4a2131;
}

.skip-link {
  background: var(--orange);
  color: var(--white);
}

/* ================================================================
   FINAL VISIBILITY AND FAQ FIXES
   ================================================================ */

/* Keep accordion rows compact when paired with a taller left column. */
.accordion {
  align-content: start;
  gap: 10px;
}

.faq-question {
  min-height: 58px;
  padding: 14px 54px 14px 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.faq-question::after {
  right: 15px;
  width: 28px;
  height: 28px;
  font-size: 20px;
}

.faq-answer-inner {
  padding: 0 18px 16px;
  font-size: 14px;
}

/* White cards must always use readable dark copy on burgundy sections. */
.section-orange .card {
  background: var(--white);
  color: var(--ink);
}

.section-orange .card h3,
.section-orange .card h4,
.section-orange .card strong {
  color: var(--orange);
}

.section-orange .card p,
.section-orange .card li,
.section-orange .card span:not(.btn span) {
  color: var(--ink);
}

.section-orange .card .btn {
  color: var(--white);
}

/* WHITE CARDS ON BURGUNDY SECTIONS NEED DARK, READABLE COPY */
.section-orange .card h3,
.section-orange .card h4,
.section-orange .card strong,
.section-orange .process .card h3 {
  color: var(--orange);
}

.section-orange .card p,
.section-orange .process .card p {
  color: var(--ink);
}

/* KEEP COMPACT PHONE CTAS ON A SINGLE LINE */
.btn-card-call,
.speed-card .speed-call {
  white-space: nowrap;
}

.speed-card .speed-call {
  width: 100%;
  padding-inline: 12px;
  font-size: 12px;
  letter-spacing: 0.25px;
}

/* SOURCE: header.css */
/* ================================================================
   GLOBAL HEADER
   ================================================================ */

.site-header {
  position: relative;
  z-index: 1000;
  background: var(--white);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--charcoal);
  color: var(--white);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  font-size: 12px;
}

.topbar p {
  margin: 0;
}

.topbar-points {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.mainbar {
  position: relative;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(22, 19, 22, 0.08);
}

.mainbar-inner {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 205px;
  height: auto;
  margin: 0;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
  height: 42px;
}

.desktop-nav > a,
.nav-dropdown > button {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 11px;
  border: 0;
  border-right: 1px solid #d4cecb;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav > a:first-child {
  border-left: 1px solid #d4cecb;
}

.desktop-nav > a::before,
.nav-dropdown > button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--orange);
  opacity: 0;
  transition: opacity 220ms ease;
}

.desktop-nav > a:hover::before,
.desktop-nav > a:focus-visible::before,
.nav-dropdown:hover > button::before,
.nav-dropdown:focus-within > button::before {
  opacity: 1;
}

.desktop-nav > a,
.nav-dropdown > button {
  isolation: isolate;
}

.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.nav-dropdown:hover > button,
.nav-dropdown:focus-within > button {
  color: var(--white);
}

.nav-dropdown {
  position: relative;
  display: flex;
}

.nav-dropdown > button {
  padding-right: 25px;
}

.nav-dropdown > button::after {
  content: "⌄";
  position: absolute;
  top: 10px;
  right: 9px;
  z-index: 2;
}

.dropdown-panel {
  position: absolute;
  top: 42px;
  left: 0;
  display: none;
  min-width: 220px;
  padding: 8px 0;
  background: var(--orange);
  box-shadow: var(--shadow);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.dropdown-open .dropdown-panel {
  display: block;
}

.dropdown-panel a {
  display: block;
  padding: 10px 18px;
  color: var(--white);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
}

.dropdown-panel a:hover,
.dropdown-panel a:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.header-call {
  display: flex;
  min-width: 150px;
  padding: 10px 14px;
  flex-direction: column;
  line-height: 1;
}

.header-call span {
  font-size: 10px;
}

.header-call strong {
  margin-top: 5px;
  font-size: 14px;
}

.menu-toggle,
.mobile-phone,
.mobile-menu {
  display: none;
}

/* ================================================================
   REVISION OVERRIDES
   Burgundy palette, stable dropdown text visibility, linked topbar items.
   ================================================================ */

.topbar {
  background: var(--charcoal);
  color: var(--white);
}

.topbar-points a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 220ms ease;
}

.topbar-points a:hover,
.topbar-points a:focus-visible {
  color: var(--white);
}

.desktop-nav > a,
.nav-dropdown > button {
  background: var(--white);
  color: var(--ink);
  transition: background-color 220ms ease, color 220ms ease;
}

.desktop-nav > a::before,
.nav-dropdown > button::before {
  display: none;
}

.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.nav-dropdown:hover > button,
.nav-dropdown:focus-within > button,
.nav-dropdown.dropdown-open > button {
  background: var(--orange);
  color: var(--white);
}

.nav-dropdown > button::after {
  color: currentColor;
}

.dropdown-panel {
  background: var(--orange);
  border: 1px solid rgba(var(--accent-rgb), 0.55);
}

.dropdown-panel a {
  color: var(--white);
  font-size: 14px;
  line-height: 1.35;
}

.dropdown-panel a:hover,
.dropdown-panel a:focus-visible {
  background: var(--charcoal);
  color: var(--white);
}

.header-call.btn.btn-primary {
  background: var(--orange);
  border-color: var(--orange);
}

.header-call.btn.btn-primary:hover,
.header-call.btn.btn-primary:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

/* HEADER CTA HOVER — KEEP TEXT CLEAR */
.header-call.btn.btn-primary:hover,
.header-call.btn.btn-primary:focus-visible {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.header-call.btn.btn-primary:hover::before,
.header-call.btn.btn-primary:focus-visible::before {
  transform: scaleX(0);
}

/* ================================================================
   SUPPLIED HEADER BRAND MARK
   ================================================================ */

.brand img {
  width: 230px;
  height: auto;
  object-fit: contain;
}

.header-call.btn.btn-primary:hover,
.header-call.btn.btn-primary:focus-visible {
  background: #000000;
  border-color: #000000;
  color: var(--white);
}

/* SOURCE: footer.css */
/* ================================================================
   GLOBAL FOOTER
   ================================================================ */

.site-footer {
  background: var(--charcoal);
  color: var(--white);
}

.footer-cta {
  background: var(--white);
  color: var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 166px;
}

.footer-cta .eyebrow {
  color: var(--orange);
}

.footer-cta h2 {
  margin: 7px 0 0;
  color: var(--charcoal);
  font-family: var(--heading);
  font-size: 35px;
  font-weight: 800;
  line-height: 1.06;
  text-transform: none;
}

.footer-cta .btn {
  border-color: var(--charcoal);
  color: var(--white);
}

.footer-cta .btn::before {
  background: var(--charcoal);
}

.footer-cta .btn:hover,
.footer-cta .btn:focus-visible {
  border-color: var(--white);
  color: var(--charcoal);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  padding-top: 68px;
  padding-bottom: 62px;
}

.footer-brand img {
  width: 245px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer-grid h3 {
  margin: 0 0 20px;
  color: var(--orange);
  font-family: var(--heading);
  font-size: 19px;
  font-weight: 800;
  text-transform: none;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--orange);
}

.footer-brand p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-disclosure {
  font-size: 12px;
  line-height: 1.55;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
}

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

/* FOOTER CALL STRIP — BURGUNDY BACKGROUND WITH WHITE COPY */
.footer-cta {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange-dark);
}

.footer-cta .eyebrow,
.footer-cta h2 {
  color: var(--white);
}

.footer-cta .btn,
.footer-cta .btn::before {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.footer-cta .btn:hover,
.footer-cta .btn:focus-visible {
  background: #000000;
  border-color: #000000;
  color: var(--white);
}

/* ================================================================
   SUPPLIED WHITE FOOTER MARK + WHITE FINAL CTA STRIP
   ================================================================ */

.footer-brand img {
  width: 245px;
  height: auto;
  filter: none;
  object-fit: contain;
}

.footer-cta {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--line);
}

.footer-cta .eyebrow {
  color: var(--orange);
}

.footer-cta h2 {
  color: var(--charcoal);
}

.footer-cta .btn,
.footer-cta .btn::before {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.footer-cta .btn:hover,
.footer-cta .btn:focus-visible {
  background: #000000;
  border-color: #000000;
  color: var(--white);
}

/* SOURCE: home.css */
/* ================================================================
   HOME PAGE AND SHARED HERO BANNER
   ================================================================ */

.hero,
.inner-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--charcoal);
  background-image: var(--hero-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--white);
  isolation: isolate;
}

.hero::before,
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(22, 19, 22, 0.96) 0%, rgba(22, 19, 22, 0.88) 42%, rgba(22, 19, 22, 0.56) 72%, rgba(22, 19, 22, 0.44) 100%),
    linear-gradient(180deg, rgba(22, 19, 22, 0.10), rgba(22, 19, 22, 0.55));
}

.hero::after,
.inner-hero::after {
  content: "";
  position: absolute;
  top: -220px;
  right: -170px;
  z-index: 1;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(var(--accent-rgb), 0.45);
  border-radius: 50%;
  animation: slow-spin 20s linear infinite;
}

.hero-hills-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.72;
}

.hero-grid,
.inner-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: center;
  gap: 52px;
  padding: 76px 0;
}

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

.hero-copy h1,
.inner-hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(40px, 4.8vw, 58px);
  font-weight: 800;
  line-height: 1.02;
  text-transform: none;
  text-wrap: balance;
}

.inner-hero h1 {
  font-size: clamp(36px, 4vw, 50px);
}

.hero-copy h1::after,
.inner-hero h1::after {
  content: "";
  display: block;
  width: 250px;
  max-width: 70%;
  height: 2px;
  margin-top: 21px;
  background: var(--orange);
  animation: title-line 1.25s ease-out;
}

.hero-copy p,
.inner-hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 21px;
}

.hero-points span {
  color: var(--white);
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: none;
}

.hero-points span::before {
  content: "•";
  margin-right: 8px;
  color: var(--orange);
}

.hero-art {
  position: relative;
  min-width: 0;
  animation: hero-float 6s ease-in-out infinite;
}

.hero-art::before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: -18px;
  z-index: -1;
  width: 150px;
  height: 150px;
  background: var(--orange);
}

.hero-art img {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 1;
  visibility: visible;
  transition:
    transform 360ms ease,
    box-shadow 360ms ease;
}

.hero-art:hover img {
  transform: scale(1.018);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  opacity: 1;
  visibility: visible;
}

.hero-art .signal-dot {
  position: absolute;
  top: 18%;
  right: 15%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.7s infinite;
}

/* AVAILABILITY FORM */

.availability-bar {
  position: relative;
  z-index: 5;
  margin-top: -52px;
}

.availability-panel {
  display: grid;
  grid-template-columns: 1fr 2.1fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(22, 19, 22, 0.20);
}

.availability-copy {
  padding: 30px;
  background: var(--charcoal);
  color: var(--white);
}

.availability-copy h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--heading);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.08;
  text-transform: none;
}

.availability-copy p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.5;
}

.availability-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-content: center;
  padding: 22px;
}

.availability-form input,
.availability-form select,
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #cfc8c5;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.availability-form input:focus,
.availability-form select:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--orange);
  outline: 2px solid rgba(var(--accent-rgb), 0.14);
}

.form-note,
.form-status {
  grid-column: 1 / -1;
  margin: 0;
}

.form-note {
  color: #777;
  font-size: 11px;
}

.form-status {
  display: none;
  color: #267244;
  font-weight: 700;
}

/* HOME COMPONENTS */

.service-grid .card {
  padding-top: 38px;
}

.service-grid .card:nth-child(2) {
  background: var(--charcoal);
  color: var(--white);
}

.service-grid .card:nth-child(2) h3,
.service-grid .card:nth-child(2) p {
  color: var(--white);
}

.provider-slider {
  position: relative;
  overflow: hidden;
}

.provider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: provider-scroll 24s linear infinite;
}

.provider-track:hover {
  animation-play-state: paused;
}

.provider-logo {
  flex: 0 0 260px;
  width: 260px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.provider-logo img {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.speed-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.speed-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease;
}

.speed-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.speed-card strong {
  display: block;
  color: var(--orange);
  font-family: var(--heading);
  font-size: 36px;
  font-weight: 900;
}

.speed-card h3 {
  margin: 7px 0 9px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 19px;
  font-weight: 800;
  text-transform: none;
}

.speed-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.speed-card .btn-card-call {
  align-self: flex-start;
  margin-top: 22px;
}

.process {
  counter-reset: step;
}

.process .card {
  min-height: 100%;
  padding-left: 32px;
}

.process .card::after {
  counter-increment: step;
  content: "0" counter(step);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 2px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--heading);
  font-size: 21px;
  font-weight: 900;
  order: -1;
}

.cta-section {
  position: relative;
  padding: 68px 0;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/template/particles-bg.gif");
  background-size: cover;
  opacity: 0.12;
}

.cta-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-panel p {
  max-width: 650px;
  margin: 20px 0 0;
}

/* ================================================================
   REVISION OVERRIDES
   Hero readability, GLSL hills visibility, home CTA strip and provider logos.
   ================================================================ */

.hero,
.inner-hero {
  min-height: 640px;
  background-color: var(--charcoal);
}

.hero::before,
.inner-hero::before {
  background:
    linear-gradient(90deg, rgba(12, 9, 16, 0.95) 0%, rgba(12, 9, 16, 0.84) 45%, rgba(12, 9, 16, 0.56) 72%, rgba(12, 9, 16, 0.36) 100%),
    linear-gradient(180deg, rgba(128, 0, 32, 0.08) 0%, rgba(12, 9, 16, 0.25) 42%, rgba(12, 9, 16, 0.82) 100%);
}

.hero::after,
.inner-hero::after {
  border-color: rgba(128, 0, 32, 0.42);
}

.hero-hills-canvas {
  opacity: 0.95;
}

.hero-grid,
.inner-hero-grid {
  gap: 48px;
}

.hero-copy h1,
.inner-hero h1 {
  max-width: 640px;
  font-size: clamp(34px, 4.45vw, 52px);
  line-height: 1.03;
}

.inner-hero h1 {
  font-size: clamp(31px, 3.65vw, 44px);
}

.hero-copy p,
.inner-hero p {
  font-size: 14px;
}

.hero-copy .eyebrow,
.inner-hero .eyebrow {
  color: #ffdfeb;
}

.hero-art {
  align-self: center;
}

.hero-art::before {
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
}

.hero-banner-image,
.hero-art img {
  position: relative;
  max-height: 360px;
  object-fit: cover;
  background: #130d15;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.0) 48%, rgba(128, 0, 32, 0.18) 100%);
  pointer-events: none;
}

.availability-panel {
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.25fr);
}

.availability-copy {
  background: var(--charcoal);
}

.availability-copy h2 {
  font-size: 22px;
}

.availability-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
  padding: 26px;
}

.availability-actions .btn {
  min-height: 50px;
}

.availability-actions .form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.availability-quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 1 / -1;
}

.availability-quick-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  background: #f7f5f8;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 800;
}

.provider-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.provider-logo:hover,
.provider-logo:focus-visible {
  transform: translateY(-2px);
}

.provider-logo img {
  background: var(--white);
}

/* ================================================================
   FINAL HOME SPACING AND HERO BACKGROUND FIXES
   ================================================================ */

/* Preserve a clear gap between the availability CTA and the three trust cards. */
.availability-bar + .content-overlap {
  margin-top: 34px;
}

/* The uploaded Google Ads JPG is the visible home hero background. */
body[data-root=""] .hero {
  background-image: var(--hero-bg);
  background-position: center center;
  background-size: cover;
}

body[data-root=""] .hero::before {
  background:
    linear-gradient(90deg, rgba(12, 9, 16, 0.94) 0%, rgba(12, 9, 16, 0.82) 44%, rgba(12, 9, 16, 0.50) 72%, rgba(12, 9, 16, 0.30) 100%),
    linear-gradient(180deg, rgba(63, 26, 77, 0.08), rgba(12, 9, 16, 0.58));
}

.process .card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.process .card h3 {
  margin-top: 18px;
  color: var(--orange);
  font-size: 20px;
  line-height: 1.12;
}

.process .card p {
  color: var(--ink);
}

.process .card .btn-card-call {
  margin-top: auto;
}

/* ================================================================
   PAGE-SPECIFIC HERO CALL CARDS
   Replaces the former hero illustration and all standalone ZIP forms.
   ================================================================ */

.hero-call-card {
  position: relative;
  z-index: 4;
  width: min(100%, 440px);
  justify-self: end;
  padding: 28px 30px 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30);
  animation: hero-float 6s ease-in-out infinite;
  backdrop-filter: blur(8px);
}

.hero-call-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 34px;
  left: 34px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--orange), var(--accent-2));
}

.hero-card-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-call-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--heading);
  font-size: clamp(23px, 2.1vw, 30px);
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
}

.hero-card-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}

.hero-card-list li {
  position: relative;
  margin: 0;
  padding-left: 28px;
  color: #4e4652;
  font-size: 13px;
  line-height: 1.45;
}

.hero-card-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #f2e8f2;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.hero-card-call {
  width: 100%;
  min-height: 50px;
  color: var(--white);
}

.hero-card-expect {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero-card-expect strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 14px;
  line-height: 1.25;
}

.hero-card-expect p,
.hero-call-card .hero-card-note {
  margin: 0;
  color: #56505a;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-call-card .hero-card-note {
  margin-top: 9px;
  color: #7a707e;
  font-size: 10.5px;
}

/* Standalone ZIP panels were removed; retain a defensive rule for stale caches. */
.availability-bar {
  display: none !important;
}

/* SOURCE: pages.css */
/* ================================================================
   INNER PAGES
   ================================================================ */

.inner-hero {
  min-height: 520px;
}

.inner-hero-grid {
  padding: 66px 0;
}

.breadcrumbs {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--heading);
  font-size: 11px;
  letter-spacing: 0.65px;
  text-transform: none;
}

.breadcrumbs a {
  color: var(--orange);
}

.provider-hero-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 310px;
  margin: 0 0 16px;
  padding: 9px 13px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.provider-hero-mark img {
  width: 118px;
  height: 38px;
  border: 0;
  object-fit: contain;
  box-shadow: none;
}

.provider-hero-mark span {
  color: var(--ink);
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: none;
}

.content-overlap {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
}

.trust-strip > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 23px 25px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.trust-strip strong {
  display: block;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 800;
  text-transform: none;
}

.trust-strip span {
  color: var(--muted);
  font-size: 12px;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
}

.feature-item h3 {
  margin: 0;
  color: inherit;
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 800;
  text-transform: none;
}

.feature-item p {
  margin: 5px 0 0;
  color: var(--muted);
}

.legal-nav {
  position: sticky;
  top: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-nav h2 {
  margin-top: 0;
  font-family: var(--heading);
  font-size: 21px;
  font-weight: 800;
  text-transform: none;
}

.legal-nav a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid #eee;
  color: var(--muted);
}

.legal-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 15px;
  font-family: var(--heading);
  font-size: 27px;
  font-weight: 800;
  text-transform: none;
}

.legal-section h3 {
  font-family: var(--heading);
  font-weight: 800;
  text-transform: none;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.article-grid .card {
  min-height: 315px;
}

.article-meta {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.contact-panel {
  padding: 42px;
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--heading);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.08;
  text-transform: none;
}

.contact-panel .phone-big {
  display: block;
  margin-top: 18px;
  color: var(--orange);
  font-family: var(--heading);
  font-size: 31px;
  font-weight: 900;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form .full {
  grid-column: 1 / -1;
}

.lead-form textarea {
  height: 120px;
  padding-top: 12px;
}

.guide-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.guide-tabs button {
  padding: 10px 15px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--heading);
  font-weight: 800;
  text-transform: none;
}

.guide-tabs button.active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

/* ================================================================
   REVISION OVERRIDES
   Provider boxes, trust strip buttons, smaller supporting headings.
   ================================================================ */

.provider-hero-mark {
  text-decoration: none;
}

.provider-hero-mark:hover,
.provider-hero-mark:focus-visible {
  transform: translateY(-2px);
}

.trust-strip > div {
  position: relative;
  gap: 10px;
  padding-bottom: 24px;
}

.trust-strip strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
}

.trust-strip span {
  font-size: 14px;
  line-height: 1.6;
}

.trust-strip .trust-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: auto;
  padding: 10px 16px;
  border: 1px solid var(--orange);
  background: var(--white);
  color: var(--orange);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.trust-strip .trust-cta:hover,
.trust-strip .trust-cta:focus-visible {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ================================================================
   SECTION SEPARATION AFTER REMOVING STANDALONE ZIP PANELS
   ================================================================ */

.content-overlap {
  margin-top: 34px !important;
}

/* SOURCE: animations.css */
/* ================================================================
   ANIMATION SYSTEM
   ================================================================ */

@keyframes title-line {
  from {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
  }

  to {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(128, 0, 32, 0.62);
  }

  70% {
    box-shadow: 0 0 0 30px rgba(128, 0, 32, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(128, 0, 32, 0);
  }
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes provider-scroll {
  to {
    transform: translateX(calc(-50% - 10px));
  }
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-hills-canvas {
    display: none;
  }
}

/* SOURCE: responsive.css */
/* ================================================================
   RESPONSIVE BEHAVIOR
   ================================================================ */

@media (max-width: 1180px) {
  .topbar-points,
  .desktop-nav,
  .header-call {
    display: none;
  }

  .mainbar-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 72px;
  }

  .brand img {
    width: 210px;
  }

  .mobile-phone,
  .menu-toggle {
    display: grid;
  }

  .mobile-phone {
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 18px;
  }

  .menu-toggle {
    align-content: center;
    width: 44px;
    height: 42px;
    padding: 9px;
    gap: 5px;
    border: 0;
    background: var(--charcoal);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: var(--white);
  }

  .mobile-menu {
    position: absolute;
    top: 108px;
    right: 0;
    left: 0;
    max-height: calc(100vh - 108px);
    padding: 12px 22px 24px;
    overflow: auto;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .mobile-menu.open {
    display: block;
  }

  .mobile-menu > a,
  .mobile-menu summary {
    display: block;
    padding: 13px 5px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-family: var(--heading);
    font-weight: 800;
    text-transform: none;
  }

  .mobile-menu details a {
    display: block;
    padding: 10px 20px;
    color: var(--muted);
  }

  .hero-grid,
  .inner-hero-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero,
  .inner-hero {
    min-height: auto;
    background-position: 68% center;
  }

  .hero-grid,
  .inner-hero-grid {
    padding: 66px 0 90px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-art {
    max-width: 680px;
  }

  .availability-panel {
    grid-template-columns: 1fr;
  }

  .availability-form {
    grid-template-columns: 1fr 1fr;
  }

  .grid-4,
  .speed-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }

  .cta-panel,
  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 0;
  }

  .provider-track {
    animation-duration: 30s;
  }
}

@media (max-width: 700px) {
  :root {
    --section-space: 62px;
  }

  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar-inner {
    height: 34px;
  }

  .topbar p {
    font-size: 10px;
  }

  .mainbar-inner {
    min-height: 68px;
  }

  .brand img {
    width: 174px;
  }

  .mobile-menu {
    top: 102px;
  }

  .hero,
  .inner-hero {
    background-position: 72% center;
  }

  .hero::before,
  .inner-hero::before {
    background: linear-gradient(90deg, rgba(22, 19, 22, 0.96), rgba(22, 19, 22, 0.74));
  }

  .hero-grid,
  .inner-hero-grid {
    gap: 34px;
    padding: 52px 0 72px;
  }

  .hero-copy h1,
  .inner-hero h1 {
    font-size: clamp(34px, 11vw, 43px);
    line-height: 1.03;
  }

  .hero-copy p,
  .inner-hero p {
    font-size: 14px;
  }

  .hero-art img {
    max-height: 245px;
  }

  .hero-art::before {
    bottom: -10px;
    left: -10px;
    width: 90px;
    height: 90px;
  }

  .availability-bar {
    margin-top: -34px;
  }

  .availability-form,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .availability-form {
    padding: 18px;
  }

  .availability-copy {
    padding: 24px;
  }

  .grid-3,
  .grid-4,
  .speed-cards,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .grid {
    gap: 20px;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .section-title h2,
  .split-copy h2,
  .cta-panel h2 {
    font-size: 30px;
  }

  .card {
    padding: 27px;
  }

  .process .card {
    padding-left: 27px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 48px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 4px;
  }

  .mobile-sticky-call {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 -4px 16px rgba(22, 19, 22, 0.22);
    font-family: var(--heading);
    text-transform: uppercase;
  }

  .mobile-sticky-call span {
    font-size: 12px;
  }

  .mobile-sticky-call strong {
    font-size: 18px;
  }

  .contact-panel {
    padding: 29px;
  }

  .footer-cta h2 {
    font-size: 29px;
  }

  .trust-strip > div {
    padding: 20px;
  }

  .content-overlap {
    margin-top: -27px;
  }

  .faq-question {
    padding: 18px 56px 18px 18px;
    font-size: 15px;
  }

  .faq-answer-inner {
    padding: 0 18px 19px;
  }
}

/* ================================================================
   REVISION OVERRIDES
   Mobile hero and CTA strip adjustments.
   ================================================================ */

@media (max-width: 980px) {
  .availability-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero,
  .inner-hero {
    min-height: 560px;
  }

  .hero-copy h1,
  .inner-hero h1 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .hero-copy p,
  .inner-hero p,
  .trust-strip span {
    font-size: 13px;
  }

  .availability-copy h2 {
    font-size: 20px;
  }

  .availability-quick-points {
    flex-direction: column;
  }

  .topbar-inner {
    gap: 8px;
  }

  .topbar-points {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

/* ================================================================
   RESPONSIVE HERO CALL CARD
   ================================================================ */

@media (max-width: 1180px) {
  .hero-call-card {
    width: min(100%, 620px);
    max-width: 620px;
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .brand img {
    width: 190px;
  }

  .hero-call-card {
    width: 100%;
    padding: 24px 22px 22px;
    border-radius: 22px;
  }

  .hero-call-card h2 {
    font-size: 24px;
  }

  .hero-card-list {
    gap: 8px;
    margin: 15px 0 18px;
  }

  .hero-card-list li {
    font-size: 12.5px;
  }

  .content-overlap {
    margin-top: 24px !important;
  }
}


/* PERFORMANCE: skip below-the-fold layout/paint work until needed. */
@supports (content-visibility: auto) {
  main > section:not(.hero):not(.inner-hero),
  main > .content-overlap,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }
}

/* Keep a stable header footprint before imagery finishes decoding. */
.brand img,
.footer-brand img {
  aspect-ratio: 515 / 104;
}


/* ==========================================================
   PROVIDER SEO PAGES: BRIGHTSPEED + KINETIC
   ========================================================== */
.provider-seo-hero{position:relative;overflow:hidden;padding:70px 0 76px;background:linear-gradient(135deg,#f7fbfc 0%,#eef7f7 100%)}
.provider-seo-hero:after{content:"";position:absolute;width:520px;height:520px;border-radius:50%;right:-180px;top:-200px;background:radial-gradient(circle,rgba(16,184,173,.13),transparent 68%);pointer-events:none}
.provider-seo-grid{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(360px,.72fr);gap:68px;align-items:center;position:relative;z-index:1}
.provider-seo-copy h1{font-size:clamp(44px,5.4vw,68px);line-height:.98;letter-spacing:-.05em;color:var(--ink);max-width:13ch;margin:18px 0 22px}
.provider-lead{font-size:17px;max-width:690px;color:#526d7a}
.provider-hero-logo-card{display:flex;align-items:center;justify-content:flex-start;width:min(100%,520px);min-height:130px;background:#fff;border:1px solid #d6e7e8;border-radius:22px;padding:20px 28px;box-shadow:0 20px 50px rgba(11,41,64,.10);margin:12px 0 15px}
.provider-hero-logo-card img{display:block;width:auto;max-width:100%;max-height:92px;object-fit:contain;object-position:left center}

.provider-kinetic .provider-hero-logo-card img{max-height:98px}
.provider-brightspeed .provider-hero-logo-card img{max-height:92px}
.inner-hero .provider-hero-logo-card{width:min(100%,500px);min-height:118px;padding:18px 26px;margin:14px 0 18px}
.provider-verizon .provider-hero-logo-card img{max-height:72px}
.provider-tmobile .provider-hero-logo-card img{max-height:76px}
.provider-frontier .provider-hero-logo-card img{max-height:100px}
.provider-xfinity .provider-hero-logo-card img{max-height:72px}

.availability-pill{display:inline-flex;align-items:center;padding:9px 14px;border-radius:999px;background:#e7f8f6;color:#087d88;font-size:12px;font-weight:800;box-shadow:0 10px 26px rgba(7,141,161,.08)}
.provider-independent{font-size:12px!important;color:#6d838d!important;margin-top:18px;max-width:720px!important}
.provider-plan-section{background:#fff}.provider-plan-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;align-items:stretch}
.provider-plan-card{display:flex;flex-direction:column;background:#fff;border:1px solid var(--line);border-radius:24px;padding:28px;box-shadow:0 16px 38px rgba(11,41,64,.07)}
.provider-plan-card.featured{border:2px solid var(--teal);transform:translateY(-8px);box-shadow:0 24px 55px rgba(10,142,161,.13)}
.provider-plan-card .plan-label{font-size:10px;letter-spacing:.13em;text-transform:uppercase;font-weight:900;color:var(--teal-2)}
.provider-plan-card h3{font-size:24px;color:var(--ink);margin:8px 0}.provider-plan-card .plan-use{font-weight:700;color:#38586a}.provider-plan-card strong{font-size:17px;color:var(--ink);margin:8px 0}.provider-plan-card ul{padding-left:18px;color:var(--muted);font-size:13px;flex:1}.provider-plan-card .btn{margin-top:auto;text-align:center}
.related-provider-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}.related-provider-link{display:flex;flex-direction:column;gap:6px;padding:20px;background:#fff;border:1px solid var(--line);border-radius:16px;color:var(--ink);font-weight:900;box-shadow:0 10px 24px rgba(11,41,64,.05);transition:.25s}.related-provider-link span{font-size:11px;color:var(--teal-2)}.related-provider-link:hover{transform:translateY(-4px);border-color:#a9d9d7}
@media(max-width:1040px){.provider-seo-grid{grid-template-columns:1fr .82fr;gap:34px}.related-provider-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:820px){.provider-seo-hero{padding:52px 0}.provider-seo-grid{grid-template-columns:1fr}.provider-hero-logo-card{width:min(100%,480px)}.provider-plan-grid{grid-template-columns:1fr}.provider-plan-card.featured{transform:none}.related-provider-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.provider-seo-copy h1{font-size:38px}.provider-hero-logo-card{width:100%;min-height:108px;padding:16px 20px;border-radius:17px}.provider-hero-logo-card img{max-height:78px}.provider-brightspeed .provider-hero-logo-card img{max-height:74px}.provider-kinetic .provider-hero-logo-card img{max-height:82px}.inner-hero .provider-hero-logo-card{width:min(100%,360px);min-height:96px;padding:14px 18px;margin:12px 0 16px}.provider-verizon .provider-hero-logo-card img{max-height:60px}.provider-tmobile .provider-hero-logo-card img{max-height:62px}.provider-frontier .provider-hero-logo-card img{max-height:72px}.provider-xfinity .provider-hero-logo-card img{max-height:58px}.availability-pill{font-size:10px;line-height:1.35}.related-provider-grid{grid-template-columns:1fr}}


/* === FINAL NEW PROVIDER HERO FIX: animation + logo sizing === */
.provider-seo-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.provider-seo-hero .hero-hills-canvas {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .52;
  pointer-events: none;
}

.provider-seo-hero::after {
  z-index: 1;
}

.provider-seo-hero .provider-seo-grid {
  position: relative;
  z-index: 3;
}

/* Keep card compact; enlarge and center only the actual provider image. */
.provider-brightspeed .provider-hero-logo-card,
.provider-kinetic .provider-hero-logo-card {
  width: min(100%, 520px);
  min-height: 118px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.provider-brightspeed .provider-hero-logo-card img,
.provider-kinetic .provider-hero-logo-card img {
  display: block !important;
  width: auto !important;
  height: 82px !important;
  max-width: 88% !important;
  max-height: 82px !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 0 auto !important;
  transform: scale(1.22) !important;
  transform-origin: center center !important;
}

.provider-kinetic .provider-hero-logo-card img {
  height: 88px !important;
  max-height: 88px !important;
  transform: scale(1.18) !important;
}

@media (max-width: 560px) {
  .provider-brightspeed .provider-hero-logo-card,
  .provider-kinetic .provider-hero-logo-card {
    min-height: 104px;
    padding: 8px 14px;
  }

  .provider-brightspeed .provider-hero-logo-card img {
    height: 72px !important;
    max-height: 72px !important;
    max-width: 90% !important;
    transform: scale(1.20) !important;
  }

  .provider-kinetic .provider-hero-logo-card img {
    height: 76px !important;
    max-height: 76px !important;
    max-width: 90% !important;
    transform: scale(1.16) !important;
  }
}


/* ============================================================
   FINAL DARK PROVIDER HERO — BRIGHTSPEED + KINETIC
   ============================================================ */

.provider-brightspeed .provider-seo-hero,
.provider-kinetic .provider-seo-hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background:
    radial-gradient(circle at 84% 14%, rgba(128, 0, 32, 0.18), transparent 28%),
    linear-gradient(135deg, #08070b 0%, #100b13 48%, #171018 100%) !important;
  color: #ffffff !important;
}

.provider-brightspeed .provider-seo-hero::before,
.provider-kinetic .provider-seo-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(8,7,11,.90) 0%, rgba(8,7,11,.76) 44%, rgba(8,7,11,.48) 72%, rgba(8,7,11,.34) 100%),
    linear-gradient(180deg, rgba(128,0,32,.05), rgba(8,7,11,.30)) !important;
}

.provider-brightspeed .provider-seo-hero::after,
.provider-kinetic .provider-seo-hero::after {
  content: "" !important;
  position: absolute !important;
  top: -230px !important;
  right: -170px !important;
  width: 520px !important;
  height: 520px !important;
  border: 1px solid rgba(128, 0, 32, .38) !important;
  border-radius: 50% !important;
  background: transparent !important;
  z-index: 2 !important;
  pointer-events: none !important;
  animation: slow-spin 20s linear infinite !important;
}

.provider-brightspeed .provider-seo-hero .hero-hills-canvas,
.provider-kinetic .provider-seo-hero .hero-hills-canvas {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  opacity: .95 !important;
  pointer-events: none !important;
}

.provider-brightspeed .provider-seo-grid,
.provider-kinetic .provider-seo-grid {
  position: relative !important;
  z-index: 3 !important;
}

.provider-brightspeed .provider-seo-copy h1,
.provider-kinetic .provider-seo-copy h1 {
  color: #ffffff !important;
  font-size: clamp(38px, 4.1vw, 56px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
  max-width: 12.5ch !important;
}

.provider-brightspeed .provider-lead,
.provider-kinetic .provider-lead,
.provider-brightspeed .provider-independent,
.provider-kinetic .provider-independent {
  color: rgba(255,255,255,.80) !important;
}

.provider-brightspeed .provider-seo-copy > .eyebrow,
.provider-kinetic .provider-seo-copy > .eyebrow {
  color: #ffe2ec !important;
}

/* Compact card + moderate logo size to avoid raster distortion */
.provider-brightspeed .provider-hero-logo-card,
.provider-kinetic .provider-hero-logo-card {
  width: min(100%, 470px) !important;
  min-height: 112px !important;
  height: 112px !important;
  padding: 10px 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 20px !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.24) !important;
  overflow: hidden !important;
}

.provider-brightspeed .provider-hero-logo-card img,
.provider-kinetic .provider-hero-logo-card img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 310px !important;
  max-height: 78px !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  image-rendering: auto !important;
}

.provider-kinetic .provider-hero-logo-card img {
  max-width: 325px !important;
  max-height: 82px !important;
}

.provider-brightspeed .availability-pill,
.provider-kinetic .availability-pill {
  background: rgba(232, 250, 248, .96) !important;
  color: #087d88 !important;
}

.provider-brightspeed .provider-seo-hero .hero-call-card,
.provider-kinetic .provider-seo-hero .hero-call-card {
  position: relative !important;
  z-index: 4 !important;
}

@media (max-width: 820px) {
  .provider-brightspeed .provider-seo-copy h1,
  .provider-kinetic .provider-seo-copy h1 {
    font-size: clamp(36px, 7vw, 48px) !important;
    max-width: 14ch !important;
  }
}

@media (max-width: 560px) {
  .provider-brightspeed .provider-hero-logo-card,
  .provider-kinetic .provider-hero-logo-card {
    width: 100% !important;
    min-height: 98px !important;
    height: 98px !important;
    padding: 8px 16px !important;
    border-radius: 17px !important;
  }

  .provider-brightspeed .provider-hero-logo-card img {
    max-width: 255px !important;
    max-height: 66px !important;
  }

  .provider-kinetic .provider-hero-logo-card img {
    max-width: 270px !important;
    max-height: 70px !important;
  }

  .provider-brightspeed .provider-seo-copy h1,
  .provider-kinetic .provider-seo-copy h1 {
    font-size: 36px !important;
    line-height: 1.04 !important;
  }
}


/* FINAL USER FIX: HEADER GAP + PROVIDER LOGOS */

/* Remove any accidental visual gap before the header. */
html, body {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body > .site-header,
body > [data-include="header"] {
  margin-top: 0 !important;
}

/* Provider comparison slider: equal cards, true centering, no distortion. */
.provider-slider {
  overflow: hidden !important;
}
.provider-track {
  align-items: stretch !important;
}
.provider-logo {
  flex: 0 0 260px !important;
  width: 260px !important;
  min-height: 148px !important;
  padding: 16px 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #fff !important;
  overflow: hidden !important;
}
.provider-logo img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 215px !important;
  max-height: 92px !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  image-rendering: auto !important;
}

/* T-Mobile is a wide/short mark, so give it a little more horizontal room. */
.provider-logo img[src*="tmobile"] {
  max-width: 225px !important;
  max-height: 88px !important;
}

/* Frontier is naturally very wide. */
.provider-logo img[src*="frontier"] {
  max-width: 225px !important;
  max-height: 82px !important;
}

/* Provider hero logo cards: centered and consistently scaled. */
.provider-page .provider-hero-logo-card,
.provider-page .provider-hero-logo-card-legacy {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}
.provider-page .provider-hero-logo-card img,
.provider-page .provider-hero-logo-card-legacy img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 330px !important;
  max-height: 100px !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  image-rendering: auto !important;
}

/* Slight provider-specific balancing for different logo aspect ratios. */
.provider-verizon .provider-hero-logo-card img,
.provider-verizon .provider-hero-logo-card-legacy img {
  max-width: 315px !important;
  max-height: 94px !important;
}
.provider-tmobile .provider-hero-logo-card img,
.provider-tmobile .provider-hero-logo-card-legacy img {
  max-width: 330px !important;
  max-height: 92px !important;
}
.provider-frontier .provider-hero-logo-card img,
.provider-frontier .provider-hero-logo-card-legacy img {
  max-width: 340px !important;
  max-height: 96px !important;
}
.provider-xfinity .provider-hero-logo-card img,
.provider-xfinity .provider-hero-logo-card-legacy img {
  max-width: 320px !important;
  max-height: 92px !important;
}

@media (max-width: 600px) {
  .provider-logo {
    flex-basis: 220px !important;
    width: 220px !important;
    min-height: 126px !important;
    padding: 14px 16px !important;
  }
  .provider-logo img {
    max-width: 185px !important;
    max-height: 78px !important;
  }
  .provider-page .provider-hero-logo-card img,
  .provider-page .provider-hero-logo-card-legacy img {
    max-width: 285px !important;
    max-height: 88px !important;
  }
}
/* =========================================
   BRIGHTSPEED + KINETIC
   Bigger scaled logo inside same card
   ========================================= */

/* keep card same, center logo */
.provider-page.provider-brightspeed .provider-hero-logo-card,
.provider-page.provider-kinetic .provider-hero-logo-card {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

/* Brightspeed logo */
.provider-page.provider-brightspeed .provider-hero-logo-card img.provider-hero-logo {
  display: block !important;
  width: auto !important;
  max-width: 320px !important;
  max-height: 78px !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: scale(2.32) !important;
  transform-origin: center center !important;
}

/* Kinetic logo */
.provider-page.provider-kinetic .provider-hero-logo-card img.provider-hero-logo {
  display: block !important;
  width: auto !important;
  max-width: 335px !important;
  max-height: 82px !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: scale(1.76) !important;
  transform-origin: center center !important;
}

/* Mobile */
@media (max-width: 600px) {
  .provider-page.provider-brightspeed .provider-hero-logo-card img.provider-hero-logo {
    max-width: 255px !important;
    max-height: 64px !important;
    transform: scale(1.75) !important;
  }

  .provider-page.provider-kinetic .provider-hero-logo-card img.provider-hero-logo {
    max-width: 270px !important;
    max-height: 68px !important;
    transform: scale(1.68) !important;
  }
}