/* ============================================
   FLAMEBOX TRAILERS — Landing Page Styles
   Mobile-First Approach
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --orange: #F26522;
  --orange-hover: #D4541A;
  --dark: #333333;
  --dark-card: #232339;
  --text: #333333;
  --text-light: #FFFFFF;
  --white: #FFFFFF;
  --light-bg: #F5F5F5;
  --gray: #666666;
  --border: #E0E0E0;
  --star: #FFC107;
  --font: 'Inter', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --ease: 0.3s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: var(--text-light);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 56px;
  font-family: var(--font);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: all var(--ease);
  min-height: 48px;
  font-family: var(--font);
}

.btn-secondary:hover {
  background: var(--orange);
  color: var(--text-light);
}


/* =============================================
   HEADER — fondo blanco, borde naranja inferior
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--border);
  transition: box-shadow var(--ease);
}

.header.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo img {
  height: 42px;
  width: auto;
}

/* Nav — mobile drawer */
.header__nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--white);
  flex-direction: column;
  display: flex;
  padding: 80px 28px 28px;
  gap: 4px;
  transition: right var(--ease);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1001;
}

.header__nav.open {
  right: 0;
}

.header__nav a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 20px;
  transition: all var(--ease);
  white-space: nowrap;
}

.header__nav a:hover {
  background: rgba(104, 154, 217, 0.15);
  color: #4A7BBD;
}

.header__nav a.active {
  background: #3D6CA8;
  color: var(--text-light);
}

/* Header right icons */
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
  flex-shrink: 0;
}

.header__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: all var(--ease);
  color: var(--text);
}

.header__icon-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.header__icon-btn svg {
  width: 18px;
  height: 18px;
}

.header__icon-btn--grid {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--text-light);
}

.header__icon-btn--grid:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--text-light);
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 2px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  cursor: pointer;
  z-index: 1002;
  transition: all var(--ease);
}

.header__hamburger:hover {
  border-color: var(--orange);
}

.header__hamburger span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease);
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Desktop CTA (hidden on mobile) */
.header__cta {
  display: none;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}

/* =============================================
   HERO — fondo blanco, 2 columnas
   ============================================= */
.hero {
  position: relative;
  padding: 88px 0 0;
  background: var(--white);
  overflow: visible;
}

.hero__inner {
  padding: 40px 0 0;
  text-align: center;
}

.hero__text {
  margin-bottom: 24px;
}

.hero__text h1 {
  font-size: 32px;
  color: var(--text);
  margin-bottom: 16px;
}

.hero__text h1 span {
  color: var(--orange);
}

.hero__subtitle {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero__cta-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 28px;
}

/* Hero Select — custom dropdown */
.hero__select-wrap {
  position: relative;
}

.hero__select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #E8E8E8;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  padding: 14px 16px;
  border-radius: 30px;
  cursor: pointer;
  min-height: 50px;
  min-width: 0;
  transition: background var(--ease);
  white-space: nowrap;
}

.hero__select-trigger:hover {
  background: #ddd;
}

.hero__select-trigger.open {
  background: #d8d8d8;
}

.hero__select-arrow {
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--ease);
}

.hero__select-trigger.open .hero__select-arrow {
  transform: rotate(180deg);
}

.hero__select-dropdown {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  min-width: 100%;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
  padding: 6px;
  z-index: 100;
  max-height: 200px;
  overflow-y: auto;
}

.hero__select-dropdown.open {
  display: block;
}

.hero__select-option {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}

.hero__select-option:hover {
  background: rgba(242, 101, 34, 0.08);
  color: var(--orange);
}

.hero__select-option.selected {
  background: var(--orange);
  color: var(--text-light);
}

/* Hero Quote Btn — naranja pill */
.hero__quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--text-light);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background var(--ease);
  font-family: var(--font);
  min-height: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero__quote-btn:hover {
  background: var(--orange-hover);
}

/* Hero Slider */
.hero__slider-wrap {
  position: relative;
  margin: 0 -20px;
  display: none;
}

.hero__slider {
  position: relative;
  overflow: hidden;
}

.hero__slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.hero__slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.hero__slide img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  display: block;
}

.hero__slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
}

.hero__slider-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--ease);
  padding: 0;
  position: relative;
}

.hero__slider-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--ease);
}

.hero__slider-dot.active::after {
  background: var(--dark);
}

