/* ==========================================================================
   HOME PAGE – Redesigned Inspiration Sprint
   Sections: Hero, Authority Pillars, Who It's For, Premium Fleet,
             Road Test Process, Services & Pricing, Packages,
             Local Coverage, FAQ, Final CTA
   ========================================================================== */

/* --- Gold accent palette (new) --- */
:root {
  --gold: #c9a84c;
  --gold-soft: rgba(201, 168, 76, 0.10);
  --gold-border: rgba(201, 168, 76, 0.28);
  --gold-glow: rgba(201, 168, 76, 0.25);
}


/* =========================================================================
   SECTION 1: HERO (#row-3d-hero)
   ========================================================================= */

#row-3d-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: var(--r-bg);
  background-image:
    radial-gradient(circle at 15% 15%, rgba(155, 81, 224, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(0, 212, 255, 0.08) 0%, transparent 40%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', 'Poppins', sans-serif;
  overflow: hidden;
  padding: 120px 20px 60px;
  box-sizing: border-box;
}

.r-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  max-width: 1300px;
  width: 100%;
  align-items: center;
  z-index: 10;
}

.r-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.r-badge {
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--r-accent);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.r-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--r-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--r-accent);
  animation: r-pulse 2s infinite;
}

.r-school-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--r-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 10px 0;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.r-title {
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  color: var(--r-text);
  margin: 0 0 25px 0;
  letter-spacing: -1.5px;
}

.r-gradient {
  background: linear-gradient(135deg, #fff 40%, var(--r-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.r-desc {
  font-size: 19px;
  color: var(--r-text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 550px;
}

.r-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

@keyframes btn-glow-loop {
  0% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.3); }
  50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.7); border-color: rgba(255, 255, 255, 0.5); }
  100% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.3); }
}

.btn-book {
  background: linear-gradient(90deg, var(--r-accent), #00a3cc);
  color: #000;
  font-weight: 800;
  padding: 20px 40px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
  text-align: center;
  border: 1px solid transparent;
  animation: btn-glow-loop 3s infinite ease-in-out;
}

.btn-book:hover {
  transform: translateY(-3px);
  animation: none;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  padding: 20px 35px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
  text-align: center;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
}

.r-micro-text {
  font-size: 12px;
  color: #666;
  font-style: italic;
  margin-bottom: 35px;
}

.r-trust-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.r-facepile {
  display: flex;
  align-items: center;
}

.r-facepile img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--r-bg);
  object-fit: cover;
  margin-left: -15px;
  transition: transform 0.2s;
}

.r-facepile img:first-child {
  margin-left: 0;
}

.r-facepile img:hover {
  transform: translateY(-5px);
  z-index: 10;
}

.r-trust-text h5 {
  color: #fff;
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 700;
}

.r-trust-text p {
  color: var(--r-text-muted);
  margin: 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.r-stars {
  color: #fbbf24;
  letter-spacing: 1px;
}

.r-read-reviews {
  color: var(--r-accent);
  text-decoration: none;
  font-weight: 700;
  margin-left: 8px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.r-read-reviews:hover {
  border-bottom-color: var(--r-accent);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
  transform: translateX(2px);
}

.r-visual {
  position: relative;
  padding: 50px 0;
  perspective: 2000px;
}

.r-main-card {
  position: relative;
  z-index: 2;
  border-radius: 40px;
  overflow: hidden;
  transform: rotateY(-12deg) rotateX(4deg);
  box-shadow: 40px 40px 90px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.r-main-card:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.r-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.r-float {
  position: absolute;
  background: rgba(10, 20, 35, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 24px;
  border-radius: 20px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: r-float-anim 6s ease-in-out infinite;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.r-card-success {
  top: -20px;
  right: -30px;
  animation-delay: 0s;
  border-bottom: 3px solid var(--r-accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 12px 35px rgba(0, 212, 255, 0.3);
}

.r-card-safety {
  bottom: 40px;
  left: -50px;
  animation-delay: 3s;
  border-bottom: 3px solid var(--r-purple);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 12px 35px rgba(155, 81, 224, 0.3);
}

.r-float-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.r-float-info h4 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.r-float-info span {
  color: var(--r-text-muted);
  font-size: 12px;
  font-weight: 500;
}

.r-glow {
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@keyframes r-pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes r-float-anim {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@media (max-width: 1100px) {
  #row-3d-hero {
    padding: 100px 20px 60px;
    min-height: auto;
    align-items: flex-start;
  }

  .r-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .r-content {
    align-items: center;
    text-align: center;
  }

  .r-school-name {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .r-title {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .r-desc {
    font-size: 17px;
    margin-bottom: 30px;
  }

  .r-actions {
    justify-content: center;
    width: 100%;
    gap: 12px;
    margin-bottom: 10px;
  }

  .btn-book,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 18px 20px;
    font-size: 16px;
  }

  .r-micro-text {
    margin-bottom: 30px;
  }

  .r-trust-wrapper {
    flex-direction: column;
    gap: 15px;
    border-top: none;
    padding-top: 0;
  }

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

  .r-trust-text p {
    justify-content: center;
  }

  .r-facepile img {
    width: 72px;
    height: 72px;
    margin-left: -25px;
    border-width: 4px;
  }

  .r-visual {
    padding: 0;
    width: 100%;
    perspective: none;
  }

  .r-main-card {
    transform: none !important;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.15) !important;
    margin: 0 auto;
    max-width: 100%;
  }

  .r-main-card:hover {
    transform: none !important;
    scale: 1 !important;
  }

  .r-float {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    animation: none;
    width: 100%;
    margin: 12px auto 0;
    background: rgba(20, 30, 45, 0.95);
    transform: none !important;
    justify-content: flex-start;
  }

  .r-card-success {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 5px 25px rgba(0, 212, 255, 0.25) !important;
  }

  .r-card-safety {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 5px 25px rgba(155, 81, 224, 0.25) !important;
  }

  .r-glow {
    display: none;
  }
}



@media (max-width: 768px) {
  .r-badge {
    display: none;
  }
}

/* =========================================================================
   SECTION 2: AUTHORITY PILLARS (#authority-pillars)
   Three premium image-led cards - cinematic dark editorial layout
   ========================================================================= */

#authority-pillars {
  position: relative;
  padding: 90px 20px 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 100%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, #03060d 0%, #060b18 50%, #04080f 100%);
}

#authority-pillars::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(201, 168, 76, 0.35) 50%, transparent 95%);
}

#authority-pillars::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(255, 255, 255, 0.04) 50%, transparent 95%);
}

.ap-container {
  max-width: 1220px;
  margin: 0 auto;
}

.ap-header {
  text-align: center;
  margin-bottom: 58px;
}

.ap-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  margin-bottom: 22px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.32);
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.06);
}

.ap-title {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}

.ap-accent {
  background: linear-gradient(135deg, #f0e2b6 0%, var(--gold) 45%, #e8d5a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(201, 168, 76, 0.18));
}

.ap-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
}

.ap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ap-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 168, 76, 0.14);
  background: rgba(8, 12, 22, 1);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s ease, border-color 0.35s ease;
  will-change: transform;
}

.ap-card-media {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: -1px;
  z-index: 1;
}

.ap-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  transform-origin: center center;
}

.ap-card-media::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(3, 6, 13, 0) 50%, rgba(8, 12, 22, 0.85) 88%, rgba(8, 12, 22, 1) 100%);
  pointer-events: none;
}

.ap-card-content {
  position: relative;
  z-index: 2;
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
  background: rgba(8, 12, 22, 1);
}

.ap-card-tag {
  display: inline-block;
  width: fit-content;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
}

.ap-tag-gold {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.22);
}

.ap-tag-cyan {
  color: var(--r-accent);
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.18);
}

.ap-tag-purple {
  color: var(--r-purple);
  background: rgba(155, 81, 224, 0.08);
  border: 1px solid rgba(155, 81, 224, 0.2);
}

.ap-card-title {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
}

.ap-card-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.ap-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.ap-card:nth-child(1) .ap-card-link { color: var(--gold); }
.ap-card:nth-child(1) .ap-card-link:hover { color: #e8d5a0; transform: translateX(3px); }
.ap-card:nth-child(2) .ap-card-link { color: var(--r-accent); }
.ap-card:nth-child(2) .ap-card-link:hover { color: #7df7ff; transform: translateX(3px); }
.ap-card:nth-child(3) .ap-card-link { color: #c490f0; }
.ap-card:nth-child(3) .ap-card-link:hover { color: #dbb8ff; transform: translateX(3px); }

.ap-card:nth-child(1) {
  border-color: rgba(201, 168, 76, 0.18);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(201, 168, 76, 0.04),
    inset 0 1px 0 rgba(201, 168, 76, 0.06);
}

.ap-card:nth-child(2) {
  border-color: rgba(0, 212, 255, 0.12);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(0, 212, 255, 0.03),
    inset 0 1px 0 rgba(0, 212, 255, 0.04);
}

.ap-card:nth-child(3) {
  border-color: rgba(155, 81, 224, 0.12);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(155, 81, 224, 0.03),
    inset 0 1px 0 rgba(155, 81, 224, 0.04);
}

@media (hover: hover) and (pointer: fine) {
  .ap-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 8px 30px rgba(0, 0, 0, 0.45),
      0 30px 80px rgba(0, 0, 0, 0.35);
  }
  .ap-card:nth-child(1):hover {
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow:
      0 8px 30px rgba(0, 0, 0, 0.45),
      0 30px 80px rgba(0, 0, 0, 0.35),
      0 0 50px rgba(201, 168, 76, 0.08);
  }
  .ap-card:nth-child(2):hover {
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow:
      0 8px 30px rgba(0, 0, 0, 0.45),
      0 30px 80px rgba(0, 0, 0, 0.35),
      0 0 50px rgba(0, 212, 255, 0.06);
  }
  .ap-card:nth-child(3):hover {
    border-color: rgba(155, 81, 224, 0.25);
    box-shadow:
      0 8px 30px rgba(0, 0, 0, 0.45),
      0 30px 80px rgba(0, 0, 0, 0.35),
      0 0 50px rgba(155, 81, 224, 0.06);
  }
  .ap-card:hover .ap-card-media img {
    transform: scale(1.05);
  }
}

.ap-section-cta {
  text-align: center;
  margin-top: 48px;
}

.ap-section-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 17px 42px;
  border-radius: 14px;
  border: 1.5px solid rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.06);
}

.ap-section-cta a:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.7);
  color: #f0e2b6;
  box-shadow: 0 0 35px rgba(201, 168, 76, 0.14), 0 8px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .ap-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 520px;
    margin: 0 auto;
  }
  #authority-pillars {
    padding: 70px 16px 80px;
  }
  .ap-card-media {
    height: 220px;
  }
  .ap-card:nth-child(1) .ap-card-media img {
    object-position: center 35%;
  }
}

@media (max-width: 680px) {
  .ap-card {
    border-radius: 18px;
  }
  .ap-card-media {
    height: 200px;
  }
  .ap-card:nth-child(1) .ap-card-media {
    height: 220px;
  }
  .ap-card:nth-child(1) .ap-card-media img {
    object-position: center 30%;
  }
  .ap-card-content {
    padding: 20px 20px 24px;
  }
  .ap-card-title {
    font-size: 20px;
  }
  .ap-card-text {
    font-size: 13.5px;
  }
  #authority-pillars {
    padding: 56px 14px 64px;
  }
  .ap-section-cta {
    margin-top: 36px;
  }
  .ap-section-cta a {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 14px;
  }
}


