@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,400;0,14..32,600;0,14..32,700;0,14..32,800;1,14..32,800&display=swap");

:root {
  --direct-navy: #0d2e6e;
  --electric-blue: #009eea;
  --bright-green: #6bd12f;
  --dark-bg: #02070d;
  --soft-gray: #b7c3d1;
  --panel: rgba(5, 21, 42, 0.86);
  --panel-strong: rgba(6, 24, 47, 0.94);
  --line-blue: rgba(0, 158, 234, 0.28);
  --line-green: rgba(107, 209, 47, 0.36);
  --white: #ffffff;
  --scroll-y: 0px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  background: var(--dark-bg);
  color: var(--white);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 158, 234, 0.16), transparent 26rem),
    linear-gradient(180deg, #041123 0%, #02070d 34%, #03101f 100%);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

button,
select {
  font: inherit;
}

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

.app-shell {
  position: relative;
  overflow-x: clip;
  background: var(--dark-bg);
}

.section-inner {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 0 64px;
}

.page-section {
  position: relative;
  isolation: isolate;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(0, 158, 234, 0.26);
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.97), rgba(5, 18, 36, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(0, 158, 234, 0.18), transparent 18rem);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  width: min(100%, 1440px);
  min-height: 86px;
  margin: 0 auto;
  padding: 0 46px;
}

.brand-link {
  flex: 0 0 auto;
}

.brand-logo {
  width: 180px;
  height: 62px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1 1 auto;
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 40px;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--bright-green);
  text-shadow: 0 0 18px rgba(107, 209, 47, 0.45);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--bright-green);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #72df36, #52b726);
  color: #03120b;
  box-shadow: 0 0 0 rgba(107, 209, 47, 0);
  font-weight: 800;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 0 22px rgba(107, 209, 47, 0.44);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(3, 10, 20, 0.44);
  color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(0, 158, 234, 0.78);
  box-shadow: 0 0 18px rgba(0, 158, 234, 0.26);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 158, 234, 0.28);
  border-radius: 6px;
  background: rgba(3, 12, 25, 0.9);
  color: var(--white);
}

.mobile-nav {
  display: none;
}

.hero-section {
  min-height: 684px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background-image:
    linear-gradient(90deg, rgba(2, 7, 13, 0.98) 0%, rgba(2, 7, 13, 0.82) 31%, rgba(2, 7, 13, 0.14) 66%),
    var(--section-bg);
  background-size: cover, cover;
  background-position: center, center calc(50% + var(--scroll-y));
}

.hero-section::after,
.final-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    108deg,
    transparent 16%,
    rgba(0, 158, 234, 0.0) 36%,
    rgba(0, 158, 234, 0.22) 47%,
    rgba(107, 209, 47, 0.22) 52%,
    transparent 63%
  );
  transform: translateX(-54%);
  animation: lightSweep 6.5s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  align-items: center;
  min-height: 684px;
}

