:root {
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8F8F8;
  --color-bg-card: #FFFFFF;
  --color-border: #E8E8E8;
  --color-text-primary: #111111;
  --color-text-secondary: #555555;
  --color-accent: #FF6B00;
  --color-accent-dark: #E05A00;
  --color-accent-light: #FFF3EB;
  --color-black: #111111;
  --color-white: #FFFFFF;
  --shadow-card: 0 2px 20px rgba(0, 0, 0, .08);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, .14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--color-bg);
  color: var(--color-text-primary);
  padding-top: 60px;
}

h1,
h2,
h3,
h4,
.navbar-brand,
.footer-brand {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.3px;
  margin-bottom: 20px;
}

h2 {
  font-size: 36px;
  line-height: 1.18;
  font-weight: 700;
  margin-bottom: 14px;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.section-pad {
  padding: 80px 0;
}

.bg-alt {
  background: var(--color-bg-alt);
}

.eyebrow {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p {
  font-size: 17px;
}

/* ── NAVBAR ─────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0;
  transition: all 0.4s ease;

  /* Glassmorphism dark bar */
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.97);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(255, 107, 0, 0.2);
}

.site-header .navbar {
  padding: 0;
  min-height: 68px;
  align-items: stretch;
}

/* ── Logo ── */
.site-header .navbar-brand {
  padding: 0 24px 0 0;
  margin-right: 0;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: opacity 0.2s;
}

.site-header .navbar-brand:hover {
  opacity: 0.85;
}

.site-header .brand-logo {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── Nav links wrapper ── */
.site-header .navbar-nav {
  gap: 2px;
  padding: 12px 0;
}

/* ── Individual nav links ── */
.site-header .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.60) !important;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 16px !important;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 999px;
  transition: transform 0.25s ease;
}

.site-header .nav-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.05);
}

.site-header .nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.site-header .nav-link.active {
  color: #ffffff !important;
  background: transparent;
}

.site-header .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
  background: var(--color-accent);
}

/* ── Call CTA button ── */
.site-header .nav-call {
  position: relative;
  background: var(--color-accent);
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 20px !important;
  border-radius: 10px;
  border: none;
  margin-left: 12px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  transition: background 0.25s ease,
              box-shadow 0.25s ease,
              transform 0.2s ease;
  box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
}

/* Shine sweep on hover */
.site-header .nav-call::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.site-header .nav-call:hover::before {
  left: 140%;
}

.site-header .nav-call:hover {
  background: #FF8C00;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 107, 0, 0.45);
  color: #ffffff !important;
}

.site-header .nav-call:active {
  transform: translateY(0);
}

/* ── Hamburger ── */
.site-header .menu-toggle {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.site-header .menu-toggle:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.site-header .menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Burger → X */
.site-header .menu-toggle.open {
  border-color: rgba(255, 107, 0, 0.4);
  background: rgba(255, 107, 0, 0.08);
}

.site-header .menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--color-accent);
}
.site-header .menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.site-header .menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--color-accent);
}

/* ── Mobile dropdown ── */
@media (max-width: 991px) {
  .site-header .navbar {
    min-height: 60px;
    padding: 0 4px;
  }

  .site-header .navbar-brand {
    border-right: none;
    padding-right: 0;
  }

  .site-header .navbar-collapse {
    background: #0F0F0F;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 107, 0, 0.12);
    margin: 0 -12px;
    padding: 16px 20px 20px;
  }

  .site-header .navbar-nav {
    gap: 4px;
    padding: 0;
  }

  .site-header .nav-link {
    padding: 12px 16px !important;
    font-size: 15px;
    border-radius: 10px;
  }

  .site-header .nav-link::after {
    display: none;
  }

  .site-header .nav-link.active {
    background: rgba(255, 107, 0, 0.10) !important;
    color: var(--color-accent) !important;
  }

  .site-header .nav-call {
    display: flex;
    justify-content: center;
    margin: 12px 0 0 0 !important;
    padding: 14px 20px !important;
    font-size: 15px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
  }

  /* Subtle separator between links and CTA */
  .site-header .navbar-nav li:last-child {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 8px;
    padding-top: 8px;
  }
}
/* ── END NAVBAR ──────────────────────────────────── */

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white) !important;
  border: none;
}

.btn-accent:hover {
  background: var(--color-accent-dark);
}

.btn-outline-dark {
  border: 1.5px solid var(--color-black);
  color: var(--color-black);
  background: transparent;
}

