/* ============================================================
   PARADISE SPAS AND OUTDOOR LIVING — style.css
   Pure Soak Design System — Adapted Brand Colors
   Primary: #0d4cae | Darker Navy: #0a3a84 | Amber: #F0A500
   ============================================================ */

/* ADAPTED COLOR SYSTEM — Paradise Spas and Outdoor Living */
:root {
  --page-bg: #FFFFFF;
  --section-alt: #F7F4EF;
  --dark-section: #0d4cae;
  --darker-navy: #0a3a84;
  --text-primary: #0d4cae;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --text-light: #F5F0E8;
  --amber: #F0A500;
  --btn-primary-bg: #F0A500;
  --btn-primary-text: #0d4cae;
  --divider: #E8E4DC;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--page-bg);
}

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

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

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

h3 { font-weight: 700; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 40px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: #d4920a; transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--dark-section);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid var(--dark-section);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--dark-section); color: #fff; }

.btn-secondary-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.2s;
  margin-top: 12px;
}
.btn-secondary-outline:hover { border-color: #fff; }

.btn-card {
  display: block;
  width: 100%;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
  margin-top: 12px;
}
.btn-card:hover { background: #d4920a; }

.btn-phone {
  display: inline-block;
  background: var(--amber);
  color: var(--dark-section);
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 6px;
  margin-bottom: 12px;
  transition: background 0.2s;
}
.btn-phone:hover { background: #d4920a; }

/* ============================================================
   PHONE BADGE COMPONENT
   ============================================================ */
.phone-badge-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 12px;
}

.phone-badge-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--amber);
  color: var(--dark-section);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 20px;
  flex-shrink: 0;
  white-space: nowrap;
}

.phone-badge-pill svg {
  flex-shrink: 0;
}

.phone-badge-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--amber);
  white-space: nowrap;
}

.phone-badge-wrap:hover .phone-badge-number {
  color: #d4920a;
}

/* Footer variant — explicit color resets to override site-footer cascade */
.footer-phone-badge.phone-badge-wrap {
  color: var(--amber);
}
.footer-phone-badge .phone-badge-pill {
  color: var(--dark-section);
  background: var(--amber);
}
.footer-phone-badge .phone-badge-number {
  color: var(--amber);
}

/* Nav variant — inline in nav bar, no bottom margin */
.nav-phone-badge {
  margin-bottom: 0;
  align-items: center;
}

.nav-phone-badge .phone-badge-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--amber);
}

/* Mobile menu variant */
.mobile-phone-badge {
  margin-bottom: 0;
  padding: 4px 0;
}

.mobile-phone-badge .phone-badge-number {
  font-size: 18px;
  color: var(--amber);
}

.btn-coupon {
  background: var(--amber);
  color: var(--dark-section);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-coupon:hover { background: #d4920a; }

.btn-coupon-lg {
  display: inline-block;
  background: var(--dark-section);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-coupon-lg:hover { background: var(--darker-navy); transform: translateY(-1px); }

/* Scoped to CLAIM MY COUPON only — white fill on amber section bg */
.btn-coupon-claim {
  display: inline-block;
  background: #fff;
  color: var(--dark-section);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  z-index: 21;
}
.btn-coupon-claim:hover { background: #f0ece4; transform: translateY(-1px); }

.btn-financing {
  display: inline-block;
  background: var(--amber);
  color: var(--dark-section);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 6px;
  margin: 24px 0 16px;
  transition: background 0.2s;
}
.btn-financing:hover { background: #d4920a; }

/* ============================================================
   [1] ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--dark-section);
  color: #FFFFFF;
  text-align: center;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
}

/* ============================================================
   [2] NAV BAR
   ============================================================ */
.navbar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 16px;
}

.nav-logo {
  flex-shrink: 0;
  line-height: 0;
}

.nav-logo img {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

nav.navbar .nav-call-cta {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--amber);
  color: var(--dark-section);
  border: 2px solid var(--amber);
  border-radius: 4px;
  min-height: 40px;
  padding: 0 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(13, 76, 174, 0.12);
}

nav.navbar .nav-call-cta svg {
  flex-shrink: 0;
}

nav.navbar .nav-call-cta:hover {
  background: #d4920a;
  color: var(--dark-section);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  margin: 0 12px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  letter-spacing: 0;
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--dark-section);
  border-bottom-color: var(--amber);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  color: var(--amber);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--divider);
  padding: 16px 24px;
  gap: 12px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--divider);
}
.nav-mobile-menu a.mobile-phone { color: var(--amber); font-size: 18px; font-weight: 700; }
.nav-mobile-menu .btn-coupon { text-align: center; border-radius: 6px; }

/* ============================================================
   [3] HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.hero-left {
  padding: 64px 48px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--page-bg);
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.hero-headline {
  font-size: clamp(30px, 4vw, 48px);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  max-width: 480px;
}

.hero-financing {
  font-size: 16px;
  font-weight: 700;
  color: var(--amber);
  background: rgba(240,165,0,0.1);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.hero-areas {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

/* ============================================================
   [4] TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--darker-navy);
  border-top: 3px solid var(--amber);
  padding: 32px 24px;
}

.trust-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-stat {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1.1;
  white-space: nowrap;
}

.trust-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   [5] PRODUCT SLIDER
   ============================================================ */
.products-section {
  background: var(--page-bg);
  padding: 80px 0;
}

.products-section .section-sub { margin-bottom: 32px; }

.product-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  flex: 1;
}
.product-slider::-webkit-scrollbar { display: none; }

