@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ==========================================================================
   FLAWZILLA DESIGN SYSTEM (ALIGNED TO APPLE/TESLA LUXURY SPEC)
   ========================================================================== */
:root {
  /* Palette */
  --primary: #087b45;
  --primary-light: #00df81;
  --primary-glow: rgba(0, 223, 129, 0.25);
  --primary-dark: #055932;
  --brand-green: #007c45;
  --brand-dot: #f59e0b;

  --dark-slate: #0b0f17;
  --dark-card: #121824;
  --dark-border: rgba(255, 255, 255, 0.1);

  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --bg-main: #ffffff;
  --bg-soft: #f8fafc;
  --bg-subtle: #f1f5f9;
  --border-light: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(8, 123, 69, 0.35);

  /* Legacy aliases to keep existing markup 100% functional */
  --ink: var(--text-main);
  --muted: var(--text-muted);
  --green: var(--primary);
  --green-dark: var(--primary-dark);
  --mint: #e8f9f1;
  --line: var(--border-light);
  --paper: #ffffff;
  --soft: var(--bg-soft);

  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;

  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --radius: 18px;

  --shadow-subtle: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 10px 30px -4px rgba(15, 23, 42, 0.07);
  --shadow-floating: 0 20px 50px -10px rgba(15, 23, 42, 0.12);
  --shadow-emerald: 0 8px 24px -3px rgba(8, 123, 69, 0.28);
  --shadow: var(--shadow-card);

  --nav-height: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  margin: 0;
  color: var(--text-body);
  background: var(--bg-main);
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: .7rem 1.1rem;
  color: #fff;
  background: var(--text-main);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ==========================================================================
   SITE HEADER (STICKY LUXURY NAVBAR)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 45;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 850;
  letter-spacing: -0.03em;
  white-space: nowrap;
  font-size: 1.45rem;
  color: var(--text-main);
  line-height: 1;
}

/* Universal SVG bulletproofing */
svg {
  flex-shrink: 0;
}

.brand-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-icon-box img,
.brand-icon-box svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand-icon-box svg {
  stroke: var(--primary-light, #00df81);
}

.btn svg,
.button svg,
.button-primary svg,
.button-secondary svg,
.mobile-bar .btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary, #087b45);
  flex-shrink: 0;
}

.step-icon-badge,
.step-emoji-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e8f9f1;
  border: 1px solid rgba(8, 123, 69, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.step-icon-badge svg,
.step-emoji-badge svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  flex-shrink: 0;
  display: block;
}

.strip-badge-emoji {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #e8f9f1;
  border: 1px solid rgba(8, 123, 69, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strip-badge-emoji svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.chip-emoji {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(8, 123, 69, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chip-emoji svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e8f9f1;
  border: 1px solid rgba(8, 123, 69, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  flex-shrink: 0;
}

.bento-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.rel-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 223, 129, 0.1);
  border: 1px solid rgba(0, 223, 129, 0.25);
  color: #00df81;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.rel-icon svg {
  width: 20px;
  height: 20px;
  stroke: #00df81;
  flex-shrink: 0;
}

.ind-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #e8f9f1;
  border: 1px solid rgba(8, 123, 69, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.ind-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.brand .green,
.brand .brand-green {
  color: var(--primary);
}

.brand .dot,
.brand .brand-dot {
  color: var(--brand-dot);
}

.trademark,
.brand-tm {
  display: inline-block;
  margin-left: .08em;
  font-size: .52em;
  font-weight: 700;
  line-height: 1;
  vertical-align: super;
  color: var(--text-muted);
}

/* Nav Links & Actions */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.nav-phone:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #ffffff;
}

.nav-phone svg {
  width: 15px;
  height: 15px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  flex-shrink: 0;
}

/* Form Inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  font-size: 16px !important;
  font-family: inherit;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.65rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
  white-space: nowrap;
}

.button-primary, .btn-primary {
  color: #fff !important;
  background: var(--primary);
  box-shadow: var(--shadow-emerald);
}

.button-primary:hover, .btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -3px rgba(8, 123, 69, 0.35);
}

.button-secondary, .btn-secondary {
  color: var(--text-main) !important;
  background: #ffffff;
  border-color: var(--border-light);
  box-shadow: var(--shadow-subtle);
}

.button-secondary:hover, .btn-secondary:hover {
  background: var(--bg-soft);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-sm {
  min-height: 38px;
  padding: 0.45rem 1.1rem;
  font-size: 0.875rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(160deg, #f7fffb 0%, #ffffff 50%, #f4fbf7 100%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--text-main);
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -.035em;
  word-break: break-word;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 850;
  max-width: 22ch;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 820;
  max-width: 32ch;
}

h3 {
  font-size: 1.25rem;
  font-weight: 780;
}

.lead {
  max-width: 62ch;
  margin: 1.25rem 0 0;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

/* Hero Panel (Hardware / Graphic Box) */
.hero-panel {
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-floating);
}

.hero-panel-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
  display: block;
  background: var(--bg-soft);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.hero-panel .panel-label {
  margin: 0 0 .5rem;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.2;
  color: var(--text-main);
}

.hero-panel p {
  margin: .65rem 0 0;
  color: var(--text-muted);
  font-size: .94rem;
}

.panel-rule {
  height: 1px;
  margin: 1.2rem 0;
  background: var(--border-light);
}

.panel-facts {
  display: grid;
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-body);
  font-size: .92rem;
}

