/* css/shared.css — DFW LED Pro Design System */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --bg: #0a0a0f;
  --surface: #111118;
  --surface-hover: #1a1a24;
  --primary: #2563EB;
  --cta: #F97316;
  --cta-hover: #ea6c0e;
  --text: #f0f0f5;
  --text-secondary: #94a3b8;
  --text-dim: #64748b;
  --success: #22c55e;
  --danger: #ef4444;
  --white: #ffffff;

  /* Glows */
  --glow-blue: 0 0 30px rgba(37, 99, 235, 0.3);
  --glow-orange: 0 0 30px rgba(249, 115, 22, 0.35);
  --glow-blue-strong: 0 0 60px rgba(37, 99, 235, 0.4);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Fonts */
  --font: 'Mona Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Glass */
  --glass-bg: rgba(17, 17, 24, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: var(--font); }
h1, h2, h3, h4, .hero-title, .section-title { font-family: var(--font-heading); }

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

/* ============================================================
   NAVIGATION (Mega Dropdown — Option A)
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
  text-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
  white-space: nowrap;
  text-decoration: none;
}

.nav__dealer-badge {
  display: flex;
  align-items: center;
  opacity: 0.9;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.nav__dealer-badge:hover { opacity: 1; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  text-decoration: none;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link:focus-visible { color: var(--text); }

.nav__link:hover::after,
.nav__link:focus-visible::after { width: 100%; }

.nav__link--active { color: var(--text); }
.nav__link--active::after { width: 100%; }

.nav__link--login {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-dim);
}
.nav__link--login:hover { color: var(--text-secondary); }
.nav__link--login::after { display: none; }

/* Services Dropdown */
.nav__dropdown-wrapper {
  position: relative;
}

.nav__dropdown-trigger {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: var(--font);
  padding: 0;
}

.nav__dropdown-trigger:hover,
.nav__dropdown-trigger:focus-visible { color: var(--text); }

.nav__dropdown-arrow {
  width: 10px;
  height: 10px;
  transition: transform var(--transition-fast);
}

.nav__dropdown-wrapper:hover .nav__dropdown-arrow,
.nav__dropdown-wrapper:focus-within .nav__dropdown-arrow {
  transform: rotate(180deg);
}

.nav__mega-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 520px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.nav__dropdown-wrapper:hover .nav__mega-dropdown,
.nav__dropdown-wrapper:focus-within .nav__mega-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav__dropdown-heading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 12px;
  font-weight: 600;
}

.nav__dropdown-link {
  display: block;
  font-size: 13px;
  color: var(--text);
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav__dropdown-link:hover { color: var(--primary); }

/* Nav CTA Button */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--cta);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--glow-orange);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.nav__cta:hover {
  background: var(--cta-hover);
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.45);
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.nav__phone:hover { color: var(--text); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1010;
}

.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  padding: 40px 24px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--glass-border);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.mobile-nav a:hover { color: var(--text); }

.mobile-nav .mobile-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--cta);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  box-shadow: var(--glow-orange);
}

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

@media (max-width: 640px) {
  .nav__phone span { display: none; }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section { padding: 15px 0; }

/* ============================================================
   COST COMPARISON PARTIAL (partials/cost-comparison.html)
   ============================================================ */
.cost-trap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .cost-trap-grid { grid-template-columns: 1fr; }
}

.cost-trap-card {
  padding: 40px 32px;
  border-radius: var(--radius-md);
  position: relative;
}

.cost-trap-card.traditional {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.cost-trap-card.permanent {
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: var(--glow-blue);
}

.cost-trap-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cost-trap-card .cost-items {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.cost-trap-card .cost-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  border-bottom: 1px solid var(--glass-border);
}

.cost-trap-card .cost-items li:last-child { border-bottom: none; }

.cost-trap-card .cost-items li i {
  flex-shrink: 0;
  margin-top: 2px;
}

.cost-total {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  padding: 16px 0 0;
  border-top: 2px solid var(--glass-border);
}

.cost-total span {
  font-size: 28px;
  display: block;
  margin-top: 4px;
}

.traditional .cost-total span { color: var(--danger); }
.permanent .cost-total span { color: var(--primary); }

.trad-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 24px;
}

.trad-heading .h3-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.xmas-lights-svg {
  display: block;
  width: 100%;
  max-width: 200px;
  overflow: visible;
}

