:root {
  --navy-950: #081426;
  --navy-900: #0b1f39;
  --navy-800: #10305b;
  --blue-700: #1f5fbf;
  --blue-600: #2f72d6;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --gray-950: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.14);
  --shadow-md: 0 12px 28px rgba(15, 23, 42, 0.1);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--gray-700);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}
.navbar {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy-900);
}
.brand-text {
  display: inline-block;
  line-height: 1.1;
}
.brand-mark, .icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-600), var(--navy-800));
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.brand-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  display: block;
}
.footer-logo {
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}
.brand-mark::before, .icon-badge::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 6px;
  transform: rotate(45deg);
}
.icon-badge.has-icon::before {
  display: none;
}
.icon-badge svg {
  width: 24px;
  height: 24px;
}
.icon-badge.has-image::before {
  display: none;
}
.icon-badge.has-image {
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: 0;
}
.icon-badge.has-image img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  display: block;
  margin: auto;
}
.icon-badge.has-image.theme-green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(22, 163, 74, 0.08));
  box-shadow: 0 10px 22px rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.16);
}
.icon-badge.has-image.theme-blue {
  background: linear-gradient(135deg, rgba(47, 114, 214, 0.18), rgba(16, 48, 91, 0.08));
  box-shadow: 0 10px 22px rgba(47, 114, 214, 0.14);
  border: 1px solid rgba(47, 114, 214, 0.16);
}
.icon-badge.has-image.theme-orange {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(234, 88, 12, 0.08));
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.14);
  border: 1px solid rgba(249, 115, 22, 0.16);
}
.icon-badge.has-image.theme-blue img,
.icon-badge.has-image.theme-green img {
  width: 74%;
  height: 74%;
}
.icon-badge.has-image.theme-orange img {
  width: 74%;
  height: 74%;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-dropdown {
  position: relative;
  padding-bottom: 0.8rem;
  margin-bottom: -0.8rem;
}
.nav-link {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
}
.nav-caret {
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.22s ease;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 0.85rem 0.55rem 0.55rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(219, 234, 254, 0.9);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 30;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}
.dropdown-link {
  display: block;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: 0.25s ease;
}
.dropdown-link:hover,
.dropdown-link.active {
  background: var(--blue-50);
  color: var(--blue-700);
  box-shadow: 0 10px 22px rgba(47, 114, 214, 0.12);
}
.nav-link:hover, .nav-link.active {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.28);
}
.nav-link:not(.active):hover {
  background: var(--blue-50);
  color: var(--blue-700);
  box-shadow: 0 10px 22px rgba(47, 114, 214, 0.16);
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--gray-100);
  color: var(--gray-800);
}
.menu-toggle::before, .menu-toggle::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 10px auto;
  content: "";
}
.mobile-menu { display: none; padding: 0 0 1rem; }
.mobile-menu.open { display: block; }
.mobile-menu .nav-link, .mobile-menu .button {
  display: block;
  width: 100%;
  margin-top: 0.6rem;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 0;
  border-radius: 12px;
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.button:focus-visible,
.nav-link:focus-visible,
.dropdown-link:focus-visible,
.brand:focus-visible,
.footer-col a:focus-visible {
  outline: 2px solid rgba(249, 115, 22, 0.4);
  outline-offset: 3px;
}
.button-primary { background: var(--orange-500); color: var(--white); }
.button-primary:hover { background: var(--orange-600); }
.button-secondary { background: var(--green-500); color: var(--white); }
.button-secondary:hover { background: var(--green-600); }
.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero, .page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(47, 114, 214, 0.24), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(249, 115, 22, 0.18), transparent 22%),
    linear-gradient(135deg, var(--navy-900), var(--blue-700));
  color: var(--white);
}
.hero { padding: 5.5rem 0 4rem; }
.page-hero { padding: 4.5rem 0; }
.hero-grid, .split-grid, .contact-grid, .calculator-grid, .two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--blue-100);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange-500);
}
h1, h2, h3 { margin: 0; color: var(--gray-950); line-height: 1.08; }
.hero h1, .page-hero h1, .hero h2, .page-hero h2 { color: var(--white); }
h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3vw, 3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0; line-height: 1.75; }
.lead {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 40rem;
  margin-top: 1.25rem;
}
.section { padding: 5rem 0; }
.section-muted { background: var(--gray-50); }
.section-dark {
  background: linear-gradient(180deg, var(--gray-950), #030712);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.section-intro { max-width: 46rem; margin-bottom: 2.5rem; }
.cards-2, .cards-3, .cards-4, .stats-grid { display: grid; gap: 1.5rem; }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-4, .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .feature-card, .contact-card, .calc-panel, .timeline-card, .stat-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
}
.feature-card { position: relative; overflow: hidden; }
.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47, 114, 214, 0.12), transparent 60%);
}
.feature-card,
.card,
.timeline-card,
.contact-card,
.calc-panel,
.stat-card,
.status-item,
.dashboard-panel,
.cta-band {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.feature-card:hover,
.card:hover,
.timeline-card:hover,
.contact-card:hover,
.calc-panel:hover,
.stat-card:hover,
.status-item:hover,
.dashboard-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.16);
}

