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

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --accent: #c9a84c;
  --accent-light: #dfc06a;
  --accent-dark: #a8882e;
  --accent-glow: rgba(201, 168, 76, 0.15);
  --text-primary: #f0ece4;
  --text-secondary: #a0a0b0;
  --text-muted: #6a6a7a;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(201, 168, 76, 0.2);
  --success: #34d399;
  --danger: #f87171;
  --neutral: #fbbf24;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1200px;
  --nav-height: 72px;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + 40px); }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-light); }

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title { font-size: clamp(2rem, 5vw, 3rem); color: var(--text-primary); margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; }

.accent { color: var(--accent); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}
.btn-accent {
  background: var(--accent);
  color: var(--bg-primary);
}
.btn-accent:hover {
  background: var(--accent-light);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ========== COMPARISON BAR ========== */
#comparison-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-bottom: 1px solid var(--border-accent);
  padding: 10px 0;
}
.comparison-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.comparison-label {
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
}
.comparison-text { font-size: 13px; color: var(--text-secondary); flex: 1; }
.comparison-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.comparison-btn:hover { background: rgba(255, 255, 255, 0.12); }
.btn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555;
  transition: background 0.2s;
}
.btn-dot.active { background: var(--success); }

/* ========== AI HIGHLIGHTS ========== */
#ai-highlights { position: relative; z-index: 50; }
#ai-highlights.highlights-hidden .highlight-card { display: none; }

.highlight-card {
  position: absolute;
  z-index: 51;
  width: 300px;
  background: rgba(17, 17, 24, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: highlightIn 0.5s ease-out;
  display: none;
}
.highlights-visible .highlight-card { display: block; }

@keyframes highlightIn {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.highlight-pulse {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(201, 168, 76, 0); }
}

.highlight-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.highlight-content h4 { font-family: var(--font-body); font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.highlight-content p { font-size: 12px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 10px; }
.highlight-compare { font-size: 11px; line-height: 1.6; }
.compare-before { display: block; color: var(--danger); opacity: 0.8; }
.compare-before::before { content: '✕ '; }
.compare-after { display: block; color: var(--success); opacity: 0.9; }
.compare-after::before { content: '✓ '; }

/* ========== NAVBAR ========== */
#navbar {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { color: var(--accent); font-size: 20px; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--accent);
  color: var(--bg-primary) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* ========== HERO ========== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 80px) 24px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10, 10, 15, 0.7) 0%, rgba(13, 13, 20, 0.85) 100%),
    url('images/hero-toronto-night.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="none" width="100" height="100"/><circle fill="rgba(255,255,255,0.02)" cx="50" cy="50" r="1"/></svg>');
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.hero-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}
.trust-item svg { color: var(--accent); opacity: 0.7; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span { font-size: 10px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--accent), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ========== FEATURES STRIP ========== */
#features-strip {
  padding: 48px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.feature-item { padding: 20px; }
.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--accent-glow);
  border-radius: 50%;
}
.feature-item h4 { font-family: var(--font-body); font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.feature-item p { font-size: 12px; color: var(--text-muted); }

/* ========== SERVICES ========== */
#services { padding: 100px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.service-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 168, 76, 0.03) 100%);
}
.service-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 4px;
}
.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.8;
}
.service-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-bottom: 16px;
}
.service-detail { font-size: 12px; color: var(--text-muted); }
.service-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}
.service-book {
  display: block;
  text-align: center;
  padding: 10px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  transition: all 0.2s;
  text-decoration: none;
}
.service-book:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

