/* ================================================
   DOMALAB — STYLE.CSS
   Industrial-eco fusion: charcoal + teal + copper
   ================================================ */

/* ---------- VARIABLES ---------- */
:root {
  /* Core palette */
  --bg-base:     #0A0A0A;
  --bg-surface:  #111111;
  --bg-elevated: #1A1A1A;
  --bg-card:     #141414;

  /* Text */
  --text-primary:   #F0F0F0;
  --text-secondary: #8A8A8A;
  --text-muted:     #555555;

  /* Accent — Teal (eco) */
  --accent:         #00D4AA;
  --accent-dim:     #00A884;
  --accent-glow:    rgba(0, 212, 170, 0.15);

  /* Accent — Copper (industrial) */
  --copper:         #E8853D;
  --copper-dim:     #C46A28;
  --copper-glow:    rgba(232, 133, 61, 0.15);

  /* Semantic */
  --success: #00D4AA;
  --danger:  #E8534D;
  --warning: #E8853D;

  /* Typography */
  --font-display: 'JetBrains Mono', monospace;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Spacing */
  --container: 1200px;
  --section-py: 6rem;
  --gap:        2rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration: 0.3s;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

/* ---------- UTILITIES ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--section-py) 0; position: relative; }

/* ---------- SECTION HEADERS ---------- */
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.section-tag--light {
  color: var(--accent);
  background: rgba(0, 212, 170, 0.12);
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.section-h2--light { color: #fff; }
.section-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 640px;
}
.section-desc--light { color: rgba(255,255,255,0.7); }
.section-header { margin-bottom: 3.5rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg-base);
}
.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-ghost {
  border: 1px solid var(--text-muted);
  color: var(--text-secondary);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline {
  border: 1px solid var(--text-muted);
  color: var(--text-secondary);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}
.btn-block { width: 100%; }
.btn-submit {
  padding: 0.85rem 2rem;
  min-width: 160px;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--duration);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon {
  height: 28px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: color var(--duration);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--bg-base) !important;
  font-weight: 600 !important;
  margin-left: 0.5rem;
}
.nav-cta:hover {
  background: var(--accent-dim) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--duration);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
  filter: saturate(0.3) brightness(0.6);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  /* Static positioning — no animation to avoid Firefox strobing with blur */
}
.hero-glow--teal {
  background: var(--accent);
  top: -20%;
  right: -10%;
}
.hero-glow--copper {
  background: var(--copper);
  bottom: -20%;
  left: -10%;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(0, 212, 170, 0.15);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.6s var(--ease-out) both;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  /* No animation — static dot, no strobing */
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.6s 0.1s var(--ease-out) both;
}
.hero-accent {
  background: linear-gradient(135deg, var(--accent), var(--copper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.6s 0.2s var(--ease-out) both;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeSlideUp 0.6s 0.3s var(--ease-out) both;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  animation: fadeSlideUp 0.6s 0.4s var(--ease-out) both;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.35rem;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  background: var(--bg-surface);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step-card {
  flex: 0 1 300px;
  text-align: center;
  padding: 2rem 1.5rem;
}
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 2.5rem;
}
.connector-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--copper));
  position: relative;
}
.connector-line::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--copper);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.icon-circle svg { width: 24px; height: 24px; }
.icon-circle--teal {
  background: var(--accent-glow);
  border: 1px solid rgba(0, 212, 170, 0.2);
  color: var(--accent);
}
.icon-circle--copper {
  background: var(--copper-glow);
  border: 1px solid rgba(232, 133, 61, 0.2);
  color: var(--copper);
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-visual {
  padding: 2rem 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 140px;
}
.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
  filter: brightness(0.85) saturate(0.9);
}
.service-card:hover .service-img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}
.service-card:has(.service-img) .service-visual {
  padding: 0;
}
.service-card:has(.service-img) .service-body {
  padding-top: 1.25rem;
}
.service-icon-large {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover .service-icon-large {
  transform: scale(1.05);
}
.service-icon-large svg {
  width: 48px;
  height: 48px;
}
.service-card--kitchen .service-icon-large {
  background: var(--accent-glow);
  border: 1px solid rgba(0, 212, 170, 0.15);
  color: var(--accent);
}
.service-card--graffiti .service-icon-large {
  background: var(--copper-glow);
  border: 1px solid rgba(232, 133, 61, 0.15);
  color: var(--copper);
}
.service-card--restore .service-icon-large {
  background: linear-gradient(135deg, var(--accent-glow), var(--copper-glow));
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--accent);
}
.service-body {
  padding: 1.5rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.service-card--kitchen .service-label { color: var(--accent); }
.service-card--graffiti .service-label { color: var(--copper); }
.service-card--restore .service-label { color: var(--accent); }
.service-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  flex: 1;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.service-card--graffiti .service-list li::before { background: var(--copper); }

/* ---------- BEFORE / AFTER ---------- */
.before-after {
  background: var(--bg-surface);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
}
/* Comparison slider */
.ba-compare {
  position: relative;
  height: 240px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba-compare__before,
.ba-compare__after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-compare__before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.ba-compare__after {
  z-index: 1;
}
.ba-compare__slider {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  touch-action: none;
}
.ba-compare__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
}
.ba-compare__handle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: transform 0.15s ease;
  flex-shrink: 0;
}
.ba-compare__handle svg {
  width: 20px;
  height: 20px;
  color: var(--bg-base);
}
.ba-compare:hover .ba-compare__handle,
.ba-compare:active .ba-compare__handle {
  transform: scale(1.1);
}
.ba-surface {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.ba-surface--dirty {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(120, 60, 20, 0.4) 0px,
      rgba(100, 50, 15, 0.5) 2px,
      rgba(140, 70, 25, 0.3) 4px,
      rgba(80, 40, 10, 0.6) 6px
    ),
    linear-gradient(180deg, #3a1f0a, #5c3318);
}
.ba-surface--graffiti {
  background:
    radial-gradient(circle at 30% 40%, rgba(255,0,0,0.5) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(0,100,255,0.4) 0%, transparent 35%),
    radial-gradient(circle at 50% 70%, rgba(255,200,0,0.4) 0%, transparent 30%),
    linear-gradient(180deg, #6b4423, #8b6340);
  background-blend-mode: overlay;
}
.ba-surface--carbon {
  background:
    repeating-linear-gradient(
      0deg,
      rgba(20,20,20,0.9) 0px,
      rgba(40,30,20,0.8) 3px,
      rgba(15,15,15,0.95) 5px
    ),
    linear-gradient(180deg, #1a1a1a, #2a2015);
}
.ba-surface--clean {
  background: linear-gradient(135deg, #d0d0d0, #e8e8e8);
}
.ba-surface--brick-clean {
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 18px,
      rgba(0,0,0,0.1) 18px,
      rgba(0,0,0,0.1) 20px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 38px,
      rgba(0,0,0,0.05) 38px,
      rgba(0,0,0,0.05) 40px
    ),
    linear-gradient(180deg, #c4a882, #b89b74);
}
.ba-surface--steel-clean {
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 30px,
      rgba(0,0,0,0.03) 30px,
      rgba(0,0,0,0.03) 31px
    ),
    linear-gradient(180deg, #d8d8d8, #e5e5e5);
}
.ba-caption {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  text-align: center;
  max-width: 200px;
}
.ba-surface--clean .ba-caption,
.ba-surface--brick-clean .ba-caption,
.ba-surface--steel-clean .ba-caption {
  color: rgba(0,0,0,0.65);
  text-shadow: none;
}
.ba-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  z-index: 2;
}
.ba-label--before {
  background: rgba(232, 83, 77, 0.85);
  color: #fff;
}
.ba-label--after {
  background: rgba(0, 212, 170, 0.85);
  color: var(--bg-base);
}
.ba-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ---------- ADVANTAGES ---------- */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.adv-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s var(--ease-out);
}
.adv-card:hover {
  border-color: rgba(0, 212, 170, 0.15);
  background: var(--bg-elevated);
}
.adv-icon {
  margin-bottom: 1.25rem;
}
.adv-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}
.adv-card:nth-child(even) .adv-icon svg { color: var(--copper); }
.adv-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.adv-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ---------- COMPARISON TABLE ---------- */
.comparison {
  background: var(--bg-surface);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.comp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comp-table th,
.comp-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.comp-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.comp-table th:first-child { text-align: left; }
.comp-highlight {
  color: var(--accent) !important;
  background: var(--accent-glow);
  border-radius: var(--radius-sm);
}
.comp-feature {
  text-align: left;
  font-weight: 500;
  color: var(--text-primary);
}
.comp-check { color: var(--accent); font-weight: 700; }
.comp-x { color: var(--danger); font-weight: 700; }
.comp-mid { color: var(--warning); font-weight: 700; }
.comp-table td:not(.comp-highlight):not(.comp-feature) {
  color: var(--text-secondary);
}

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s var(--ease-out);
}
.price-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.price-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(0,212,170,0.04), var(--bg-card));
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg-base);
  padding: 0.3rem 1rem;
  border-radius: 100px;
}
.price-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.price-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}
.price-card--featured .price-label { color: var(--accent); }
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}
.price-from {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.price-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
}
.price-unit {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.price-features {
  flex: 1;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.price-features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 1.5rem;
  position: relative;
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}
.pricing-note {
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  background: var(--accent-glow);
  border: 1px solid rgba(0, 212, 170, 0.12);
  border-radius: var(--radius-md);
}
.pricing-note p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ---------- SOCIAL PROOF ---------- */
.social-proof {
  background: var(--bg-surface);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.proof-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s var(--ease-out);
}
.proof-card:hover {
  border-color: rgba(255,255,255,0.1);
}
.proof-card--placeholder {
  border-style: dashed;
  opacity: 0.7;
}
.proof-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
}
.proof-stars span {
  color: var(--copper);
  font-size: 1.1rem;
}
.proof-quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.proof-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.proof-avatar--placeholder {
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px dashed var(--text-muted);
}
.proof-info {
  display: flex;
  flex-direction: column;
}
.proof-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.proof-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.proof-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  transition: color var(--duration);
}
.faq-q:hover { color: var(--accent); }
.faq-q::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: transform var(--duration), color var(--duration);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] .faq-q::after {
  content: '−';
  color: var(--accent);
}
.faq-a {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
details summary::-webkit-details-marker { display: none; }
details summary { list-style: none; }

/* ---------- WAITLIST ---------- */
.waitlist-card {
  position: relative;
  background: linear-gradient(135deg, var(--bg-elevated), #1a2a28);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 4rem 3rem;
}
.waitlist-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.waitlist-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(120px);
  opacity: 0.1;
  top: -30%;
  right: -10%;
}
.waitlist-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.waitlist-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: flex;
  gap: 0.75rem;
}
.form-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  color: var(--text-primary);
  width: 100%;
  transition: border-color var(--duration), background var(--duration);
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 212, 170, 0.04);
}
.form-input--select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%238A8A8A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-input--name { flex: 1; min-width: 0; }
.form-input--email { flex: 1.5; min-width: 0; }
.form-textarea { resize: vertical; min-height: 80px; }
.waitlist-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.waitlist-note svg { flex-shrink: 0; color: var(--accent); }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.contact-item svg { color: var(--accent); flex-shrink: 0; }
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-tagline {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.footer-links {
  display: flex;
  gap: 4rem;
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--duration);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-eco {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- VIDEO SECTION ---------- */
.video-section {
  background: var(--bg-base);
}
.video-embed-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(0,212,170,0.05), rgba(232,133,61,0.08));
  color: rgba(255,255,255,0.5);
}
.video-placeholder__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.video-placeholder:hover .video-placeholder__icon {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
  transform: scale(1.05);
}
.video-placeholder__text {
  text-align: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
}
.video-placeholder__text small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ---------- PARALLAX ---------- */
.parallax-bg {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ---------- IMAGE LOADING ---------- */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
img[loading="lazy"].loaded,
img[loading="lazy"][src].loaded {
  opacity: 1;
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 1024px) {
  /* Nav — collapse to burger */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 0.5rem; font-size: 1rem; }
  .nav-cta { margin-left: 0 !important; text-align: center; margin-top: 0.5rem; }

  /* Grids */
  .services-grid,
  .ba-grid,
  .pricing-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    gap: 2.5rem;
  }
  .footer-grid {
    flex-direction: column;
    gap: 2.5rem;
  }
  .footer-links { gap: 2.5rem; }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-py: 4rem;
  }

  /* Hero mobile */
  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .hero-h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.75rem; }

  /* Steps mobile */
  .steps-grid {
    flex-direction: column;
    align-items: center;
  }
  .step-connector {
    padding-top: 0;
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }

  /* Service images mobile */
  .service-img {
    height: 160px;
  }

  /* Grids mobile */
  .services-grid,
  .ba-grid,
  .pricing-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .adv-grid {
    grid-template-columns: 1fr;
  }

  /* Before/after mobile */
  .ba-compare {
    height: 200px;
  }

  /* Comparison mobile */
  .comp-table { font-size: 0.78rem; }
  .comp-table th,
  .comp-table td { padding: 0.65rem 0.5rem; }

  /* Video mobile */
  .video-embed-wrap {
    margin: 0 -0.5rem;
  }

  /* Contact mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Waitlist mobile */
  .waitlist-card {
    padding: 2.5rem 1.5rem;
  }
  .form-row {
    flex-direction: column;
  }

  /* Footer mobile */
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero-h1 { font-size: 2.2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}

/* ---------- PRINT ---------- */
@media print {
  .nav, .hero-bg, .waitlist-bg, .waitlist-glow, .hero-glow { display: none; }
  body { background: white; color: black; }
}