@keyframes xmas-twinkle {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.xmas-b1 { animation: xmas-twinkle 2.2s ease-in-out infinite 0s; }
.xmas-b2 { animation: xmas-twinkle 2.2s ease-in-out infinite 0.28s; }
.xmas-b3 { animation: xmas-twinkle 2.2s ease-in-out infinite 0.55s; }
.xmas-b4 { animation: xmas-twinkle 2.2s ease-in-out infinite 0.83s; }
.xmas-b5 { animation: xmas-twinkle 2.2s ease-in-out infinite 1.1s; }
.xmas-b6 { animation: xmas-twinkle 2.2s ease-in-out infinite 1.38s; }
.xmas-b7 { animation: xmas-twinkle 2.2s ease-in-out infinite 1.65s; }
.xmas-b8 { animation: xmas-twinkle 2.2s ease-in-out infinite 1.93s; }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--cta);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  box-shadow: var(--glow-orange);
  transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--cta-hover);
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
}

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

/* ============================================================
   GLASS CARD
   ============================================================ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--glow-blue);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

/* ============================================================
   ACCORDION / FAQ
   ============================================================ */
.accordion { display: flex; flex-direction: column; gap: 8px; }

.accordion-item {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: color var(--transition-fast);
}

.accordion-trigger:hover { color: var(--primary); }

.accordion-trigger .accordion-icon {
  width: 20px; height: 20px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  color: var(--text-dim);
}

.accordion-item.open .accordion-trigger .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.accordion-item.open .accordion-content {
  max-height: 500px;
}

.accordion-body {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--cta);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--glow-orange);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  justify-content: center;
}

.form-submit:hover {
  background: var(--cta-hover);
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.45);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  padding: 12px 0;
  font-size: 13px;
  color: var(--text-dim);
}

.breadcrumbs a {
  color: var(--text-dim);
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover { color: var(--text-secondary); }

.breadcrumbs span { margin: 0 8px; }

/* ============================================================
   FOOTER (4-Column Premium)
   ============================================================ */
.footer {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), transparent) 1;
  background: #060609;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
}

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

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.footer__dealer-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-align: center;
}

.footer__desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer__social-icon:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.footer__heading {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer__link {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 5px 0;
  transition: color var(--transition-fast);
}

.footer__link:hover { color: var(--text); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.footer__contact-item i { color: var(--primary); }
.footer__contact-item a { color: var(--text); transition: color var(--transition-fast); }
.footer__contact-item a:hover { color: var(--primary); }

.footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__bottom-logo {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.footer__copyright {
  font-size: 12px;
  color: var(--text-dim);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 12px;
  color: var(--text-dim);
  transition: color var(--transition-fast);
}

.footer__legal a:hover { color: var(--text-secondary); }

/* ============================================================
   FOCUS & ACCESSIBILITY
   ============================================================ */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus { top: 16px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   CTA SECTION (reusable bottom CTA block)
   ============================================================ */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg), rgba(249, 115, 22, 0.03));
}

.cta-section .section-title { margin-bottom: 16px; }

/* ============================================================
   STICKY BOTTOM BAR
   ============================================================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 24px;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-bar-text strong { font-size: 15px; display: block; color: var(--text-primary); }
.sticky-bar-text span { font-size: 13px; color: var(--text-secondary); }
.sticky-bar-actions { display: flex; gap: 10px; flex-shrink: 0; }
.sticky-bar .btn-primary { padding: 12px 24px; font-size: 14px; }
.sticky-bar .btn-ghost { padding: 12px 20px; font-size: 14px; }
@media (max-width: 640px) {
  .sticky-bar-text span { display: none; }
  .sticky-bar .btn-ghost { display: none; }
  .sticky-bar .btn-primary { padding: 12px 20px; font-size: 13px; }
  .sticky-bar-text strong { font-size: 13px; }
}

/* ============================================================
   WEB LEAD FORM — DATE STRIP + SLOT GRID
   ============================================================ */
.date-strip-label,
.slot-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: block;
}

/* Scrollable horizontal strip of date buttons */
.date-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 16px;
}
.date-strip::-webkit-scrollbar { display: none; }

.date-btn {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  padding: 10px 4px;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  font-family: var(--font);
  transition: border-color 0.15s, background 0.15s;
}
.date-btn:hover:not(:disabled) { border-color: var(--primary); background: rgba(37,99,235,0.06); }
.date-btn.selected { border-color: var(--primary); background: var(--primary); color: #fff; }
.date-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.date-btn .date-btn-dow { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.date-btn .date-btn-day { font-size: 20px; font-weight: 700; line-height: 1.1; }
.date-btn .date-btn-mon { font-size: 11px; }

/* Slot grid */
.slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  min-height: 40px;
}

.slot-loading {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.slot-empty {
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

.slot-btn {
  padding: 8px 14px;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.slot-btn:hover { border-color: var(--primary); background: rgba(37,99,235,0.06); }
.slot-btn.selected { border-color: var(--primary); background: var(--primary); color: #fff; }