/* Trust Bar — barra oscura full-width que conecta con cities */
.hero__trust-bar {
  background: var(--dark);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 10px 12px;
  border-radius: 12px 12px 0 0;
  margin: 16px auto 0;
  max-width: 100%;
  flex-wrap: wrap;
}

.hero__trust-bar-wrap {
  text-align: center;
  padding: 0;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 6px;
  white-space: nowrap;
}

.hero__trust-item .stars {
  color: var(--star);
  font-size: 13px;
}

.hero__trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.25);
}

/* =============================================
   CITIES — fondo oscuro #1A1A2E
   ============================================= */
.cities {
  padding: 60px 0;
  background: #333333;
}

.cities__header {
  text-align: center;
  margin-bottom: 32px;
}

.cities__header h2 {
  font-size: 36px;
  color: var(--orange);
  margin-bottom: 4px;
}

.cities__header h2 span {
  color: var(--orange);
}

.cities__header h3 {
  font-size: 26px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.cities__header p {
  color: var(--white);
  font-size: 15px;
  line-height: 1.6;
}

/* Subtitle row: left text + right text */
.cities__subtitle-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.cities__subtitle-left {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
}

.cities__subtitle-right {
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
}

.cities__subtitle-right strong {
  color: var(--white);
  font-weight: 600;
}

.cities__scroll {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.city-card {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--orange);
  background: var(--dark-card);
  transition: box-shadow var(--ease);
  padding: 8px 8px 0;
}

.city-card:hover {
  box-shadow: 0 8px 32px rgba(242, 101, 34, 0.15);
}

.city-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.city-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 10px;
}

.city-card:hover .city-card__image img {
  transform: scale(1.05);
}

.city-card__overlay {
  display: none;
}

.city-card__body {
  padding: 16px 20px 20px;
}

.city-card__body h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}

.city-card__body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* Card accent colors */
.city-card--orange {
  background: #D4692B;
  border-color: #D4692B;
}

.city-card--blue {
  background: #4A7FA5;
  border-color: #4A7FA5;
}

.cities__cta-block {
  text-align: center;
  padding: 28px 20px 0;
  color: var(--text-light);
}

.cities__cta-block p {
  font-size: 16px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.cities__cta-block p strong {
  color: var(--text-light);
}

/* =============================================
   SIZES — fondo gris claro
   ============================================= */
.sizes {
  padding: 60px 0;
  background: var(--light-bg);
}

.sizes__header {
  text-align: center;
  margin-bottom: 24px;
}

.sizes__header h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 4px;
}

.sizes__header h2 span {
  color: var(--orange);
}


/* Size tabs */
.sizes__tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.sizes__tab {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: all var(--ease);
}

.sizes__tab:hover {
  color: var(--dark);
}

.sizes__tab.active {
  color: #669AD4;
  border-bottom-color: #669AD4;
  font-weight: 600;
}

/* Horizontal scroll container */
.sizes__scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px 16px;
  margin: 0 -16px 32px;
  scroll-padding: 0 50%;
}

.sizes__scroll::-webkit-scrollbar {
  height: 0;
}

/* Dark intro card */
.size-intro-card {
  flex: 0 0 70%;
  scroll-snap-align: center;
  background: var(--dark);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.size-intro-card h3 {
  font-size: 28px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.size-intro-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* Trailer size cards */
.size-card {
  flex: 0 0 70%;
  scroll-snap-align: center;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--ease);
}

.size-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.size-card__image {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #e8e8e8;
}

.size-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.size-card:hover .size-card__image img {
  transform: scale(1.04);
}

.size-card__hot {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  z-index: 2;
}

.size-card__body {
  padding: 16px 18px 20px;
}

.size-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.size-card__stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 1px;
}

.size-card__stars .half {
  opacity: 0.35;
}

.size-card__badge {
  color: #4A6FA5;
  font-size: 12px;
  font-weight: 600;
}

.size-card__body h3 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 8px;
}

.size-card__body p {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.size-card__actions {
  display: flex;
  gap: 8px;
}

.size-card__actions .btn-primary {
  font-size: 12px;
  padding: 8px 14px;
  min-height: auto;
  text-transform: none;
  letter-spacing: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font);
  padding: 8px 14px;
  border-radius: 30px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--text-light);
}

.btn-primary--lg {
  padding: 16px 40px;
  font-size: 17px;
}