/* =========================================================================
   SECTION 2B: WHO THIS IS FOR (#who-its-for)
   ========================================================================= */

#who-its-for {
  position: relative;
  padding: 70px 20px 80px;
}

#who-its-for::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.wif-container {
  max-width: 1200px;
  margin: 0 auto;
}

.wif-header {
  text-align: center;
  margin-bottom: 48px;
}

.wif-title {
  margin: 0 0 14px;
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 850;
  letter-spacing: -0.03em;
  color: #fff;
}

.wif-subtitle {
  max-width: 660px;
  margin: 0 auto;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.7;
  color: var(--r-text-muted);
}

.wif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.wif-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.wif-card-icon {
  font-size: 32px;
  line-height: 1;
}

.wif-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 750;
  color: #fff;
  letter-spacing: -0.01em;
}

.wif-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

.wif-card a {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--r-accent);
  text-decoration: none;
  transition: color 0.2s;
}

.wif-card a:hover {
  color: #7df7ff;
}

@media (hover: hover) and (pointer: fine) {
  .wif-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.15);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  }
}

@media (max-width: 1080px) {
  .wif-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .wif-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .wif-card {
    padding: 24px 20px;
  }
  #who-its-for {
    padding: 50px 16px 60px;
  }
}


/* =========================================================================
   SECTION 3: PREMIUM FLEET (#premium-fleet-v4)
   ========================================================================= */

#premium-fleet-v4 {
  --pf-bg: #06070d;
  --pf-card: rgba(255, 255, 255, 0.025);
  --pf-border: rgba(255, 255, 255, 0.07);
  --pf-border-strong: rgba(0, 212, 255, 0.22);
  --pf-cyan: #00d4ff;
  --pf-cyan-2: #7df7ff;
  --pf-cyan-soft: rgba(0, 212, 255, 0.10);
  --pf-cyan-glow: rgba(0, 212, 255, 0.34);
  --pf-text: #ffffff;
  --pf-text-soft: rgba(255, 255, 255, 0.84);
  --pf-text-dim: rgba(255, 255, 255, 0.72);
  --pf-radius: 22px;
  --pf-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
  --pf-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  position: relative;
  overflow: hidden;
  color: var(--pf-text);
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  isolation: isolate;
}

#premium-fleet-v4 *,
#premium-fleet-v4 *::before,
#premium-fleet-v4 *::after {
  box-sizing: border-box;
}

@property --pf-cta-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

#premium-fleet-v4::before,
#premium-fleet-v4::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
}

#premium-fleet-v4::before {
  width: 940px;
  height: 940px;
  left: 50%;
  top: -390px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, rgba(0, 212, 255, 0.02) 40%, transparent 68%);
  filter: blur(4px);
}

#premium-fleet-v4::after {
  width: 760px;
  height: 760px;
  right: -240px;
  bottom: -280px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, rgba(0, 212, 255, 0.015) 36%, transparent 68%);
  filter: blur(6px);
}

#premium-fleet-v4 .pf-shell {
  position: relative;
  padding: 96px 24px 112px;
  z-index: 1;
}

#premium-fleet-v4 .pf-container {
  max-width: 1280px;
  margin: 0 auto;
}

#premium-fleet-v4 .pf-header {
  text-align: center;
  margin-bottom: 54px;
}

#premium-fleet-v4 .pf-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  margin-bottom: 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  background: rgba(0, 212, 255, 0.05);
  color: var(--pf-cyan);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

#premium-fleet-v4 .pf-title {
  margin: 0 0 18px;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: -0.03em;
  color: var(--pf-text);
}

#premium-fleet-v4 .pf-title .accent {
  background: linear-gradient(135deg, #bafcff 0%, var(--pf-cyan) 45%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(0, 212, 255, 0.16));
}

#premium-fleet-v4 .pf-subtitle {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(15px, 1.45vw, 19px);
  line-height: 1.75;
  font-weight: 480;
  color: var(--pf-text-dim);
}

#premium-fleet-v4 .pf-divider {
  display: block;
  width: min(180px, 46vw);
  height: 2px;
  margin: 28px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.9), transparent);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.34);
}

#premium-fleet-v4 .pf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  align-items: stretch;
}

#premium-fleet-v4 .fleet-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--pf-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--pf-shadow);
  min-height: 220px;
  cursor: default;
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 0.5s var(--pf-ease),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

#premium-fleet-v4 .fleet-card:hover {
  border-color: rgba(0, 212, 255, 0.16);
}

#premium-fleet-v4 .fleet-card:focus-within {
  outline: none;
  border-color: rgba(0, 212, 255, 0.26);
  box-shadow:
    0 0 0 1px rgba(0, 212, 255, 0.08),
    0 24px 72px rgba(0, 0, 0, 0.42);
}

#premium-fleet-v4 .card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#premium-fleet-v4 .card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s var(--pf-ease);
}

#premium-fleet-v4 .card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.86) 0%,
      rgba(0, 0, 0, 0.34) 38%,
      rgba(0, 0, 0, 0.10) 60%,
      rgba(0, 0, 0, 0) 100%
    );
}

#premium-fleet-v4 .bright-media .card-media::before {
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.90) 0%,
      rgba(0, 0, 0, 0.46) 42%,
      rgba(0, 0, 0, 0.14) 67%,
      rgba(0, 0, 0, 0) 100%
    );
}

#premium-fleet-v4 .card-cockpit .card-media::before {
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.64) 0%,
      rgba(0, 0, 0, 0.20) 34%,
      rgba(0, 0, 0, 0.05) 58%,
      rgba(0, 0, 0, 0) 100%
    );
}

#premium-fleet-v4 .card-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(to top, rgba(4, 7, 14, 0.10), rgba(4, 7, 14, 0));
}

#premium-fleet-v4 .card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

#premium-fleet-v4 .card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--pf-cyan);
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.75),
    0 0 12px rgba(0, 212, 255, 0.16);
}

#premium-fleet-v4 .card-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.22;
  font-weight: 770;
  letter-spacing: -0.02em;
  color: var(--pf-text);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.8),
    0 1px 2px rgba(0, 0, 0, 0.75);
}

#premium-fleet-v4 .card-desc {
  margin: 2px 0 0;
  font-size: 14px;
  line-height: 1.62;
  font-weight: 500;
  color: var(--pf-text-soft);
  text-shadow:
    0 2px 7px rgba(0, 0, 0, 0.85),
    0 1px 2px rgba(0, 0, 0, 0.7);
}

#premium-fleet-v4 .card-toggle {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(0, 212, 255, 0.22);
  background: rgba(0, 212, 255, 0.11);
  color: var(--pf-cyan);
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

#premium-fleet-v4 .card-toggle:hover,
#premium-fleet-v4 .card-toggle:focus-visible {
  background: rgba(0, 212, 255, 0.16);
  border-color: rgba(0, 212, 255, 0.35);
  outline: none;
}

#premium-fleet-v4 .card-toggle svg {
  width: 16px;
  height: 16px;
  display: block;
  transition: transform 0.35s var(--pf-ease);
}

@media (min-width: 1081px) {
  #premium-fleet-v4 .fleet-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.20);
    box-shadow:
      0 0 0 1px rgba(0, 212, 255, 0.05),
      0 28px 75px rgba(0, 0, 0, 0.42),
      0 0 34px rgba(0, 212, 255, 0.05);
  }

  #premium-fleet-v4 .fleet-card:hover .card-media img,
  #premium-fleet-v4 .fleet-card:focus-within .card-media img {
    transform: scale(1.05);
  }
}

#premium-fleet-v4.is-ready .fleet-card {
  opacity: 0;
  transform: translateY(28px);
}

#premium-fleet-v4.is-ready .fleet-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.72s var(--pf-ease),
    transform 0.72s var(--pf-ease),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

@media (min-width: 1081px) {
  #premium-fleet-v4.is-ready .card-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition:
      max-height 0.42s var(--pf-ease),
      opacity 0.26s ease,
      margin-top 0.42s var(--pf-ease);
  }

  #premium-fleet-v4.is-ready .fleet-card:hover .card-desc,
  #premium-fleet-v4.is-ready .fleet-card:focus-within .card-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 6px;
  }

  #premium-fleet-v4.is-ready .card-pedal:hover .card-desc,
  #premium-fleet-v4.is-ready .card-pedal:focus-within .card-desc {
    max-height: 280px;
  }
}

#premium-fleet-v4 .card-cockpit  { grid-column: 1 / 3; grid-row: 1 / 3; min-height: 454px; }
#premium-fleet-v4 .card-exterior { grid-column: 3 / 5; grid-row: 1 / 2; }
#premium-fleet-v4 .card-hud      { grid-column: 3 / 4; grid-row: 2 / 3; }
#premium-fleet-v4 .card-display  { grid-column: 4 / 5; grid-row: 2 / 3; }
#premium-fleet-v4 .card-dual     { grid-column: 1 / 2; grid-row: 3 / 4; }
#premium-fleet-v4 .card-pedal    { grid-column: 2 / 3; grid-row: 3 / 4; }
#premium-fleet-v4 .card-camera   { grid-column: 3 / 5; grid-row: 3 / 4; }

#premium-fleet-v4 .card-cockpit .card-media img  { object-position: center 84%; }
#premium-fleet-v4 .card-exterior .card-media img { object-position: center 58%; }
#premium-fleet-v4 .card-hud .card-media img      { object-position: center 54%; }
#premium-fleet-v4 .card-display .card-media img  { object-position: center center; }
#premium-fleet-v4 .card-dual .card-media img     { object-position: center 72%; }
#premium-fleet-v4 .card-pedal .card-media img    { object-position: center center; }
#premium-fleet-v4 .card-camera .card-media img   { object-position: center center; }

#premium-fleet-v4 .card-cockpit .card-title {
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.08;
  font-weight: 820;
  background: linear-gradient(135deg, #ffffff 8%, #d4fdff 40%, var(--pf-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55));
}

#premium-fleet-v4 .pf-cta-wrap {
  margin-top: 16px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

#premium-fleet-v4 .pf-cta-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background:
    conic-gradient(
      from var(--pf-cta-angle),
      transparent 0deg,
      transparent 35deg,
      rgba(0, 212, 255, 0.95) 62deg,
      rgba(125, 247, 255, 0.95) 88deg,
      transparent 118deg,
      transparent 220deg,
      rgba(0, 212, 255, 0.55) 255deg,
      transparent 286deg,
      transparent 360deg
    );
  animation: pf-spin-border 5.5s linear infinite;
  z-index: 0;
}

#premium-fleet-v4 .pf-cta-band {
  position: relative;
  z-index: 1;
  margin: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(8, 12, 22, 0.96) 0%, rgba(9, 16, 28, 0.96) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 18px 50px rgba(0, 0, 0, 0.30);
  overflow: hidden;
}

#premium-fleet-v4 .pf-cta-band::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.13) 0%, transparent 66%);
  pointer-events: none;
}