.slider-btn {
  background: var(--dark-section);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.slider-btn:hover { background: var(--darker-navy); }

.product-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.product-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); }

.product-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.product-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--darker-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-style: italic;
  text-align: center;
  padding: 16px;
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--amber);
  color: var(--dark-section);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}
.product-tag-blue { background: var(--dark-section); color: #fff; }
.product-tag-dark { background: var(--darker-navy); color: #fff; }

.product-body { padding: 20px; }

.product-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.product-benefit {
  font-size: 12px;
  color: var(--dark-section);
  font-style: italic;
  margin: 4px 0 8px;
  line-height: 1.4;
}

.product-specs {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.product-monthly {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #000000;
}

.product-msrp {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.stars { color: var(--amber); font-size: 15px; }
.review-count { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   [6] REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--section-alt);
  padding: 80px 0;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.reviewer-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.reviewer-info strong { font-size: 15px; color: var(--text-primary); }
.review-date { font-size: 12px; color: var(--text-muted); }

.google-g { margin-left: auto; }

.review-stars { color: var(--amber); font-size: 16px; margin-bottom: 10px; }

.review-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.reviews-aggregate {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.agg-stars { color: var(--amber); font-size: 22px; }
.agg-text { font-size: 16px; font-weight: 600; color: var(--text-primary); }

/* ============================================================
   [7] LIFESTYLE TILES
   ============================================================ */
.lifestyle-section {
  background: #FFFFFF;
  padding: 80px 0;
}

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

.lifestyle-tile { display: block; border-radius: 12px; overflow: hidden; }

.lifestyle-tile-img {
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px 16px;
  transition: transform 0.3s;
}
.lifestyle-tile:hover .lifestyle-tile-img { transform: scale(1.02); }

.lifestyle-tile-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  display: block;
  margin-bottom: 4px;
}

.lifestyle-tile-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  text-align: center;
  display: block;
}

/* ============================================================
   [8] COMPARISON TABLE
   ============================================================ */
.comparison-section {
  background: var(--section-alt);
  padding: 80px 0;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--divider);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.comparison-table thead tr {
  background: transparent;
}

.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #fff;
}

.col-feature {
  background: transparent;
  color: transparent;
}

.col-us {
  background: var(--amber);
  color: #fff;
}

.col-them {
  background: var(--dark-section);
  color: #fff;
}

/* col-us and col-them header fills defined in thead block above */

.comparison-table tbody tr:nth-child(even) { background: rgba(0,0,0,0.03); }

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--divider);
  color: var(--text-secondary);
}

.comparison-table td.feature-label {
  font-weight: 700;
  color: var(--dark-section);
}

