/* ==========================================================================
   PRIME WASH PASS - MASTER STYLESHEET
   ========================================================================== */

/* Import Primary Font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- CSS VARIABLES --- */
:root {
  --primary: #0B3D91;
  --accent: #00AEEF;
  --text: #14304d;
  --bg: #f7fbff;
  --white: #ffffff;
  --muted: #507399;
  --border: #dbe6f2;
}

/* --- RESET & BASE --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
}

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

/* Accessibility Focus States */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.btn:focus-visible,
.nav a:focus-visible,
.logo-wrap:focus-visible {
  border-radius: inherit;
}

/* --- LAYOUT GRIDS --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.pricing-grid-dynamic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

/* --- HEADER & NAVIGATION --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 61, 145, 0.05);
  box-shadow: 0 2px 10px rgba(11, 61, 145, 0.03);
  transition: all 0.3s ease;
  overflow-x: clip;
}

.site-header.scrolled {
  border-bottom-color: rgba(11, 61, 145, 0.1);
  box-shadow: 0 10px 30px rgba(11, 61, 145, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  height: 70px;
  padding: 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.logo-wrap:hover {
  opacity: 0.88;
}

.site-logo {
  height: 84px;
  width: auto;
  max-width: 100%;
  display: block;
  z-index: 10;
  transform: none;
}

.footer-logo-wrap {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 12px;
}

.footer-logo {
  height: 90px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.nav a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  color: #56708a;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav a:hover {
  color: var(--primary);
  background: rgba(11, 61, 145, 0.07);
}

.nav a.active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.nav a.active:hover {
  background: #0a3280;
  color: #fff;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
  flex-shrink: 0;
}

.nav-toggle:hover {
  background: rgba(11, 61, 145, 0.06);
  border-color: rgba(11, 61, 145, 0.2);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(11, 61, 145, 0.1);
  padding: 10px 20px 18px;
  z-index: 99;
  flex-direction: column;
  gap: 3px;
}

.nav-mobile.open {
  display: flex;
  animation: navSlideDown 0.22s ease;
}

@keyframes navSlideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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

.nav-mobile a {
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: #56708a;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-mobile a:hover {
  color: var(--primary);
  background: rgba(11, 61, 145, 0.07);
}

.nav-mobile a.active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 3px 12px rgba(11, 61, 145, 0.22);
}

.btn-primary:hover {
  background: #0a3280;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(11, 61, 145, 0.32);
}

.btn-light:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(11, 61, 145, 0.22);
}

.btn-outline {
  background: white;
  border: 1px solid var(--border);
  color: var(--primary);
  padding: 10px 22px;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(11, 61, 145, 0.05);
  transform: translateY(-1px);
}

.btn-pill {
  background: #f1f5f9;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

.btn-login-glow {
  background: var(--primary);
  color: white;
  border: none;
  box-shadow: 0 4px 14px rgba(11, 61, 145, 0.3);
  animation: subtleGlow 3s ease-in-out infinite;
  padding: 10px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-login-glow:hover {
  background: #0a3280;
  transform: translateY(-2px);
  animation-play-state: paused;
  color: white;
  box-shadow: 0 10px 24px rgba(11, 61, 145, 0.4);
}

/* --- HERO V2 --- */
.hero-v2 {
  position: relative;
  background: #efefeb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hv2-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
  padding: 72px 40px 0;
  text-align: center;
}

.hv2-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 6px;
}

.hv2-headline h1 {
  font-size: clamp(30px, 5vw, 64px);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  white-space: nowrap;
}

.hv2-sub {
  font-size: 17px;
  color: #5a6a7a;
  margin: 0;
  line-height: 1.6;
}

.hv2-car-wrap {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 4;
}

.hv2-car-wrap img {
  width: clamp(420px, 74vw, 960px);
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.13));
  -webkit-mask-image: linear-gradient(to right, black 72%, transparent 96%), linear-gradient(to top, black 82%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(to right, black 72%, transparent 96%), linear-gradient(to top, black 82%, transparent 100%);
  mask-composite: intersect;
  animation: carFloat 5s ease-in-out infinite alternate;
}