#premium-fleet-v4 .pf-cta-band::after {
  content: "";
  position: absolute;
  inset: auto -100px -130px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.11) 0%, transparent 68%);
  pointer-events: none;
}

@keyframes pf-spin-border {
  to { --pf-cta-angle: 360deg; }
}

#premium-fleet-v4 .pf-cta-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

#premium-fleet-v4 .pf-cta-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--pf-cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#premium-fleet-v4 .pf-cta-title {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  font-weight: 830;
  letter-spacing: -0.02em;
  color: var(--pf-text);
}

#premium-fleet-v4 .pf-cta-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--pf-text-dim);
  max-width: 690px;
}

#premium-fleet-v4 .pf-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 208px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  background: linear-gradient(135deg, #00d4ff 0%, #53ebff 100%);
  color: #031018;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow:
    0 0 22px rgba(0, 212, 255, 0.26),
    0 12px 28px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
  white-space: nowrap;
  animation: pf-button-pulse 2.4s ease-in-out infinite alternate;
}

#premium-fleet-v4 .pf-button:hover,
#premium-fleet-v4 .pf-button:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 36px rgba(0, 212, 255, 0.38),
    0 18px 34px rgba(0, 0, 0, 0.30);
  filter: brightness(1.04);
  outline: none;
  animation: none;
}

@keyframes pf-button-pulse {
  from {
    box-shadow:
      0 0 18px rgba(0, 212, 255, 0.22),
      0 10px 22px rgba(0, 0, 0, 0.20);
  }
  to {
    box-shadow:
      0 0 32px rgba(0, 212, 255, 0.42),
      0 14px 32px rgba(0, 0, 0, 0.26),
      0 0 70px rgba(0, 212, 255, 0.12);
  }
}

@media (max-width: 1080px) {
  #premium-fleet-v4 .pf-shell {
    padding: 74px 18px 86px;
  }

  #premium-fleet-v4 .pf-header {
    margin-bottom: 42px;
  }

  #premium-fleet-v4 .pf-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  #premium-fleet-v4 .fleet-card {
    min-height: 280px;
  }

  #premium-fleet-v4 .card-cockpit,
  #premium-fleet-v4 .card-exterior,
  #premium-fleet-v4 .card-camera {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  #premium-fleet-v4 .card-cockpit {
    min-height: 380px;
  }

  #premium-fleet-v4 .card-exterior,
  #premium-fleet-v4 .card-camera {
    min-height: 300px;
  }

  #premium-fleet-v4 .card-hud,
  #premium-fleet-v4 .card-display,
  #premium-fleet-v4 .card-dual,
  #premium-fleet-v4 .card-pedal {
    grid-column: auto;
    grid-row: auto;
  }

  #premium-fleet-v4.is-ready .card-toggle {
    display: inline-flex;
  }

  #premium-fleet-v4.is-ready .card-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition:
      max-height 0.42s var(--pf-ease),
      opacity 0.26s ease,
      margin-top 0.42s var(--pf-ease);
  }

  #premium-fleet-v4.is-ready .fleet-card.is-expanded .card-desc {
    max-height: 280px;
    opacity: 1;
    margin-top: 8px;
  }

  #premium-fleet-v4.is-ready .fleet-card.is-expanded .card-toggle {
    background: var(--pf-cyan);
    border-color: rgba(0, 212, 255, 0.6);
    color: #041019;
  }

  #premium-fleet-v4.is-ready .fleet-card.is-expanded .card-toggle svg {
    transform: rotate(180deg);
  }

  #premium-fleet-v4 .pf-cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 22px;
  }

  #premium-fleet-v4 .pf-button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 680px) {
  #premium-fleet-v4 .pf-shell {
    padding: 62px 14px 72px;
  }

  #premium-fleet-v4 .pf-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #premium-fleet-v4 .fleet-card {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    min-height: 270px;
  }

  #premium-fleet-v4 .card-cockpit {
    min-height: 320px;
  }

  #premium-fleet-v4 .card-title {
    font-size: 18px;
  }

  #premium-fleet-v4 .card-cockpit .card-title {
    font-size: clamp(24px, 7vw, 30px);
  }

  #premium-fleet-v4 .card-content {
    padding: 18px;
  }

  #premium-fleet-v4 .pf-cta-title {
    font-size: clamp(22px, 7vw, 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #premium-fleet-v4 .fleet-card,
  #premium-fleet-v4 .card-media img,
  #premium-fleet-v4 .card-desc,
  #premium-fleet-v4 .pf-button,
  #premium-fleet-v4 .card-toggle svg,
  #premium-fleet-v4 .pf-cta-wrap::before {
    transition: none !important;
    animation: none !important;
  }

  #premium-fleet-v4.is-ready .fleet-card,
  #premium-fleet-v4.is-ready .fleet-card.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* =========================================================================
   SECTION 3B: HOW IT WORKS (#how-it-works)
   ========================================================================= */

#how-it-works {
  position: relative;
  padding: 80px 20px 90px;
  overflow: hidden;
}

#how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15), transparent);
}

.hiw-container {
  max-width: 1100px;
  margin: 0 auto;
}

.hiw-header {
  text-align: center;
  margin-bottom: 48px;
}

.hiw-badge {
  display: inline-flex;
  padding: 8px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  background: rgba(0, 212, 255, 0.05);
  color: var(--r-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.hiw-title {
  margin: 0 0 14px;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 850;
  letter-spacing: -0.03em;
  color: #fff;
}

.hiw-accent {
  background: linear-gradient(135deg, #bafcff 0%, var(--r-accent) 50%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hiw-subtitle {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.7;
  color: var(--r-text-muted);
}

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

.hiw-card {
  position: relative;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.hiw-card:hover {
  border-color: rgba(0, 212, 255, 0.22);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 212, 255, 0.04);
}

.hiw-num {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.3), rgba(0, 212, 255, 0.05));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hiw-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}

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

@media (max-width: 900px) {
  .hiw-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .hiw-grid { grid-template-columns: 1fr; }
  #how-it-works { padding: 60px 16px 70px; }
}


/* =========================================================================
   SECTION 4: SERVICES & PRICING - Dual Selector (#services-pricing)
   ========================================================================= */

#services-pricing {
  position: relative;
  padding: 80px 20px 60px;
}

.sp-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 2;
}

.sp-pill {
  display: inline-flex;
  padding: 9px 22px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: var(--r-accent);
  background: rgba(0, 212, 255, 0.05);
  box-shadow: none;
  margin-bottom: 18px;
  overflow: visible;
}

.sp-main-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 850;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.sp-title-accent {
  color: var(--r-accent);
}

.sp-sub-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--r-text-muted);
  margin: 0;
  line-height: 1.6;
}

.sp-sub-title .icon-svg {
  margin-right: 6px;
}

/* Zone selector bar */
.sp-zone-bar {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.sp-zone-btn {
  flex: 1;
  padding: 11px 18px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--r-text-muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  text-align: center;
  white-space: nowrap;
}

.sp-zone-btn.active {
  background: var(--r-accent);
  color: #000;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.25);
}
.sp-zone-btn.active[data-zone="extended"] {
  background: #d4a24a;
  color: #000;
  box-shadow: 0 4px 16px rgba(212, 162, 74, 0.25);
}
.sp-zone-btn.active[data-zone="abbotsford"] {
  background: #a78bdb;
  color: #000;
  box-shadow: 0 4px 16px rgba(167, 139, 219, 0.25);
}

.sp-zone-btn:hover:not(.active) { color: #fff; }

/* Zone info line */
.sp-zone-info {
  text-align: center;
  font-size: 14px;
  color: var(--r-text-muted);
  margin-bottom: 28px;
  min-height: 22px;
  transition: opacity 0.2s ease;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sp-zone-info strong { color: #fff; }

/* Service tabs */
.sp-svc-bar {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px;
  max-width: 680px;
  margin: 0 auto 48px;
}

.sp-svc-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--r-text-muted);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  text-align: center;
  white-space: nowrap;
}

.sp-svc-btn.active {
  background: var(--r-accent);
  color: #000;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.25);
}

.sp-svc-btn:hover:not(.active) { color: #fff; }

/* Service panels */
.sp-panel { display: none; }
.sp-panel.active { display: block; }

.sp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Service cards */
.sp-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.sp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--r-accent);
}

.sp-card.featured::before {
  background: linear-gradient(90deg, var(--r-accent), var(--r-purple));
  height: 5px;
}

.sp-card.card-defensive::before { background: var(--brand-red); }
.sp-card.card-winter::before { background: var(--brand-winter); }

@media (hover: hover) and (pointer: fine) {
  .sp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.15), 0 20px 50px rgba(0, 0, 0, 0.25);
  }
}

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

.sp-icon {
  font-size: 32px;
}

.sp-price-block {
  text-align: right;
}

.sp-price {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  transition: opacity 0.15s ease;
}

.sp-price-gst {
  font-size: 11px;
  color: var(--r-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

.sp-price-note {
  font-size: 11px;
  color: var(--r-text-muted);
  margin-top: 4px;
  display: block;
  min-height: 16px;
  line-height: 1.3;
  transition: opacity 0.15s ease;
}

.sp-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.sp-duration {
  font-size: 13px;
  color: var(--r-accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.sp-card p {
  font-size: 15px;
  color: var(--r-text-muted);
  line-height: 1.6;
  margin: 0 0 16px;
  flex-grow: 1;
}

.sp-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  background: rgba(0, 212, 255, 0.06);
  color: var(--r-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}

.sp-btn:hover {
  background: var(--r-accent);
  color: #000;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

.sp-card.unavailable {
  opacity: 0.45;
  pointer-events: none;
}

.sp-card.unavailable .sp-price { opacity: 0.3; }
.sp-card.unavailable .sp-btn { opacity: 0.3; }

.sp-unavailable-msg {
  display: none;
  font-size: 12px;
  color: var(--r-text-muted);
  font-weight: 600;
  text-align: center;
  padding: 8px 0;
}

.sp-card.unavailable .sp-unavailable-msg { display: block; }

/* Zone area chips */
.sp-zone-areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px auto 20px;
  max-width: 900px;
}

.sp-area-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.015);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sp-area-chip:hover:not(.active) {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}

.sp-area-chip.active {
  border-color: rgba(0, 212, 255, 0.25);
  background: rgba(0, 212, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.06);
}

.sp-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.sp-area-chip.active .sp-chip-dot {
  background: var(--r-accent);
  box-shadow: 0 0 6px rgba(0, 212, 255, 0.5);
}
.sp-area-chip.active[data-zone="extended"] {
  border-color: rgba(212, 162, 74, 0.25);
  background: rgba(212, 162, 74, 0.06);
  box-shadow: 0 0 12px rgba(212, 162, 74, 0.06);
}
.sp-area-chip.active[data-zone="extended"] .sp-chip-dot {
  background: #d4a24a;
  box-shadow: 0 0 6px rgba(212, 162, 74, 0.5);
}
.sp-area-chip.active[data-zone="abbotsford"] {
  border-color: rgba(167, 139, 219, 0.25);
  background: rgba(167, 139, 219, 0.06);
  box-shadow: 0 0 12px rgba(167, 139, 219, 0.06);
}
.sp-area-chip.active[data-zone="abbotsford"] .sp-chip-dot {
  background: #a78bdb;
  box-shadow: 0 0 6px rgba(167, 139, 219, 0.5);
}

@media (max-width: 768px) {
  .sp-pill {
    font-size: 11px;
    padding: 8px 18px;
    letter-spacing: 2px;
  }
  .sp-main-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .sp-sub-title { font-size: 15px; padding: 0 10px; }

  .sp-svc-bar {
    flex-wrap: wrap;
    border-radius: 16px;
    max-width: 100%;
  }

  .sp-svc-btn {
    flex: 0 0 calc(50% - 2px);
    font-size: 13px;
    padding: 10px 14px;
  }

  .sp-zone-bar {
    max-width: 100%;
  }

  .sp-zone-btn {
    font-size: 12px;
    padding: 9px 12px;
  }
}

@media (max-width: 500px) {
  #services-pricing { padding: 60px 16px 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .sp-main-title {
    animation: none !important;
  }
}


/* =========================================================================
   SECTION 5: PACKAGES v2 (#row-packages-v2)
   Zone-aware, lazy-load architecture
   ========================================================================= */

#row-packages-v2 {
  --rpv1-cyan:        #00d4ff;
  --rpv1-cyan-dim:    rgba(0, 212, 255, 0.15);
  --rpv1-amber:       #f59e0b;
  --rpv1-amber-dim:   rgba(245, 158, 11, 0.1);
  --rpv1-text:        #f0f4f8;
  --rpv1-muted:       #b5c4d2;
  --rpv1-strong:      #eaf0f6;
  --rpv1-card-bg:     rgba(255, 255, 255, 0.035);
  --rpv1-card-border: rgba(255, 255, 255, 0.09);
  --rpv1-radius:      16px;
  --rpv1-radius-sm:   10px;

  width: 100%;
  padding: 44px 20px 58px;
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--rpv1-text);
}