/* CTA card at end of slider */
.size-cta-card {
  flex: 0 0 70%;
  scroll-snap-align: center;
  background: var(--dark);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  transition: background var(--ease);
}

.size-cta-card:hover {
  background: #2a2a2a;
}

.size-cta-card__text {
  color: var(--text-light);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
  letter-spacing: 0.5px;
}

.size-cta-card__arrow {
  color: var(--orange);
  font-size: 24px;
}

.sizes__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.sizes__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font-size: 20px;
  cursor: pointer;
  transition: all var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sizes__arrow:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.sizes__footer {
  text-align: center;
}

/* =============================================
   ADVANTAGE — fondo blanco
   ============================================= */
.advantage {
  padding: 60px 0;
  background: var(--white);
}

/* Hero area: title + image */
.advantage__hero {
  text-align: center;
  margin-bottom: 40px;
}

.advantage__label {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}

.advantage__title h2 {
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 24px;
}

.advantage__image {
  position: relative;
  display: inline-block;
  max-width: 300px;
}

.advantage__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* Trust Pillars — scroll on mobile, 2x2 on desktop */
.advantage__pillars {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
}

.advantage__pillars::-webkit-scrollbar {
  height: 0;
}

.pillar {
  flex: 0 0 75%;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
}

.pillar__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(242, 101, 34, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 12px;
}

.pillar__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(346deg) brightness(101%) contrast(88%);
}

.pillar h3 {
  font-size: 15px;
  color: var(--orange);
  margin-bottom: 6px;
}

.pillar p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* Pillar dots — mobile only */
.advantage__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px 0 0;
}

.advantage__dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--ease);
  padding: 0;
  position: relative;
}

.advantage__dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--ease);
}

.advantage__dot.active::after {
  background: var(--orange);
}

/* =============================================
   REVIEWS — fondo oscuro
   ============================================= */
.reviews {
  padding: 60px 0;
  background: #444;
  color: var(--text-light);
}

.reviews__header {
  text-align: center;
  margin-bottom: 36px;
}

.reviews__header h2 {
  font-size: 36px;
  color: var(--orange);
  margin-bottom: 12px;
}

.reviews__header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Review cards carousel */
.reviews__slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}

.review-card {
  position: absolute;
  width: 80%;
  max-width: 480px;
  left: 50%;
  top: 0;
  background: #d5d5d5;
  border-radius: 16px;
  padding: 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  color: var(--dark);
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.5s ease, background 0.5s ease;
  transform: translateX(-50%) translateX(200%);
  opacity: 0;
}

.review-card.active {
  background: var(--white);
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
  z-index: 3;
}

.review-card.prev {
  opacity: 1;
  transform: translateX(-50%) translateX(calc(-100% - 16px)) scale(0.85);
  z-index: 2;
}

.review-card.next {
  opacity: 1;
  transform: translateX(-50%) translateX(calc(100% + 16px)) scale(0.85);
  z-index: 2;
}

.review-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.review-card__star {
  color: var(--orange);
  font-size: 20px;
}

.review-card__score {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.review-card__text {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.review-card__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 16px;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.review-card__photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.review-card__google {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--gray);
  font-size: 11px;
  line-height: 1.3;
}

.review-card__google img {
  width: 20px;
  height: 20px;
}

.review-card__google strong {
  color: var(--dark);
  font-size: 13px;
}

/* Nav arrows */
.reviews__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.reviews__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  cursor: pointer;
  transition: all var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews__arrow:hover {
  border-color: var(--white);
  color: var(--white);
}

/* =============================================
   QUOTE FORM — fondo gris claro
   ============================================= */
.quote {
  padding: 60px 0;
  background: var(--light-bg);
}

.quote__content {
  text-align: center;
  margin-bottom: 32px;
}

.quote__content h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 12px;
}

.quote__content h2 span {
  color: var(--orange);
}

.quote__content>p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

.quote__form-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.quote__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select {
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: var(--font);
  color: var(--text);
  transition: border-color var(--ease);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: var(--font);
  color: var(--text);
  transition: border-color var(--ease);
  background: var(--white);
  resize: vertical;
  min-height: 100px;
}

.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-size-buttons {
  display: flex;
  gap: 8px;
}

.form-size-btn {
  flex: 1;
  padding: 14px 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition: all var(--ease);
  min-height: 56px;
}