.feature-card:hover,
.card:hover,
.timeline-card:hover,
.contact-card:hover,
.calc-panel:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(239, 246, 255, 0.92));
}

.contact-hours:hover {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
}

.testimonial-card:hover {
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
}

.cta-band:hover {
  box-shadow: 0 22px 46px rgba(8, 20, 38, 0.34);
}

.footer-col a {
  transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease;
}

.footer-col a:hover {
  color: var(--white);
  text-shadow: 0 0 16px rgba(47, 114, 214, 0.38);
  transform: translateX(4px);
}

.field input,
.field textarea {
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.field input:hover,
.field textarea:hover {
  border-color: rgba(47, 114, 214, 0.45);
  box-shadow: 0 0 0 2px rgba(47, 114, 214, 0.08);
}

.brand-logo,
.icon-badge {
  transition: transform 0.28s ease, filter 0.28s ease;
}
.icon-badge.orange { background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); }
.icon-badge.green { background: linear-gradient(135deg, var(--green-500), var(--green-600)); }
.icon-badge.small { width: 56px; height: 56px; margin-bottom: 1.1rem; }
.bullet-list, .check-list { display: grid; gap: 0.9rem; margin-top: 1.35rem; }
.bullet, .check {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.bullet::before, .check::before {
  flex: 0 0 auto;
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 0.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
}
.check::before { background: linear-gradient(135deg, var(--green-500), var(--green-600)); }

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 1.8rem;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.35);
}

.photo-card {
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  border-radius: 28px;
  padding: 0.9rem;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
}

.photo-frame {
  min-height: 390px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 20, 38, 0.12), rgba(8, 20, 38, 0.06)),
    url("assets/mc-lease-truck.png") center/cover no-repeat;
}

.testimonial-card {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
  color: var(--white);
  overflow: hidden;
  word-break: break-word;
}

.testimonial-card h2,
.testimonial-card p,
.testimonial-card .section-label {
  color: var(--white);
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  right: 24px;
  top: 12px;
  font-size: 7rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  font-weight: 700;
  pointer-events: none;
}