@keyframes carFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

.hv2-strip {
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.40);
  padding: 18px 40px;
}

.hv2-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.hv2-plan {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.hv2-plan-name {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1a2a3a;
  line-height: 1.4;
  white-space: nowrap;
}

.hv2-plan-price {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.hv2-plan-price span {
  font-size: 12px;
  font-weight: 600;
  color: #5a6a7a;
  letter-spacing: 0;
}

.hv2-strip-divider {
  width: 1px;
  height: 36px;
  background: rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  margin: 0 24px;
}

/* --- HERO SECTION (legacy, kept for reference) --- */
.hero {
  background: #060d1f;
  background-image:
    radial-gradient(ellipse 55% 70% at 15% 50%, rgba(11, 61, 145, 0.65) 0%, transparent 60%),
    radial-gradient(ellipse 50% 55% at 80% 20%, rgba(0, 174, 239, 0.30) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 65% 85%, rgba(0, 90, 200, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 35% 40% at 95% 60%, rgba(0, 174, 239, 0.18) 0%, transparent 55%);
  color: white;
  padding: 130px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}

/* --- HERO BG TEXT --- */
.hero-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  padding: 10px 0;
}

.hero-bg-top,
.hero-bg-bottom {
  font-size: clamp(80px, 14vw, 190px);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.85;
  user-select: none;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.13);
  white-space: nowrap;
}

.hero-bg-top {
  align-self: flex-start;
  padding-left: 2vw;
  animation: heroBreathe1 8s ease-in-out infinite alternate;
}

.hero-bg-bottom {
  align-self: flex-end;
  padding-right: 2vw;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.07);
  animation: heroBreathe3 10s ease-in-out infinite alternate;
}

/* --- HERO CAR VISUAL --- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-car-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.28) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: heroBreathe2 6s ease-in-out infinite alternate;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 115%;
  max-width: 620px;
  height: auto;
  transform: rotate(-7deg) translateY(-12px);
  -webkit-mask-image: radial-gradient(ellipse 74% 80% at 50% 46%, black 25%, transparent 68%);
  mask-image: radial-gradient(ellipse 74% 80% at 50% 46%, black 25%, transparent 68%);
  filter: drop-shadow(0 20px 50px rgba(0, 120, 255, 0.4));
  animation: carFloat 5s ease-in-out infinite alternate;
}

@keyframes carFloat {
  from {
    transform: rotate(-7deg) translateY(-12px);
  }

  to {
    transform: rotate(-7deg) translateY(-26px);
  }
}

/* --- HERO BENEFITS STRIP --- */
.hero-benefits-strip {
  background: linear-gradient(180deg, #060d1f 0%, #0d1a35 50%, #f7fbff 100%);
  padding: 40px 0 48px;
}

.hbs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.hbs-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.hbs-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.hbs-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.6;
}

.hbs-notice svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.hbs-notice strong {
  color: rgba(255, 255, 255, 0.80);
}

/* --- HERO GRADIENT BREATHING ANIMATION --- */
.hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
}

.hero-aurora div:nth-child(1) {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 10% 40%, rgba(11, 61, 145, 0.55) 0%, transparent 65%);
  animation: heroBreathe1 8s ease-in-out infinite alternate;
}

.hero-aurora div:nth-child(2) {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 85% 15%, rgba(0, 174, 239, 0.35) 0%, transparent 60%);
  animation: heroBreathe2 6s ease-in-out infinite alternate;
}

.hero-aurora div:nth-child(3) {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 55% at 60% 90%, rgba(0, 90, 200, 0.40) 0%, transparent 60%);
  animation: heroBreathe3 10s ease-in-out infinite alternate;
}