.comparison-table td.yes { color: #16a34a; font-weight: 600; }
.comparison-table td.no { color: #6b7280; }

/* ============================================================
   [9] PROMISE SECTION
   ============================================================ */
.promise-section {
  background: #FFFFFF;
  border-top: 3px solid var(--amber);
  border-bottom: 3px solid var(--amber);
  padding: 80px 0;
}

.promise-layout {
  display: flex;
  align-items: center;
  gap: 48px;
}

.badge-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--dark-section);
  border: 2px solid var(--amber);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-years {
  color: var(--amber);
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
}

.badge-years-label {
  color: var(--amber);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}

.badge-icon {
  color: var(--amber);
  font-size: 20px;
  margin: 4px 0;
}

.badge-bottom {
  color: rgba(255,255,255,0.8);
  font-size: 10px;
  letter-spacing: 2px;
}

.promise-badge-img {
  width: 220px;
  max-width: 34vw;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.promise-text { flex: 1; }

.promise-heading {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 16px;
}

.promise-body {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  max-width: 600px;
}

.promise-guarantee {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 28px;
}

/* ============================================================
   [10] FINANCING SECTION — Photo + dark overlay
   ============================================================ */
.financing-section {
  background: var(--dark-section);
}

.financing-overlay {
  padding: 100px 24px;
}

.financing-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.financing-eyebrow {
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.financing-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.financing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

.financing-disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
}

/* ============================================================
   [11] BENEFITS / WHY FAMILIES CHOOSE US
   ============================================================ */
.benefits-section {
  background: #FFFFFF;
  padding: 80px 0;
}

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

.benefit-card {
  padding: 28px;
  border: 1px solid var(--divider);
  border-radius: 12px;
  transition: box-shadow 0.2s;
}
.benefit-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.benefit-icon {
  margin-bottom: 14px;
  color: var(--dark-section);
  display: block;
  line-height: 1;
}

.benefit-card h3 {
  font-size: 17px;
  color: var(--amber);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.benefit-card p {
  font-size: 15px;
  color: var(--text-secondary);
}

.benefits-mobile-copy {
  display: none;
}

.benefits-mobile-copy p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.benefits-mobile-copy p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   [12] SHOWROOM / TRY IT
   ============================================================ */
.showroom-section {
  background: var(--dark-section);
}

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

.showroom-left,
.showroom-right {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showroom-right {
  border-left: 1px solid rgba(255,255,255,0.1);
  justify-content: space-between;
}

.showroom-left {
  justify-content: space-between;
}

.showroom-img-placeholder,
.manager-photo-placeholder {
  width: 100%;
  height: 240px;
  background: var(--darker-navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  font-style: italic;
  text-align: center;
  padding: 16px;
}

.showroom-interior-photo,
.showroom-staff-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.showroom-text h2 {
  font-size: clamp(22px, 3vw, 32px);
  color: #fff;
  margin-bottom: 12px;
}

.showroom-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}

.showroom-text .btn-primary {
  margin-top: 24px;
}

.showroom-address {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ============================================================
   [13] INTENT TILES
   ============================================================ */
.intent-section {
  background: var(--section-alt);
  padding: 80px 0;
}

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

.intent-tile {
  background: #fff;
  border: 2px solid var(--divider);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  display: block;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.2s;
}
.intent-tile:hover {
  border-color: var(--amber);
  background: #fffdf5;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

.intent-learn-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.intent-tile:hover .intent-learn-more {
  color: var(--dark-section);
}

.intent-icon {
  margin-bottom: 14px;
  color: var(--dark-section);
  display: block;
  line-height: 1;
}

.intent-tile h3 {
  font-size: 16px;
  color: var(--amber);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.intent-tile p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================================
   [14] 3-STEP PROCESS
   ============================================================ */
.process-section {
  background: var(--section-alt);
  padding: 80px 0;
  border-top: 1px solid var(--divider);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.process-step {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border-radius: 12px;
  border-top: 4px solid var(--amber);
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}

.process-step h3 {
  font-size: 16px;
  color: var(--text-primary);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  color: var(--text-secondary);
}

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

/* ============================================================
   [15] FAQ
   ============================================================ */
.faq-section {
  background: var(--section-alt);
  padding: 80px 0;
  border-top: 1px solid var(--divider);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--divider);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-q[aria-expanded="true"]::after {
  content: '−';
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   [16] COUPON BANNER
   ============================================================ */
.coupon-section {
  background: var(--amber);
  padding: 48px 24px;
  position: relative;
  z-index: 20;
}

.coupon-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.coupon-image {
  display: block;
  width: 200px;
  max-width: 34vw;
  height: auto;
  flex-shrink: 0;
}

.coupon-text {
  flex: 1;
  min-width: 220px;
}

.coupon-headline {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--dark-section);
  margin-bottom: 6px;
}

.coupon-fine {
  font-size: 15px;
  color: rgba(13,76,174,0.75);
}

/* ============================================================
   [17] FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-section);
  color: rgba(255,255,255,0.75);
  padding: 64px 24px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  margin-bottom: 16px;
  width: 160px;
  height: auto;
  display: block;
}

.footer-blurb {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--amber); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber); }

.footer-showroom p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-phone {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 12px;
}

.footer-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-email {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-email:hover { color: var(--amber); }

.footer-map {
  display: block;
  margin-top: 18px;
  max-width: 340px;
  border: 2px solid rgba(240,165,0,0.55);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   FINANCING PAGE
   ============================================================ */
.financing-page-section {
  background: var(--page-bg);
  padding: 80px 24px;
}

.financing-page-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.financing-inline-form {
  text-align: left;
  background: #fff;
  border: 1px solid rgba(13, 76, 174, 0.08);
  border-radius: 12px;
  padding: 24px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(13, 76, 174, 0.08);
}

.financing-form-heading {
  font-size: 24px;
  color: var(--text-primary);
  margin: 0 0 8px;
  text-align: center;
}

.financing-form-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0 0 20px;
  text-align: center;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-section {
  background: var(--page-bg);
  padding: 80px 24px;
}

.contact-page-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-page-h1 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-page-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-detail-block {
  margin-bottom: 24px;
}

.contact-detail-block h2 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-phone-link {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-section);
  margin-bottom: 4px;
}

.contact-hours-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-map-embed iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 10px;
}

.contact-page-form {
  background: #fff;
  border: 1px solid rgba(13, 76, 174, 0.08);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(13, 76, 174, 0.08);
}

.contact-page-form h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-form-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

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

.financing-page-h1 {
  font-size: clamp(30px, 5vw, 48px);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.financing-page-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.financing-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.fin-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 16px;
  background: var(--section-alt);
  border-radius: 10px;
}

.fin-trust-icon { font-size: 28px; }

.fin-trust-item strong {
  font-size: 15px;
  color: var(--text-primary);
}

.fin-trust-item span {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.btn-financing-page {
  display: inline-block;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 6px;
  margin: 24px 0 16px;
  transition: background 0.2s;
}
.btn-financing-page:hover { background: #d4920a; }

.financing-page-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.financing-partners { margin-top: 32px; }

.partners-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.partners-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.partner-logo-placeholder {
  width: 160px;
  height: 60px;
  background: var(--section-alt);
  border: 1px solid var(--divider);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

.partner-logo-card {
  min-width: 160px;
  height: 60px;
  padding: 0 20px;
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--dark-section);
  text-transform: uppercase;
}

/* GHL pricing modal — preload form while hidden (avoid display:none on iframe) */
.ghl-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.ghl-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ghl-modal-panel {
  background: #fff;
  max-width: 520px;
  width: 100%;
  border-radius: 12px;
  padding: 32px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(8px) scale(0.98);
  transition: transform 0.18s ease;
}

.ghl-overlay:not(.is-open) .ghl-modal-panel {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-120vh);
  visibility: hidden;
  pointer-events: none;
}

.ghl-overlay:not(.is-open) .ghl-form-iframe,
.ghl-overlay:not(.is-open) iframe,
.ghl-overlay:not(.is-open) [id$="-form-wrapper"],
.ghl-overlay:not(.is-open) [id$="-form-div"],
.ghl-overlay:not(.is-open) .ep-wrapper,
.ghl-overlay:not(.is-open) .ep-iFrameContainer {
  pointer-events: none !important;
}

.ghl-overlay.is-open .ghl-modal-panel {
  position: relative;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;
}

.ghl-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #0d4cae;
  cursor: pointer;
  line-height: 1;
}

.ghl-modal-title {
  font-family: 'Montserrat', sans-serif;
  color: #0d4cae;
  margin: 0 0 8px;
}

.ghl-modal-sub {
  color: #718096;
  margin: 0 0 16px;
  font-size: 15px;
}

.ghl-form-shell {
  position: relative;
  min-height: 420px;
}

.ghl-form-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #f7f4ef;
  border-radius: 8px;
  color: #718096;
  font-size: 14px;
  font-weight: 600;
  z-index: 1;
}

.ghl-form-loader-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #e8e0d4;
  border-top-color: #0d4cae;
  border-radius: 50%;
  animation: ghl-spin 0.8s linear infinite;
}

.ghl-form-shell.is-ready .ghl-form-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.ghl-form-iframe {
  width: 100%;
  height: 100%;
  min-height: 595px;
  border: none;
  border-radius: 8px;
  display: block;
}

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

html {
  scroll-behavior: smooth;
}

#find-your-fit,
#showroom {
  scroll-margin-top: 96px;
}

/* ============================================================
   CATEGORY LANDING PAGES
   ============================================================ */
.category-intro-section {
  background: #fff;
  padding: 64px 24px;
}

.category-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.category-intro-inner p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

.category-brands-section {
  background: var(--section-alt);
  padding: 64px 24px;
}

.category-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.category-brand-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid var(--divider);
}

.category-brand-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--text-primary);
}