/* ========== FLEET ========== */
#fleet {
  padding: 100px 0;
  background: var(--bg-secondary);
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.fleet-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.fleet-photo {
  height: 220px;
  background: linear-gradient(135deg, #15151e 0%, #1a1a26 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fleet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet-placeholder {
  text-align: center;
  color: var(--text-muted);
}
.fleet-placeholder svg { margin: 0 auto 12px; opacity: 0.3; }
.fleet-placeholder span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.5;
}
.fleet-info { padding: 24px; }
.fleet-info h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.fleet-model {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 16px;
}
.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.fleet-specs span {
  font-size: 11px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.fleet-ideal {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

/* ========== SERVICE AREAS ========== */
#areas { padding: 100px 0; }
.areas-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.area-group h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-accent);
}
.area-group ul { list-style: none; }
.area-group li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}
.area-group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  transform: translateY(-50%);
}
.areas-note {
  position: sticky;
  top: 140px;
}
.areas-note-inner {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 168, 76, 0.03) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 28px;
}
.areas-note h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.areas-note p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ========== REVIEWS ========== */
#reviews { padding: 100px 0; background: var(--bg-secondary); }
.reviews-summary { margin-top: 8px; }
.review-stars-big { font-size: 28px; color: var(--accent); letter-spacing: 4px; }
.review-score { font-size: 14px; color: var(--text-secondary); margin-top: 4px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}
.review-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}
.review-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}
.review-author strong { font-size: 13px; display: block; }
.review-author span { font-size: 11px; color: var(--text-muted); }

.reviews-cta {
  text-align: center;
  padding: 20px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
}
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 6px;
}
.reviews-cta p { font-size: 13px; color: var(--text-secondary); }

/* ========== AI FEATURES SHOWCASE ========== */
#ai-showcase { padding: 100px 0; }
.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ai-feature-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
}
.ai-feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.ai-feature-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 20px;
}
.ai-feature-icon {
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.8;
}
.ai-feature-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.ai-feature-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.ai-feature-impact {
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  line-height: 1.5;
}
.impact-label {
  font-weight: 600;
  color: var(--success);
}

/* ========== COMPARISON TABLE ========== */
#comparison { padding: 100px 0; background: var(--bg-secondary); }
.comparison-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.comp-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.comp-row:last-child { border-bottom: none; }
.comp-row.comp-header {
  background: var(--bg-card);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.comp-feature, .comp-before, .comp-after { padding: 14px 20px; font-size: 13px; }
.comp-feature { font-weight: 500; color: var(--text-primary); }
.comp-before { background: rgba(248, 113, 113, 0.03); }
.comp-after { background: rgba(52, 211, 153, 0.03); }
.status-bad { color: var(--danger); font-size: 12px; }
.status-bad::before { content: '✕ '; }
.status-good { color: var(--success); font-size: 12px; }
.status-good::before { content: '✓ '; }
.status-neutral { color: var(--neutral); font-size: 12px; }

/* ========== QUOTE FORM ========== */
#quote { padding: 100px 0; }
.cta-box {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}
.cta-box > p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.quote-form { text-align: left; }
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-group.full { flex: 1 1 100%; }
.form-group label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}
.quote-form .btn-full { margin-top: 8px; padding: 16px; font-size: 15px; }

/* ========== FOOTER ========== */
footer {
  padding: 60px 0 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.footer-logo .logo-icon { color: var(--accent); }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--accent); }
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 4px 0;
  text-decoration: none;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.footer-contact a { color: var(--text-secondary); text-decoration: none; }
.footer-contact a:hover { color: var(--accent); }
.footer-hours { margin-top: 16px; }
.footer-hours h4 { margin-bottom: 6px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }

/* ========== CHATBOT WIDGET ========== */
#chatbot-widget { position: fixed; bottom: 24px; right: 24px; z-index: 1000; }
.chatbot-trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  transition: all 0.3s;
  position: relative;
}
.chatbot-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.5);
}
.chatbot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--danger);
  color: white;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.chatbot-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 380px;
  height: 520px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chatbot-closed .chatbot-window { display: none; }
.chatbot-open .chatbot-window { display: flex; }
.chatbot-open .chatbot-trigger { display: none; }

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.chatbot-header strong { font-size: 14px; display: block; }
.chatbot-status { font-size: 11px; color: var(--success); }
.chatbot-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.chatbot-close:hover { color: var(--text-primary); }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-message { display: flex; gap: 8px; }
.chat-message.bot { justify-content: flex-start; }
.chat-message.user { justify-content: flex-end; }
.chat-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
}
.chat-message.bot .chat-bubble {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-bottom-left-radius: 4px;
}
.chat-message.user .chat-bubble {
  background: var(--accent);
  color: var(--bg-primary);
  border-bottom-right-radius: 4px;
}