@keyframes heroBreathe1 {
  from {
    opacity: 0.6;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroBreathe2 {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroBreathe3 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.5;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 20px 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero h1 {
  font-size: 68px;
  margin: 0 0 22px;
  line-height: 0.97;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 460px;
  margin: 0;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.btn-hero-text {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.btn-hero-text svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s;
}

.btn-hero-text:hover {
  color: white;
}

.btn-hero-text:hover svg {
  transform: translateX(4px);
}

.features-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 36px;
  max-width: 500px;
}

.fchip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  cursor: default;
}

.fchip svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Right column */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-side-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 32px 28px;
  border-top: 3px solid var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 40px 80px rgba(0, 0, 0, 0.38);
}

.hero-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  padding-bottom: 16px;
  border-bottom: 1px solid #edf2f7;
  margin-bottom: 4px;
}

.hero-card-title svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-benefit-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.hero-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #4a6580;
  line-height: 1.5;
}

.hero-benefit-list li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-left: 2px solid rgba(0, 174, 239, 0.45);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 10px 10px 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.hero-notice svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-notice p {
  margin: 0;
}

.hero-notice strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* --- GLOBAL SECTIONS --- */
.section {
  padding: 70px 0;
  position: relative;
  z-index: 1;
}

/* --- PAGE BANNER (inner pages) --- */
.page-banner {
  background: #060d1f;
  background-image:
    radial-gradient(ellipse 65% 90% at 8% 50%, rgba(11, 61, 145, 0.75) 0%, transparent 60%),
    radial-gradient(ellipse 45% 65% at 92% 20%, rgba(0, 174, 239, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 40% 55% at 70% 90%, rgba(0, 90, 200, 0.35) 0%, transparent 55%);
  color: white;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.page-banner .container {
  position: relative;
  z-index: 1;
  text-align: left;
}

.page-banner .eyebrow {
  color: var(--accent);
}

.page-banner h2 {
  color: white;
  font-size: 38px;
  font-weight: 800;
  margin: 10px 0 14px;
  letter-spacing: -0.02em;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  max-width: 580px;
  line-height: 1.7;
  margin: 0;
}

/* --- SUB-PAGE THEMING (legacy) --- */
.subpage-bg {
  background-color: #f8fafc;
  position: relative;
  min-height: 100vh;
}

.subpage-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11, 61, 145, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}

.subpage-header-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
}

.subpage-header-glow div {
  position: absolute;
  width: 600px;
  height: 400px;
  border-radius: 50%;
}

.subpage-header-glow div:nth-child(1) {
  background: rgba(0, 174, 239, 0.12);
  top: -100px;
  left: -100px;
}

.subpage-header-glow div:nth-child(2) {
  background: rgba(11, 61, 145, 0.08);
  top: -150px;
  right: -200px;
}

.section-title {
  max-width: 100%;
  margin-bottom: 40px;
}

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

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title h2 {
  font-size: 38px;
  margin: 0 0 12px;
  color: #0f2238;
  font-weight: 800;
  white-space: nowrap;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  white-space: nowrap;
}

/* --- CARDS & INTERACTIVE ELEMENTS --- */
.card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 64px 28px 32px;
  box-shadow: 0 16px 48px rgba(11, 61, 145, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}


.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(14, 36, 66, 0.11);
  border-color: rgba(11, 61, 145, 0.14);
}

.card:hover::after {
  transform: scaleX(1);
}

.card h3 {
  margin-top: 0;
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}


.card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* Reusable Micro-interaction Icons inside Cards */
.card-icon,
.term-icon-wrap,
.faq-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 174, 239, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.term-icon-wrap {
  width: 42px;
  height: 42px;
  margin-bottom: 0;
}

.term-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.faq-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
  flex-shrink: 0;
}

.faq-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.faq-card {
  padding: 28px 32px;
}

.faq-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
  line-height: 1.4;
}

.faq-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin: 12px 0 0;
}

.faq-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 0;
}

.loc-card {
  padding: 28px;
}

.loc-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 10px;
}

.loc-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Icon Hover Effects */
.card:hover .card-icon,
.card:hover .term-icon-wrap,
.card:hover .faq-icon-wrap {
  transform: scale(1.08) rotate(-2deg);
  background: var(--primary);
  color: white;
  box-shadow: 0 6px 16px rgba(11, 61, 145, 0.4);
}