.category-brand-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.category-cta-band {
  background: var(--dark-section);
  color: #fff;
  padding: 64px 24px;
  text-align: center;
}

.category-cta-band .section-eyebrow {
  color: var(--amber);
}

.category-cta-band h2 {
  color: #fff;
  font-size: clamp(26px, 4vw, 38px);
  margin: 0 0 12px;
}

.category-cta-band p {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}

.category-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.category-cta-row .btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}

.category-cta-row .btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* Category page — shoppable inventory */
.category-inventory-section {
  background: #eef2f7;
  padding: 72px 24px;
  scroll-margin-top: 96px;
}

.category-inventory-lead {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.category-inv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.category-inv-grid--single {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.category-inv-card {
  background: #fff;
  border: 1px solid rgba(13, 76, 174, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(13, 76, 174, 0.1);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.category-inv-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(13, 76, 174, 0.14);
}

.category-inv-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #eef2f7;
  overflow: hidden;
}

.category-inv-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 18px;
  box-sizing: border-box;
}

.category-inv-card-img .product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.category-inv-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.category-inv-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-section);
  margin: 0 0 14px;
  line-height: 1.25;
}

.category-inv-card-divider {
  border: none;
  border-top: 1px solid var(--divider);
  margin: 0 0 14px;
}