.hero-copy {
  max-width: 690px;
  min-width: 0;
  padding: 68px 0 54px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin: 0 0 25px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 76px;
  font-style: italic;
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  max-width: 100%;
  opacity: 0;
  transform: translateY(22px);
  animation: heroText 620ms cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.hero-title span:nth-child(2) {
  animation-delay: 110ms;
}

.green-glow {
  display: block;
  max-width: 100%;
  font: inherit;
  opacity: 1;
  transform: translateY(0);
  color: var(--bright-green);
  text-shadow: 0 0 18px rgba(107, 209, 47, 0.46);
  animation: greenPulse 3.6s ease-in-out infinite 900ms;
}

.hero-copy > p {
  max-width: 610px;
  margin: 0 0 31px;
  color: #e7f0fb;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.68;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(116px, 1fr));
  gap: 23px;
  max-width: 760px;
  margin-top: 54px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.hero-stat svg {
  flex: 0 0 auto;
  color: var(--bright-green);
  filter: drop-shadow(0 0 11px rgba(107, 209, 47, 0.42));
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat strong {
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.16);
}

.hero-stat span {
  color: #d6e2ef;
  font-size: 12px;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

.pain-section {
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 158, 234, 0.22);
  background-image:
    linear-gradient(90deg, rgba(2, 7, 13, 0.98) 0%, rgba(2, 7, 13, 0.88) 32%, rgba(2, 7, 13, 0.42) 66%, rgba(2, 7, 13, 0.16) 100%),
    var(--section-bg);
  background-size: cover, cover;
  background-position: center, center;
}

.pain-inner {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 42px;
  align-items: center;
  min-height: 330px;
  padding-top: 43px;
  padding-bottom: 43px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--bright-green);
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.pain-copy h2,
.overspend-copy h2,
.final-copy h2,
.shield-copy h2,
.intro-inner h2,
.solutions-panel h2,
.speed-section h2,
.trust-section h2 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
}

.pain-copy h2 {
  display: flex;
  flex-direction: column;
  font-size: 48px;
  line-height: 0.96;
}

.tiny-rule {
  width: 45px;
  height: 3px;
  margin: 24px 0 18px;
  border-radius: 999px;
  background: var(--bright-green);
  box-shadow: 0 0 16px rgba(107, 209, 47, 0.5);
}

.pain-copy p:last-child {
  max-width: 360px;
  margin: 0;
  color: #dce7f2;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.pain-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.pain-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 178px;
  padding: 15px 19px 8px;
  text-align: center;
  border-left: 1px solid rgba(0, 158, 234, 0.22);
  background: linear-gradient(180deg, rgba(5, 21, 42, 0.72), rgba(2, 7, 13, 0.52));
  backdrop-filter: blur(1px);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  background: rgba(6, 24, 47, 0.82);
}

.pain-card img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(0, 158, 234, 0.34));
}

.pain-card h3 {
  margin: 0;
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 20px;
  line-height: 1;
}

.pain-card p {
  margin: 0;
  color: #d4deea;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.intro-section {
  background:
    linear-gradient(180deg, rgba(7, 28, 55, 0.96), rgba(5, 20, 40, 0.98)),
    radial-gradient(circle at 50% 0, rgba(0, 158, 234, 0.18), transparent 28rem);
  border-bottom: 1px solid rgba(0, 158, 234, 0.18);
}

.intro-inner {
  max-width: 980px;
  padding-top: 34px;
  padding-bottom: 30px;
  text-align: center;
}

.intro-inner h2,
.solutions-panel h2,
.speed-section h2,
.trust-section h2 {
  font-size: 34px;
  line-height: 1.1;
}

.intro-inner h2 span,
.overspend-copy h2 span,
.final-copy h2 span,
.shield-copy h2 span {
  color: var(--bright-green);
  text-shadow: 0 0 18px rgba(107, 209, 47, 0.32);
}

.intro-inner p {
  margin: 10px auto 0;
  color: #dce7f2;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.intro-inner strong {
  color: var(--bright-green);
}

.solutions-section {
  padding: 42px 0 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 62%, rgba(0, 158, 234, 0.24), transparent 18rem),
    radial-gradient(circle at 100% 50%, rgba(0, 158, 234, 0.16), transparent 22rem),
    linear-gradient(180deg, #041123, #02070d);
}

.solutions-section::before,
.solutions-section::after {
  content: "";
  position: absolute;
  inset: auto -10% 10% -10%;
  height: 160px;
  z-index: -1;
  background:
    linear-gradient(12deg, transparent 36%, rgba(0, 158, 234, 0.36), rgba(107, 209, 47, 0.22), transparent 63%);
  filter: blur(1px);
  opacity: 0.65;
  transform: translateY(40px);
}

.solutions-section::after {
  inset: auto -20% 16% 45%;
  opacity: 0.32;
}

.solutions-panel {
  position: relative;
  padding: 30px 26px 26px;
  border: 1px solid rgba(0, 158, 234, 0.34);
  border-radius: 8px;
  background: rgba(5, 21, 42, 0.72);
  box-shadow: inset 0 0 38px rgba(0, 158, 234, 0.08);
}

.solutions-panel h2 {
  margin-bottom: 25px;
  text-align: center;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.solution-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 158, 234, 0.32);
  border-radius: 8px;
  background: rgba(5, 18, 36, 0.96);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(107, 209, 47, 0.68);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34), 0 0 24px rgba(107, 209, 47, 0.22);
}