/* --- LISTS & UTILITIES --- */
ul.feature-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  line-height: 1.6;
  color: #46627f;
  margin-top: 16px;
}

.card ul.feature-list {
  flex-grow: 1;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 24px;
}

ul.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px 24px;
  list-style: none;
  padding-left: 0;
  line-height: 1.6;
  color: #46627f;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.feature-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.notice {
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
  padding: 24px 28px;
  border-radius: 20px;
  color: #33506d;
  line-height: 1.7;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 4px 24px rgba(11, 61, 145, 0.05);
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}

.notice::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 5px;
  background: var(--accent);
  border-radius: 0 4px 4px 0;
}

.info-icon {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* --- PRICING & BADGES --- */
.price {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  margin: 16px 0 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  letter-spacing: -1px;
}

.price .small {
  font-size: 16px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: normal;
}

@keyframes subtleGlow {

  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(0, 174, 239, .4), 0 14px 32px rgba(0, 174, 239, .1);
  }

  50% {
    box-shadow: 0 0 0 2px var(--accent), 0 22px 48px rgba(0, 174, 239, .25);
  }
}

@keyframes badgeShine {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

.card.highlight {
  border-color: var(--accent);
  transform: translateY(-6px);
  animation: subtleGlow 4s ease-in-out infinite;
}

.card.highlight:hover {
  animation-play-state: paused;
  transform: translateY(-10px);
  box-shadow: 0 0 0 1px var(--primary), 0 24px 44px rgba(0, 174, 239, .18);
  border-color: var(--primary);
}

.card.highlight::after {
  transform: scaleX(1);
  height: 4px;
  background: var(--accent);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: linear-gradient(110deg, var(--primary) 20%, #66d1ff 50%, var(--primary) 80%);
  background-size: 200% auto;
  color: white;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
  animation: badgeShine 3s linear infinite;
}

.badge-subtle {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  background: linear-gradient(110deg, #f4f9ff 20%, #ffffff 50%, #f4f9ff 80%);
  background-size: 200% auto;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--border);
  animation: badgeShine 3s linear infinite;
}

/* --- CONTACT LISTS --- */
.contact-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-text strong {
  display: block;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-text span {
  display: block;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--accent);
}

/* --- CHECKOUT FORM UI --- */
.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 36px 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.step-header:first-of-type {
  margin-top: 0;
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 174, 239, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

.step-header h3 {
  color: var(--primary);
  font-size: 19px;
  font-weight: 700;
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

label.required::after {
  content: ' *';
  color: #ef4444;
}

.input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #c2dcf5;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.input::placeholder {
  color: #9ab3cc;
}

.input:hover {
  border-color: #8fbdeb;
}

.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.15);
}

select.input {
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300AEEF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 16px top 50%;
  background-size: 12px auto;
  padding-right: 40px;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  background-color: #fafdff;
}

/* Checkout Summary Sidebar */
.summary-sticky-wrap {
  align-self: start;
  min-height: 1px;
}

.summary-card {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border-color: #c2dcf5;
  box-shadow: 0 16px 40px rgba(14, 36, 66, 0.08);
}

.summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.summary-header h3 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.selected-plan-box {
  background: white;
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 174, 239, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 24px;
  padding: 14px 18px;
  background: var(--primary);
  border-radius: 12px;
  color: white;
}

.summary-total__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.summary-total__amount {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.summary-total__amount span {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.7;
  margin-left: 2px;
}

.selected-plan-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.selected-plan-desc {
  font-size: 13px;
  color: var(--muted);
}

.selected-plan-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  text-align: right;
}

.selected-plan-price span {
  display: inline;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.compact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.compact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.compact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 174, 239, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compact-icon svg {
  width: 16px;
  height: 16px;
}

.compact-text strong {
  display: block;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 2px;
}

.compact-text span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}


/* --- FOOTER --- */
.footer {
  background: #0f2238;
  color: #dce7f3;
  padding: 50px 0;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 32px;
}

.footer a {
  color: #8aadcc;
  transition: color 0.2s;
  text-decoration: none;
}

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


/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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


/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {

  .section-title h2,
  .section-title p {
    white-space: normal;
  }

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

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

@media (max-width: 980px) {

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

  .hero {
    padding: 72px 0 64px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .features-mini {
    max-width: 100%;
  }

  .hero p {
    max-width: 100%;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .summary-sticky-wrap {
    position: static;
    order: -1;
  }

  .hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {

  .grid-2,
  .grid-4,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 28px 24px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .card.highlight {
    transform: none;
    animation: none;
    box-shadow: 0 0 0 1px var(--accent), 0 10px 24px rgba(0, 174, 239, 0.1);
  }

  .card.highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 0 1px var(--primary), 0 14px 28px rgba(0, 174, 239, 0.15);
  }
}

/* --- LOCATION DISCOVERY --- */
.location-search-wrap {
  position: relative;
  max-width: 600px;
  margin: 0 auto 16px;
  display: flex;
  gap: 12px;
}

.location-search-input-wrap {
  position: relative;
  flex: 1;
}

.location-search-input-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--muted);
  pointer-events: none;
}

.location-search-input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: 16px;
  background: white;
  box-shadow: 0 4px 12px rgba(14, 36, 66, 0.05);
  transition: all 0.3s ease;
  outline: none;
}

.location-search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.1);
}