.form-size-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.form-size-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.quote__form .btn-primary {
  width: 100%;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.quote__trust-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 0;
  font-size: 13px;
  color: var(--gray);
  margin-top: 20px;
}

.quote__trust-line span {
  white-space: nowrap;
}

.quote__trust-line span+span::before {
  content: "  |  ";
}

/* Form Validation */
.field-error {
  border-color: #e74c3c !important;
}

.form-error {
  display: block;
  font-size: 12px;
  color: #e74c3c;
  margin-top: 4px;
}

/* =============================================
   FOOTER — fondo oscuro
   ============================================= */
.footer {
  background: #3a3a3a;
  color: var(--text-light);
  padding: 40px 0 0;
}

/* Divider */
.footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 0 32px;
}

/* Content wrapper — stacks on mobile, 2 cols on desktop */
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 24px;
}

/* Left column */
.footer__left {
  text-align: center;
}

.footer__cta-logo {
  height: 60px;
  width: auto;
  margin: 0 auto 20px;
}

.footer__heading {
  font-size: 32px;
  color: var(--text-light);
  margin-bottom: 14px;
}

.footer__heading span {
  color: var(--orange);
}

.footer__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.7;
}

/* Right column */
.footer__right {
  text-align: center;
}

.footer__brand-name {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Nav links */
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-bottom: 20px;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--ease);
  padding: 4px 0;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
}

.footer__nav a:hover {
  color: var(--orange);
  text-decoration-color: var(--orange);
}

/* Social icons */
.footer__social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  transition: transform var(--ease), opacity var(--ease);
}

.footer__social-btn:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

.footer__social-btn--fb {
  background: #c47a5a;
}

.footer__social-btn--ig {
  background: #7a9bb5;
}

/* Copyright */
.footer__bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__bottom p {
  margin: 0;
}

.footer__privacy {
  color: #FF9A4A;
  transition: color var(--ease);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__privacy:hover {
  color: #FFB070;
}

/* =============================================
   STICKY BAR — solo mobile
   ============================================= */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark);
  border-top: 2px solid var(--orange);
  padding: 10px 20px;
  z-index: 998;
  display: flex;
  justify-content: center;
}

.sticky-bar .btn-primary {
  width: 100%;
}

/* =============================================
   CITY PAGES — City Hero
   ============================================= */
.city-hero {
  position: relative;
  padding: 88px 0 0;
  background: var(--white);
  overflow: visible;
}

.city-hero__inner {
  padding: 40px 0 0;
  text-align: center;
}

.city-hero__text {
  margin-bottom: 24px;
}

.city-hero__text h1 {
  font-size: 28px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.city-hero__text h1 span {
  color: var(--orange);
}

.city-hero__subtitle {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.7;
}

.city-hero__subtitle strong {
  color: var(--text);
}

.city-hero__cta-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.city-hero__image {
  display: none;
  margin: 0 auto;
  max-width: 400px;
}

.city-hero__image img {
  width: 100%;
  height: auto;
}

/* =============================================
   CITY PAGES — Built for the Heat
   ============================================= */
.built-heat {
  padding: 60px 0;
  background: var(--dark);
}

.built-heat__inner {
  text-align: center;
}

.built-heat__text {
  margin-bottom: 32px;
}

.built-heat__text h2 {
  font-size: 28px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.built-heat__text h2 span {
  color: var(--orange);
}

.built-heat__text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.built-heat__image {
  position: relative;
  max-width: 500px;
  margin: 0 auto 32px;
}

.built-heat__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

/* Indicator groups (label + line + dot) */
.built-heat__indicator {
  position: absolute;
}

.built-heat__label {
  background: var(--orange);
  color: var(--text-light);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  line-height: 1.3;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.built-heat__line {
  position: absolute;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
}

.built-heat__dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease 0.5s, transform 0.3s ease 0.5s;
}

/* Revealed state */
.built-heat__image.revealed .built-heat__label {
  opacity: 1;
  transform: translateY(0);
}

.built-heat__image.revealed .built-heat__line {
  opacity: 1;
}

.built-heat__image.revealed .built-heat__dot {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.built-heat__indicator--top .built-heat__label {
  transition-delay: 0.2s;
}

.built-heat__indicator--mid .built-heat__label {
  transition-delay: 0.5s;
}

.built-heat__indicator--bot .built-heat__label {
  transition-delay: 0.8s;
}

.built-heat__indicator--top .built-heat__line {
  transition-delay: 0.4s;
}

.built-heat__indicator--mid .built-heat__line {
  transition-delay: 0.7s;
}

.built-heat__indicator--bot .built-heat__line {
  transition-delay: 1.0s;
}

.built-heat__indicator--top .built-heat__dot {
  transition-delay: 0.5s;
}

.built-heat__indicator--mid .built-heat__dot {
  transition-delay: 0.8s;
}

.built-heat__indicator--bot .built-heat__dot {
  transition-delay: 1.1s;
}

/* TOP indicator: A/C — label top-right, L-shape down+left to A/C unit on roof */
.built-heat__indicator--top {
  top: 5%;
  right: 5%;
}

.built-heat__indicator--top .built-heat__line {
  width: 2px;
  height: 30px;
  bottom: -32px;
  left: 50%;
}

.built-heat__indicator--top .built-heat__line::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 2px;
  background: var(--orange);
}

.built-heat__indicator--top .built-heat__dot {
  bottom: -38px;
  left: calc(50% - 120px);
}

/* MID indicator: Cooking temps — label bottom-left, L-shape up+right to interior */
.built-heat__indicator--mid {
  bottom: 22%;
  left: 0;
}

.built-heat__indicator--mid .built-heat__line {
  width: 2px;
  height: 50px;
  top: -52px;
  left: 50%;
}

.built-heat__indicator--mid .built-heat__line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--orange);
}