.testimonial-card p {
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.review-avatar {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(8, 20, 38, 0.25);
}

.review-avatar svg {
  width: 100%;
  height: 100%;
  display: block;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  color: #fbbf24;
  font-size: 1.15rem;
  line-height: 1;
}

.review-name {
  margin-top: 0.45rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.testimonial-card.compact {
  padding: 1.35rem;
}

.testimonial-card.compact h3 {
  color: var(--white);
  font-size: 1.18rem;
}

.testimonial-card.compact p {
  font-size: 0.97rem;
  line-height: 1.7;
}


.partner-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(219, 234, 254, 0.85);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.partner-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.04em;
  flex: 0 0 auto;
}

.partner-mark.motive {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.partner-mark.verizon {
  background: linear-gradient(135deg, #1f5fbf, #0b1f39);
}

.partner-mark.geotab {
  background: linear-gradient(135deg, #22c55e, #15803d);
}

.partner-copy strong {
  display: block;
  color: var(--gray-950);
  font-size: 1.05rem;
}

.partner-copy span {
  display: block;
  color: var(--gray-600);
  margin-top: 0.25rem;
  line-height: 1.5;
}
.hero-mockup {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border-radius: 24px;
  padding: 1.4rem;
}
.dashboard {
  background: var(--white);
  color: var(--gray-700);
  border-radius: 20px;
  overflow: hidden;
}
.dashboard-top {
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
  color: var(--white);
  padding: 1.2rem 1.4rem;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1rem;
  padding: 1.2rem;
}
.dashboard-panel { background: var(--gray-50); border-radius: 18px; padding: 1rem; }
.mini-chart {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 0.6rem;
  height: 140px;
}
.mini-chart span {
  display: block;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, var(--orange-500), var(--blue-600));
}
.status-list { display: grid; gap: 0.8rem; }
.status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-radius: 14px;
}
.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
}
.pill.green { background: rgba(34, 197, 94, 0.12); color: var(--green-600); }
.pill.orange { background: rgba(249, 115, 22, 0.14); color: var(--orange-600); }
.stats-strip {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.stat-card {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-card strong { display: block; font-size: 2rem; margin-bottom: 0.35rem; }
.section-label {
  color: var(--orange-500);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 0.9rem;
}
.timeline { display: grid; gap: 1rem; }
.timeline-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.timeline-step {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-600), var(--navy-800));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
}
.input-grid { display: grid; gap: 1rem; }
.field { display: grid; gap: 0.55rem; }
.field label { font-weight: 700; color: var(--gray-800); }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  color: var(--gray-800);
  background: var(--white);
}
.field input:focus, .field textarea:focus {
  outline: 2px solid rgba(47, 114, 214, 0.22);
  border-color: var(--blue-600);
}
.field textarea { resize: vertical; min-height: 160px; }
.contact-stack { display: grid; gap: 1rem; }
.contact-card { display: flex; gap: 1rem; align-items: flex-start; }
.contact-card .icon-badge { width: 54px; height: 54px; flex: 0 0 auto; }
.contact-card .icon-badge::before { display: none; }
.contact-card .icon-badge svg {
  width: 24px;
  height: 24px;
}
.contact-hours { background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); color: var(--white); }
.contact-hours h3, .contact-hours p { color: var(--white); }
.contact-hours {
  overflow: hidden;
}
.contact-hours .bullet-list {
  gap: 0.75rem;
}
.contact-hours .row-between {
  flex-wrap: wrap;
}
.contact-hours .row-between span,
.contact-hours .row-between strong {
  word-break: break-word;
}
.row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.calc-panel.dark { background: linear-gradient(135deg, var(--navy-900), var(--blue-700)); color: var(--white); }
.calc-panel.dark h2, .calc-panel.dark h3, .calc-panel.dark p { color: var(--white); }
.range-wrap { margin-bottom: 1.8rem; }
.range-wrap output { font-weight: 700; color: var(--blue-600); font-size: 1.8rem; }
.range-wrap input[type="range"] { width: 100%; accent-color: var(--blue-600); }
.result-box {
  border-radius: 22px;
  padding: 1.4rem;
  background: rgba(249, 115, 22, 0.16);
  margin-top: 1rem;
}
.result-big { font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 700; text-align: right; }
.notice {
  margin-top: 1.4rem;
  background: var(--blue-50);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  color: var(--gray-700);
}
.cta-band {
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
  color: var(--white);
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-band h2, .cta-band p { color: var(--white); }
.site-footer {
  margin-top: 5rem;
  background: linear-gradient(180deg, var(--gray-950), #020617);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding: 3rem 0 1.25rem;
}
.footer-col h3, .footer-col p, .footer-col a { color: var(--white); }
.footer-col p, .footer-col a { color: var(--gray-400); }
.footer-list { display: grid; gap: 0.55rem; margin-top: 0.75rem; }
.footer-bottom {
  border-top: 1px solid rgba(156, 163, 175, 0.18);
  padding: 1rem 0 1.35rem;
  color: var(--gray-400);
  text-align: center;
}
.hidden { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.reveal-left {
  transform: translateY(22px);
}

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

.reveal-right {
  transform: translateY(22px);
}

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

.parallax-shift {
  transform: translateY(var(--parallax-y, 0px));
  transition: transform 0.12s linear;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .parallax-shift {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-grid, .split-grid, .contact-grid, .calculator-grid, .two-up, .footer-grid, .stats-grid, .cards-4, .cards-3, .cards-2 {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-block; }
  .brand-logo {
    width: 64px;
    height: 64px;
  }
  .brand-text {
    font-size: 0.95rem;
  }
  .hero, .page-hero, .section { padding-top: 4rem; padding-bottom: 4rem; }
  .hero-grid, .split-grid, .contact-grid, .calculator-grid, .two-up, .footer-grid, .stats-grid, .cards-4, .cards-3, .cards-2, .stats-strip, .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .cta-band, .row-between { flex-direction: column; align-items: flex-start; }
  .result-big { text-align: left; }
}