.location-search-btn {
  padding: 12px 28px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.location-search-btn:hover {
  background: #0a3280;
  transform: translateY(-1px);
}

.location-results-meta {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.location-results-meta span {
  color: var(--primary);
  font-weight: 700;
}

.location-card {
  padding: 24px;
}

.location-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.location-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.location-badge {
  background: #ecfdf5;
  color: #059669;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
  text-transform: uppercase;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.location-detail svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.location-directions-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #f1f5f9;
  color: var(--primary);
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.location-directions-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.location-directions-btn:hover {
  background: var(--primary);
  color: white;
}

.location-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 24px;
  border: 2px dashed var(--border);
  display: none;
  flex-direction: column;
  align-items: center;
}

.location-no-results svg {
  width: 64px;
  height: 64px;
  color: #e2e8f0;
  margin-bottom: 16px;
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.page-btn {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(11, 61, 145, 0.05);
  transition: all 0.2s ease;
}

.page-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(11, 61, 145, 0.1);
}

.page-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(11, 61, 145, 0.25);
}

.page-btn-wide {
  padding: 0 20px;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --- MODERN PAGE TRANSITIONS --- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 10001;
  transition: width 0.4s cubic-bezier(0.1, 0.05, 0, 1);
  pointer-events: none;
}

.page-loader.loading {
  width: 70%;
}

.page-loader.complete {
  width: 100%;
  opacity: 0;
  transition: width 0.3s ease, opacity 0.4s ease 0.3s;
}

/* Global Orbit Spinner */
#globalLoader {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

#globalLoader.active {
  opacity: 1;
  visibility: visible;
}

.orbit-spinner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  perspective: 800px;
}

.orbit {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.orbit:nth-child(1) {
  left: 0%;
  top: 0%;
  animation: orbit-rotate-one 1s linear infinite;
  border-bottom: 3px solid var(--primary);
}

.orbit:nth-child(2) {
  right: 0%;
  top: 0%;
  animation: orbit-rotate-two 1s linear infinite;
  border-right: 3px solid var(--accent);
}

.orbit:nth-child(3) {
  right: 0%;
  bottom: 0%;
  animation: orbit-rotate-three 1s linear infinite;
  border-top: 3px solid var(--primary);
}

@keyframes orbit-rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes orbit-rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes orbit-rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}

#contentWrapper {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  will-change: transform, opacity;
}


/* Exit: Slide Left & Fade Out */
.page-exit {
  transform: translateX(-60px);
  opacity: 0;
  pointer-events: none;
}