#row-packages-v2 *,
#row-packages-v2 *::before,
#row-packages-v2 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  #row-packages-v2 *,
  #row-packages-v2 *::before,
  #row-packages-v2 *::after {
    animation: none !important;
    transition: none !important;
  }
}

#row-packages-v2 .rpv2-header {
  text-align: center;
  margin-bottom: 38px;
}

#row-packages-v2 .rpv2-title {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: #f8f4ef;
  letter-spacing: -0.03em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

#row-packages-v2 .rpv2-star {
  font-size: 0.4em;
  opacity: 0.55;
}

#row-packages-v2 .rpv2-tagline {
  margin-top: 12px;
  font-size: clamp(0.88rem, 2vw, 1rem);
  color: var(--rpv1-muted);
}

#row-packages-v2 .rpv2-tagline em {
  font-style: normal;
  color: var(--rpv1-amber);
  font-weight: 600;
}

#row-packages-v2 .rpv2-note {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--rpv1-muted);
  font-style: italic;
}

#row-packages-v2 .rpv2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1090px;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 820px) {
  #row-packages-v2 .rpv2-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    grid-template-rows: auto;
  }
}

#row-packages-v2 .rpv2-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 16px 18px;
  background: var(--rpv1-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--rpv1-radius);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
  transition: background 0.3s ease, border-color 0.3s ease,
              transform 0.28s ease, box-shadow 0.28s ease;
  overflow: visible;
}

#row-packages-v2 .rpv2-card::before {
  content: none;
}

#row-packages-v2 .rpv2-card--featured {
  gap: 14px;
  padding: 42px 22px 24px;
  background: rgba(0, 212, 255, 0.035);
  border-color: rgba(0, 212, 255, 0.32);
  border-width: 1px;
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.1),
              inset 0 0 28px rgba(0, 212, 255, 0.05),
              0 8px 40px rgba(0, 0, 0, 0.3),
              0 0 36px rgba(0, 212, 255, 0.08);
}

@media (hover: hover) {
  #row-packages-v2 .rpv2-card:hover {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  }

  #row-packages-v2 .rpv2-card--featured:hover {
    background: rgba(0, 212, 255, 0.055);
    border-color: rgba(0, 212, 255, 0.48);
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.18),
                0 20px 52px rgba(0, 0, 0, 0.36),
                0 0 44px rgba(0, 212, 255, 0.13);
  }
}

#row-packages-v2 .rpv2-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(22, 14, 4, 0.95);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: var(--rpv1-amber);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.15), 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: rpv1-badge-pulse 3.5s ease-in-out infinite;
}

@keyframes rpv1-badge-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(245, 158, 11, 0.12), 0 2px 10px rgba(0, 0, 0, 0.5); }
  50%       { box-shadow: 0 0 22px rgba(245, 158, 11, 0.28), 0 2px 10px rgba(0, 0, 0, 0.5); }
}

#row-packages-v2 .rpv2-name {
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.3;
  background: linear-gradient(to right, #ffaa00, #ff6600);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#row-packages-v2 .rpv2-card--featured .rpv2-name {
  font-size: 1.38rem;
}

#row-packages-v2 .rpv2-lessons {
  font-size: 0.79rem;
  color: var(--rpv1-muted);
  margin-top: 10px;
}

#row-packages-v2 .rpv2-card--featured .rpv2-lessons {
  font-size: 0.84rem;
}

#row-packages-v2 .rpv2-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
}

#row-packages-v2 .rpv2-tbtn {
  flex: 1;
  border: none;
  border-radius: 50px;
  padding: 7px 10px;
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--rpv1-muted);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
  font-family: inherit;
  text-align: center;
}

#row-packages-v2 .rpv2-card--featured .rpv2-tbtn {
  padding: 8px 12px;
  font-size: 0.8rem;
}

#row-packages-v2 .rpv2-tbtn.active {
  background: rgba(0, 212, 255, 0.18);
  color: var(--rpv1-cyan);
  box-shadow: inset 0 0 10px rgba(0, 212, 255, 0.08);
}

#row-packages-v2 .rpv2-tbtn:focus-visible {
  outline: 2px solid var(--rpv1-cyan);
  outline-offset: 2px;
}

#row-packages-v2 .rpv2-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px 7px;
  min-height: 2.4rem;
}

#row-packages-v2 .rpv2-card--featured .rpv2-price-row {
  min-height: 2.8rem;
}

#row-packages-v2 .rpv2-price {
  font-size: clamp(1.65rem, 3.5vw, 2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.025em;
}

#row-packages-v2 .rpv2-card--featured .rpv2-price {
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  text-shadow: 0 0 22px rgba(0, 212, 255, 0.22);
}

#row-packages-v2 .rpv2-gst {
  font-size: 0.72rem;
  color: var(--rpv1-muted);
  opacity: 0.55;
  padding-bottom: 2px;
}

#row-packages-v2 .rpv2-perhour {
  font-size: 0.73rem;
  font-weight: 600;
  color: rgba(245, 158, 11, 0.88);
  background: rgba(245, 158, 11, 0.09);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 5px;
  padding: 2px 8px;
  transition: opacity 0.25s;
}

#row-packages-v2 .rpv2-card--featured .rpv2-perhour {
  font-size: 0.77rem;
  padding: 3px 10px;
}

#row-packages-v2 .rpv2-perhour.rpv2-hidden {
  display: none;
}

#row-packages-v2 .rpv2-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

#row-packages-v2 .rpv2-card--featured .rpv2-bullets {
  gap: 11px;
}

#row-packages-v2 .rpv2-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.81rem;
  color: var(--rpv1-muted);
  line-height: 1.45;
}

#row-packages-v2 .rpv2-card--featured .rpv2-bullets li {
  font-size: 0.86rem;
}

#row-packages-v2 .rpv2-chk {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--rpv1-amber-dim);
  border: 1.5px solid rgba(245, 158, 11, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
}

#row-packages-v2 .rpv2-card--featured .rpv2-chk {
  width: 17px;
  height: 17px;
}

#row-packages-v2 .rpv2-chk svg {
  width: 8px;
  height: 8px;
  stroke: var(--rpv1-amber);
  fill: none;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#row-packages-v2 .rpv2-card--featured .rpv2-chk svg {
  width: 9px;
  height: 9px;
}

#row-packages-v2 .rpv2-bullets strong {
  color: var(--rpv1-strong);
  font-weight: 600;
}

#row-packages-v2 .rpv2-btn {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 18px;
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: var(--rpv1-radius-sm);
  background: transparent;
  color: rgba(245, 158, 11, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-family: inherit;
  transition: background 0.25s, color 0.22s, border-color 0.25s,
              transform 0.18s, box-shadow 0.25s;
}

#row-packages-v2 .rpv2-card--featured .rpv2-btn {
  margin-top: 8px;
  padding: 13px 20px;
  background: var(--rpv1-cyan);
  border: 1px solid var(--rpv1-cyan);
  color: #08121a;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

@media (hover: hover) {
  #row-packages-v2 .rpv2-btn:hover {
    background: rgba(245, 158, 11, 0.09);
    border-color: rgba(245, 158, 11, 0.7);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.14);
  }

  #row-packages-v2 .rpv2-card--featured .rpv2-btn:hover {
    background: #2ddeff;
    border-color: #2ddeff;
    color: #08121a;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 212, 255, 0.38);
  }
}

#row-packages-v2 .rpv2-btn:focus-visible {
  outline: 2px solid rgba(245, 158, 11, 0.7);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

#row-packages-v2 .rpv2-card--featured .rpv2-btn:focus-visible {
  outline-color: rgba(0, 212, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15);
}

#row-packages-v2 .rpv2-selectors {
  max-width: 700px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#row-packages-v2 .rpv2-selector-group {
  text-align: center;
}

#row-packages-v2 .rpv2-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

#row-packages-v2 .rpv2-toggle {
  display: inline-flex;
  gap: 0;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}

#row-packages-v2 .rpv2-tbtn {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
  white-space: nowrap;
}

#row-packages-v2 .rpv2-tbtn.active {
  color: #000;
  background: var(--rpv1-cyan);
  font-weight: 700;
}
#row-packages-v2 .rpv2-tbtn.active[data-area="extended"] {
  background: #d4a24a;
  color: #000;
}
#row-packages-v2 .rpv2-tbtn.active[data-area="abbotsford"] {
  background: #a78bdb;
  color: #000;
}

#row-packages-v2 .rpv2-tbtn:not(.active):hover {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.05);
}

#row-packages-v2 .rpv2-fallback {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  text-align: center;
  transition: color 0.2s;
}

#row-packages-v2 .rpv2-fallback:hover {
  color: var(--rpv1-cyan);
}

#row-packages-v2 .rpv2-unavailable {
  opacity: 0.45;
  pointer-events: none;
  filter: grayscale(0.4);
}

#row-packages-v2 .rpv2-unavailable .rpv2-btn {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.35);
  cursor: default;
}

#row-packages-v2 .rpv2-booking-area {
  max-width: 1090px;
  margin: 32px auto 0;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

#row-packages-v2 .rpv2-booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

#row-packages-v2 .rpv2-booking-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--rpv1-cyan);
}

#row-packages-v2 .rpv2-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 28px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s;
}

#row-packages-v2 .rpv2-close-btn:hover {
  color: #fff;
}

@media (max-width: 600px) {
  #row-packages-v2 .rpv2-toggle {
    flex-direction: column;
    width: 100%;
  }
  #row-packages-v2 .rpv2-tbtn {
    width: 100%;
    text-align: center;
  }
}