.category-inv-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.category-inv-pill {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 8px 4px;
}

.category-inv-pill svg {
  color: var(--dark-section);
  flex-shrink: 0;
}

.category-inv-pill span {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
}

.category-inv-price-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  align-items: end;
  margin-bottom: 16px;
}

.category-inv-msrp {
  grid-column: 1 / -1;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin: 0;
}

.category-inv-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.category-inv-monthly {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--amber);
  margin: 0;
  text-align: right;
  line-height: 1;
}

.category-inv-fin-note {
  grid-column: 2;
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  text-align: right;
}

.category-inv-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.category-inv-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.1s;
}

.category-inv-cta-primary {
  background: var(--amber);
  color: var(--dark-section);
}

.category-inv-cta-primary:hover {
  background: #d4920a;
  transform: translateY(-1px);
}

.category-inv-cta-secondary {
  background: var(--dark-section);
  color: #fff;
}

.category-inv-cta-secondary:hover {
  background: #083a88;
  transform: translateY(-1px);
}

.category-inventory-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.category-inventory-foot .btn-primary,
.category-inventory-foot .btn-secondary {
  min-width: 220px;
  text-align: center;
}

.category-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(13, 76, 174, 0.97);
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(110%);
  transition: transform 0.28s ease;
  pointer-events: none;
}