/* Entrance: Slide Up & Fade In */
.page-entrance-anim {
  animation: pageEnterSlideUp 0.7s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes pageEnterSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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


/* --- AUTHENTICATION --- */
.auth-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: #060d1f;
  position: relative;
  overflow: hidden;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-header {
  padding: 40px 40px 20px;
  text-align: center;
}

.auth-header h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.auth-header p {
  color: var(--muted);
  font-size: 15px;
}

.auth-tabs {
  display: flex;
  background: #f1f5f9;
  margin: 0 40px 30px;
  padding: 6px;
  border-radius: 14px;
  gap: 4px;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.auth-tab.active {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.auth-body {
  padding: 0 40px 45px;
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
  animation: authFadeIn 0.3s ease;
}

@keyframes authFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}

.auth-footer a {
  color: var(--accent);
  font-weight: 700;
}

.social-login {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.2s;
}

.social-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

/* ============================================================
   RESPONSIVE — COMPREHENSIVE MOBILE ENHANCEMENTS
   ============================================================ */

/* ── Tablet additions (≤ 768px) ── */
@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }

  .page-banner {
    padding: 52px 0 40px;
  }

  .page-banner h2 {
    font-size: 28px;
  }

  .page-banner p {
    font-size: 15px;
  }

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

  .hero-btns {
    flex-wrap: wrap;
    gap: 12px;
  }

  .auth-header {
    padding: 32px 28px 16px;
  }

  .auth-tabs {
    margin: 0 28px 24px;
  }

  .auth-body {
    padding: 0 28px 36px;
  }

  .location-search-wrap {
    flex-direction: column;
  }

  .location-search-btn {
    width: 100%;
    border-radius: 12px;
    padding: 14px;
    font-size: 15px;
  }
}