/* =========================================================================
   SECTION 7: FAQ (#faq)
   ========================================================================= */

#faq {
  position: relative;
  padding: 80px 20px 90px;
  background: rgba(255, 255, 255, 0.008);
}

#faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.faq-container {
  max-width: 780px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-badge {
  display: inline-flex;
  padding: 8px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  background: rgba(0, 212, 255, 0.05);
  color: var(--r-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.faq-title {
  margin: 0;
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 850;
  letter-spacing: -0.03em;
  color: #fff;
}

.faq-title .faq-accent {
  background: linear-gradient(135deg, #bafcff 0%, var(--r-accent) 50%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(0, 212, 255, 0.18);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--r-accent);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after { content: "\2212"; }

.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--r-accent);
  text-decoration: underline;
}

.faq-more {
  text-align: center;
  margin-top: 32px;
}

.faq-more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  background: rgba(0, 212, 255, 0.05);
  color: var(--r-accent);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.faq-more a:hover {
  background: rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.4);
  color: #fff;
}

@media (max-width: 580px) {
  #faq { padding: 50px 16px 60px; }
  .faq-item summary { padding: 16px 18px; font-size: 15px; }
  .faq-answer { padding: 0 18px 16px; font-size: 14px; }
}


/* =========================================================================
   SECTION 8: FINAL CTA (#final-cta)
   ========================================================================= */

#final-cta {
  position: relative;
  padding: 80px 20px 90px;
  text-align: center;
  overflow: hidden;
}

#final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.fcta-divider {
  width: min(200px, 50vw);
  height: 2px;
  margin: 0 auto 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--r-accent), transparent);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.25);
}

.fcta-container {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  z-index: 1;
}

.fcta-kicker {
  display: inline-block;
  margin: 0 0 16px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.07);
  color: var(--r-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.fcta-title {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #fff;
}

.fcta-title .fcta-accent {
  background: linear-gradient(135deg, #fff 40%, var(--r-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fcta-text {
  margin: 0 0 32px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--r-text-muted);
}

.fcta-microcopy {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(191, 227, 255, 0.86);
}

.fcta-footline {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(136, 153, 170, 0.7);
}

.fcta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.fcta-button-primary {
  padding: 18px 40px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--r-accent), #00a3cc);
  color: #000;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  animation: btn-glow-loop 3s infinite ease-in-out;
}

.fcta-button-primary:hover {
  transform: translateY(-3px);
  animation: none;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
  color: #000;
}

.fcta-button-secondary {
  padding: 18px 32px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}

.fcta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

@media (max-width: 500px) {
  .fcta-actions { flex-direction: column; }
  .fcta-actions a { width: 100%; }
  #final-cta { padding: 60px 16px 70px; }
}


/* =========================================================================
   PROOF STRIP (below hero)
   ========================================================================= */

.proof-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  padding: 28px 24px;
}

.proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(200, 211, 224, 0.85);
}

.proof-item .proof-number {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}

.proof-item .proof-label {
  font-weight: 500;
  line-height: 1.3;
}

.proof-item .proof-label strong {
  display: block;
  color: #fff;
  font-size: 15px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .proof-grid { gap: 24px; flex-wrap: wrap; }
  .proof-divider { display: none; }
  .proof-item .proof-number { font-size: 24px; }
}


/* Reviews section styles moved below — see REVIEWS / STUDENT SUCCESS STORIES */


/* =========================================================================
   BRIDGE SECTION POLISH
   ========================================================================= */

.bridge-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.bridge-card {
  background: rgba(10,15,32,0.78);
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  text-align: center;
}

.bridge-card--services { border: 1px solid rgba(0,212,255,0.18); }
.bridge-card--about { border: 1px solid rgba(255,176,95,0.22); }

.bridge-card p {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.76);
  font-size: 17px;
  line-height: 1.65;
}

.bridge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@keyframes btn-glow-loop-amber {
  0% { box-shadow: 0 0 14px rgba(255,153,51,0.20); }
  50% { box-shadow: 0 0 26px rgba(255,153,51,0.55); }
  100% { box-shadow: 0 0 14px rgba(255,153,51,0.20); }
}

.bridge-button-warm {
  padding: 18px 32px;
  border-radius: 14px;
  background: linear-gradient(90deg, #ffb44d, #ff8a00);
  color: #111;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  animation: btn-glow-loop-amber 3.3s infinite ease-in-out;
}

.bridge-button-warm:hover {
  transform: translateY(-3px);
  animation: none;
  box-shadow: 0 0 34px rgba(255,138,0,0.55);
  color: #111;
}

@media (max-width: 768px) {
  .bridge-card {
    padding: 24px 20px;
  }

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

/* =========================================================================
   PROOF STRIP MOBILE POLISH
   ========================================================================= */

.proof-number.proof-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9b51e0;
}

.proof-number.proof-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

@media (max-width: 768px) {
  .proof-strip {
    padding: 22px 18px;
  }

  .proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
    align-items: stretch;
  }

  .proof-item {
    gap: 10px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 14px 12px;
    min-height: 72px;
  }

  .proof-item .proof-number {
    font-size: 22px;
  }

  .proof-item .proof-label strong {
    font-size: 14px;
  }

  .proof-item .proof-label {
    font-size: 13px;
  }
}

/* =========================================================================
   REVIEWS / STUDENT SUCCESS STORIES
   Visual DNA mirrors #authority-pillars ("Built for Chilliwack Drivers"):
   image-led cards, dark editorial gradient, gold accents, premium feel.
   ========================================================================= */

#reviews {
  position: relative;
  padding: 90px 20px 100px;
  /* No extra section background — inherit the page background.
     Only the cards themselves carry visual structure. */
}

.reviews-container {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 58px;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  margin-bottom: 22px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.32);
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.06);
}

.reviews-title {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}

.reviews-title .reviews-accent,
.reviews-accent {
  background: linear-gradient(135deg, #f0e2b6 0%, var(--gold) 45%, #e8d5a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(201, 168, 76, 0.18));
}

.reviews-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Carousel shell (mobile default) ---- */
.reviews-carousel {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.reviews-viewport {
  overflow: hidden;
  border-radius: 22px;
}

.reviews-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.review-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 4px;
  box-sizing: border-box;
}

/* ---- Card (mirrors ap-card) ---- */
.review-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(8, 12, 22, 1);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(201, 168, 76, 0.04),
    inset 0 1px 0 rgba(201, 168, 76, 0.06);
  transition: border-color 0.35s ease, box-shadow 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .review-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow:
      0 8px 30px rgba(0, 0, 0, 0.45),
      0 30px 80px rgba(0, 0, 0, 0.35),
      0 0 50px rgba(201, 168, 76, 0.08);
  }
  .review-card:hover .review-media img {
    filter: brightness(1.05);
  }
}

/* ---- Media ---- */
.review-media {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0;
  margin-bottom: -1px;
  z-index: 1;
  background: #0a0f1a;
}

.review-photo-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.review-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform-origin: center center;
  transition: filter 0.4s ease;
}

/* Per-student focal tuning — no hover zoom, just intelligent crop.
   Nicole's photo is a tall portrait; keep her face near the top of
   the crop window so it never gets cut off. */
.review-slide[data-id="nicole"]  .review-media img { object-position: center top; }
.review-slide[data-id="mark"]    .review-media img { object-position: center 42%; }
.review-slide[data-id="tara"]    .review-media img { object-position: center 48%; }
.review-slide[data-id="michelle"].review-media img { object-position: center 40%; }
.review-slide[data-id="alisha"]      .review-media img { object-position: center 42%; }
.review-slide[data-id="jeannie"]     .review-media img { object-position: center 58%; }
.review-slide[data-id="tomas"]       .review-media img { object-position: center 52%; }
.review-slide[data-id="avery"]       .review-media img { object-position: center 42%; }
.review-slide[data-id="olya"]        .review-media img { object-position: center 45%; }
.review-slide[data-id="mucahit"]     .review-media img { object-position: center 46%; }
.review-slide[data-id="anastasiia"]  .review-media img { object-position: center 45%; }
.review-slide[data-id="jason"]       .review-media img { object-position: center 44%; }

.review-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(3, 6, 13, 0) 42%,
    rgba(8, 12, 22, 0.55) 78%,
    rgba(8, 12, 22, 0.95) 96%,
    rgba(8, 12, 22, 1) 100%
  );
}

.review-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--gold);
  background: rgba(8, 12, 22, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(201, 168, 76, 0.32);
  pointer-events: none;
}

/* ---- Content ---- */
.review-content {
  position: relative;
  z-index: 2;
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(8, 12, 22, 1);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.08);
}

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

.review-identity {
  min-width: 0;
}

.review-name {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
}

.review-detail {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
}

.review-stars {
  color: #fbbf24;
  font-size: 15px;
  letter-spacing: 2px;
  margin: -2px 0 2px;
}

.review-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  font-style: italic;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.review-card.is-expanded .review-text {
  display: block;
  -webkit-line-clamp: unset;
}

.review-card.is-expanded .review-more {
  color: #e8d5a0;
}

.review-more {
  align-self: flex-start;
  appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}

.review-more:hover,
.review-more:focus-visible {
  color: #e8d5a0;
  transform: translateX(3px);
  outline: none;
}

/* ---- Nav (carousel-only — hidden on desktop grid via media query) ---- */
.reviews-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(100%, 760px);
  margin: 32px auto 0;
}

.reviews-arrow {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1.5px solid rgba(201, 168, 76, 0.38);
  background: rgba(8, 12, 22, 0.85);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.3),
    0 0 22px rgba(201, 168, 76, 0.06),
    inset 0 1px 0 rgba(201, 168, 76, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.reviews-arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}

.reviews-arrow:hover,
.reviews-arrow:focus-visible {
  outline: none;
  transform: translateY(-2px);
  color: #f0e2b6;
  border-color: rgba(201, 168, 76, 0.7);
  background: rgba(201, 168, 76, 0.1);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 32px rgba(201, 168, 76, 0.14),
    inset 0 1px 0 rgba(201, 168, 76, 0.15);
}

.reviews-arrow:active {
  transform: translateY(0);
}

.reviews-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  flex-wrap: nowrap;
}

.reviews-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: width 0.3s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.reviews-dot:hover {
  background: rgba(255, 255, 255, 0.35);
}

.reviews-dot.is-active {
  width: 28px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.12);
}

@media (max-width: 767px) {
  .reviews-nav {
    width: min(100%, 420px);
    gap: 14px;
  }

  .reviews-dots {
    gap: 8px;
  }

  .reviews-dot {
    width: 8px;
    height: 8px;
  }

  .reviews-dot.is-active {
    width: 22px;
  }
}

/* ---- Review text modal (full review reader) ---- */

.review-modal-close:hover,
.review-modal-close:focus-visible {
  outline: none;
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.7);
  background: rgba(201, 168, 76, 0.12);
  transform: scale(1.05);
}

/* ---- Modal hero photo (required) ---- */
.review-modal-media {
  position: relative;
  margin: 0;
  width: 100%;
  height: 320px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0a0f1a;
}