.card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  padding: 5px 8px;
  border-radius: 4px;
  background: var(--bright-green);
  color: #041020;
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 15px;
}

.solution-image {
  position: relative;
  z-index: 1;
  aspect-ratio: 1.48;
  overflow: hidden;
  background: #07182f;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.solution-card:hover .solution-image img {
  transform: scale(1.035);
}

.solution-icon {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: -37px 0 0 18px;
  border: 1px solid rgba(107, 209, 47, 0.82);
  border-radius: 50%;
  background: rgba(2, 15, 12, 0.92);
  box-shadow: 0 0 24px rgba(107, 209, 47, 0.24);
}

.solution-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.solution-content {
  position: relative;
  z-index: 2;
  padding: 13px 18px 19px;
}

.solution-content h3,
.speed-item h3,
.shield-feature h3,
.footer-column h3 {
  margin: 0;
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.solution-content p {
  min-height: 72px;
  margin: 12px 0 16px;
  color: #d7e3ef;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.solution-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bright-green);
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 17px;
}

.speed-section {
  padding: 24px 0 34px;
  background: #02070d;
  border-bottom: 1px solid rgba(0, 158, 234, 0.2);
}

.speed-section h2 {
  margin-bottom: 28px;
  text-align: center;
}

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

.speed-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.speed-item img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(107, 209, 47, 0.34));
  transition: filter 180ms ease, transform 180ms ease;
}

.speed-item:hover img {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 20px rgba(107, 209, 47, 0.56));
}

.speed-item p {
  margin: 7px 0 0;
  color: #cfdce9;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.overspend-section {
  padding: 44px 0;
  background:
    linear-gradient(90deg, rgba(3, 13, 26, 0.98), rgba(4, 18, 36, 0.94)),
    radial-gradient(circle at 72% 30%, rgba(0, 158, 234, 0.14), transparent 20rem);
  border-bottom: 1px solid rgba(0, 158, 234, 0.26);
}

.overspend-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
  align-items: center;
}

.overspend-copy h2 {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  font-size: 45px;
  line-height: 0.98;
}

.overspend-copy p {
  max-width: 450px;
  margin: 0 0 26px;
  color: #e0ebf6;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.52;
}

.comparison-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
}

.comparison-card {
  overflow: hidden;
  border: 1px solid rgba(0, 158, 234, 0.32);
  background: rgba(5, 21, 42, 0.92);
  aspect-ratio: 1122 / 1402;
  min-height: 238px;
}

.comparison-card:first-child {
  border-radius: 8px 0 0 8px;
}

.comparison-card:last-child {
  border-radius: 0 8px 8px 0;
}

.comparison-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #02070d;
}

.vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #75de38, #55b928);
  color: #051321;
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 22px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 26px rgba(107, 209, 47, 0.44);
}

.trust-section {
  padding: 30px 0 34px;
  background:
    linear-gradient(180deg, #051428, #03101f),
    radial-gradient(circle at 50% 20%, rgba(0, 158, 234, 0.12), transparent 22rem);
  border-bottom: 1px solid rgba(0, 158, 234, 0.26);
}

.trust-section h2 {
  margin-bottom: 28px;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto 22px;
}

.trust-stat {
  padding: 0 22px;
  text-align: center;
  border-right: 1px solid rgba(0, 158, 234, 0.28);
}

.trust-stat:last-child {
  border-right: 0;
}

.trust-stat strong {
  display: block;
  color: #69b8ff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 29px;
  font-weight: 800;
}

.trust-stat span {
  display: block;
  margin-top: 6px;
  color: #d8e4f0;
  font-size: 13px;
  font-weight: 700;
}

.brand-area {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}

.brand-area p {
  margin: 0;
  color: #d8e4f0;
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(80px, 1fr));
  gap: 18px;
  align-items: center;
}