/* ── Large phones (≤ 640px) ── */
@media (max-width: 640px) {
  .container {
    padding: 0 14px;
  }

  .section {
    padding: 36px 0;
  }

  /* Logo */
  .site-logo {
    height: 66px;
    transform: none;
  }

  .header-inner {
    justify-content: flex-start;
    gap: 0;
  }

  .logo-wrap {
    flex: 1;
    min-width: 0;
    flex-shrink: 1;
    justify-content: flex-start;
    overflow: hidden;
  }

  .footer-logo {
    height: 60px;
  }

  .footer-logo-wrap {
    margin-top: 0;
    margin-bottom: 12px;
  }

  /* Typography */
  .section-title h2 {
    font-size: 26px;
  }

  .section-title p {
    font-size: 15px;
  }

  /* Hero V2 — mobile */
  .hv2-main {
    padding: 48px 24px 0;
  }

  .hv2-headline {
    gap: 12px;
    margin-bottom: 28px;
  }

  .hv2-headline h1 {
    white-space: normal;
    font-size: clamp(26px, 7.5vw, 40px);
  }

  .hv2-sub {
    font-size: 15px;
  }

  .hv2-car-wrap img {
    width: clamp(300px, 88vw, 500px);
  }

  /* Pricing strip → 2×2 grid */
  .hv2-strip {
    padding: 0;
    overflow-x: unset;
  }

  .hv2-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: unset;
    gap: 1px;
    background: rgba(0, 0, 0, 0.09);
    border-top: 1px solid rgba(0, 0, 0, 0.09);
  }

  .hv2-strip-divider {
    display: none;
  }

  .hv2-plan {
    flex: unset;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 16px 8px;
    background: rgba(255, 255, 255, 0.72);
  }

  .hv2-plan-name {
    text-align: center;
    font-size: 9px;
  }

  .hv2-plan-price {
    font-size: 22px;
  }

  .hv2-strip-inner .btn {
    grid-column: 1 / -1;
    border-radius: 0;
    justify-content: center;
    font-size: 14px;
    padding: 14px 20px;
  }

  /* Pricing grid */
  .pricing-grid-dynamic {
    grid-template-columns: 1fr;
  }

  /* Hero benefits strip */
  .hbs-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Legacy hero */
  .hero {
    padding: 56px 0 48px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-btns .btn-hero-text {
    width: 100%;
    justify-content: center;
  }

  .features-mini {
    grid-template-columns: 1fr;
  }

  /* Cards */
  .card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .faq-card {
    padding: 20px 18px;
  }

  /* Responsive grids (inline style overrides) */
  .info-grid {
    grid-template-columns: 1fr !important;
  }

  .pass-details-grid {
    grid-template-columns: 1fr !important;
  }

  /* Checkout */
  .step-header {
    margin: 20px 0 14px;
  }

  .selected-plan-box {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  /* Footer */
  .footer {
    padding: 36px 0;
  }

  /* Auth */
  .auth-card {
    border-radius: 20px;
  }

  .auth-header {
    padding: 28px 20px 14px;
  }

  .auth-tabs {
    margin: 0 20px 20px;
  }

  .auth-body {
    padding: 0 20px 28px;
  }

  /* Notice */
  .notice {
    padding: 14px 16px;
    gap: 10px;
    font-size: 14px;
  }

  /* Page banner */
  .page-banner {
    padding: 44px 0 32px;
  }

  .page-banner h2 {
    font-size: 24px;
  }

  /* Scan vehicle badges row */
  .vehicle-badges-row {
    flex-wrap: wrap;
  }

  /* Pass view */
  .pass-card-header {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

/* ── Standard phones (≤ 480px) ── */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  /* Typography */
  .section-title h2 {
    font-size: 22px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  /* Hero V2 — small phones */
  .hv2-main {
    padding: 40px 16px 0;
  }

  .hv2-headline h1 {
    font-size: clamp(22px, 7vw, 34px);
  }

  .hv2-car-wrap img {
    width: clamp(280px, 92vw, 420px);
  }

  .hv2-plan-price {
    font-size: 20px;
  }

  /* Buttons */
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Price */
  .price {
    font-size: 36px;
  }

  /* Cards */
  .card {
    padding: 18px 14px;
  }

  /* Checkout */
  .summary-card {
    padding: 22px 16px;
  }

  /* Footer */
  .footer-grid>div:first-child p {
    font-size: 13px;
  }

  /* Header logo */
  .site-logo {
    height: 60px;
  }

  /* Auth */
  .auth-header h1 {
    font-size: 22px;
  }
}

/* ── Very small phones (≤ 360px) ── */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .btn {
    padding: 11px 16px;
    font-size: 13px;
  }

  .site-logo {
    height: 54px;
  }

  .section-title h2 {
    font-size: 20px;
  }
}

/* ── Desktop nav auth wrapper — hidden on mobile ── */
.nav-desktop-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 900px) {
  .nav-desktop-auth {
    display: none;
  }
}

/* ── Auth card body ── */
.auth-card-body {
  padding: 44px 40px 40px;
}

/* ── OTP input row ── */
.otp-inputs-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.otp-digit {
  width: 52px;
  height: 60px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  color: #0b3d91;
  font-family: 'Courier New', monospace;
  background: #f8fafc;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .auth-card-body {
    padding: 32px 20px 28px;
  }

  .otp-inputs-row {
    gap: 7px;
  }

  .otp-digit {
    width: 42px;
    height: 50px;
    font-size: 20px;
    border-radius: 10px;
  }
}

@media (max-width: 360px) {
  .otp-inputs-row {
    gap: 5px;
  }

  .otp-digit {
    width: 36px;
    height: 44px;
    font-size: 18px;
    border-radius: 8px;
  }
}

/* ── Mobile nav auth buttons ── */
.nav-mobile-auth {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px 4px;
  border-top: 1px solid var(--border);
  margin-top: 6px;
}

.nav-mobile-auth .btn {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 14px;
}

.nav-mobile-auth .btn-primary {
  color: #fff !important;
  background: var(--primary);
}

/* ── Scan form / Pass view inline-grid responsive helpers ── */
@media (max-width: 520px) {
  .info-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .pass-details-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

.input.border-red {
  border-color: #dc2626 !important;
}