/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   SAL'S PROPERTY MAINTENANCE â DESIGN SYSTEM v10.0.0
   ELECTRIC PRECISION + SEASONAL ALMANAC
   âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */

/* ââ DESIGN SYSTEM TOKENS ââ */
:root {
  /* GROUND â warm charcoal, not a clichÃ© near-black */
  --bg-base:        #14170f;
  --bg-surface:     #1b1f15;
  --bg-card:        #20241a;
  --bg-card-2:      #272c1f;
  --bg-glass:       rgba(32, 36, 26, 0.72);
  --bg-glass-2:     rgba(39, 44, 31, 0.5);
  --bg-glass-3:     rgba(45, 50, 36, 0.28);
  --border:         rgba(134, 194, 50, 0.15);
  --border-2:       rgba(134, 194, 50, 0.25);
  --border-glow:    rgba(134, 194, 50, 0.4);

  /* PAPER â the almanac surface, used for tickets, data cards, seasonal panels */
  --paper:          #f2ecdb;
  --paper-raised:   #fbf7ec;
  --paper-line:     #ddd4b8;
  --ink:            #1c1e15;
  --ink-soft:       #52544a;
  --ink-faint:      #8a8a76;

  /* TURF â the real electric-equipment accent (not decorative) */
  --green-50:       rgba(134, 194, 50, 0.05);
  --green-100:      rgba(134, 194, 50, 0.1);
  --green-200:      rgba(134, 194, 50, 0.2);
  --green-300:      rgba(134, 194, 50, 0.3);
  --green-400:      rgba(134, 194, 50, 0.4);
  --green-500:      #86c232;
  --green-600:      #6fa428;
  --green-700:      #588121;
  --green-800:      #446419;
  --green-900:      #324a12;
  --green-glow:     0 0 30px rgba(134, 194, 50, 0.35);

  /* SEASONAL ACCENTS â used only where they carry seasonal meaning (pills, viewer) */
  --rust:           #b8632c;
  --rust-soft:      rgba(184, 99, 44, 0.18);
  --frost:          #6fa8ac;
  --frost-soft:     rgba(111, 168, 172, 0.18);
  --slate:          #5b6b78;
  --slate-soft:     rgba(91, 107, 120, 0.18);
  --amber:          #c99a2e;
  --amber-soft:     rgba(201, 154, 46, 0.18);

  /* TEXT HIERARCHY â on ink ground */
  --text-primary:   #f2efe4;
  --text-secondary: #cfd0c0;
  --text-tertiary:  #a9ab98;
  --text-muted:     #888a78;
  
  /* SHADOWS & DEPTH */
  --shadow-xs:      0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-sm:      0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md:      0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg:      0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-xl:      0 24px 64px rgba(0, 0, 0, 0.7);
  --shadow-inner:   inset 0 2px 4px rgba(0, 0, 0, 0.2);
  
  /* TRANSITIONS & MOTION */
  --ease-in-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:       cubic-bezier(0.0, 0, 0.2, 1);
  --ease-in:        cubic-bezier(0.4, 0, 1, 1);
  --motion-slow:    800ms;
  --motion-normal:  400ms;
  --motion-fast:    200ms;
  
  /* BORDER RADIUS */
  --radius-none:    0px;
  --radius-xs:      4px;
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      20px;
  --radius-2xl:     24px;
  --radius-full:    9999px;
  
  /* FONT SIZES */
  --fs-2xs:         clamp(0.65rem, 2vw, 0.75rem);
  --fs-xs:          clamp(0.75rem, 2.5vw, 0.875rem);
  --fs-sm:          clamp(0.875rem, 3vw, 1rem);
  --fs-base:        clamp(1rem, 3.5vw, 1.125rem);
  --fs-lg:          clamp(1.125rem, 4vw, 1.25rem);
  --fs-xl:          clamp(1.25rem, 4.5vw, 1.5rem);
  --fs-2xl:         clamp(1.5rem, 5vw, 2rem);
  --fs-3xl:         clamp(2rem, 6vw, 2.5rem);
  --fs-4xl:         clamp(2.5rem, 7vw, 3rem);
  --fs-5xl:         clamp(3rem, 8vw, 4rem);
  --fs-6xl:         clamp(4rem, 9vw, 5rem);
  
  /* LINE HEIGHTS & SPACING */
  --leading-none:   1;
  --leading-tight:  1.25;
  --leading-snug:   1.375;
  --leading-normal: 1.5;
  --leading-relaxed:1.625;
  --leading-loose:  2;
  
  /* CONTAINER SIZES */
  --container-sm:   480px;
  --container-md:   768px;
  --container-lg:   1024px;
  --container-xl:   1280px;
  --container-2xl:  1536px;
  
  /* PADDING */
  --pad-x:          clamp(1.25rem, 5vw, 4rem);
  --pad-x-lg:       clamp(2rem, 6vw, 5rem);
  --pad-x-xl:       clamp(2.5rem, 7vw, 6rem);
  --pad-y:          clamp(2rem, 4vw, 3rem);
  --gap:            clamp(1rem, 3vw, 2rem);
}