.brand-row img {
  width: 100%;
  height: 32px;
  object-fit: contain;
  filter: grayscale(1) invert(1) brightness(1.9);
  opacity: 0.88;
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand-row img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.shield-section {
  min-height: 360px;
  overflow: hidden;
  padding: 42px 0 40px;
  background-color: #03101f;
  background-image:
    linear-gradient(90deg, rgba(3, 12, 25, 0.99) 0%, rgba(4, 15, 31, 0.94) 42%, rgba(5, 22, 44, 0.7) 72%, rgba(5, 22, 44, 0.78) 100%),
    linear-gradient(180deg, rgba(2, 7, 13, 0.1), rgba(2, 7, 13, 0.3)),
    url("../assets/BACKGROUND%20SHIELD%201.png");
  background-size: cover, cover, cover;
  background-position: center, center, right center;
  border-bottom: 1px solid rgba(0, 158, 234, 0.26);
}

.shield-bg-art {
  display: none;
}

.shield-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.dashboard-frame {
  overflow: hidden;
  border: 1px solid rgba(0, 158, 234, 0.28);
  border-radius: 8px;
  background: rgba(2, 7, 13, 0.5);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.36), 0 0 36px rgba(0, 158, 234, 0.12);
  animation: dashboardFloat 5.5s ease-in-out infinite;
}

.dashboard-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
}

.shield-copy h2 {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  font-size: 48px;
  line-height: 1;
}

.shield-copy > p {
  max-width: 620px;
  margin: 0 0 26px;
  color: #e1ebf6;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.shield-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 25px;
}

.shield-feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.shield-feature img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(107, 209, 47, 0.34));
}

.shield-feature h3 {
  color: var(--white);
  font-size: 18px;
}

.shield-feature p {
  margin: 4px 0 0;
  color: #d0ddeb;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.32;
}

.final-cta-section {
  min-height: 292px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(2, 7, 13, 0.98) 0%, rgba(2, 7, 13, 0.86) 40%, rgba(2, 7, 13, 0.28) 78%),
    var(--section-bg);
  background-size: cover, cover;
  background-position: center, center;
}

.final-cta-section::after {
  animation-duration: 8s;
}

#hero.hero-section {
  background-image:
    linear-gradient(90deg, rgba(2, 7, 13, 0.98) 0%, rgba(2, 7, 13, 0.82) 31%, rgba(2, 7, 13, 0.14) 66%),
    url("../assets/ChatGPT%20Image%20Apr%2030,%202026,%2006_55_15%20PM%201.png");
}

#repair-services.pain-section {
  background-image:
    linear-gradient(90deg, rgba(2, 7, 13, 0.98) 0%, rgba(2, 7, 13, 0.88) 32%, rgba(2, 7, 13, 0.42) 66%, rgba(2, 7, 13, 0.16) 100%),
    url("../assets/ChatGPT%20Image%20Apr%2030,%202026,%2007_09_28%20PM%201.png");
}

#quote.final-cta-section {
  background-image:
    linear-gradient(90deg, rgba(2, 7, 13, 0.98) 0%, rgba(2, 7, 13, 0.86) 40%, rgba(2, 7, 13, 0.28) 78%),
    url("../assets/ChatGPT%20Image%20Apr%2030,%202026,%2008_43_22%20PM%201.png");
}

.final-copy {
  max-width: 780px;
  padding: 52px 0;
}

.final-copy h2 {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  font-size: 45px;
  line-height: 1.02;
}

.final-copy p {
  margin: 0 0 23px;
  color: #e7f1fb;
  font-size: 17px;
  font-weight: 700;
}

.site-footer {
  padding: 44px 0 20px;
  background: #03101f;
  border-top: 1px solid rgba(0, 158, 234, 0.22);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, minmax(94px, 0.8fr)) 1fr;
  gap: 26px;
  align-items: start;
}