.category-sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.category-sticky-cta-btn {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: var(--amber);
  color: var(--dark-section);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.category-sticky-cta-btn:hover {
  background: #d4920a;
  transform: translateY(-1px);
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .navbar { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  nav.navbar .nav-call-cta { display: flex; }
  .nav-hamburger { display: flex; }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-right {
    display: block;
    order: 1;
    min-height: 320px;
  }

  .hero-img-overlay {
    background: transparent;
  }

  .hero-left {
    order: 2;
    padding: 40px 24px 44px;
    background: var(--dark-section);
  }

  .hero-headline {
    color: #fff;
  }

  .hero-sub,
  .hero-areas {
    color: rgba(255,255,255,0.86);
  }

  .hero-financing {
    background: rgba(255,255,255,0.12);
    color: var(--amber);
  }

  .hero .btn-secondary {
    border-color: #fff;
    color: #fff;
  }

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

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

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

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

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

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

  .showroom-grid { grid-template-columns: 1fr; }
  .showroom-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }

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

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

/* ============================================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================================ */
@media (max-width: 640px) {
  .navbar {
    gap: 10px;
  }

  .nav-logo img {
    width: 200px;
    max-width: 52vw;
    height: auto;
  }

  nav.navbar .nav-call-cta {
    background: var(--amber);
    color: var(--dark-section);
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
    letter-spacing: 0.1px;
  }

  nav.navbar .nav-call-cta svg {
    width: 15px;
    height: 15px;
  }

  .hero-right {
    min-height: 280px;
  }

  .hero-left {
    padding: 34px 24px 40px;
  }

  .trust-bar { display: none; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-stat { font-size: 26px; }

  .product-slider-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 14px;
  }

  .product-slider {
    grid-column: 1 / -1;
    grid-row: 1;
    gap: 0;
    overflow-x: hidden;
    width: 100%;
  }

  .product-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .slider-btn {
    position: static;
    transform: none;
    z-index: 1;
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 12px rgba(13, 76, 174, 0.18);
  }

  .slider-prev {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
  }

  .slider-next {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .reviews-carousel { grid-template-columns: 1fr; }

  .lifestyle-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .lifestyle-tile-img { height: 180px; }

  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }

  .promise-layout { flex-direction: column; align-items: flex-start; }
  .promise-badge-img {
    width: 210px;
    max-width: 72vw;
    align-self: center;
  }
  .promise-text {
    width: 100%;
    text-align: center;
  }
  .promise-body {
    max-width: none;
  }
  .promise-text .btn-primary {
    margin-left: auto;
    margin-right: auto;
  }

  .benefits-grid { display: none; }
  .benefits-mobile-copy { display: block; }

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

  .coupon-inner { flex-direction: column; text-align: center; }
  .coupon-image {
    width: 210px;
    max-width: 72vw;
    margin: 0 auto;
  }
  .coupon-text {
    width: 100%;
  }
  .coupon-inner .btn-coupon-claim {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-map {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 340px;
  }

  .footer-links ul {
    align-items: center;
  }

  .footer-phone-badge.phone-badge-wrap {
    justify-content: center;
  }

  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; text-align: center; }

  .showroom-left, .showroom-right { padding: 40px 24px; }

  .category-brands-grid { grid-template-columns: 1fr; }

  .category-inv-grid { grid-template-columns: 1fr; }

  .category-inv-pills { grid-template-columns: repeat(3, 1fr); }

  .category-inventory-foot { flex-direction: column; align-items: stretch; }

  .category-inventory-foot .btn-primary,
  .category-inventory-foot .btn-secondary { width: 100%; }

  .category-cta-row { flex-direction: column; align-items: stretch; }

  .category-cta-row .btn-primary,
  .category-cta-row .btn-secondary { width: 100%; text-align: center; }
}

/* Scoped How It Works color overrides */
.process-section {
  background: #FFFFFF;
}

.process-section .process-step {
  background: #F7F4EF;
}

/* Product pages: hide chat bubble while pricing form modal is open */
body.ghl-modal-open #lc_web_chat,
body.ghl-modal-open .lc_web_chat,
body.ghl-modal-open iframe#lc_iframe,
body.ghl-modal-open [id^="chat-widget"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* GHL modal trust badges */
.ghl-modal-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.ghl-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #4a5568;
  background: #f7f4ef;
  border: 1px solid #e8e0d4;
  border-radius: 999px;
  padding: 6px 12px;
  line-height: 1.3;
}

.ghl-trust-badge .ghl-trust-icon {
  font-size: 13px;
  line-height: 1;
}

/* Thank you page */
.thank-you-nav {
  justify-content: space-between;
  padding-right: 24px;
}

.thank-you-nav-cta {
  text-decoration: none;
  white-space: nowrap;
  padding: 12px 22px;
  font-size: 14px;
}

.thank-you-section {
  min-height: calc(100vh - 180px);
  background: #f7f4ef;
  padding: 48px 24px 72px;
}

.thank-you-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 48px 32px;
  box-shadow: 0 8px 32px rgba(13, 76, 174, 0.08);
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #0d4cae;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  line-height: 72px;
}

.thank-you-h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: #0a3a84;
  margin: 0 0 16px;
}

.thank-you-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #4a5568;
  margin: 0 0 32px;
}

.thank-you-next {
  text-align: left;
  background: #f7f4ef;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.thank-you-next h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0a3a84;
  margin: 0 0 12px;
}

.thank-you-next ul {
  margin: 0;
  padding-left: 20px;
  color: #4a5568;
  line-height: 1.65;
}

.thank-you-next li + li {
  margin-top: 10px;
}

.thank-you-next a {
  color: #0d4cae;
  font-weight: 600;
}

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

.thank-you-actions .btn-primary,
.thank-you-actions .btn-secondary {
  text-decoration: none;
}

.thank-you-footer {
  margin-top: 0;
}

@media (max-width: 640px) {
  .thank-you-inner {
    padding: 36px 20px;
  }

  .thank-you-nav-cta {
    padding: 10px 16px;
    font-size: 13px;
  }

  .thank-you-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