.built-heat__indicator--mid .built-heat__dot {
  top: -58px;
  left: calc(50% + 75px);
}

/* BOT indicator: Insulation — label bottom-center, straight line up to exposed insulation */
.built-heat__indicator--bot {
  bottom: 8%;
  left: 35%;
}

.built-heat__indicator--bot .built-heat__line {
  width: 2px;
  height: 45px;
  top: -47px;
  left: 50%;
}

.built-heat__indicator--bot .built-heat__dot {
  top: -55px;
  left: calc(50% - 5px);
}

.built-heat__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.built-heat__card {
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

.built-heat__card:first-child {
  background: #e8e8e8;
}

.built-heat__card:last-child {
  background: #669AD4;
}

.built-heat__card:first-child p {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.7;
}

.built-heat__card:last-child p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* =============================================
   CITY PAGES — Best Sellers
   ============================================= */
.best-sellers {
  padding: 60px 0;
  background: var(--white);
}

.best-sellers__header {
  text-align: center;
  margin-bottom: 32px;
}

.best-sellers__header h2 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 12px;
}

.best-sellers__header p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

.best-sellers__grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.best-sellers__card {
  flex: 0 0 85%;
  scroll-snap-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}

.best-sellers__card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.best-sellers__card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #e8e8e8;
}

.best-sellers__card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.best-sellers__card:hover .best-sellers__card-image img {
  transform: scale(1.04);
}

.best-sellers__card-size {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 30px;
  z-index: 2;
}

.best-sellers__card-body {
  padding: 18px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.best-sellers__card-body h3 {
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 6px;
  min-height: 2.6em;
}

.best-sellers__card-body p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.5;
}

.best-sellers__card-perfect {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 8px;
}

.best-sellers__card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.best-sellers__card-actions .btn-primary {
  font-size: 13px;
  padding: 10px 18px;
  min-height: auto;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.best-sellers__card-actions .btn-outline {
  font-size: 13px;
  padding: 10px 18px;
  white-space: nowrap;
}

/* =============================================
   CITY PAGES — Financing
   ============================================= */
.city-financing {
  padding: 60px 0;
  background: var(--light-bg);
}

.city-financing__inner {
  text-align: center;
}

.city-financing__heading {
  text-align: center;
  margin-bottom: 32px;
}

.city-financing__heading h2 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 16px;
}

.city-financing__heading h2 span {
  color: var(--orange);
}

.city-financing__heading p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.city-financing__text>p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.city-financing__no-impact {
  font-size: 13px;
  color: var(--gray);
  margin-top: 8px;
}

.city-financing__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.city-financing__list li {
  font-size: 15px;
  color: var(--text);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.5;
}

.city-financing__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.city-financing__price {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  margin-top: 24px;
  text-align: center;
}

.city-financing__price-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.city-financing__price-amount {
  font-size: 48px;
  color: var(--orange);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}

.city-financing__price-amount strong {
  font-weight: 800;
}

.city-financing__price-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   CITY PAGES — Serving States
   ============================================= */