/* ââ GLOBAL STYLES ââ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

/* PREMIUM BODY STYLES */
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--fs-base);
  line-height: var(--leading-normal);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  overflow-x: hidden;
  /* Premium noise texture for depth */
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015;
  animation: noiseAnimation 20s linear infinite;
}

@keyframes noiseAnimation {
  0% { background-position: 0 0; }
  100% { background-position: 200px 200px; }
}

/* PREMIUM CONTAINERS
   .shell is the markup's actual wrapper class (13 uses); .container is kept as
   an alias since nothing in the HTML uses it, but some future markup might. */
.container, .shell {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

@media (min-width: 768px) {
  .container, .shell {
    padding: 0 var(--pad-x-lg);
  }
}

@media (min-width: 1024px) {
  .container, .shell {
    padding: 0 var(--pad-x-xl);
  }
}

/* ââ TYPOGRAPHY ââ */
/* Fraunces for headings â a display serif with real character, used with restraint.
   Work Sans carries the body. JetBrains Mono (--font-mono) marks anything data-driven:
   weather readouts, ticket fields, viewer meta â the site's "machine voice". */
:root {
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

h1 { font-size: var(--fs-5xl); letter-spacing: -0.02em; }
h2 { font-size: var(--fs-4xl); letter-spacing: -0.015em; }
h3 { font-size: var(--fs-3xl); }
h4 { font-size: var(--fs-2xl); }
h5 { font-size: var(--fs-xl); }
h6 { font-size: var(--fs-lg); }

p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 1rem;
}

p:last-child { margin-bottom: 0; }

/* PREMIUM TEXT UTILITIES */
.text-primary   { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-tertiary  { color: var(--text-tertiary); }
.text-muted     { color: var(--text-muted); }
.text-green     { color: var(--green-500); }

.font-weight-light  { font-weight: 300; }
.font-weight-normal { font-weight: 400; }
.font-weight-medium { font-weight: 500; }
.font-weight-semibold { font-weight: 600; }
.font-weight-bold   { font-weight: 700; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

/* ââ PREMIUM BUTTONS ââ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  cursor: pointer;
  border: none;
  transition: all var(--motion-normal) var(--ease-in-out);
  will-change: transform, box-shadow;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  opacity: 0;
  transition: opacity var(--motion-fast) var(--ease-out);
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: scale(0.98);
}

/* PRIMARY BUTTON - GREEN */
.btn-primary {
  background: var(--green-500);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--green-glow);
}

/* SIZE MODIFIERS */
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: var(--fs-base);
}

.btn-xl {
  padding: 1.15rem 2.5rem;
  font-size: var(--fs-base);
  border-radius: var(--radius-xl);
}

/* GLOW â for the primary conversion CTA only; spend the emphasis in one place */
.btn-glow {
  box-shadow: var(--shadow-sm), var(--green-glow);
}

.btn-glow:hover {
  box-shadow: var(--shadow-md), 0 0 40px rgba(134, 194, 50, 0.5);
}

/* LIGHT â for buttons that sit on paper surfaces (job ticket, weather card) */
.btn-light {
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--paper-line);
}

.btn-light:hover {
  background: var(--paper-raised);
  transform: translateY(-2px);
}

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

.btn-primary:focus-visible {
  outline: 2px solid var(--green-300);
  outline-offset: 2px;
}

/* SECONDARY BUTTON - TRANSPARENT */
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

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

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

/* GHOST BUTTON - MINIMAL */
.btn-ghost {
  background: transparent;
  color: var(--text-tertiary);
}

.btn-ghost:hover {
  background: var(--bg-glass-2);
  color: var(--text-primary);
}

/* LINK BUTTON STYLE */
.btn-link {
  background: transparent;
  color: var(--green-400);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  padding: 0.25rem 0;
}

.btn-link:hover {
  color: var(--green-300);
}

/* ICON BUTTONS */
.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
}

.btn-icon:hover {
  background: var(--bg-glass);
}

/* ââ PREMIUM CARDS WITH GLASSMORPHISM ââ */
.card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--motion-normal) var(--ease-in-out);
  will-change: transform, box-shadow, border-color;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(255, 255, 255, 0.03),
    transparent
  );
  opacity: 0;
  transition: opacity var(--motion-fast) var(--ease-out);
}

.card:hover::before {
  opacity: 1;
}

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

.card:active {
  transform: translateY(0);
}

/* ELEVATED CARDS */
.card-elevated {
  box-shadow: var(--shadow-md);
}

.card-elevated:hover {
  box-shadow: var(--shadow-lg);
}

/* ââ PREMIUM INPUTS & FORMS ââ */
.input-group {
  margin-bottom: var(--gap);
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-secondary);
  font-size: var(--fs-sm);
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-glass-2);
  color: var(--text-primary);
  font-size: var(--fs-base);
  transition: all var(--motion-normal) var(--ease-in-out);
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--border-glow);
  box-shadow: 0 0 0 3px rgba(90, 158, 56, 0.2);
}

