:root {
    --bg: #0E0F0C;
    --bg-alt: #15170F;
    --bg-deep: #070806;
    --surface: #1B1D14;
    --panel: #22251A;
    --line: rgba(212,250,82,0.14);
    --line-strong: rgba(212,250,82,0.34);
    --text: #F2F4EA;
    --muted: #8A8E78;
    --dim: #5C5F4F;
    --lime: #D4FA52;
    --lime-bright: #E8FF6D;
    --lime-neon: #DFFF3A;
    --lime-glow: rgba(212,250,82,0.55);
    --lime-glow-soft: rgba(212,250,82,0.22);
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; }

  /* Reveal on scroll */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1); }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* Generic motion */
  @keyframes pt-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @keyframes pt-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
  @keyframes pt-blink { 50% { opacity: 0; } }
  @keyframes pt-glow {
    0%,100% { box-shadow: 0 0 0 0 var(--lime-glow), 0 0 22px rgba(212,250,82,0.45); }
    50%     { box-shadow: 0 0 0 14px rgba(212,250,82,0), 0 0 32px rgba(212,250,82,0.25); }
  }
  @keyframes pt-neon-flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
      text-shadow:
        0 0 6px rgba(212,250,82,0.9),
        0 0 14px rgba(212,250,82,0.7),
        0 0 28px rgba(212,250,82,0.45),
        0 0 50px rgba(212,250,82,0.25);
    }
    20%, 24%, 55% { text-shadow: none; }
  }
  .pt-pulse { animation: pt-pulse 2s ease-in-out infinite; }
  .pt-blink { animation: pt-blink 1s steps(2,end) infinite; }
  .pt-glow-btn { animation: pt-glow 2.4s ease-out infinite; }

  .pt-card-hover { transition: transform 0.4s cubic-bezier(.2,.8,.2,1), border-color 0.3s, background 0.3s; }
  .pt-card-hover:hover { transform: translateY(-4px); border-color: rgba(197,228,86,0.5); }
  .pt-link-hover { transition: color 0.2s; }
  .pt-link-hover:hover { color: var(--lime) !important; }
  .pt-zoom { transition: transform 0.8s cubic-bezier(.2,.8,.2,1); }
  .zoom-frame:hover .pt-zoom { transform: scale(1.05); }

  /* Corners */
  .corners { position: relative; }
  .corners > .c { position: absolute; width: 10px; height: 10px; pointer-events: none; }
  .corners > .c-tl { top: 0; left: 0; border-top: 1px solid var(--lime); border-left: 1px solid var(--lime); }
  .corners > .c-tr { top: 0; right: 0; border-top: 1px solid var(--lime); border-right: 1px solid var(--lime); }
  .corners > .c-bl { bottom: 0; left: 0; border-bottom: 1px solid var(--lime); border-left: 1px solid var(--lime); }
  .corners > .c-br { bottom: 0; right: 0; border-bottom: 1px solid var(--lime); border-right: 1px solid var(--lime); }
  .corners.size-12 > .c { width: 12px; height: 12px; }
  .corners.size-14 > .c { width: 14px; height: 14px; }
  .corners.size-8 > .c { width: 8px; height: 8px; }
  .corners.muted > .c-tl { border-top-color: var(--muted); border-left-color: var(--muted); }
  .corners.muted > .c-tr { border-top-color: var(--muted); border-right-color: var(--muted); }
  .corners.muted > .c-bl { border-bottom-color: var(--muted); border-left-color: var(--muted); }
  .corners.muted > .c-br { border-bottom-color: var(--muted); border-right-color: var(--muted); }

  /* Tag */
  .tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; color: var(--lime);
    letter-spacing: 0.2em; text-transform: uppercase;
    text-shadow: 0 0 10px rgba(212,250,82,0.45);
  }
  .tag::before {
    content: ''; width: 6px; height: 6px; background: var(--lime); display: inline-block;
    box-shadow: 0 0 8px var(--lime), 0 0 16px rgba(212,250,82,0.55);
  }

  /* Inputs */
  input, select, textarea {
    background: var(--bg);
    border: 1px solid var(--line);
    color: var(--text);
    padding: 14px 14px;
    font-size: 13px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
    outline: none;
    width: 100%;
    appearance: none;
    border-radius: 0;
  }
  select { color: var(--text); }
  select:invalid, select:has(option[value=""]:checked) { color: var(--muted); }
  select option { color: var(--text); background: var(--bg); }
  input::placeholder { color: var(--muted); }
  input:focus, select:focus, textarea:focus,
  button:focus-visible, a:focus-visible {
    border-color: var(--lime);
    outline: 2px solid rgba(212,250,82,0.4);
    outline-offset: 2px;
  }

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

  /* Nav */
  nav.bvp-nav {
    position: sticky; top: 0; z-index: 80;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 40px;
    border-bottom: 1px solid var(--line);
    background: rgba(14,15,12,0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: padding 0.3s cubic-bezier(.2,.8,.2,1), background 0.3s, border-color 0.3s;
  }
  nav.bvp-nav.scrolled { padding: 12px 40px; border-bottom-color: var(--line-strong); background: rgba(7,8,6,0.95); }
  nav.bvp-nav .logo img { height: 44px; width: auto; transition: height 0.3s; display: block; }
  nav.bvp-nav.scrolled .logo img { height: 36px; }
  .nav-links { display: flex; gap: 4px; align-items: center; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; }
  .nav-links a, .nav-links .has-drop > .trigger { color: var(--text); padding: 8px 14px; cursor: pointer; }
  .has-drop { position: relative; }
  .has-drop .trigger { display: inline-flex; align-items: center; gap: 6px; }
  .has-drop .trigger .caret { font-size: 9px; color: var(--lime); }
  .drop {
    position: absolute; top: 100%; left: 0;
    background: var(--bg-deep);
    border: 1px solid var(--line-strong);
    min-width: 280px; padding: 6px;
    opacity: 0; pointer-events: none; transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s;
  }
  .has-drop:hover .drop { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .drop a { display: block; padding: 12px 14px; font-size: 11px; letter-spacing: 0.12em; border-bottom: 1px solid var(--line); }
  .drop a:last-child { border-bottom: none; }
  .nav-cta { display: flex; gap: 12px; align-items: center; }
  .nav-cta .phone { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em; display: flex; align-items: center; gap: 6px; }
  .nav-cta .phone .dot { color: var(--lime); }
  .btn-primary {
    background: var(--lime); color: #000;
    padding: 12px 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    box-shadow: 0 0 16px rgba(212,250,82,0.35), 0 0 36px rgba(212,250,82,0.18);
    transition: box-shadow 0.3s, background 0.2s, transform 0.2s;
  }
  .btn-primary:hover {
    background: var(--lime-bright);
    box-shadow: 0 0 22px rgba(212,250,82,0.6), 0 0 50px rgba(212,250,82,0.32);
    transform: translateY(-1px);
  }

  /* Hero (D2 spotlight + D1 typography) */
  .hero {
    position: relative; min-height: 720px; background: var(--bg-deep); overflow: hidden;
  }
  .hero-bg { position: absolute; inset: 0; }
  .hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45) contrast(1.05); }
  .hero-bg .hero-video { position: absolute; inset: 0; z-index: 1; }
  .hero-bg .hero-fallback { position: absolute; inset: 0; z-index: 0; }
  .hero-spotlight {
    position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(circle 480px at 50% 40%, rgba(212,250,82,0.42) 0%, rgba(212,250,82,0.18) 35%, transparent 65%);
    transition: background 0.3s;
    mix-blend-mode: screen;
  }
  .hero-grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,8,6,0.4) 0%, rgba(7,8,6,0.95) 100%); }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(0deg, rgba(197,228,86,0.04) 0 1px, transparent 1px 60px),
      repeating-linear-gradient(90deg, rgba(197,228,86,0.04) 0 1px, transparent 1px 60px);
    opacity: 0.5;
  }
  .hero-bg-type {
    position: absolute; inset: 0; display: flex; align-items: center; overflow: hidden; pointer-events: none;
  }
  .hero-bg-type-inner {
    font-family: 'Anton', sans-serif; font-size: 480px; line-height: 0.78;
    color: transparent; -webkit-text-stroke: 1px var(--lime);
    opacity: 0.06;
    letter-spacing: -0.04em; text-transform: uppercase; white-space: nowrap;
    animation: bg-drift 60s linear infinite;
  }
  @keyframes bg-drift { from { transform: translateX(0); } to { transform: translateX(-30%); } }

  .hero-grid-wrap {
    position: relative; display: grid; grid-template-columns: 1.35fr 1fr;
    gap: 36px; padding: 44px 48px 64px; align-items: center; min-height: 720px;
    z-index: 5;
  }
  .hero-bg { z-index: 0; }
  .hero-bg .hero-grad, .hero-bg .hero-grid, .hero-bg .hero-bg-type, .hero-bg .hero-spotlight { z-index: 2; }
  .hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
  .hero-eyebrow .booking { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--lime); letter-spacing: 0.22em; }
  .hero-eyebrow .stars { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.2em; }

  /* D1 hero typography in D2 hero */
  h1.hero-title {
    font-family: 'Anton', sans-serif;
    margin: 0; color: var(--text);
    line-height: 0.84; letter-spacing: -0.025em;
    text-transform: uppercase; font-weight: 400;
  }
  h1.hero-title { line-height: 0.86; }
  h1.hero-title span { display: block; font-size: clamp(40px, 6.4vw, 92px); }
  h1.hero-title .stroke {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 2px var(--lime);
    filter: drop-shadow(0 0 18px rgba(212,250,82,0.55)) drop-shadow(0 0 38px rgba(212,250,82,0.25));
  }
  h1.hero-title .pop {
    color: var(--lime); position: relative;
    text-shadow:
      0 0 14px rgba(212,250,82,0.55),
      0 0 32px rgba(212,250,82,0.32),
      0 0 60px rgba(212,250,82,0.18);
  }
  h1.hero-title .pop .blink {
    position: absolute; right: -8px; top: 8px; width: 12px; height: 12px;
    background: var(--lime);
    box-shadow: 0 0 12px var(--lime), 0 0 26px rgba(212,250,82,0.7);
  }
  /* Neon-glow utility for any lime span in headlines */
  .lime-neon, h2 .lime, h3 .lime, .section-title .lime {
    text-shadow:
      0 0 12px rgba(212,250,82,0.45),
      0 0 28px rgba(212,250,82,0.22);
  }

  .hero-sub {
    font-size: 15px; line-height: 1.55; color: var(--muted);
    margin-top: 20px; max-width: 600px;
    font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em;
  }
  .hero-sub strong { color: var(--text); font-weight: 500; }

  .hero-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
  .btn-cta {
    background: var(--lime); color: #000;
    padding: 16px 22px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 12px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.2s;
    box-shadow: 0 0 22px rgba(212,250,82,0.45), 0 0 56px rgba(212,250,82,0.22);
  }
  .btn-cta:hover {
    transform: translateY(-2px);
    background: var(--lime-bright);
    box-shadow: 0 0 32px rgba(212,250,82,0.7), 0 0 80px rgba(212,250,82,0.35);
  }
  .btn-ghost {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);
    color: var(--text);
    border: 1px solid var(--line-strong);
    padding: 16px 22px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    transition: transform 0.3s, border-color 0.3s;
  }
  .btn-ghost:hover { transform: translateY(-2px); border-color: var(--lime); }
  .wa-diamond { color: #25D366; }

  .hero-rating {
    margin-top: 24px; display: flex; align-items: center; gap: 14px;
    font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.1em;
  }
  .hero-rating .stars { color: var(--lime); font-size: 16px; letter-spacing: 0.15em; }
  .hero-rating .num { color: var(--text); font-weight: 600; }

  /* Floating glass stack */
  .float-stack { position: relative; height: 520px; }
  @keyframes float-a { 0%,100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-10px); } }
  @keyframes float-b { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-14px); } }
  @keyframes float-c { 0%,100% { transform: rotate(-1deg) translateY(0); } 50% { transform: rotate(-1deg) translateY(-8px); } }
  .glass-form {
    position: absolute; top: 0; right: 0; width: 360px; padding: 24px;
    background: rgba(7,8,6,0.55); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--line-strong);
    animation: float-a 7s ease-in-out infinite;
  }
  .glass-form .heading {
    font-family: 'Anton', sans-serif; font-size: 28px; color: var(--text);
    margin-top: 10px; margin-bottom: 16px; line-height: 1.05; text-transform: uppercase;
  }
  .glass-form .heading .lime { color: var(--lime); }
  .glass-form form { display: flex; flex-direction: column; gap: 8px; }
  .glass-form .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .glass-form button {
    background: var(--lime); color: #000; border: none;
    padding: 16px 18px;
    font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    cursor: pointer; display: flex; justify-content: space-between; margin-top: 4px;
  }
  .glass-form .meta {
    display: flex; align-items: center; justify-content: space-between; margin-top: 4px;
    font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.15em;
  }
  .glass-form .meta a { color: var(--lime); }

  .glass-quote {
    position: absolute; bottom: 24px; left: 24px; width: 280px; padding: 20px;
    background: rgba(197,228,86,0.08); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--line-strong);
    animation: float-b 8.5s ease-in-out infinite;
  }
  .glass-quote .stars { color: var(--lime); font-size: 14px; letter-spacing: 0.15em; margin-bottom: 10px; }
  .glass-quote p { font-size: 13px; color: var(--text); line-height: 1.55; margin: 0 0 12px; }
  .glass-quote .who { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--muted); letter-spacing: 0.18em; }

  .glass-stat {
    position: absolute; top: 200px; left: 0; width: 200px; padding: 18px; text-align: center;
    background: rgba(7,8,6,0.7); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--line-strong);
    animation: float-c 6s ease-in-out infinite;
  }
  .glass-stat .big {
    font-family: 'Anton', sans-serif; font-size: 56px; color: var(--lime); line-height: 1;
  }
  .glass-stat .lbl {
    font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--muted);
    letter-spacing: 0.22em; margin-top: 4px; text-transform: uppercase;
  }

  /* Trust bar */
  .trust-bar { background: var(--bg-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); }
  .trust-cell {
    background: var(--bg-deep); padding: 28px 24px;
    display: flex; align-items: center; gap: 16px;
    border: 1px solid transparent;
  }
  .trust-cell .ic { color: var(--lime); font-size: 24px; }
  .trust-cell .t { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--text); letter-spacing: 0.05em; font-weight: 600; }
  .trust-cell .s { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; }

  /* Marquee */
  .marquee {
    overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    background: var(--bg-alt); padding: 14px 0; position: relative;
  }
  .marquee-track {
    display: flex; gap: 48px; white-space: nowrap;
    animation: pt-marquee 40s linear infinite; will-change: transform;
  }
  .marquee-item {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'JetBrains Mono', monospace; font-size: 12px;
    color: var(--muted); letter-spacing: 0.2em; text-transform: uppercase;
  }
  .marquee-item .d { color: var(--lime); }

  /* Section common */
  section { position: relative; }
  .section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; padding-bottom: 16px; border-bottom: 1px solid var(--line); gap: 28px; flex-wrap: wrap; }
  .section-head h2 {
    font-family: 'Anton', sans-serif; font-size: clamp(36px, 5.4vw, 64px); line-height: 0.94;
    margin: 12px 0 0; color: var(--text);
    letter-spacing: -0.01em; text-transform: uppercase; font-weight: 400;
  }
  .section-head h2 .lime { color: var(--lime); }
  .section-head .lede { max-width: 360px; font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

  /* Heat-map services (D2) */
  .services {
    background: var(--bg); padding: 80px 40px; border-top: 1px solid var(--line);
  }
  .heat-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 10px; grid-auto-rows: 180px; }
  .tile {
    position: relative; overflow: hidden; display: block; min-height: 180px;
    border: 1px solid var(--line);
    transition: transform 0.5s cubic-bezier(.2,.8,.2,1), border-color 0.3s;
  }
  .tile.span-8 { grid-column: span 8; grid-row: span 2; min-height: 0; }
  .tile.span-4 { grid-column: span 4; }
  .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(.2,.8,.2,1); }
  .tile:hover { transform: translateY(-3px); border-color: var(--line-strong); }
  .tile:hover img { transform: scale(1.06); }
  .tile .grad { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(7,8,6,0.92)); }
  .tile .badge {
    position: absolute; top: 14px; left: 14px;
    font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--lime); letter-spacing: 0.2em;
    background: rgba(7,8,6,0.7); padding: 4px 10px; border: 1px solid var(--line-strong);
  }
  .tile .heat { position: absolute; top: 14px; right: 14px; display: flex; gap: 3px; }
  .tile .heat span { width: 6px; height: 14px; background: var(--line); }
  .tile .heat span.on { background: var(--lime); }
  .tile .info {
    position: absolute; bottom: 18px; left: 18px; right: 18px;
    display: flex; justify-content: space-between; align-items: flex-end; gap: 14px;
  }
  .tile .info h3 {
    font-family: 'Anton', sans-serif; font-size: 32px; color: var(--text);
    margin: 0; text-transform: uppercase; font-weight: 400; letter-spacing: -0.01em;
  }
  .tile.span-8 .info h3 { font-size: 56px; }
  .tile.span-8 .info p { font-size: 13px; color: var(--muted); margin: 8px 0 0; max-width: 360px; line-height: 1.5; }
  .tile .info .from-lbl { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--dim); letter-spacing: 0.2em; }
  .tile .info .from-val { font-family: 'Anton', sans-serif; font-size: 22px; color: var(--lime); line-height: 1; }
  .tile.span-8 .info .from-val { font-size: 32px; }

  /* Social proof — dynamic */
  .social {
    background: var(--bg-alt); padding: 80px 40px; border-top: 1px solid var(--line);
    position: relative; overflow: hidden;
  }
  .social::after {
    content: '5.0'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-family: 'Anton', sans-serif; font-size: clamp(380px, 48vw, 640px); line-height: 0.8;
    color: var(--lime); opacity: 0.04; letter-spacing: -0.04em; pointer-events: none;
    z-index: 0;
  }
  .social > * { position: relative; z-index: 1; }
  .social-grid {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center;
    margin-bottom: 32px;
  }
  .social-stat {
    display: flex; align-items: flex-end; gap: 18px; margin-bottom: 18px;
  }
  .social-stat .big {
    font-family: 'Anton', sans-serif; font-size: clamp(72px, 11vw, 128px); color: var(--lime);
    line-height: 0.86; letter-spacing: -0.03em;
    text-shadow: 0 0 36px rgba(212,250,82,0.45), 0 0 72px rgba(212,250,82,0.22);
  }
  .social-stat .col {
    padding-bottom: 12px; display: flex; flex-direction: column; gap: 6px;
  }
  .social-stat .col .stars { color: var(--lime); font-size: 22px; letter-spacing: 0.2em; }
  .social-stat .col .verified {
    font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.2em; text-transform: uppercase;
  }
  .social-stat .col .verified strong { color: var(--text); }
  .social h2 {
    font-family: 'Anton', sans-serif; font-size: clamp(36px, 5.4vw, 64px); line-height: 0.94;
    margin: 0 0 18px; color: var(--text); letter-spacing: -0.01em;
    text-transform: uppercase; font-weight: 400;
  }
  .social h2 .lime { color: var(--lime); }
  .social-meta {
    display: flex; gap: 18px; align-items: center; margin-top: 14px; flex-wrap: wrap;
    font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase;
  }
  .social-meta a { color: var(--lime); text-decoration: none; border-bottom: 1px solid var(--lime); padding-bottom: 2px; }

  /* Rating distribution bars */
  .rating-bars { display: flex; flex-direction: column; gap: 6px; }
  .rating-row { display: grid; grid-template-columns: 36px 1fr 64px; gap: 12px; align-items: center; }
  .rating-row .star-lbl { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }
  .rating-row .bar { position: relative; height: 8px; background: var(--bg); border: 1px solid var(--line); overflow: hidden; }
  .rating-row .bar .fill { position: absolute; top: 0; left: 0; bottom: 0; background: linear-gradient(90deg, var(--lime), var(--lime-bright)); box-shadow: 0 0 12px rgba(212,250,82,0.55); transition: width 1.2s cubic-bezier(.2,.8,.2,1); }
  .rating-row .count { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text); letter-spacing: 0.08em; text-align: right; }

  /* Auto-rotating featured review */
  .review-stage {
    display: grid; grid-template-columns: 1fr; gap: 14px;
    margin-top: 8px;
  }
  .review-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  }
  .review {
    background: var(--bg); padding: 24px 22px;
    display: flex; flex-direction: column; gap: 14px;
    border: 1px solid var(--line); min-height: 240px;
    position: relative; overflow: hidden;
    transition: border-color 0.3s, transform 0.4s cubic-bezier(.2,.8,.2,1);
  }
  .review:hover { border-color: var(--lime-strong, var(--line-strong)); transform: translateY(-3px); }
  .review.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--bg-deep), var(--bg-alt));
    border: 1px solid var(--line-strong);
    padding: 32px;
    min-height: auto;
  }
  .review.featured::before {
    content: '"'; position: absolute; top: -34px; right: 18px;
    font-family: 'Anton', sans-serif; font-size: 240px; line-height: 1;
    color: var(--lime); opacity: 0.12; pointer-events: none;
  }
  .review-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
  .review-top .stars { color: var(--lime); font-size: 14px; letter-spacing: 0.2em; text-shadow: 0 0 8px rgba(212,250,82,0.45); }
  .review-top .date { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--dim); letter-spacing: 0.18em; }
  .review-top .platform {
    font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--lime); letter-spacing: 0.22em;
    background: rgba(212,250,82,0.08); padding: 3px 8px; border: 1px solid var(--line);
  }
  .review p { font-size: 14px; color: var(--text); line-height: 1.6; margin: 0; flex: 1; }
  .review.featured p { font-size: 18px; line-height: 1.55; }
  .review .who { border-top: 1px solid var(--line); padding-top: 12px; display: flex; align-items: center; gap: 12px; }
  .review .who .avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--lime); color: #000;
    display: flex; align-items: center; justify-content: center;
    font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(212,250,82,0.4);
  }
  .review .who .meta { display: flex; flex-direction: column; gap: 2px; }
  .review .who .name { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text); letter-spacing: 0.08em; }
  .review .who .svc { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--lime); letter-spacing: 0.18em; text-transform: uppercase; }
  .review-cta { margin-top: 24px; text-align: center; }
  .review-cta a { display: inline-flex; align-items: center; gap: 12px; font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; border-bottom: 1px solid var(--lime); padding-bottom: 8px; }
  .review-cta .arrow { color: var(--lime); }

  /* Ceramic featured */
  .ceramic {
    background: var(--bg-deep); padding: 80px 40px; border-top: 1px solid var(--line);
    position: relative; overflow: hidden;
  }
  .ceramic .bg { position: absolute; inset: 0; opacity: 0.08; background-size: cover; background-position: center; filter: blur(2px); }
  .ceramic .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,8,6,0.95), rgba(7,8,6,0.85)); }
  .ceramic .inner { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
  .ceramic h2 {
    font-family: 'Anton', sans-serif; font-size: clamp(36px, 5vw, 56px); line-height: 0.94;
    margin: 12px 0 12px; color: var(--text); letter-spacing: -0.01em;
    text-transform: uppercase; font-weight: 400;
  }
  .ceramic h2 .lime { color: var(--lime); }
  .price-line {
    font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--lime);
    letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 24px;
  }
  .price-line .price { font-family: 'Anton', sans-serif; font-size: 36px; margin-left: 8px; }
  .ceramic p { font-size: 16px; color: var(--text); line-height: 1.7; margin-bottom: 18px; }
  .ceramic p strong.lime { color: var(--lime); font-weight: 500; }
  .ceramic p.aeo { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
  .ceramic p.aeo strong { color: var(--text); font-weight: 500; }
  .before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); position: relative; }
  .ba-cell { position: relative; aspect-ratio: 3/4; }
  .ba-cell img { width: 100%; height: 100%; object-fit: cover; }
  .ba-cell.before img { filter: grayscale(0.4) brightness(0.7); }
  .ba-cell .label {
    position: absolute; top: 12px; left: 12px;
    font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.2em;
    padding: 6px 12px;
  }
  .ba-cell.before .label { background: var(--bg-deep); border: 1px solid var(--line); color: var(--text); }
  .ba-cell.after .label { background: var(--lime); color: #000; font-weight: 700; }

  /* Why Us */
  .why { background: var(--bg); padding: 80px 40px; border-top: 1px solid var(--line); }
  .why-head { margin-bottom: 56px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
  .why-cell {
    background: var(--bg); padding: 36px;
    display: flex; flex-direction: column; gap: 18px; min-height: 320px;
    border: 1px solid transparent; position: relative;
  }
  .why-cell .top { display: flex; align-items: center; gap: 16px; }
  .why-cell .icon-box {
    width: 56px; height: 56px; border: 1px solid var(--line-strong);
    display: flex; align-items: center; justify-content: center;
    color: var(--lime); font-size: 24px;
  }
  .why-cell .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--lime); letter-spacing: 0.2em; }
  .why-cell h3 {
    font-family: 'Anton', sans-serif; font-size: 36px; color: var(--text);
    margin: 0; text-transform: uppercase; font-weight: 400;
  }
  .why-cell p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

  /* Gallery — 4 before/after comparison sliders */
  .gallery { background: var(--bg-alt); padding: 80px 40px; border-top: 1px solid var(--line); }
  .ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ba-card {
    position: relative; aspect-ratio: 16/10; overflow: hidden;
    border: 1px solid var(--line);
    cursor: ew-resize; user-select: none;
    background: #000;
  }
  .ba-card img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; pointer-events: none;
  }
  .ba-card .ba-after { z-index: 1; }
  .ba-card .ba-before { z-index: 2; clip-path: inset(0 50% 0 0); transition: clip-path 0.05s linear; filter: grayscale(0.4) brightness(0.78); }
  .ba-card .ba-divider {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
    background: var(--lime);
    box-shadow: 0 0 18px rgba(212,250,82,0.55), 0 0 38px rgba(212,250,82,0.25);
    z-index: 3; pointer-events: none;
    transform: translateX(-1px);
  }
  .ba-card .ba-handle {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--lime); color: #000;
    display: flex; align-items: center; justify-content: center;
    font-family: 'JetBrains Mono', monospace; font-size: 16px; font-weight: 700;
    box-shadow: 0 0 18px rgba(212,250,82,0.55), 0 0 36px rgba(212,250,82,0.3);
    z-index: 4; pointer-events: none;
  }
  .ba-card .ba-tag {
    position: absolute; top: 12px;
    font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.22em;
    padding: 6px 10px; z-index: 5;
  }
  .ba-card .ba-tag.before { left: 12px; background: rgba(7,8,6,0.85); border: 1px solid var(--line); color: var(--text); }
  .ba-card .ba-tag.after { right: 12px; background: var(--lime); color: #000; font-weight: 700; }
  .ba-card .ba-cap {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.95));
    padding: 40px 16px 14px; z-index: 5; pointer-events: none;
  }
  .ba-card .ba-cap .car { font-size: 14px; color: var(--text); font-weight: 600; }
  .ba-card .ba-cap .svc { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--lime); letter-spacing: 0.18em; margin-top: 4px; text-transform: uppercase; }
  .ba-hint {
    position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
    font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.25em;
    color: var(--text); background: rgba(7,8,6,0.85); padding: 5px 10px;
    border: 1px solid var(--line); z-index: 6; pointer-events: none;
  }
  .gallery-cta { margin-top: 28px; display: flex; gap: 14px; justify-content: center; }
  .btn-link {
    background: transparent; color: var(--text); border: 1px solid var(--line-strong);
    padding: 18px 24px;
    font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    transition: border-color 0.3s;
  }
  .btn-link:hover { border-color: var(--lime); }
  .btn-fill {
    background: var(--lime); color: #000;
    padding: 18px 24px;
    font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
  }

  /* Service area */
  .service-area { background: var(--bg); padding: 80px 40px; border-top: 1px solid var(--line); }
  .sa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .sa-grid h2 {
    font-family: 'Anton', sans-serif; font-size: clamp(36px, 5vw, 56px); line-height: 0.94;
    margin: 12px 0 18px; color: var(--text); letter-spacing: -0.01em;
    text-transform: uppercase; font-weight: 400;
  }
  .sa-grid h2 .lime { color: var(--lime); }
  .sa-grid p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
  .sa-grid p strong { color: var(--text); }
  .sa-grid p strong.lime { color: var(--lime); }
  .city-chips { display: flex; flex-wrap: wrap; gap: 1px; background: var(--line); margin-bottom: 32px; }
  .city-chip {
    background: var(--bg); color: var(--text);
    padding: 12px 18px;
    font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.08em;
    display: inline-flex; gap: 8px; align-items: center;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }
  .city-chip:hover {
    background: var(--bg-alt); color: var(--lime);
    transform: translateY(-1px);
  }
  .city-chip .d { color: var(--lime); text-shadow: 0 0 8px rgba(212,250,82,0.45); }
  .hq-card { padding: 24px; border: 1px solid var(--line-strong); position: relative; background: var(--bg-alt); }
  .hq-card .addr-big {
    font-family: 'Anton', sans-serif; font-size: 28px; color: var(--text);
    margin-top: 12px; text-transform: uppercase;
  }
  .hq-card .addr-sm { font-size: 14px; color: var(--muted); margin-top: 4px; }
  .hq-card .actions { display: flex; gap: 14px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); flex-wrap: wrap; }
  .hq-card .actions a.tel { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--lime); letter-spacing: 0.1em; }
  .hq-card .actions a.wa { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text); letter-spacing: 0.18em; text-transform: uppercase; }

  .map-card { position: relative; aspect-ratio: 4/5; overflow: hidden; border: 1px solid var(--line-strong); background: var(--bg-deep); }
  .map-card iframe {
    width: 100%; height: 100%; border: 0; display: block;
    filter: grayscale(0.6) contrast(1.05) brightness(0.92);
    transition: filter 0.5s;
  }
  .map-card:hover iframe { filter: grayscale(0) contrast(1) brightness(1); }
  .map-card .meta-tl, .map-card .meta-br {
    position: absolute; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.2em;
    background: rgba(7,8,6,0.85); padding: 6px 10px; border: 1px solid var(--line); pointer-events: none;
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 2;
  }
  .map-card .meta-tl { top: 16px; left: 16px; color: var(--lime); }
  .map-card .meta-br { bottom: 16px; right: 16px; color: var(--muted); }
  .map-card .map-link {
    position: absolute; top: 16px; right: 16px; z-index: 2;
    background: var(--lime); color: #000; padding: 8px 14px;
    font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
    transition: background 0.2s;
  }
  .map-card .map-link:hover { background: var(--lime-bright); }

  /* FAQ */
  .faq { background: var(--bg-alt); padding: 80px 40px; border-top: 1px solid var(--line); }
  .faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: flex-start; }
  .faq-side { position: sticky; top: 100px; }
  .faq-side h2 {
    font-family: 'Anton', sans-serif; font-size: clamp(32px, 4.4vw, 48px); line-height: 0.96;
    margin: 12px 0 0; color: var(--text); letter-spacing: -0.01em;
    text-transform: uppercase; font-weight: 400;
  }
  .faq-side h2 .lime { color: var(--lime); }
  .faq-side p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 24px; }
  .faq-side p a { color: var(--lime); }
  .faq-list { }
  .faq-row { border-top: 1px solid var(--line); }
  .faq-list .faq-row:last-of-type { border-bottom: 1px solid var(--line); }
  .faq-q {
    width: 100%; background: transparent; border: none; padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; gap: 16px; text-align: left; color: inherit;
  }
  .faq-q .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--lime); letter-spacing: 0.2em; min-width: 50px; }
  .faq-q .q { font-size: 19px; color: var(--text); font-weight: 500; flex: 1; margin: 0; letter-spacing: -0.005em; }
  .faq-q .plus { color: var(--lime); font-size: 22px; transition: transform 0.3s; }
  .faq-row.open .faq-q .plus { transform: rotate(45deg); }
  .faq-a-wrap { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(.2,.8,.2,1); }
  .faq-row.open .faq-a-wrap { max-height: 320px; }
  .faq-a {
    font-size: 14px; color: var(--muted); line-height: 1.7;
    margin: 0 32px 24px 66px;
  }

  /* Final CTA (D2 Tilt) */
  .final-cta {
    background: var(--bg-deep); padding: 100px 40px; border-top: 1px solid var(--line);
    position: relative; overflow: hidden;
  }
  .final-cta .bg { position: absolute; inset: 0; }
  .final-cta .bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35) saturate(0.7); }
  .final-cta .bg .glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(197,228,86,0.18), transparent 60%);
  }
  .tilt-card {
    position: relative; max-width: 1100px; margin: 0 auto; padding: 44px 40px;
    background: rgba(7,8,6,0.6); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--line-strong);
    transform: perspective(1200px) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
  }
  .tilt-card:hover { transform: perspective(1200px) rotateX(0deg); }
  .tilt-card .center { text-align: center; }
  .tilt-card h2 {
    font-family: 'Anton', sans-serif; font-size: clamp(40px, 6.4vw, 88px); line-height: 0.92;
    margin: 14px 0 16px; color: var(--text); letter-spacing: -0.02em;
    text-transform: uppercase; font-weight: 400;
  }
  .tilt-card h2 .lime { color: var(--lime); }
  .tilt-card .sub { font-size: 17px; color: var(--muted); line-height: 1.6; max-width: 600px; margin: 0 auto 40px; }
  .tilt-card .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-call {
    background: var(--lime); color: #000; padding: 22px 32px;
    font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    box-shadow: 0 0 28px rgba(212,250,82,0.55), 0 0 64px rgba(212,250,82,0.3);
    transition: box-shadow 0.3s, background 0.2s, transform 0.3s;
  }
  .btn-call:hover {
    background: var(--lime-bright);
    box-shadow: 0 0 40px rgba(212,250,82,0.85), 0 0 100px rgba(212,250,82,0.5);
    transform: translateY(-2px);
  }
  .btn-wa {
    background: #25D366; color: #000; padding: 22px 32px;
    font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
  }
  .btn-book {
    border: 1px solid var(--line-strong); color: var(--text); padding: 22px 32px;
    font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
  }

  /* Footer */
  footer {
    background: var(--bg-deep); padding: 64px 48px 24px;
    border-top: 1px solid var(--line);
  }
  .foot-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 0.8fr;
    gap: 40px; margin-bottom: 40px; padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
  }
  .foot-grid img.logo { height: 48px; width: auto; margin-bottom: 18px; display: block; }
  .foot-grid p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 360px; margin: 0; }
  .foot-grid p strong { color: var(--text); }
  .foot-grid p a { color: var(--lime); }
  .foot-grid h5 {
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    letter-spacing: 0.2em; color: var(--lime); margin: 0 0 14px;
  }
  .foot-grid ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
    font-size: 13px; color: var(--muted);
    font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em;
  }
  .foot-bottom {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--dim); letter-spacing: 0.2em;
  }
  .foot-bottom .live { color: var(--lime); }

  /* Top strip */
  .top-strip {
    background: var(--lime); color: #000;
    padding: 9px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em; text-align: center;
    display: flex; justify-content: center; align-items: center; gap: 14px;
    flex-wrap: wrap;
    box-shadow: 0 0 24px rgba(212,250,82,0.45), 0 0 48px rgba(212,250,82,0.18);
    position: relative; z-index: 81;
  }
  .top-strip a { color: #000; font-weight: 700; text-decoration: none; border-bottom: 1px dashed rgba(0,0,0,0.4); }
  .top-strip .sep { opacity: 0.45; }

  /* Process section */
  .process { background: var(--bg-alt); padding: 80px 40px; border-top: 1px solid var(--line); position: relative; overflow: hidden; }
  .process::after {
    content: 'PROCESS · PROCESS · PROCESS ·';
    position: absolute; bottom: -40px; right: -40px;
    font-family: 'Anton', sans-serif; font-size: 240px; line-height: 0.84;
    color: transparent; -webkit-text-stroke: 1px var(--lime);
    opacity: 0.05; white-space: nowrap; text-transform: uppercase; letter-spacing: -0.04em;
    pointer-events: none;
  }
  .process .head { margin-bottom: 64px; padding-bottom: 20px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; position: relative; z-index: 2; }
  .process h2 {
    font-family: 'Anton', sans-serif; font-size: clamp(36px, 5vw, 56px); line-height: 0.94;
    margin: 12px 0 0; color: var(--text); letter-spacing: -0.01em;
    text-transform: uppercase; font-weight: 400;
  }
  .process h2 .lime { color: var(--lime); }
  .process p.lede { max-width: 360px; font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }
  .process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line);
    position: relative; z-index: 2;
  }
  .process-step {
    background: var(--bg-alt); padding: 28px 24px;
    display: flex; flex-direction: column; gap: 10px;
    border: 1px solid transparent; min-height: 220px;
    transition: background 0.4s, border-color 0.3s, transform 0.4s cubic-bezier(.2,.8,.2,1);
    position: relative;
  }
  .process-step:hover { background: var(--bg); border-color: var(--line-strong); transform: translateY(-4px); }
  .process-step .num {
    font-family: 'Anton', sans-serif; font-size: 72px; line-height: 0.84;
    color: var(--lime); margin: 0; letter-spacing: -0.04em;
    text-shadow: 0 0 30px rgba(212,250,82,0.35);
  }
  .process-step h4 {
    font-family: 'Anton', sans-serif; font-size: 26px; line-height: 1; margin: 0;
    text-transform: uppercase; font-weight: 400; letter-spacing: 0;
  }
  .process-step p { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }
  .process-step .step-tag {
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    color: var(--lime); letter-spacing: 0.22em; text-transform: uppercase;
  }

  /* Pricing & Packages */
  .pricing { background: var(--bg); padding: 80px 40px; border-top: 1px solid var(--line); position: relative; overflow: hidden; }
  .pricing::after {
    content: 'PACKAGES'; position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%);
    font-family: 'Anton', sans-serif; font-size: clamp(160px, 22vw, 320px); line-height: 0.84;
    color: transparent; -webkit-text-stroke: 1px var(--lime);
    opacity: 0.05; white-space: nowrap; text-transform: uppercase; letter-spacing: -0.04em;
    pointer-events: none;
  }
  .price-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
    position: relative; z-index: 2;
  }
  .price-card {
    background: var(--bg-alt); padding: 32px 28px;
    border: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 16px;
    position: relative; transition: border-color 0.3s, transform 0.4s cubic-bezier(.2,.8,.2,1);
  }
  .price-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
  .price-card.popular {
    background: linear-gradient(180deg, rgba(212,250,82,0.04), var(--bg-alt));
    border: 1px solid var(--line-strong);
    box-shadow: 0 0 32px rgba(212,250,82,0.12);
  }
  .price-card.popular::before {
    content: 'MOST POPULAR'; position: absolute; top: -12px; left: 24px;
    background: var(--lime); color: #000;
    padding: 5px 12px;
    font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 700; letter-spacing: 0.22em;
    box-shadow: 0 0 16px rgba(212,250,82,0.5);
  }
  .price-card .tier-num {
    font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--lime); letter-spacing: 0.22em;
    text-shadow: 0 0 8px rgba(212,250,82,0.4);
  }
  .price-card h3 {
    font-family: 'Anton', sans-serif; font-size: 32px; line-height: 1; margin: 0;
    text-transform: uppercase; font-weight: 400; letter-spacing: -0.005em;
  }
  .price-card .sub { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.55; }
  .price-card .price-line {
    display: flex; align-items: baseline; gap: 8px;
    padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  }
  .price-card .price-line .from {
    font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.2em; text-transform: uppercase;
  }
  .price-card .price-line .amt {
    font-family: 'Anton', sans-serif; font-size: 56px; line-height: 0.86; color: var(--lime);
    letter-spacing: -0.02em;
    text-shadow: 0 0 18px rgba(212,250,82,0.45);
  }
  .price-card .price-line .unit {
    font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.18em;
  }
  .price-card ul {
    list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px;
    flex: 1;
  }
  .price-card ul li {
    font-size: 13px; color: var(--text); line-height: 1.55;
    display: flex; align-items: flex-start; gap: 10px;
  }
  .price-card ul li::before {
    content: '◆'; color: var(--lime); flex-shrink: 0; font-size: 10px; margin-top: 4px;
    text-shadow: 0 0 6px rgba(212,250,82,0.5);
  }
  .price-card .warranty {
    font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase;
    padding-top: 12px; border-top: 1px solid var(--line);
  }
  .price-card .warranty strong { color: var(--text); }
  .price-card a.book {
    display: flex; justify-content: space-between; align-items: center;
    background: transparent; color: var(--text);
    border: 1px solid var(--line-strong);
    padding: 14px 16px;
    font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .price-card a.book:hover { border-color: var(--lime); color: var(--lime); }
  .price-card.popular a.book {
    background: var(--lime); color: #000; border-color: var(--lime);
    box-shadow: 0 0 18px rgba(212,250,82,0.45);
  }
  .price-card.popular a.book:hover { background: var(--lime-bright); }

  .price-services {
    margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line);
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line);
    position: relative; z-index: 2;
  }
  .price-svc-cell {
    background: var(--bg); padding: 18px 16px;
    display: flex; flex-direction: column; gap: 6px; text-decoration: none;
    transition: background 0.2s;
  }
  .price-svc-cell:hover { background: var(--bg-alt); }
  .price-svc-cell .lbl { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.2em; text-transform: uppercase; }
  .price-svc-cell .svc-name { font-size: 13px; color: var(--text); font-weight: 500; }
  .price-svc-cell .from { font-family: 'Anton', sans-serif; font-size: 22px; color: var(--lime); line-height: 1; margin-top: 2px; }

  .price-foot {
    margin-top: 28px; display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 18px;
    padding: 22px 24px; background: var(--bg-alt); border: 1px solid var(--line);
    position: relative; z-index: 2;
  }
  .price-foot .left { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 540px; }
  .price-foot .left strong { color: var(--text); }
  .price-foot a.cta {
    background: var(--lime); color: #000;
    padding: 14px 20px;
    font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    text-decoration: none; white-space: nowrap;
    box-shadow: 0 0 22px rgba(212,250,82,0.45);
    transition: background 0.2s, box-shadow 0.2s;
  }
  .price-foot a.cta:hover { background: var(--lime-bright); box-shadow: 0 0 32px rgba(212,250,82,0.7); }

  /* Floating mobile call button */
  .floating-cta {
    position: fixed; bottom: 18px; right: 18px; z-index: 90;
    background: var(--lime); color: #000;
    padding: 14px 22px;
    font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    display: none; align-items: center; gap: 10px;
    box-shadow:
      0 0 0 0 rgba(212,250,82,0.6),
      0 12px 30px rgba(212,250,82,0.5),
      0 0 22px rgba(212,250,82,0.45);
    text-decoration: none;
    animation: pt-glow 2.4s ease-out infinite;
  }
  .floating-cta:hover {
    background: var(--lime-bright);
    box-shadow:
      0 0 0 0 rgba(212,250,82,0.6),
      0 14px 36px rgba(212,250,82,0.6),
      0 0 32px rgba(212,250,82,0.6);
  }

  /* Footer social */
  .foot-social { display: flex; gap: 8px; margin-top: 16px; }
  .foot-social a {
    width: 36px; height: 36px;
    border: 1px solid var(--line); background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }
  .foot-social a:hover { border-color: var(--lime); color: var(--lime); }

  /* Scroll indicator */
  .scroll-indicator {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.25em;
  }
  .scroll-indicator .line { width: 1px; height: 32px; background: linear-gradient(180deg, var(--lime), transparent); }

  /* Responsive */
  @media (max-width: 1100px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process h2 { font-size: 56px; }
    .hero-grid-wrap { grid-template-columns: 1fr; padding: 48px 24px 80px; }
    .float-stack { height: auto; min-height: 480px; }
    .glass-form { position: relative; right: auto; width: 100%; max-width: 420px; margin: 24px auto 0; }
    .glass-quote, .glass-stat { display: none; }
    h1.hero-title span { font-size: 96px; }
    .ceramic .inner, .sa-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
    .heat-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; }
    .tile.span-8 { grid-column: span 6; }
    .tile.span-4 { grid-column: span 3; }
    .review-grid, .review-row, .why-grid, .ba-grid, .trust-grid, .foot-grid, .price-grid { grid-template-columns: 1fr 1fr; }
    .price-services { grid-template-columns: repeat(3, 1fr); }
    .social-grid { grid-template-columns: 1fr; gap: 32px; }
    .section-head h2, .ceramic h2, .sa-grid h2, .why-head h2 { font-size: 56px; }
    .tilt-card h2 { font-size: 72px; }
  }
  @media (max-width: 700px) {
    .top-strip { font-size: 10px; padding: 8px 12px; gap: 8px; }
    .top-strip .sep { display: none; }
    .floating-cta { display: inline-flex; }
    .process { padding: 80px 20px; }
    .process h2 { font-size: 40px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-step .num { font-size: 72px; }
    nav.bvp-nav { padding: 12px 16px; flex-wrap: wrap; gap: 12px; }
    .nav-links { display: none; }
    .hero-grid-wrap, .services, .social, .ceramic, .why, .gallery, .service-area, .faq, .final-cta { padding-left: 20px; padding-right: 20px; }
    h1.hero-title span { font-size: 64px; }
    .heat-grid { grid-template-columns: 1fr; }
    .tile.span-8, .tile.span-4 { grid-column: span 1; min-height: 240px; grid-row: auto; }
    .review-grid, .review-row, .why-grid, .ba-grid, .trust-grid, .foot-grid, .before-after-grid, .price-grid { grid-template-columns: 1fr; }
    .price-services { grid-template-columns: repeat(2, 1fr); }
    .social::after { font-size: 280px; }
    .founder-img { min-height: 200px !important; }
    .why-grid + .reveal[data-delay="320"] { grid-template-columns: 1fr !important; }
    .section-head h2, .ceramic h2, .sa-grid h2 { font-size: 40px; }
    .faq-side h2 { font-size: 40px; }
    .tilt-card { padding: 32px 20px; }
    .tilt-card h2 { font-size: 44px; }
  }