.chatbot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 20px;
  border-top: 1px solid var(--border);
}
.chat-suggestion {
  padding: 6px 12px;
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  background: transparent;
  color: var(--accent);
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.chat-suggestion:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

.chatbot-input {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}
.chatbot-input input {
  flex: 1;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 10px 16px;
  outline: none;
}
.chatbot-input input:focus { border-color: var(--accent); }
#chatbot-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
#chatbot-send:hover { background: var(--accent-light); transform: scale(1.05); }

/* ========== HOW IT WORKS ========== */
#how-it-works { padding: 100px 0; background: var(--bg-secondary); }
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  transition: all 0.3s;
}
.step-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.step-connector {
  color: var(--accent);
  flex-shrink: 0;
  padding: 0 8px;
}

/* ========== FAQ ========== */
#faq { padding: 100px 0; }
.faq-grid { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question svg {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== STICKY MOBILE CTA ========== */
#mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.mobile-cta-call {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-cta-quote {
  background: var(--accent);
  color: var(--bg-primary);
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-line { animation: none; }
  .highlight-pulse { animation: none; }
  .chatbot-badge { animation: none; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid, .ai-features-grid, .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-layout { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: repeat(2, 1fr); }
  .areas-note { position: static; top: auto; }
  .highlight-card { display: none !important; }
}

@media (max-width: 768px) {
  /* -- Hide demo bar on mobile, clean up fixed layers -- */
  #comparison-bar { display: none; }
  #navbar { top: 0; }
  html { scroll-padding-top: calc(var(--nav-height) + 16px); }
  body.nav-open { overflow: hidden; }

  /* -- Mobile typography pass -- */
  body { font-size: 16px; }
  .container, .nav-inner, .comparison-inner { padding-left: 16px; padding-right: 16px; }

  .section-tag, .hero-tagline { font-size: 12px; letter-spacing: 2px; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  .section-sub, .hero-sub, .review-text, .faq-answer p,
  .cta-box > p, .form-group input, .form-group select,
  .form-group textarea, .chat-bubble {
    font-size: 16px; line-height: 1.6;
  }

  .feature-item h4, .service-card h3, .fleet-info h3,
  .step-card h3, .ai-feature-card h3, .areas-note h4 {
    font-size: 18px;
  }

  .feature-item p, .service-card p, .fleet-model, .fleet-ideal,
  .areas-note p, .step-card p, .reviews-cta p, .ai-feature-card p,
  .ai-feature-impact, .footer-brand p, .footer-links a, .footer-contact p {
    font-size: 15px; line-height: 1.6;
  }

  .review-author strong, .faq-question, .mobile-cta-btn,
  .btn, .service-book, .review-score {
    font-size: 16px;
  }

  .review-author span, .service-detail, .fleet-specs span,
  .form-group label, .form-note, .chatbot-status, .review-stars {
    font-size: 13px;
  }

  /* -- Navigation -- */
  .nav-links {
    display: none; position: absolute; top: var(--nav-height);
    left: 0; right: 0; background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 16px; gap: 0;
    max-height: calc(100vh - var(--nav-height)); overflow-y: auto;
  }
  .nav-links.active { display: flex; }
  .nav-links a {
    display: block; width: 100%; min-height: 48px;
    padding: 14px 0; font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; width: 44px; height: 44px; padding: 10px; align-items: center; justify-content: center; }
  .logo-text { font-size: 16px; letter-spacing: 1px; }

  /* -- Hero -- */
  #hero { min-height: auto; padding: calc(var(--nav-height) + 32px) 16px 40px; }
  .hero-content { max-width: 100%; }
  .hero-tagline { margin-bottom: 16px; }
  .hero-title { font-size: clamp(2.4rem, 11vw, 3.4rem); line-height: 0.98; margin-bottom: 16px; }
  .hero-sub { margin-bottom: 24px; }
  .hero-ctas { flex-direction: column; gap: 12px; margin-bottom: 24px; }
  .hero-ctas .btn { width: 100%; min-height: 48px; justify-content: center; padding: 14px 16px; }
  .hero-trust { flex-direction: column; align-items: center; gap: 10px; }
  .trust-item { font-size: 14px; justify-content: center; }
  .hero-scroll { display: none; }

  /* -- Features strip -- */
  #features-strip { padding: 24px 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feature-item { padding: 16px 12px; }
  .feature-icon { width: 44px; height: 44px; margin-bottom: 10px; }

  /* -- Services -- */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 24px 20px; }
  .service-badge { top: -8px; right: 16px; font-size: 10px; padding: 5px 10px; }
  .service-card h3 { font-size: 20px; }
  .service-meta { flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 16px; }
  .service-price { font-size: 22px; }
  .service-book { min-height: 48px; padding: 14px 20px; display: flex; align-items: center; justify-content: center; }

  /* -- Fleet -- */
  .fleet-grid { grid-template-columns: 1fr; gap: 16px; }
  .fleet-photo { height: 180px; }
  .fleet-info { padding: 20px; }
  .fleet-info h3 { font-size: 20px; }
  .fleet-specs span { padding: 6px 10px; }

  /* -- Service areas -- */
  .areas-layout { gap: 20px; }
  .areas-list { grid-template-columns: 1fr; gap: 20px; }
  .area-group h3 { font-size: 18px; }
  .area-group li { font-size: 15px; padding: 8px 0 8px 16px; }
  .areas-note-inner { padding: 20px; }
  .areas-note .btn-sm { min-height: 48px; width: 100%; justify-content: center; padding: 12px 16px; font-size: 15px; }

  /* -- How it works -- */
  .steps-grid { flex-direction: column; gap: 12px; }
  .step-connector { display: none; }
  .step-card { max-width: 100%; padding: 24px 20px; }
  .step-number { width: 44px; height: 44px; font-size: 20px; }

  /* -- Reviews -- */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 22px 18px; }
  .review-stars-big { font-size: 24px; letter-spacing: 2px; }
  .reviews-cta { display: none; }

  /* -- AI showcase -- */
  .ai-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .ai-feature-card { padding: 22px 18px; }
  .ai-feature-number { font-size: 28px; top: 12px; right: 14px; }

  /* -- Comparison table → stacked cards on mobile -- */
  .comparison-table { border: none; overflow: visible; }
  .comp-row.comp-header { display: none; }
  .comp-row {
    display: block; border: 1px solid var(--border);
    border-radius: var(--radius); margin-bottom: 12px;
    overflow: hidden; background: var(--bg-card);
  }
  .comp-feature, .comp-before, .comp-after {
    display: block; padding: 14px 16px; font-size: 15px; line-height: 1.5;
  }
  .comp-feature {
    background: rgba(255,255,255,0.03); font-weight: 600;
    border-bottom: 1px solid var(--border);
  }
  .comp-before, .comp-after { padding-left: 88px; position: relative; }
  .comp-before::before, .comp-after::before {
    position: absolute; left: 16px; top: 14px; font-size: 11px;
    font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  }
  .comp-before::before { content: "Now"; color: var(--danger); }
  .comp-after::before { content: "New"; color: var(--success); }
  .status-bad, .status-good, .status-neutral { font-size: 14px; line-height: 1.5; }

  /* -- Quote form -- */
  #quote { padding: 64px 0 88px; }
  .cta-box { max-width: 100%; }
  .cta-box > p { margin-bottom: 24px; }
  .form-row { flex-direction: column; gap: 12px; margin-bottom: 12px; }
  .form-group label { margin-bottom: 8px; }
  .form-group input, .form-group select, .form-group textarea {
    min-height: 48px; font-size: 16px; padding: 12px 14px; border-radius: 10px;
  }
  .form-group textarea { min-height: 100px; }
  .quote-form .btn-full { min-height: 52px; font-size: 16px; margin-top: 8px; }
  .form-note { font-size: 13px; margin-top: 12px; }

  /* -- FAQ -- */
  .faq-question { min-height: 48px; padding: 16px 0; }
  .faq-answer { padding: 0 4px; }
  .faq-answer p { font-size: 15px; }

  /* -- Footer -- */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding-bottom: 72px; }

  /* -- Mobile CTA bar -- */
  #mobile-cta { display: flex; }

  /* -- Chatbot -- */
  .chatbot-window { width: 90vw; right: 0; }
  #chatbot-widget { bottom: 85px; }
  .chat-bubble { font-size: 15px; }
  .chat-suggestion { font-size: 13px; padding: 8px 14px; }

  /* -- Global section spacing -- */
  section { padding: 64px 0; }
  #features-strip { padding: 24px 0; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .comparison-inner { justify-content: center; text-align: center; }
  .comparison-text { display: none; }
}