.btn-outline-dark:hover {
  color: var(--color-white);
  background: var(--color-black);
}

.hero {
  background: var(--color-white);
}

.hero-subtitle {
  max-width: 680px;
  font-size: 18px;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--color-text-primary);
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-accent);
  font-size: 13px;
}

.hero-actions,
.cta-row,
.stacked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stacked-actions {
  flex-direction: column;
}

.lead-card,
.contact-card,
.hours-panel,
.stat-card,
.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.lead-card,
.contact-card,
.hours-panel {
  padding: 28px;
}

.lead-card h2 {
  font-size: 26px;
}

label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, .12);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.checkbox-grid label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-bg-alt);
  cursor: pointer;
}

.btn-submit {
  height: 52px;
}

.privacy-note {
  margin: 14px 0 0;
  font-size: 13px;
  text-align: center;
}

.success-card {
  padding: 24px;
  border: 1px solid rgba(34, 197, 94, .28);
  border-radius: 14px;
  background: #F0FDF4;
  text-align: center;
}

.success-card h3 {
  color: #15803D;
}

.trust-strip {
  background: var(--color-black);
  color: var(--color-white);
  padding: 16px 0;
}

.trust-strip-inner {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  white-space: nowrap;
}

.trust-strip-inner::-webkit-scrollbar {
  display: none;
}

.info-card {
  min-height: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px;
  transition: all .25s ease;
}

.info-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, .12);
  border-left: 3px solid var(--color-accent);
  transform: translateY(-4px);
}

.info-card a {
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: none;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.video-card video {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  display: block;
  background: #000;
}

.video-card p {
  font-size: 13px;
  margin-top: 10px;
}

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

.mini-card {
  min-width: 180px;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.mini-card span {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
}

.mini-card h3 {
  font-size: 18px;
  margin-bottom: 0;
}

.device-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.device-tabs button {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  padding: 10px 18px;
  font-weight: 700;
}

.device-tabs button.active {
  border-color: var(--color-accent);
  color: var(--color-white);
  background: var(--color-accent);
}

.device-row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 16px;
  padding-bottom: 12px;
}

.device-row::-webkit-scrollbar {
  height: 8px;
}

.device-row::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 999px;
}

.device-card {
  min-width: 110px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  flex-shrink: 0;
}

.device-card img {
  max-height: 80px;
  object-fit: contain;
  width: 100%;
}

.device-card p {
  font-size: 11px;
  color: var(--color-text-secondary);
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.3;
}

.contact-card a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 700;
}

.hours-table {
  margin: 20px 0;
}

.hours-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}

.hours-table div:last-child {
  border-bottom: 0;
}

.dark-cta {
  background: var(--color-black);
}

.dark-cta .section-heading h2,
.dark-cta .section-heading p {
  color: var(--color-white);
}

.bottom-lead {
  max-width: 850px;
  margin: 0 auto;
}

.page-hero {
  text-align: center;
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
}

.breadcrumb-line {
  margin-bottom: 18px;
  color: var(--color-text-secondary);
}

.breadcrumb-line a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stat-card,
.feature-card {
  padding: 24px;
}

.stat-card span {
  display: block;
  font-size: 32px;
  margin-bottom: 12px;
}

.feature-card {
  min-height: 100%;
}

.accordion-item {
  border-color: var(--color-border);
}

.accordion-button {
  font-weight: 700;
}

.accordion-button:not(.collapsed) {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(255, 107, 0, .12);
  border-color: var(--color-accent);
}

.accordion-button::after {
  filter: sepia(1) saturate(4) hue-rotate(345deg);
}

.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 56px 0 26px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .78);
}

.site-footer a {
  text-decoration: none;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white) !important;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  margin-top: 34px;
  padding-top: 20px;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.mobile-call-bar {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  height: 56px;
  line-height: 56px;
  background: var(--color-accent);
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 991px) {
  body {
    padding-bottom: 56px;
  }

  .mobile-call-bar {
    display: block;
  }

  .accessory-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 12px;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  .section-pad {
    padding: 48px 0;
  }

  .hero-actions,
  .cta-row,
  .stacked-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .lead-card,
  .contact-card,
  .hours-panel {
    padding: 20px;
  }

  .checkbox-grid,
  .video-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner {
    gap: 28px;
  }

  .hours-table div {
    display: grid;
    gap: 2px;
  }
}