.panel-facts li::before,
.check-list li::before {
  content: "✓";
  margin-right: .65rem;
  color: var(--primary);
  font-weight: 900;
}

/* Trust / Proof Strip */
.proof {
  padding: 1rem 0;
  background: var(--primary-dark);
  color: #fff;
}

.proof .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem 1.75rem;
  text-align: center;
  font-size: .92rem;
  font-weight: 650;
}

.proof span::before {
  content: "•";
  margin-right: .55rem;
  color: var(--primary-light);
}

/* ==========================================================================
   SECTIONS & CARDS
   ========================================================================== */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-head {
  display: grid;
  gap: .75rem;
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.section-head h2 {
  max-width: 100%;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 1.6rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}

.card p {
  margin: .65rem 0 0;
  color: var(--text-muted);
  font-size: .96rem;
  line-height: 1.55;
}

.card .kicker {
  display: block;
  margin-bottom: .5rem;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.card a {
  color: var(--primary);
  font-weight: 750;
}

.check-list {
  display: grid;
  gap: .5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
}

.quote {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--mint);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-main);
}

.quote p {
  margin: 0;
}

/* Steps */
.steps {
  counter-reset: step;
}

.steps .card {
  position: relative;
  padding-top: 4.2rem;
}

.steps .card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1.25rem;
  left: 1.4rem;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .08em;
}

/* Price Cards */
.price-card {
  position: relative;
  padding: 1.85rem 1.6rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}

.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-emerald);
}

.price-card .price-label {
  display: block;
  min-height: 1.5rem;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card .price {
  display: block;
  margin: .6rem 0;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--text-main);
}

.price-card .price small {
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0;
}

.price-card p {
  min-height: 4.2em;
  margin: .65rem 0 0;
  color: var(--text-muted);
  font-size: .94rem;
}

.price-card .button,
.price-card .btn {
  width: 100%;
  margin-top: auto;
  padding-top: 0.8rem;
}

.price-note {
  margin: 1.5rem 0 0;
  color: var(--text-muted);
  font-size: .88rem;
}

.breadcrumb {
  padding: 1.1rem 0;
  color: var(--text-muted);
  font-size: .86rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  overflow: hidden;
}

.breadcrumb span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(55ch, 70vw);
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 600;
}

/* FAQ Details */
.faq {
  display: grid;
  gap: .85rem;
}

.faq details {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-subtle);
  transition: border-color 0.2s;
}

.faq details:hover {
  border-color: var(--border-hover);
}

.faq summary {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: .85rem 1.25rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
}

.faq details p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.links-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.links-list a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-main);
  font-weight: 650;
  font-size: 0.92rem;
  transition: all 0.2s;
}

.links-list a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--mint);
}

/* ==========================================================================
   SITE FOOTER (MATCHING INDEX.HTML LUXURY SPEC)
   ========================================================================== */