.footer-brand img {
  width: 188px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-brand p {
  max-width: 300px;
  margin: 0 0 16px;
  color: var(--soft-gray);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(107, 209, 47, 0.44);
  border-radius: 50%;
  color: var(--bright-green);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-row a:hover {
  transform: translateY(-2px);
  background: var(--bright-green);
  color: #03101f;
}

.footer-column {
  display: grid;
  gap: 10px;
  color: var(--soft-gray);
}

.footer-column h3 {
  color: var(--white);
  font-size: 18px;
}

.footer-column a,
.footer-column span {
  color: var(--soft-gray);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-column a:hover {
  color: var(--bright-green);
}

.contact-column a:first-of-type {
  color: var(--bright-green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 158, 234, 0.16);
  color: #8fa1b5;
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a:hover {
  color: var(--bright-green);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 560ms ease var(--reveal-delay, 0ms),
    transform 560ms ease var(--reveal-delay, 0ms);
}

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

@keyframes heroText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes greenPulse {
  0%,
  100% {
    text-shadow: 0 0 16px rgba(107, 209, 47, 0.36);
  }
  50% {
    text-shadow: 0 0 28px rgba(107, 209, 47, 0.74), 0 0 48px rgba(107, 209, 47, 0.26);
  }
}

@keyframes lightSweep {
  0%,
  35% {
    transform: translateX(-68%);
    opacity: 0;
  }
  50% {
    opacity: 0.74;
  }
  78%,
  100% {
    transform: translateX(78%);
    opacity: 0;
  }
}

@keyframes trailDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-42px);
  }
}

@keyframes dashboardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (min-width: 1241px) {
  .section-inner {
    width: min(100%, 1540px);
    padding-right: 76px;
    padding-left: 76px;
  }

  .header-inner {
    width: min(100%, 1620px);
    min-height: 96px;
    padding-right: 58px;
    padding-left: 58px;
  }

  .brand-logo {
    width: 210px;
    height: 72px;
  }

  .desktop-nav {
    gap: 30px;
    font-size: 18px;
  }

  .phone-link {
    font-size: 15px;
  }

  .btn {
    min-height: 50px;
    padding-right: 31px;
    padding-left: 31px;
    font-size: 20px;
  }

  .hero-section,
  .hero-inner {
    min-height: 780px;
  }

  .hero-copy {
    max-width: 760px;
    padding-top: 88px;
    padding-bottom: 68px;
  }

  .hero-title {
    margin-bottom: 29px;
    font-size: 88px;
  }

  .hero-copy > p {
    max-width: 680px;
    margin-bottom: 36px;
    font-size: 19px;
  }

  .hero-stat-row {
    max-width: 880px;
    gap: 30px;
    margin-top: 66px;
  }

  .hero-stat strong {
    font-size: 24px;
  }

  .hero-stat span {
    font-size: 14px;
  }

  .pain-inner {
    min-height: 390px;
    gap: 54px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .eyebrow {
    font-size: 28px;
  }

  .pain-copy h2 {
    font-size: 58px;
  }

  .pain-copy p:last-child {
    max-width: 420px;
    font-size: 19px;
  }

  .pain-card {
    min-height: 218px;
    padding: 22px 24px 14px;
  }

  .pain-card img {
    width: 92px;
    height: 92px;
  }

  .pain-card h3 {
    font-size: 24px;
  }

  .pain-card p {
    font-size: 15px;
  }

  .intro-inner {
    max-width: 1120px;
    padding-top: 44px;
    padding-bottom: 40px;
  }

  .intro-inner h2,
  .solutions-panel h2,
  .speed-section h2,
  .trust-section h2 {
    font-size: 40px;
  }

  .intro-inner p {
    font-size: 18px;
  }

  .solutions-section {
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .solutions-panel {
    padding: 40px 32px 32px;
  }

  .solution-grid {
    gap: 20px;
  }

  .solution-icon {
    width: 86px;
    height: 86px;
    margin-top: -43px;
    margin-left: 22px;
  }

  .solution-icon img {
    width: 62px;
    height: 62px;
  }

  .solution-content {
    padding: 15px 22px 23px;
  }

  .solution-content h3 {
    font-size: 26px;
  }

  .solution-content p {
    min-height: 88px;
    font-size: 16px;
  }

  .solution-content a {
    font-size: 19px;
  }

  .speed-section {
    padding-top: 38px;
    padding-bottom: 44px;
  }

  .speed-grid {
    gap: 38px;
  }

  .speed-item img {
    width: 72px;
    height: 72px;
  }

  .speed-item h3 {
    font-size: 25px;
  }

  .speed-item p {
    font-size: 15px;
  }

  .overspend-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .overspend-inner {
    grid-template-columns: 0.58fr 1.42fr;
    gap: 78px;
  }

  .overspend-copy h2 {
    font-size: 58px;
  }

  .overspend-copy p {
    max-width: 520px;
    font-size: 18px;
  }

  .comparison-card {
    min-height: 310px;
  }

  .vs-badge {
    width: 72px;
    height: 72px;
    font-size: 25px;
  }

  .trust-section {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .trust-grid {
    max-width: 900px;
  }

  .trust-stat strong {
    font-size: 35px;
  }

  .trust-stat span {
    font-size: 15px;
  }

  .brand-area {
    max-width: 960px;
  }

  .shield-section {
    min-height: 470px;
    padding-top: 72px;
    padding-bottom: 72px;
    background-position: center, center, 73% center;
  }

  .shield-inner {
    gap: 62px;
  }

  .dashboard-frame img {
    height: 360px;
  }

  .shield-copy h2 {
    font-size: 62px;
  }

  .shield-copy > p {
    max-width: 700px;
    font-size: 20px;
  }

  .shield-feature img {
    width: 42px;
    height: 42px;
  }

  .shield-feature h3 {
    font-size: 21px;
  }

  .shield-feature p {
    font-size: 13px;
  }

  .final-cta-section {
    min-height: 350px;
  }

  .final-copy {
    max-width: 860px;
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .final-copy h2 {
    font-size: 58px;
  }

  .final-copy p {
    font-size: 20px;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-inner {
    gap: 32px;
  }

  .footer-brand img {
    width: 220px;
    height: 82px;
  }
}

@media (min-width: 1800px) {
  .section-inner {
    width: min(100%, 3040px);
    padding-right: 96px;
    padding-left: 96px;
  }

  .header-inner {
    width: min(100%, 3120px);
  }

  .hero-section,
  .hero-inner {
    min-height: 820px;
  }

  .hero-title {
    font-size: 94px;
  }

  .solutions-panel {
    max-width: 2600px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 1240px) {
  .hero-title {
    font-size: 66px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    padding: 0 46px;
    background: rgba(3, 12, 25, 0.98);
    transition: max-height 220ms ease, padding 220ms ease;
  }

  .mobile-nav.is-open {
    max-height: 320px;
    padding-top: 14px;
    padding-bottom: 18px;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(0, 158, 234, 0.2);
    border-radius: 6px;
    background: rgba(7, 28, 55, 0.7);
    font-family: "Inter", Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.015em;
    text-transform: uppercase;
  }

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

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

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

@media (max-width: 980px) {
  .section-inner {
    padding: 0 30px;
  }

  .header-inner {
    padding: 0 24px;
  }

  .hero-section,
  .hero-inner {
    min-height: 640px;
  }

  .hero-section {
    background-position: center, 64% center;
  }

  .hero-title {
    font-size: 58px;
  }

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

  .hero-stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 500px;
  }

  .pain-inner,
  .overspend-inner,
  .shield-inner {
    grid-template-columns: 1fr;
  }

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

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

  .overspend-inner {
    gap: 32px;
  }

  .brand-area {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .shield-bg-art {
    width: 100%;
    right: -40%;
  }

  .dashboard-frame img {
    height: 330px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 74px;
    gap: 12px;
    justify-content: space-between;
  }

  .brand-logo {
    width: 148px;
    height: 52px;
  }

  .phone-link {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .mobile-nav {
    grid-template-columns: 1fr;
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-inner {
    padding: 0 20px;
  }

  .hero-section {
    min-height: 690px;
    background-image:
      linear-gradient(180deg, rgba(2, 7, 13, 0.98) 0%, rgba(2, 7, 13, 0.84) 48%, rgba(2, 7, 13, 0.2) 100%),
      var(--section-bg);
    background-position: center, 70% center;
  }

  /* Mobile-only hero background (desktop keeps its ACF inline image); !important beats the inline style.
     Gradient stays dark only through the top text zone, then clears fast so the printers stay visible. */
  #hero.hero-section {
    background-image:
      linear-gradient(180deg, rgba(2, 7, 13, 0.92) 0%, rgba(2, 7, 13, 0.84) 30%, rgba(2, 7, 13, 0.55) 44%, rgba(2, 7, 13, 0.12) 58%, rgba(2, 7, 13, 0) 72%),
      url("../assets/home/hero-mobile-bg.png") !important;
    background-position: center, center !important;
    background-size: cover, cover !important;
  }

  .hero-inner {
    min-height: 690px;
    align-items: start;
  }

  .hero-copy {
    padding: 56px 0 42px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-copy > p,
  .shield-copy > p,
  .final-copy p,
  .overspend-copy p {
    font-size: 15px;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-height: 46px;
  }

  .hero-stat-row,
  .speed-grid,
  .trust-grid,
  .shield-feature-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .pain-inner {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  /* Mobile-only pain-section background (desktop keeps its ACF inline image) */
  #repair-services.pain-section {
    background-image:
      linear-gradient(180deg, rgba(2, 7, 13, 0.9) 0%, rgba(2, 7, 13, 0.52) 44%, rgba(2, 7, 13, 0.34) 100%),
      url("../assets/home/pain-mobile-bg.png") !important;
    background-position: center, center !important;
    background-size: cover, cover !important;
  }

  /* Mobile-only "Don't Wait Until It Breaks" (final CTA) background; !important beats the desktop ACF inline image */
  #quote.final-cta-section {
    background-image:
      linear-gradient(180deg, rgba(2, 7, 13, 0.92) 0%, rgba(2, 7, 13, 0.6) 40%, rgba(2, 7, 13, 0.32) 100%),
      url("../assets/home/dont-wait-mobile-bg.png") !important;
    background-position: center, center !important;
    background-size: cover, cover !important;
  }

  .pain-card-grid {
    grid-template-columns: 1fr;
  }

  .pain-card {
    border-left: 0;
    border-top: 1px solid rgba(0, 158, 234, 0.22);
  }

  .pain-copy h2,
  .shield-copy h2,
  .overspend-copy h2,
  .final-copy h2 {
    font-size: 36px;
  }

  .intro-inner h2,
  .solutions-panel h2,
  .speed-section h2,
  .trust-section h2 {
    font-size: 27px;
  }

  .solutions-panel {
    padding: 24px 14px 16px;
  }

  .comparison-wrap {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .comparison-card,
  .comparison-card:first-child,
  .comparison-card:last-child {
    border-radius: 8px;
  }

  .vs-badge {
    position: relative;
    inset: auto;
    margin: -2px auto;
    transform: none;
  }

  .trust-stat {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 158, 234, 0.22);
  }

  .trust-stat:last-child {
    border-bottom: 0;
  }

  .brand-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .dashboard-frame img {
    height: 240px;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-stat-row {
    gap: 15px;
  }

}

/* Static export refinements: comparison panels and compact trust/brand banner. */
.comparison-card {
  /* Matches the portrait HIGH COST / SMART CHOICE card images (1122x1402) so they
     fill the card with no cropping (object-fit:cover). 2026-07-08. */
  aspect-ratio: 1122 / 1402;
  background-image: none;
}

/* <picture> wraps the card image (mobile art-direction) — make it transparent to layout
   so .comparison-card img still fills the card as a direct child. */
.comparison-card picture {
  display: contents;
}

/* Mobile: the cards swap to SQUARE images via <picture><source media="(max-width:760px)">
   (front-page.php), so match the card shape. Placed AFTER the base aspect-ratio override
   above so it wins at <=760px. 2026-07-08. */
@media (max-width: 760px) {
  .comparison-card {
    aspect-ratio: 1 / 1;
  }
}

.comparison-card::before,
.comparison-card::after,
.comparison-wrap::before,
.comparison-wrap::after {
  content: none;
  display: none;
  background-image: none;
}

.comparison-card img {
  display: block;
  filter: none;
  opacity: 1;
}

.trust-section {
  padding: 26px 0 28px;
  background:
    radial-gradient(circle at 50% 10%, rgba(0, 158, 234, 0.11), transparent 24rem),
    linear-gradient(180deg, #051428, #03101f);
}

.trust-section .section-inner {
  max-width: min(1680px, calc(100vw - 64px));
}

.trust-section h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(32px, 2.6vw, 46px);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.trust-content {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(480px, 2fr);
  gap: 42px;
  align-items: center;
  max-width: 1420px;
  margin: 0 auto 0 0;
}

.trust-grid {
  display: grid;
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: repeat(4, minmax(155px, 1fr));
  column-gap: 34px;
}

.trust-stat {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 76px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-right: 0;
}

.trust-stat::after {
  content: "";
  position: absolute;
  top: 5px;
  right: -17px;
  width: 2px;
  height: calc(100% - 10px);
  background: rgba(0, 158, 234, 0.24);
}

.trust-stat:last-child::after {
  display: none;
}

.trust-stat strong {
  color: #66b8ff;
  font-size: clamp(30px, 2.4vw, 44px);
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(0, 158, 234, 0.22);
}

.trust-stat:nth-child(3) strong {
  font-size: clamp(28px, 2.1vw, 39px);
}

.trust-stat span {
  margin-top: 9px;
  color: #f3f7fb;
  font-size: clamp(13px, 0.82vw, 17px);
  line-height: 1.1;
}

.brand-area {
  display: block;
  max-width: none;
  margin: 0;
}

.brand-area p {
  margin: 0 0 20px;
  color: #e8eef6;
  font-size: clamp(19px, 1.25vw, 24px);
  line-height: 1;
  text-align: center;
}

.brand-row {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.brand-row img {
  width: clamp(90px, 7vw, 132px);
  height: auto;
  max-height: 56px;
  object-fit: contain;
  margin: 0 auto;
  filter: grayscale(1) invert(1) brightness(2.25);
  opacity: 0.96;
}

@media (min-width: 1101px) {
  .trust-section h2 {
    white-space: nowrap;
  }
}

@media (max-width: 1340px) {
  .trust-section .section-inner {
    max-width: min(1040px, calc(100vw - 42px));
  }

  .trust-content {
    grid-template-columns: 1fr;
    gap: 26px;
    margin: 0 auto;
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    column-gap: 30px;
  }

  .brand-area p {
    margin-bottom: 16px;
  }

  .brand-row {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .trust-section {
    padding: 32px 0;
  }

  .trust-section .section-inner {
    max-width: calc(100vw - 32px);
  }

  .trust-section h2 {
    margin-bottom: 20px;
    font-size: 27px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(145px, 1fr));
    column-gap: 0;
  }

  .trust-stat {
    min-height: 0;
    padding: 14px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 158, 234, 0.22);
  }

  .trust-stat::after {
    display: none;
  }

  .trust-stat:nth-child(odd)::after {
    display: block;
    top: 14px;
    right: 0;
    height: calc(100% - 28px);
    background: rgba(0, 158, 234, 0.22);
  }

  .trust-stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .trust-stat strong {
    font-size: 33px;
  }

  .trust-stat:nth-child(3) strong {
    font-size: 30px;
  }

  .trust-stat span {
    font-size: 14px;
  }

  .brand-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 26px;
  }

  .brand-row img {
    width: auto;
    height: 36px;
    max-width: 128px;
  }
}

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

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

/* Global width alignment: keep homepage, nav, and subpage shells on one rhythm. */
:root {
  --site-max-width: 1680px;
  --site-padding-desktop: 48px;
  --site-padding-tablet: 28px;
  --site-padding-mobile: 18px;
}

.section-inner,
.header-inner,
.site-container,
.page-container,
.nav-container,
.secondary-nav-container,
.section-container {
  width: 100%;
  max-width: var(--site-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--site-padding-desktop);
  padding-right: var(--site-padding-desktop);
}

.site-header,
.global-nav,
.secondary-nav {
  z-index: 1000;
}

.text-measure {
  max-width: 720px;
}

@media (max-width: 1024px) {
  .section-inner,
  .header-inner,
  .site-container,
  .page-container,
  .nav-container,
  .secondary-nav-container,
  .section-container {
    padding-left: var(--site-padding-tablet);
    padding-right: var(--site-padding-tablet);
  }
}

@media (max-width: 640px) {
  .section-inner,
  .header-inner,
  .site-container,
  .page-container,
  .nav-container,
  .secondary-nav-container,
  .section-container {
    padding-left: var(--site-padding-mobile);
    padding-right: var(--site-padding-mobile);
  }
}