.review-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Focal tuning mirrors the card — keep face visible */
.review-modal-media[data-id="nicole"]   img { object-position: center top; }
.review-modal-media[data-id="mark"]     img { object-position: center 42%; }
.review-modal-media[data-id="tara"]     img { object-position: center 48%; }
.review-modal-media[data-id="michelle"] img { object-position: center 40%; }

.review-modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(3, 6, 13, 0) 45%,
    rgba(8, 12, 22, 0.55) 80%,
    rgba(10, 16, 28, 0.95) 97%,
    rgba(10, 16, 28, 1) 100%
  );
}

.review-modal-media .review-modal-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  margin: 0;
}

.review-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--gold);
  background: rgba(8, 12, 22, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(201, 168, 76, 0.32);
}

/* ---- Modal body (scrollable if review is long) ---- */
.review-modal-body {
  position: relative;
  padding: 24px 32px 30px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}

.review-modal-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.review-modal-avatar {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.32);
  background: rgba(201, 168, 76, 0.08);
}

.review-modal-avatar.is-empty {
  display: none;
}

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

.review-modal-identity {
  min-width: 0;
}

.review-modal-name {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
}

.review-modal-detail {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
}

.review-modal-stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 2px;
  margin: 6px 0 18px;
}

.review-modal-text {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
  white-space: pre-line;
}

.review-modal-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}

.review-modal-link:hover,
.review-modal-link:focus-visible {
  outline: none;
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.65);
  color: #f0e2b6;
  transform: translateY(-1px);
}


@media (max-width: 640px) {
}

/* ---- Photo lightbox ---- */
.review-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 8, 18, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.review-lightbox.is-open {
  display: flex;
}

body.lightbox-open {
  overflow: hidden;
}

.review-lightbox-dialog {
  position: relative;
  width: min(92vw, 920px);
  max-height: 90vh;
}

.review-lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 17, 31, 0.92);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.review-lightbox-img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.review-lightbox-caption {
  margin-top: 12px;
  text-align: center;
  color: rgba(223, 248, 255, 0.84);
  font-size: 14px;
}

/* ---- CTA ---- */
.reviews-cta {
  text-align: center;
  margin-top: 46px;
}

.reviews-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 17px 42px;
  border-radius: 14px;
  border: 1.5px solid rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.06);
}

.reviews-cta a:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.7);
  color: #f0e2b6;
  box-shadow: 0 0 35px rgba(201, 168, 76, 0.14), 0 8px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* ---- Desktop: 3-visible carousel (mirrors .ap-grid spacing) ---- */
@media (min-width: 1024px) {
  .reviews-carousel {
    max-width: 1220px;
  }
  .reviews-viewport {
    overflow: hidden;
    border-radius: 0;
    /* compensate for per-slide padding so edges align with the header */
    margin: 0 -11px;
    padding: 4px 0 8px;
  }
  .review-slide {
    flex: 0 0 33.3333%;
    min-width: 33.3333%;
    padding: 0 11px;
  }
  .review-media {
    height: 240px;
  }
}

/* ---- Tablet / Mobile ---- */
@media (max-width: 1023px) {
  .review-media {
    height: 300px;
  }
}

@media (max-width: 768px) {
  #reviews {
    padding: 64px 14px 76px;
  }
  .reviews-header {
    margin-bottom: 36px;
  }
  .reviews-subtitle {
    font-size: 14px;
  }
  .reviews-carousel {
    max-width: 520px;
  }
  .review-media {
    height: 280px;
  }
  .review-content {
    padding: 20px 20px 24px;
    gap: 12px;
  }
  .review-name {
    font-size: 17px;
  }
  .review-text {
    font-size: 14px;
    -webkit-line-clamp: 5;
  }
  .reviews-arrow {
    width: 44px;
    height: 44px;
  }
  .reviews-cta {
    margin-top: 36px;
  }
  .reviews-cta a {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 14px;
  }
  .review-lightbox {
    padding: 16px;
  }
  .review-lightbox-close {
    top: -10px;
    right: -6px;
  }
}

@media (max-width: 480px) {
  .review-media {
    height: 260px;
  }
  .review-tag {
    top: 14px;
    left: 14px;
    font-size: 9px;
    padding: 5px 10px;
  }
}

/* =========================================================================
   SECTION: CHILLIWACK SHOWCASE (#chilliwack-showcase)
   The homepage's dedicated Chilliwack-first block. Visually-led,
   neighborhood-prominent, asymmetric card with photo + value props.
   Designed to carry the primary on-page local signal for
   "driving school chilliwack" without feeling like a text wall.
   ========================================================================= */

#chilliwack-showcase {
  position: relative;
  padding: 90px 20px 100px;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(0, 212, 255, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #03060d 0%, #060b18 50%, #04080f 100%);
  overflow: hidden;
}

#chilliwack-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(0, 212, 255, 0.35) 50%, transparent 95%);
}

#chilliwack-showcase::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(255, 255, 255, 0.05) 50%, transparent 95%);
}

.cs-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

/* --- Header --- */
.cs-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.32);
  background: rgba(0, 212, 255, 0.06);
  color: var(--r-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.cs-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--r-accent);
  box-shadow: 0 0 10px var(--r-accent);
  animation: cs-pulse 2s infinite;
}

@keyframes cs-pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

.cs-title {
  margin: 0 0 14px;
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
}

.cs-title .cs-accent {
  background: linear-gradient(135deg, #fff 40%, var(--r-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cs-subtitle {
  margin: 0;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.66);
}

/* --- Feature card (asymmetric 2-column) --- */
.cs-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(8, 12, 22, 0.92);
  border: 1px solid rgba(0, 212, 255, 0.14);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 212, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* --- Left: visual with photo + floating caption --- */
.cs-card-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.cs-card-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cs-card:hover .cs-card-visual img {
  transform: scale(1.04);
}

.cs-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 6, 13, 0) 40%, rgba(3, 6, 13, 0.65) 85%, rgba(3, 6, 13, 0.88) 100%),
    linear-gradient(90deg, rgba(3, 6, 13, 0) 60%, rgba(8, 12, 22, 0.35) 100%);
  pointer-events: none;
}

.cs-card-visual-foot {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs-visual-tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.14);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cs-visual-address {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.cs-visual-address strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 2px;
}

.cs-visual-address span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

/* --- Right: content (stats, neighborhoods, CTA) --- */
.cs-card-content {
  padding: 36px 38px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.cs-stat strong {
  display: block;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fff 20%, var(--r-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}

.cs-stat span {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
}

.cs-eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.cs-neighborhoods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.cs-neighborhoods li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.14);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cs-neighborhoods li:hover {
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-1px);
}

.cs-pin {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--r-accent);
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.cs-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cs-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--r-accent), #00a3cc);
  color: #000;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.cs-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 212, 255, 0.32);
  color: #000;
}

.cs-phone {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cs-phone:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

/* --- Secondary disclosure (demoted) --- */
.cs-disclosure {
  max-width: 900px;
  margin: 30px auto 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.42);
}

.cs-disclosure a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.18);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.cs-disclosure a:hover {
  color: var(--r-accent);
  text-decoration-color: var(--r-accent);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  #chilliwack-showcase {
    padding: 70px 16px 80px;
  }

  .cs-card {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .cs-card-visual,
  .cs-card-visual img {
    min-height: 280px;
  }

  .cs-card-content {
    padding: 28px 24px 28px;
  }

  .cs-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 22px;
  }

  .cs-stat {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
  }

  .cs-stat strong {
    font-size: 22px;
  }

  .cs-stat span {
    font-size: 13px;
  }

  .cs-neighborhoods {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .cs-neighborhoods li {
    padding: 9px 12px;
    font-size: 13px;
  }

  .cs-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cs-cta {
    justify-content: center;
    padding: 14px 20px;
  }

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

@media (max-width: 480px) {
  .cs-neighborhoods {
    grid-template-columns: 1fr;
  }

  .cs-card-visual-foot {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}
/* =========================================================================
   SECTION: MEET THE INSTRUCTOR (#meet-instructor)
   E-E-A-T: surface the named, credentialed human behind the business.
   ========================================================================= */

#meet-instructor {
  position: relative;
  padding: 90px 20px 100px;
  background: linear-gradient(180deg, #03060d 0%, #060b18 60%, #04080f 100%);
  overflow: hidden;
}

#meet-instructor::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 10%, rgba(201, 168, 76, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 90%, rgba(0, 212, 255, 0.04) 0%, transparent 45%);
  pointer-events: none;
}

.mi-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.mi-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.22);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(201, 168, 76, 0.08);
}

.mi-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.mi-media-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(8, 12, 22, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.mi-content {
  max-width: 560px;
}

.mi-kicker {
  display: inline-block;
  padding: 7px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.mi-title {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}

.mi-title .mi-accent {
  background: linear-gradient(135deg, #f0e2b6 0%, var(--gold) 45%, #e8d5a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mi-lede {
  font-size: 17px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 18px;
}

.mi-body {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 22px;
}

.mi-credentials {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
}

.mi-credentials li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.mi-credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
}

.mi-credentials li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.mi-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mi-btn-primary {
  padding: 14px 26px;
  border-radius: 12px;
  background: var(--gold);
  color: #1a1405;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mi-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.3);
  color: #000;
}

.mi-btn-ghost {
  padding: 14px 26px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mi-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

@media (max-width: 900px) {
  .mi-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .mi-media { max-width: 440px; margin: 0 auto; }
}

/* =========================================================================
   SECTION: RESOURCES / BLOG TEASER (#home-resources)
   Surfaces the three blog posts + link to /blog/ - internal linking that
   feeds authority back to the homepage for "driving school chilliwack".
   ========================================================================= */

#home-resources {
  position: relative;
  padding: 80px 20px 90px;
  background: linear-gradient(180deg, #04080f 0%, #060b18 50%, #03060d 100%);
}

#home-resources::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(255, 255, 255, 0.08) 50%, transparent 95%);
}

.hr-container {
  max-width: 1220px;
  margin: 0 auto;
}

.hr-header {
  text-align: center;
  margin-bottom: 44px;
}

.hr-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.28);
  background: rgba(0, 212, 255, 0.05);
  color: var(--r-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.hr-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}

.hr-title .hr-accent {
  background: linear-gradient(135deg, #fff 40%, var(--r-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hr-subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.hr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hr-card {
  display: flex;
  flex-direction: column;
  padding: 26px 24px 24px;
  border-radius: 18px;
  background: rgba(8, 12, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.hr-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.28);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.4),
    0 0 22px rgba(0, 212, 255, 0.08);
}

.hr-card-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--r-accent);
  margin-bottom: 12px;
}

.hr-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.hr-card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  flex: 1;
}

.hr-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--r-accent);
  transition: gap 0.2s ease, color 0.2s ease;
}

.hr-card:hover .hr-card-cta {
  gap: 10px;
  color: #fff;
}

.hr-footer {
  text-align: center;
  margin-top: 38px;
}

.hr-footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.hr-footer a:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 212, 255, 0.32);
  gap: 10px;
}