.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 3.5rem 0 2rem;
  color: var(--text-body);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-links-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 550;
}

.footer-links-row a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-row a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-light);
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* Legacy footer compatibility */
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}
.site-footer p {
  margin: .4rem 0 0;
  color: var(--text-muted);
  font-size: .9rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
}
.footer-links a {
  color: var(--text-muted);
  font-size: .88rem;
}
.footer-links a:hover {
  color: var(--primary);
}

/* ==========================================================================
   STICKY MOBILE ACTION BAR
   ========================================================================== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border-light);
  gap: 0.75rem;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 960px) {
  :root {
    --nav-height: 64px;
  }

  .site-header {
    height: var(--nav-height);
  }

  .nav-phone {
    display: none;
  }

  .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border-light);
    gap: 0.85rem;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.45rem 0;
  }

  .site-nav a:hover {
    color: var(--primary);
  }

  .site-nav .login {
    color: var(--primary) !important;
    border: none;
    padding: 0;
    font-weight: 700;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

  .hero-panel {
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

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

@media (max-width: 768px) {
  .mobile-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.85rem;
    gap: 0.6rem;
    box-sizing: border-box;
    width: 100%;
  }

  .mobile-bar .btn,
  .mobile-bar .button {
    flex: 1;
    min-height: 44px;
    font-size: 0.84rem;
    padding: 0.5rem 0.65rem;
    white-space: nowrap;
    text-align: center;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  body {
    padding-bottom: 72px;
  }

  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .price-card p {
    min-height: 0;
  }

  .cta-row .button,
  .cta-row .btn {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .nav-actions [data-open-price],
  .nav-actions .nav-cta-btn {
    display: none;
  }

  .header-inner {
    gap: 0.75rem;
  }

  .brand {
    font-size: 1.3rem;
  }

  .container {
    width: min(100% - 1.5rem, 1200px);
  }

  .hero {
    padding: 2.25rem 0;
  }

  h1 {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
    line-height: 1.18;
    max-width: 100%;
  }

  .lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-panel {
    padding: 1.15rem;
  }

  .card {
    padding: 1.15rem;
  }
}

@media (max-width: 380px) {
  .mobile-bar {
    padding: 0.5rem 0.4rem;
    gap: 0.4rem;
  }

  .mobile-bar .btn,
  .mobile-bar .button {
    font-size: 0.76rem;
    padding: 0.45rem 0.3rem;
  }
}

/* ==========================================================================
   MODAL DIALOG (PRICING INQUIRY) - LUXURY APPLE/TESLA GRADE
   ========================================================================== */
.price-dialog {
  border: none;
  background: transparent;
  padding: 0;
  margin: auto;
  max-width: 520px;
  width: calc(100% - 1.5rem);
  max-height: 96vh;
  overflow-y: auto;
  scrollbar-width: none;
  box-sizing: border-box;
  outline: none;
}

.price-dialog::-webkit-scrollbar {
  display: none;
}