.serving-states {
  padding: 60px 0;
  background: var(--white);
}

.serving-states__header {
  margin-bottom: 32px;
}

.serving-states__header h2 {
  font-size: 28px;
  color: var(--dark);
}

.serving-states__header h2 span {
  color: var(--orange);
}

.serving-states__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.serving-states__slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.serving-states__slider::-webkit-scrollbar {
  display: none;
}

.serving-states__slider .serving-states__card {
  min-width: 260px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.serving-states__card {
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  overflow: hidden;
  position: relative;
}

/* Image card */
.serving-states__card--image {
  position: relative;
  padding: 0;
  grid-column: 1;
}

.serving-states__card--image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.serving-states__card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* Card colors */
.serving-states__card--texas {
  background: var(--orange);
  color: var(--text-light);
}

.serving-states__card--florida {
  background: #e8e8e8;
}

.serving-states__card--louisiana {
  background: #669AD4;
  color: var(--text-light);
}

.serving-states__card--oklahoma {
  background: var(--dark);
  color: var(--text-light);
}

/* Text colors per card */
.serving-states__card--texas h3,
.serving-states__card--louisiana h3,
.serving-states__card--oklahoma h3 {
  color: var(--text-light);
}

.serving-states__card--oklahoma h3 {
  color: var(--orange);
}

.serving-states__card--texas ul li,
.serving-states__card--louisiana ul li,
.serving-states__card--oklahoma ul li {
  color: rgba(255, 255, 255, 0.9);
}

.serving-states__card--florida h3 {
  color: var(--dark);
}

.serving-states__card--florida ul li {
  color: var(--dark);
}

.serving-states__card-icon {
  position: absolute;
  top: 16px;
  right: 16px;
}

.serving-states__card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.serving-states__card ul {
  list-style: none;
  padding: 0;
}

.serving-states__card ul li {
  font-size: 14px;
  padding: 3px 0;
}

.serving-states__cta {
  text-align: center;
  padding: 32px 20px;
}

.serving-states__cta h3 {
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 8px;
}

.serving-states__cta p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* =============================================
   CITY PAGES — Ready to Build CTA
   ============================================= */
.ready-build {
  padding: 60px 0;
  background: #333333;
  color: var(--text-light);
}

.ready-build__inner {
  text-align: center;
}

.ready-build__inner h2 {
  font-size: 28px;
  color: var(--orange);
  margin-bottom: 16px;
}

.ready-build__inner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.ready-build__note {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}

/* =============================================
   INSTAGRAM FEED
   ============================================= */
.instagram-feed {
  padding: 64px 0;
  background: var(--light);
}

.instagram-feed__header {
  text-align: center;
  margin-bottom: 32px;
}

.instagram-feed__header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.instagram-feed__header h2 span {
  color: var(--orange);
}

.instagram-feed__header p {
  font-size: 16px;
  color: var(--text);
  margin: 0 auto;
}

.instagram-feed__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.instagram-feed__item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1 / 1;
}

.instagram-feed__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-feed__item:hover img {
  transform: scale(1.08);
}

.instagram-feed__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
}

.instagram-feed__item:hover .instagram-feed__overlay {
  opacity: 1;
}

.instagram-feed__follow {
  text-align: center;
  margin-top: 28px;
}

.instagram-feed__follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-feed__follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.35);
}

/* =============================================
   CALENDLY WRAPPER (mobile scroll fix)
   ============================================= */
.calendly__wrapper {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}

@media (max-width: 767px) {
  .calendly__wrapper {
    max-height: 600px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
  }
}

/* =============================================
   SIDE PANEL (Grid Menu)
   ============================================= */
.side-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.side-panel-overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(480px, 90vw);
  height: 100%;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}

.side-panel.active {
  transform: translateX(0);
}

.side-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.side-panel__logo img {
  height: 42px;
  width: auto;
}

.side-panel__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.side-panel__close:hover {
  transform: scale(1.1);
}

.side-panel__body {
  padding: 28px 24px;
  text-align: center;
}

.side-panel__body h3 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 4px;
  font-weight: 600;
}

.side-panel__body h3 span {
  color: var(--orange);
  display: block;
  font-style: italic;
}