@media (max-width: 900px) {
  .hr-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   HOMEPAGE INLINE SECTION STYLES EXTRACTED FROM index.html - 20260507 cleanup
   ========================================================================= */
/* Shared dark-premium variables */
  :root {
    --rw-dark-bg: linear-gradient(180deg, #07090f 0%, #0a0e18 100%);
    --rw-card-bg: linear-gradient(180deg, rgba(16,20,32,0.92) 0%, rgba(10,14,24,0.96) 100%);
    --rw-card-border: 1px solid rgba(212, 175, 91, 0.16);
    --rw-card-border-hover: 1px solid rgba(212, 175, 91, 0.42);
    --rw-gold: #d4af5b;
    --rw-gold-soft: rgba(212, 175, 91, 0.78);
    --rw-text: rgba(236, 240, 248, 0.92);
    --rw-text-soft: rgba(196, 204, 218, 0.74);
    --rw-text-mute: rgba(170, 180, 198, 0.62);
  }

  /* Founder section */
  #meet-founder { background: var(--rw-dark-bg); padding: 90px 20px 60px; }
  #meet-founder .mf-container { max-width: 1200px; margin: 0 auto; display:grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 56px; align-items: center; }
  @media (max-width: 980px) { #meet-founder .mf-container { grid-template-columns: 1fr; gap: 40px; } }
  #meet-founder .mf-kicker { display:inline-block; padding:7px 16px; border-radius:999px; background: rgba(212, 175, 91, 0.06); border:1px solid rgba(212, 175, 91, 0.30); color: var(--rw-gold); font-size:11px; letter-spacing:0.22em; text-transform:uppercase; font-weight:600; }
  #meet-founder h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin: 18px 0 14px; color:#fff; line-height:1.18; letter-spacing:-0.01em; }
  #meet-founder h2 .accent { color: var(--rw-gold); }
  #meet-founder .mf-lede { font-size: 1.06rem; line-height: 1.72; color: var(--rw-text); margin: 0 0 16px; }
  #meet-founder .mf-body { line-height: 1.72; color: var(--rw-text-soft); margin: 0 0 18px; font-size: 0.98rem; }
  #meet-founder .mf-creds { list-style:none; padding:0; margin: 0 0 26px; border-top: 1px solid rgba(212, 175, 91, 0.14); border-bottom: 1px solid rgba(212, 175, 91, 0.14); padding: 16px 0; }
  #meet-founder .mf-creds li { position:relative; padding-left: 24px; margin-bottom: 10px; line-height: 1.55; color: var(--rw-text-soft); font-size:0.94rem; }
  #meet-founder .mf-creds li:last-child { margin-bottom: 0; }
  #meet-founder .mf-creds li::before { content:''; position:absolute; left:0; top:8px; width:10px; height:10px; border:1.5px solid var(--rw-gold); border-radius:50%; opacity:0.85; }
  #meet-founder .mf-actions { display:flex; gap:14px; flex-wrap:wrap; }
  #meet-founder .mf-btn-primary { display:inline-block; padding:14px 28px; background: linear-gradient(135deg, #c79a3e 0%, #d4af5b 50%, #b88a32 100%); color:#0a0d18; font-weight:700; border-radius:6px; text-decoration:none; letter-spacing:0.02em; transition: transform .2s ease, box-shadow .2s ease; box-shadow: 0 8px 22px rgba(212,175,91,0.25); }
  #meet-founder .mf-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212,175,91,0.40); }
  #meet-founder .mf-btn-ghost { display:inline-block; padding:14px 28px; background: transparent; color: var(--rw-text); border:1px solid rgba(236,240,248,0.20); border-radius:6px; text-decoration:none; transition: border-color .2s ease, color .2s ease; }
  #meet-founder .mf-btn-ghost:hover { border-color: var(--rw-gold); color: var(--rw-gold); }
  /* Carousel */
  .mf-carousel { position:relative; border-radius:14px; overflow:hidden; background:#000; box-shadow: 0 24px 60px rgba(0,0,0,0.55); border: 1px solid rgba(212,175,91,0.18); }
  .mf-track { display:flex; transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1); }
  .mf-slide { flex: 0 0 100%; aspect-ratio: 4/3; background:#000; }
  .mf-slide img { width:100%; height:100%; object-fit:cover; display:block; }
  .mf-arrows { position:absolute; inset:0; display:flex; align-items:center; justify-content:space-between; pointer-events:none; }
  .mf-arrow { pointer-events:auto; width:44px; height:44px; border-radius:50%; background: rgba(8,11,20,0.78); color: var(--rw-gold); border:1px solid rgba(212,175,91,0.32); cursor:pointer; display:flex; align-items:center; justify-content:center; margin: 0 14px; backdrop-filter: blur(10px); transition: background .2s ease, border-color .2s ease; }
  .mf-arrow:hover { background: rgba(212,175,91,0.85); color:#0a0d18; border-color: var(--rw-gold); }
  .mf-dots { position:absolute; left:0; right:0; bottom:14px; display:flex; gap:8px; justify-content:center; }
  .mf-dot { width:7px; height:7px; border-radius:50%; background: rgba(255,255,255,0.32); border:none; cursor:pointer; transition: all .2s ease; padding:0; }
  .mf-dot.is-active { background: var(--rw-gold); transform: scale(1.4); }
  .mf-tag { position:absolute; left:16px; top:16px; padding: 7px 14px; background: rgba(8,11,20,0.85); color: #fff; font-size: 11px; border-radius: 999px; backdrop-filter: blur(10px); letter-spacing: 0.10em; border:1px solid rgba(212,175,91,0.22); text-transform: uppercase; font-weight: 500; }

  /* Journey */
  #instructor-journey { background: var(--rw-dark-bg); padding: 70px 20px 70px; position: relative; }
  #instructor-journey::before { content:''; position:absolute; top:0; left:50%; transform: translateX(-50%); width: 200px; height: 1px; background: linear-gradient(90deg, transparent 0%, var(--rw-gold-soft) 50%, transparent 100%); opacity: 0.5; }
  #instructor-journey .ij-container { max-width: 1240px; margin: 0 auto; }
  #instructor-journey .ij-header { text-align: center; margin-bottom: 50px; }
  #instructor-journey .ij-eyebrow { display:inline-block; padding:7px 16px; border-radius:999px; background: rgba(212, 175, 91, 0.06); border:1px solid rgba(212, 175, 91, 0.30); color: var(--rw-gold); font-size:11px; letter-spacing:0.22em; text-transform:uppercase; font-weight:600; }
  #instructor-journey .ij-title { font-size: clamp(1.9rem, 3vw, 2.5rem); margin: 18px 0 14px; color:#fff; letter-spacing:-0.01em; }
  #instructor-journey .ij-title .accent { color: var(--rw-gold); }
  #instructor-journey .ij-sub { color: var(--rw-text-soft); max-width: 760px; margin: 0 auto; line-height: 1.65; font-size: 1rem; }
  #instructor-journey .ij-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 8px; }
  @media (max-width: 1080px) { #instructor-journey .ij-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { #instructor-journey .ij-grid { grid-template-columns: 1fr; } }
  #instructor-journey .ij-card { background: var(--rw-card-bg); border: var(--rw-card-border); border-radius:14px; overflow:hidden; display:flex; flex-direction:column; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
  #instructor-journey .ij-card:hover { transform: translateY(-6px); border: var(--rw-card-border-hover); box-shadow: 0 18px 42px rgba(0,0,0,0.45); }
  #instructor-journey .ij-img-wrap { aspect-ratio: 4/5; overflow:hidden; background:#000; position: relative; }
  #instructor-journey .ij-img-wrap img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1); filter: contrast(1.02) brightness(0.95); }
  #instructor-journey .ij-card:hover .ij-img-wrap img { transform: scale(1.06); filter: contrast(1.05) brightness(1.02); }
  #instructor-journey .ij-img-wrap::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 50%, rgba(7,9,15,0.75) 100%); pointer-events:none; }
  #instructor-journey .ij-body { padding: 20px 22px 24px; }
  #instructor-journey .ij-step { display:inline-block; font-size: 10px; font-weight:700; letter-spacing:0.22em; text-transform:uppercase; color: var(--rw-gold); margin-bottom: 10px; padding: 4px 10px; border:1px solid rgba(212,175,91,0.25); border-radius:4px; }
  #instructor-journey .ij-card h3 { font-size: 1.05rem; margin: 0 0 10px; color:#fff; line-height:1.32; letter-spacing:-0.005em; }
  #instructor-journey .ij-card p { font-size: 0.92rem; line-height: 1.6; color: var(--rw-text-soft); margin:0; }
  #instructor-journey .ij-card .lead-tag { color: var(--rw-gold-soft); font-weight:600; font-size:0.78rem; margin: 0 0 8px; letter-spacing:0.06em; display:block; }

  /* Credentials */
  #verified-credentials { background: var(--rw-dark-bg); padding: 50px 20px 90px; }
  #verified-credentials .vc-container { max-width: 1100px; margin: 0 auto; }
  #verified-credentials .vc-header { text-align:center; margin-bottom: 40px; }
  #verified-credentials .vc-eyebrow { display:inline-block; padding:7px 16px; border-radius:999px; background: rgba(212, 175, 91, 0.06); border:1px solid rgba(212, 175, 91, 0.30); color: var(--rw-gold); font-size:11px; letter-spacing:0.22em; text-transform:uppercase; font-weight:600; }
  #verified-credentials h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin: 16px 0 10px; color:#fff; letter-spacing:-0.01em; }
  #verified-credentials .vc-sub { color: var(--rw-text-soft); max-width: 760px; margin: 0 auto; line-height: 1.62; font-size:0.98rem; }
  #verified-credentials .vc-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 8px; }
  @media (max-width: 880px) { #verified-credentials .vc-grid { grid-template-columns: 1fr; } }
  #verified-credentials .vc-card { background: var(--rw-card-bg); border: var(--rw-card-border); border-radius:12px; padding: 20px; box-shadow: 0 16px 44px rgba(0,0,0,0.5); margin: 0; transition: border-color .25s ease, transform .25s ease; }
  #verified-credentials .vc-card:hover { border: var(--rw-card-border-hover); transform: translateY(-3px); }
  #verified-credentials .vc-img-trigger { display:block; cursor: zoom-in; overflow: hidden; border-radius: 8px; box-shadow: 0 8px 22px rgba(0,0,0,0.5); position: relative; background:#fff; padding: 0; border: none; width: 100%; }
  #verified-credentials .vc-img-trigger img { width:100%; height:auto; display:block; transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1); }
  #verified-credentials .vc-img-trigger:hover img { transform: scale(1.04); }
  #verified-credentials .vc-img-trigger::after { content: '⤢'; position: absolute; right: 10px; bottom: 10px; width: 32px; height: 32px; border-radius: 50%; background: rgba(8,11,20,0.75); color: var(--rw-gold); display: flex; align-items: center; justify-content: center; font-size: 16px; opacity: 0; transition: opacity .2s ease; backdrop-filter: blur(6px); }
  #verified-credentials .vc-img-trigger:hover::after { opacity: 1; }
  #verified-credentials .vc-meta { display:flex; flex-direction:column; gap:5px; padding: 18px 4px 4px; color:#fff; }
  #verified-credentials .vc-meta strong { font-size: 1rem; color:#fff; letter-spacing:-0.005em; }
  #verified-credentials .vc-meta span { font-size: 0.86rem; color: var(--rw-text-mute); }
  #verified-credentials .vc-icbc-cta { margin-top: 36px; padding: 36px 28px; border-radius: 14px; background: linear-gradient(180deg, rgba(20,26,42,0.95) 0%, rgba(10,14,24,0.96) 100%); border: 1px solid rgba(212,175,91,0.28); text-align: center; box-shadow: inset 0 1px 0 rgba(212,175,91,0.10), 0 16px 44px rgba(0,0,0,0.45); }
  #verified-credentials .vc-icbc-eyebrow { display:inline-block; padding:6px 14px; border-radius:999px; background: rgba(212,175,91,0.06); border:1px solid rgba(212,175,91,0.30); color: var(--rw-gold); font-size:10px; letter-spacing:0.24em; text-transform:uppercase; font-weight:700; margin: 0 0 14px; }
  #verified-credentials .vc-icbc-title { font-size: clamp(1.15rem, 2vw, 1.5rem); margin: 0 0 12px; color:#fff; letter-spacing:-0.005em; line-height:1.32; }
  #verified-credentials .vc-icbc-sub { color: var(--rw-text-soft); margin: 0 auto 22px; max-width: 640px; line-height: 1.6; font-size: 0.96rem; }
  #verified-credentials .vc-icbc-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: linear-gradient(135deg, #c79a3e 0%, #d4af5b 50%, #b88a32 100%); color: #0a0d18; font-weight: 700; border-radius: 6px; text-decoration: none; letter-spacing: 0.02em; box-shadow: 0 8px 22px rgba(212,175,91,0.30); transition: transform .2s ease, box-shadow .2s ease; }
  #verified-credentials .vc-icbc-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212,175,91,0.45); }
  #verified-credentials .vc-icbc-hint { color: var(--rw-text-mute); font-size: 0.84rem; margin: 14px 0 0; }
  #verified-credentials .vc-foot { text-align:center; color: var(--rw-text-mute); font-size:0.85rem; margin-top: 24px; letter-spacing:0.04em; }

  /* Lightbox */
  .vc-lightbox { position: fixed; inset: 0; background: rgba(4,6,12,0.94); z-index: 99999; display: none; align-items: center; justify-content: center; padding: 4vh 4vw; backdrop-filter: blur(6px); }
  .vc-lightbox.is-open { display: flex; }
  .vc-lightbox img { max-width: 92vw; max-height: 88vh; width: auto; height: auto; border-radius: 8px; box-shadow: 0 24px 60px rgba(0,0,0,0.7); }
  .vc-lightbox-close { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: rgba(20,24,38,0.85); color: var(--rw-gold); border: 1px solid rgba(212,175,91,0.32); font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
  .vc-lightbox-close:hover { background: var(--rw-gold); color: #0a0d18; }


/* AI booking chat button / lazy-loader states - 20260507lazychat2 */
.btn-ai-chat {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-color: rgba(0, 212, 255, 0.52) !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(125, 247, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(12, 18, 32, 0.95) 54%, rgba(0, 163, 204, 0.16) 100%) !important;
  box-shadow:
    0 0 0 1px rgba(0, 212, 255, 0.10),
    0 16px 42px rgba(0, 212, 255, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-ai-chat::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: inherit;
  background: conic-gradient(
    from var(--pf-cta-angle, 0deg),
    transparent 0deg,
    transparent 42deg,
    rgba(0, 212, 255, 0.85) 70deg,
    rgba(125, 247, 255, 0.70) 96deg,
    transparent 124deg,
    transparent 250deg,
    rgba(0, 212, 255, 0.36) 282deg,
    transparent 314deg,
    transparent 360deg
  );
  opacity: 0.75;
  animation: pf-spin-border 6.5s linear infinite;
}

.btn-ai-chat::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: calc(14px - 1px);
  background:
    radial-gradient(circle at 76% 18%, rgba(0, 212, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(15, 22, 38, 0.98), rgba(6, 11, 20, 0.96));
}

.btn-ai-chat span {
  position: relative;
  z-index: 2;
  display: block;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.btn-ai-chat small {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(185, 245, 255, 0.78);
  text-transform: uppercase;
}

.btn-ai-chat:hover,
.btn-ai-chat:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(125, 247, 255, 0.76) !important;
  box-shadow:
    0 0 0 1px rgba(0, 212, 255, 0.16),
    0 18px 50px rgba(0, 212, 255, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.btn-ai-chat.is-loading {
  pointer-events: none;
  min-height: 64px;
}

.btn-ai-chat.is-loading span,
.btn-ai-chat.is-loading small {
  display: none;
}

.chat-button-spinner {
  position: relative;
  z-index: 2;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.24);
  border-top-color: var(--r-accent);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.45);
  animation: row-chat-spin 0.78s linear infinite;
}

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

.r-micro-text {
  color: rgba(172, 238, 255, 0.74);
  letter-spacing: 0.01em;
}

@media (prefers-reduced-motion: reduce) {
  .btn-ai-chat::before,
  .chat-button-spinner {
    animation: none !important;
  }
}

.cs-phone[type="button"] {
  cursor: pointer;
  background: transparent;
  padding: 0;
  font-family: inherit;
}

.fcta-actions button {
  font-family: inherit;
  cursor: pointer;
}

@media (max-width: 500px) {
  .fcta-actions a,
  .fcta-actions button {
    width: 100%;
  }
}

/* AI booking chat polish + iframe lazy boot - 20260507lazychat3 */
.btn-ai-chat {
  min-height: 64px;
  color: #fff !important;
  border: 1.5px solid rgba(125, 247, 255, 0.82) !important;
  background:
    radial-gradient(circle at 16% 0%, rgba(125, 247, 255, 0.36), transparent 34%),
    radial-gradient(circle at 88% 100%, rgba(0, 212, 255, 0.26), transparent 38%),
    linear-gradient(135deg, rgba(0, 212, 255, 0.22) 0%, rgba(12, 18, 32, 0.98) 48%, rgba(0, 163, 204, 0.30) 100%) !important;
  box-shadow:
    0 0 0 1px rgba(125, 247, 255, 0.22),
    0 18px 46px rgba(0, 212, 255, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -18px 34px rgba(0, 212, 255, 0.08);
}

.btn-ai-chat::before {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.55));
}

.btn-ai-chat::after {
  inset: 2px;
  border-radius: calc(14px - 2px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.06), transparent 34%),
    radial-gradient(circle at 78% 16%, rgba(125, 247, 255, 0.20), transparent 36%),
    linear-gradient(135deg, rgba(17, 27, 46, 0.96), rgba(6, 11, 20, 0.93));
}

.btn-ai-chat span {
  text-shadow: 0 0 18px rgba(125, 247, 255, 0.20);
}

.btn-ai-chat:hover,
.btn-ai-chat:focus-visible {
  border-color: rgba(185, 250, 255, 0.96) !important;
  box-shadow:
    0 0 0 1px rgba(125, 247, 255, 0.34),
    0 22px 58px rgba(0, 212, 255, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    inset 0 -18px 34px rgba(0, 212, 255, 0.10);
}

.r-micro-text {
  margin-top: 12px;
  color: rgba(190, 245, 255, 0.76);
  font-size: 0.86rem;
  font-style: italic;
}

.row-ai-chat-frame {
  position: fixed;
  z-index: 100000;
  right: 12px;
  bottom: 12px;
  border: 0;
  background: transparent;
  color-scheme: normal;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, width 0.22s ease, height 0.22s ease;
}

.row-ai-chat-frame.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.row-ai-chat-frame.is-compact {
  width: 120px;
  height: 120px;
}

.row-ai-chat-frame.is-expanded {
  width: min(430px, calc(100vw - 24px));
  height: min(720px, calc(100dvh - 24px));
}

@media (max-width: 768px) {
  .row-ai-chat-frame.is-compact {
    width: 116px;
    height: 116px;
    right: 8px;
    bottom: 8px;
  }

  .row-ai-chat-frame.is-expanded {
    width: 100vw;
    height: 100dvh;
    right: 0;
    bottom: 0;
  }
}

/* AI booking button edge-light refinement - 20260507lazychat4
   Matches the Unfair Advantage / Legal Cheat Code logic: the button itself
   stays dark and clean; only a moving slice of the border lights up. */
.btn-ai-chat {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 64px;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background: rgba(8, 13, 25, 0.94) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 14px 32px rgba(0, 0, 0, 0.26) !important;
}

.btn-ai-chat::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: inherit;
  background: conic-gradient(
    from var(--pf-cta-angle, 0deg),
    transparent 0deg,
    transparent 42deg,
    rgba(0, 212, 255, 0.96) 64deg,
    rgba(125, 247, 255, 0.96) 86deg,
    transparent 112deg,
    transparent 245deg,
    rgba(0, 212, 255, 0.42) 268deg,
    transparent 292deg,
    transparent 360deg
  );
  opacity: 0.96;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.42));
  animation: pf-spin-border 5.8s linear infinite;
}

.btn-ai-chat::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: calc(14px - 2px);
  background:
    radial-gradient(circle at 68% 18%, rgba(0, 212, 255, 0.09), transparent 35%),
    linear-gradient(135deg, rgba(18, 24, 40, 0.98), rgba(7, 11, 21, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-ai-chat span {
  position: relative;
  z-index: 2;
  text-shadow: none;
}

.btn-ai-chat:hover,
.btn-ai-chat:focus-visible {
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: rgba(10, 17, 31, 0.96) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 16px 38px rgba(0, 0, 0, 0.30) !important;
}

.btn-ai-chat:hover::before,
.btn-ai-chat:focus-visible::before {
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.58));
}

@media (prefers-reduced-motion: reduce) {
  .btn-ai-chat::before {
    animation: none !important;
  }
}


.row-ai-chat-frame.is-booting {
  opacity: 0;
  pointer-events: none;
}

/* AI booking chat viewport containment - 20260507lazychat7
   Keep the working fix4 iframe boot, but do not shrink the iframe itself.
   The live SimplyBook panel is scaled/centered inside the iframe by JS,
   so the widget is smaller without clipping its own content. */
.row-ai-chat-frame.is-expanded {
  left: 0 !important;
  top: 0 !important;
  right: auto !important;
  bottom: auto !important;
  width: 100vw !important;
  height: 100dvh !important;
  max-width: none !important;
  max-height: none !important;
  transform: none !important;
  background: transparent !important;
}

.row-ai-chat-frame.is-compact {
  left: auto !important;
  top: auto !important;
  right: 12px !important;
  bottom: 12px !important;
  width: 120px !important;
  height: 120px !important;
  transform: none !important;
}

@media (max-width: 768px) {
  .row-ai-chat-frame.is-compact {
    right: 8px !important;
    bottom: 8px !important;
    width: 116px !important;
    height: 116px !important;
  }
}


/* AI booking chat final launcher behavior - 20260507lazychat8
   Hide the native SimplyBook bubble after the panel closes. The homepage CTA
   is the only visible launcher. Also make loading spinner unmistakable. */
.row-ai-chat-frame.is-compact {
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
  right: 0 !important;
  bottom: 0 !important;
}

.btn-ai-chat.is-loading {
  color: transparent !important;
  cursor: wait;
}

.btn-ai-chat.is-loading > *:not(.chat-button-spinner) {
  display: none !important;
}

.btn-ai-chat.is-loading .chat-button-spinner {
  display: block !important;
  margin: 0 auto;
}