.price-dialog::backdrop {
  background: rgba(11, 15, 23, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dialog-shell {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.85rem 1.85rem 1.6rem;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(15, 23, 42, 0.08);
  position: relative;
  animation: dialogPop 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  width: 100%;
}

@keyframes dialogPop {
  0% {
    opacity: 0;
    transform: scale(0.97) translateY(6px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.15rem;
  gap: 1rem;
}

.dialog-head h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.dialog-head p,
.dialog-head span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
}

.dialog-close {
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.dialog-close:hover {
  background: var(--bg-subtle);
  color: var(--text-main);
  transform: rotate(90deg);
}

.dialog-form .form-group {
  margin-bottom: 0.95rem;
}

.dialog-form .form-label,
.dialog-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dialog-form .req {
  color: #dc2626;
  font-weight: 700;
  margin-left: 2px;
}

/* Radio Card Selector (No ugly browser radios) */
.radio-card-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.radio-card,
.radio-card * {
  text-transform: none !important;
  letter-spacing: normal !important;
}

.radio-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.radio-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.75rem 0.85rem;
  border: 1.5px solid var(--border-light);
  border-radius: 13px;
  background: var(--bg-soft);
  transition: all 0.2s ease;
  box-sizing: border-box;
  position: relative;
}

.radio-card:hover .radio-card-inner {
  border-color: rgba(8, 123, 69, 0.4);
  background: #ffffff;
  transform: translateY(-1px);
}

.radio-card input[type="radio"]:checked + .radio-card-inner,
.radio-card.active .radio-card-inner {
  border-color: var(--primary);
  background: rgba(8, 123, 69, 0.04);
  box-shadow: 0 0 0 3px rgba(8, 123, 69, 0.14);
}

.radio-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.radio-card-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 750;
  color: var(--text-main);
  line-height: 1.25;
}

.radio-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.radio-card input[type="radio"]:checked + .radio-card-inner .radio-dot,
.radio-card.active .radio-dot {
  border-color: var(--primary);
  background: var(--primary);
}

.radio-card input[type="radio"]:checked + .radio-card-inner .radio-dot::after,
.radio-card.active .radio-dot::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
}

.radio-card-price {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

.radio-card-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin: 0;
}

/* Form Inputs (Full width, ultra-clean, Apple/Tesla tier) */
.dialog-form input[type="text"]:not(.form-honeypot),
.dialog-form input[type="email"],
.dialog-form input[type="tel"],
.dialog-form input[type="number"],
.dialog-form textarea,
.form-input {
  width: 100% !important;
  display: block !important;
  height: 46px;
  padding: 0.65rem 0.95rem;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  background: var(--bg-soft);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.dialog-form input:not(.form-honeypot):focus,
.dialog-form textarea:focus,
.form-input:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3.5px rgba(8, 123, 69, 0.15);
}

.dialog-form input::placeholder,
.dialog-form textarea::placeholder {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 400;
}

.dialog-form textarea,
.form-textarea {
  height: auto !important;
  min-height: 72px;
  resize: vertical;
  line-height: 1.5;
}

.form-help-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.25rem;
  font-size: 0.73rem;
  color: var(--text-light);
}

/* Honeypot strict hide */
.form-honeypot,
input[name="website"] {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Stepper for Quantity */
.quantity-stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  box-sizing: border-box;
}

.quantity-stepper input[type="number"] {
  flex: 1 1 auto;
  min-width: 0;
  width: auto !important;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  -moz-appearance: textfield;
}

.quantity-stepper input[type="number"]::-webkit-outer-spin-button,
.quantity-stepper input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.stepper-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1.5px solid var(--border-light);
  background: var(--bg-soft);
  color: var(--text-main);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s ease;
  flex-shrink: 0;
  user-select: none;
}

.stepper-btn:hover {
  background: var(--bg-subtle);
  border-color: rgba(8, 123, 69, 0.4);
  color: var(--primary);
}

.stepper-btn:active {
  transform: scale(0.95);
}

.dialog-disclaimer {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0.65rem 0 0.85rem;
}

.dialog-disclaimer a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-submit-dialog {
  width: 100% !important;
  height: 50px;
  border-radius: 13px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 750;
  background: linear-gradient(135deg, #087b45 0%, #066237 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: 0 10px 24px -4px rgba(8, 123, 69, 0.4);
  transition: all 0.22s ease;
}

.btn-submit-dialog:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -4px rgba(8, 123, 69, 0.5);
  background: linear-gradient(135deg, #0a8f50 0%, #077340 100%);
}

.btn-submit-dialog:active {
  transform: translateY(0);
}

.btn-submit-dialog:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  font-size: 0.875rem;
  margin-top: 0.65rem;
  min-height: 1.2rem;
  border-radius: 10px;
}

.form-status.success {
  background: #e8f9f1;
  border: 1px solid rgba(8, 123, 69, 0.25);
  color: #064e2b;
  font-weight: 650;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-status.error {
  background: #fef2f2;
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: #991b1b;
  font-weight: 650;
  padding: 0.85rem 1rem;
}

@media (max-width: 540px) {
  .price-dialog {
    padding: 0.5rem;
    width: calc(100% - 1rem);
  }
  .dialog-shell {
    padding: 1.25rem 1rem 1.15rem;
    border-radius: 18px;
  }
  .radio-card-group {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .dialog-head h3 {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