.side-panel__calendly {
  margin-top: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.side-panel__footer {
  padding: 16px 24px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
  font-size: 12px;
  color: #aaa;
}

.side-panel__footer a {
  color: var(--orange);
  text-decoration: none;
}

/* =============================================
   TOAST NOTIFICATION
   ============================================= */
.toast-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.toast-overlay.active {
  opacity: 1;
  visibility: visible;
}

.toast {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: scale(0.85) translateY(20px);
  transition: transform 0.3s ease;
  position: relative;
}

.toast-overlay.active .toast {
  transform: scale(1) translateY(0);
}

.toast__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.toast__icon--success {
  background: #e8f5e9;
  color: #2e7d32;
}

.toast__icon--error {
  background: #fce4ec;
  color: #c62828;
}

.toast__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: var(--font);
}

.toast__message {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 24px;
}

.toast__btn {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.toast__btn--success {
  background: var(--orange);
  color: #fff;
}

.toast__btn--error {
  background: #eee;
  color: var(--dark);
}

.toast__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: var(--dark);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   DESKTOP — min-width: 768px
   ============================================= */
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  /* Header Desktop */
  .header .container {
    height: 72px;
  }

  .header__logo img {
    height: 46px;
  }

  .header__hamburger {
    display: none;
  }

  .header__nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
    gap: 2px;
    box-shadow: none;
    flex: 1;
    justify-content: center;
  }

  .header__nav a {
    font-size: 13px;
    padding: 7px 9px;
  }

  /* Hero Desktop — 2 columnas */
  .hero {
    padding: 96px 0 0;
  }

  .hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
    padding: 60px 0 0;
  }

  .hero__text h1 {
    font-size: 46px;
  }

  .hero__subtitle {
    font-size: 17px;
  }

  .hero__cta-block {
    justify-content: flex-start;
  }

  .hero__select-trigger {
    min-width: 220px;
    padding: 14px 20px;
  }

  .hero__slider-wrap {
    margin: 0;
    display: block;
  }

  .hero__slide img {
    height: 400px;
  }

  .hero__slider-dots {
    justify-content: center;
    padding: 16px 0;
  }

  /* Trust Bar Desktop */
  .hero__trust-bar {
    padding: 14px 28px;
  }

  .hero__trust-item {
    font-size: 14px;
    padding: 4px 14px;
  }

  /* Dropdown Desktop — open downward */
  .hero__select-dropdown {
    bottom: auto;
    top: calc(100% + 6px);
    max-height: 280px;
  }

  /* Cities Desktop */
  .cities {
    padding: 80px 0;
  }

  .cities__header h1 {
    font-size: 46px;
  }

  .cities__header h3 {
    font-size: 36px;
  }

  .cities__header {
    margin-bottom: 40px;
  }

  .cities__subtitle-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cities__subtitle-right {
    text-align: right;
  }

  .cities__scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .cities__cta-block {
    padding: 36px;
  }

  /* Sizes Desktop */
  .sizes {
    padding: 80px 0;
  }

  .sizes__header h2 {
    font-size: 46px;
  }

  .size-intro-card {
    flex: 0 0 340px;
  }

  .size-cta-card {
    flex: 0 0 340px;
  }

  .size-card {
    flex: 0 0 340px;
  }

  .size-card__image {
    height: 220px;
  }

  /* Advantage Desktop */
  .advantage {
    padding: 80px 0;
  }

  .advantage__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
  }

  .advantage__title h2 {
    font-size: 46px;
  }

  .advantage__image {
    max-width: 380px;
    justify-self: end;
  }

  .advantage__pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
    overflow: visible;
  }

  .pillar {
    flex: none;
  }

  .pillar h3 {
    font-size: 16px;
  }

  .pillar p {
    font-size: 14px;
  }

  .advantage__dots {
    display: none;
  }

  /* Reviews Desktop */
  .reviews {
    padding: 80px 0;
  }

  .reviews__header h2 {
    font-size: 46px;
  }

  .reviews__slider {
    height: 280px;
  }

  .review-card {
    max-width: 560px;
  }

  /* Quote Desktop */
  .quote {
    padding: 80px 0;
  }

  .quote .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .quote__content {
    text-align: left;
    margin-bottom: 0;
  }

  .quote__content h2 {
    font-size: 46px;
  }

  .quote__content>p {
    margin: 0;
  }

  .quote__form-wrap {
    max-width: none;
    padding: 36px;
  }

  .form-row {
    flex-direction: row;
  }

  /* Footer Desktop */
  .footer {
    padding: 48px 0 0;
  }

  .footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__left {
    text-align: left;
  }

  .footer__cta-logo {
    margin: 0 0 20px;
  }

  .footer__heading {
    font-size: 42px;
  }

  .footer__right {
    text-align: left;
    display: flex;
    flex-direction: column;
  }

  .footer__brand-name {
    font-size: 24px;
  }

  .footer__nav {
    justify-content: flex-start;
    gap: 10px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer__social {
    justify-content: flex-end;
    margin-top: auto;
  }

  .footer__bottom {
    text-align: left;
    padding: 20px 0;
  }

  /* City Hero Desktop */
  .city-hero {
    padding: 96px 0 0;
  }

  .city-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    text-align: left;
    padding: 60px 0 0;
  }

  .city-hero__text h1 {
    font-size: 42px;
  }

  .city-hero__subtitle {
    font-size: 17px;
  }

  .city-hero__cta-block {
    justify-content: flex-start;
  }

  .city-hero__image {
    display: block;
    max-width: none;
  }

  /* Built for Heat Desktop */
  .built-heat {
    padding: 80px 0;
  }

  .built-heat__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
  }

  .built-heat__text h2 {
    font-size: 36px;
  }

  .built-heat__image {
    margin: 0;
    max-width: none;
  }

  .built-heat__cards {
    flex-direction: row;
  }

  .built-heat__card {
    flex: 1;
  }

  /* Best Sellers Desktop */
  .best-sellers {
    padding: 80px 0;
  }

  .best-sellers__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: 40px;
  }

  .best-sellers__header h2 {
    font-size: 36px;
  }

  .best-sellers__header p {
    margin: 0;
    text-align: right;
    max-width: 320px;
  }

  .best-sellers__grid {
    flex-direction: row;
    gap: 24px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .best-sellers__card {
    flex: 1;
    scroll-snap-align: none;
  }

  /* Financing Desktop */
  .city-financing {
    padding: 80px 0;
  }

  .city-financing__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    text-align: left;
  }

  .city-financing__heading h2 {
    font-size: 36px;
  }

  .city-financing__price {
    margin-top: 0;
  }

  /* Serving States Desktop */
  .serving-states {
    padding: 80px 0;
  }

  .serving-states__header h2 {
    font-size: 36px;
  }

  .serving-states__grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 16px;
  }

  .serving-states__card--image {
    grid-column: 1;
    grid-row: 1;
  }

  .serving-states__card--image img {
    height: 100%;
    min-height: 300px;
  }

  .serving-states__slider {
    display: contents;
  }

  .serving-states__slider .serving-states__card {
    min-width: unset;
  }

  .serving-states__card--texas {
    grid-column: 2;
    grid-row: 1;
  }

  /* Re-layout: image spans 2 cols, Texas on col 3, bottom row = 3 cols */
  .serving-states__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .serving-states__card--image {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .serving-states__card--texas {
    grid-column: 3;
    grid-row: 1;
  }

  /* Ready Build Desktop */
  .ready-build {
    padding: 80px 0;
  }

  .ready-build__inner h2 {
    font-size: 36px;
  }

  /* Instagram Feed Desktop */
  .instagram-feed__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }

  /* Hide sticky bar on desktop */
  .sticky-bar {
    display: none !important;
  }
}

/* =============================================
   LARGE DESKTOP — min-width: 1024px
   ============================================= */
@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .header__nav {
    gap: 4px;
  }

  .header__nav a {
    font-size: 14px;
    padding: 7px 12px;
  }

  .hero__text h1 {
    font-size: 52px;
  }

  .cities__header h2,
  .sizes__header h2,
  .advantage__title h2 {
    font-size: 40px;
  }

  .cities,
  .sizes,
  .advantage,
  .quote {
    padding: 100px 0;
  }

  .size-card__body {
    padding: 48px;
  }

  .advantage .container {
    gap: 64px;
  }

  .quote .container {
    gap: 32px;
  }

  .sizes__list {
    gap: 40px;
  }

  /* City pages 1024px */
  .city-hero__text h1 {
    font-size: 48px;
  }

  .built-heat,
  .best-sellers,
  .city-financing,
  .serving-states,
  .ready-build {
    padding: 100px 0;
  }

  .built-heat__text h2,
  .best-sellers__header h2,
  .city-financing__text h2,
  .serving-states__header h2,
  .ready-build__inner h2 {
    font-size: 40px;
  }
}