.input-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ââ SECTION STYLES ââ */
.section {
  padding: var(--pad-y) 0;
  position: relative;
  overflow: hidden;
}

/* Section-level content wrappers that need the same width constraint as .shell */
.viewer-shell,
.quote-layout,
.faq-layout {
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Skip link â hidden until keyboard focus reaches it */
.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -120%);
  background: var(--green-600);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.7rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: transform var(--motion-fast) var(--ease-out);
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

/* Owner avatar initial badge */
.owner-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--green-500);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  flex-shrink: 0;
}

.section-hdr {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 3rem;
}

.section-hdr p {
  margin-top: 0.75rem;
  font-size: var(--fs-sm);
  color: var(--text-tertiary);
}

.section-sub {
  font-size: var(--fs-base);
  color: var(--text-muted);
  max-width: 40rem;
  margin: 1rem auto 0;
}

/* ââ EYEBROW ââ */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 0.75rem;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow--left {
  text-align: left;
}

/* ââ FOCUS VISIBLE ââ */
:focus-visible {
  outline: 2px solid var(--green-300);
  outline-offset: 2px;
  border-radius: var(--radius-md);
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ââ SCROLL REVEAL ââ */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-in-out), transform 0.7s var(--ease-in-out);
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* Staggered reveal */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }
.reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal:nth-child(8) { transition-delay: 0.56s; }

/* ââ HEADER ââ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--motion-normal) var(--ease-in-out),
              backdrop-filter var(--motion-normal) var(--ease-in-out),
              border-color var(--motion-normal) var(--ease-in-out);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 32px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 4.5rem;
  padding: 0 var(--pad-x);
  max-width: var(--container-xl);
  margin: 0 auto;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--green-500);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-body);
}

.brand-text small {
  color: var(--text-2);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  gap: 2rem;
  margin: 0 auto;
}

.desktop-nav a {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  transition: color 0.2s;
  padding: 0.25rem 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--green-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-in-out);
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.header-phone {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
  display: none;
  min-height: 44px;
  align-items: center;
  padding-block: 0.5rem;
}

.header-cta {
  padding: 0.55em 1.25em;
  font-size: var(--fs-xs);
}

/* Hamburger - Mobile only */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: 0.375rem;
}

@media (max-width: 1023px) {
  .menu-toggle {
    display: flex;
  }
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease-in-out);
  border-radius: 2px;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu - Closed by default, only exists below 1024px */
.mobile-menu {
  position: fixed;
  top: 4.5rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 8, 6, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem var(--pad-x) 6rem;
  display: none;
  flex-direction: column;
  gap: 0;
  z-index: 99;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s var(--ease-in-out), visibility 0.3s var(--ease-in-out);
}

.mobile-menu.is-open {
  display: flex !important;
  visibility: visible;
  opacity: 1;
}

/* Desktop: completely remove mobile menu from layout */
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .menu-toggle {
    display: none !important;
  }
}

/* Tablet/mobile: show hamburger */
@media (max-width: 1023.98px) {
  .menu-toggle {
    display: flex !important;
  }
}

.mobile-menu a {
  display: block;
  font-size: 1.75rem;
  font-family: var(--font-display);
  color: var(--text-primary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

body.menu-open .site-header {
  z-index: 101;
}



.mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ââ HERO ââ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  will-change: transform;
  perspective: 1800px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateZ(-8px) scale(1.006);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: translateZ(0);
  will-change: transform;
  filter: saturate(1.08) contrast(1.04);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 12rem;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-copy {
  max-width: 44rem;
  flex: 1.15 1 0%;
}

.hero-visual {
  flex: 0.85 1 0%;
  min-width: 0;
}

.hero-visual-caption {
  text-align: center;
  margin-top: 1.25rem;
}

.hero-visual-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
}

.hero-visual-caption span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
}

.hero-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(20, 23, 15, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.5rem;
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green-400);
  border-radius: 50%;
  animation: live-pulse 2s ease-in-out infinite;
  will-change: transform, opacity;
  transform: translateZ(0);
}

@keyframes live-pulse {
  0%, 100% { opacity: 0.65; transform: translateZ(0) scale(0.9); }
  50% { opacity: 1; transform: translateZ(0) scale(1.25); }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.7);
  will-change: opacity;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 36rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

/* Animated gradient border on hero for premium depth */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(90, 158, 56, 0.15), transparent 40%, transparent 60%, rgba(90, 158, 56, 0.1)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hero-promise {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-promise svg {
  color: var(--green-400);
  flex-shrink: 0;
}

/* Hero Stats Bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(10, 18, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}

.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1.25rem var(--pad-x);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  color: var(--text-primary);
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-stat-sep {
  width: 1px;
  height: 2rem;
  background: var(--border);
}