/* ============================================================
   HONEY DO MAN (HDM) - Design System
   Tokens are taken directly from the client brief. Do not alter
   the core palette; it was specified exactly.
   ============================================================ */

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

:root{
  --bg:        #07110D;
  --bg-2:      #0D1914;
  --card:      #111F18;
  --accent:    #C8FF32;
  --accent-2:  #F4B942;
  --text:      #F5F7F2;
  --muted:     #9AA79F;

  --border:        rgba(245,247,242,0.08);
  --border-strong:  rgba(245,247,242,0.16);
  --accent-glow:    rgba(200,255,50,0.35);
  --accent-dim:     rgba(200,255,50,0.10);
  --amber-dim:      rgba(244,185,66,0.12);
  --shadow-soft:    0 20px 60px -20px rgba(0,0,0,0.6);
  --shadow-lift:    0 30px 80px -20px rgba(0,0,0,0.75);

  --f-display: 'Archivo', 'Arial Black', sans-serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:    'IBM Plex Mono', 'Courier New', monospace;

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 64px);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  color-scheme: dark;
}

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--f-body);
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4,p{ margin:0; }
input, textarea, select{ font-family:inherit; }

::selection{ background:var(--accent); color:#07110D; }

:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
  border-radius:4px;
}

.wrap{ max-width:var(--maxw); margin:0 auto; padding-left:var(--pad); padding-right:var(--pad); }
.section{ position:relative; padding:clamp(72px, 10vw, 140px) 0; }
.section-tight{ padding:clamp(48px, 7vw, 96px) 0; }
.bg-alt{ background:var(--bg-2); }

.grain{
  position:fixed; inset:0; pointer-events:none; z-index:2; opacity:0.035; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--f-mono); font-size:12.5px; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--accent); font-weight:600;
}
.eyebrow::before{
  content:''; width:7px; height:7px; border-radius:2px; background:var(--accent);
  box-shadow:0 0 12px 2px var(--accent-glow);
}
.eyebrow.amber{ color:var(--accent-2); }
.eyebrow.amber::before{ background:var(--accent-2); box-shadow:0 0 12px 2px rgba(244,185,66,0.35); }
.eyebrow.muted{ color:var(--muted); }
.eyebrow.muted::before{ background:var(--muted); box-shadow:none; }

.h-display{
  font-family:var(--f-display); font-weight:900; letter-spacing:-0.02em; line-height:0.98;
  text-transform:uppercase;
}
.accent-text{ color:var(--accent); }
.amber-text{ color:var(--accent-2); }

.section-head{ max-width:760px; margin-bottom:48px; }
.section-head .eyebrow{ margin-bottom:18px; }
.section-head h2{ font-size:clamp(32px, 5.2vw, 56px); }
.section-head p{ color:var(--muted); font-size:clamp(16px,2vw,19px); margin-top:18px; max-width:640px; }

.muted{ color:var(--muted); }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--f-body); font-weight:700; font-size:15.5px;
  padding:16px 28px; border-radius:100px; border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s ease;
  white-space:nowrap; min-height:52px;
}
.btn:active{ transform:scale(0.97); }
.btn-primary{
  background:var(--accent); color:#07110D;
  box-shadow:0 0 0 0 var(--accent-glow), 0 12px 30px -8px rgba(200,255,50,0.45);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 16px 40px -6px rgba(200,255,50,0.55); }
.btn-ghost{
  background:transparent; color:var(--text); border-color:var(--border-strong);
}
.btn-ghost:hover{ border-color:var(--accent); color:var(--accent); }
.btn-dark{ background:var(--card); color:var(--text); border-color:var(--border); }
.btn-dark:hover{ border-color:var(--border-strong); transform:translateY(-2px); }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:0.7; pointer-events:none; }

.btn .spin{
  width:16px; height:16px; border-radius:50%;
  border:2px solid rgba(7,17,13,0.35); border-top-color:#07110D;
  animation:spin .7s linear infinite; display:none;
}
.btn-dark .spin, .btn-ghost .spin{ border:2px solid rgba(245,247,242,0.25); border-top-color:var(--text); }
.btn.is-loading .spin{ display:inline-block; }
.btn.is-loading .btn-label{ opacity:0.75; }
@keyframes spin{ to{ transform:rotate(360deg); } }

.ticket{
  background:linear-gradient(155deg, rgba(255,255,255,0.035), rgba(255,255,255,0) 40%), var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  position:relative;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}
.ticket::after{
  content:''; position:absolute; inset:0;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  border-radius:var(--radius-md);
  padding:1px;
  background:linear-gradient(155deg, var(--border-strong), transparent 45%);
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  pointer-events:none;
}
.ticket-notch{
  position:absolute; top:0; right:0; width:22px; height:22px;
  background:var(--bg);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.tear{
  height:1px; width:100%;
  background-image:linear-gradient(90deg, var(--border-strong) 0 10px, transparent 10px 18px);
  background-size:18px 1px; background-repeat:repeat-x;
  position:relative;
}
.tear::before, .tear::after{
  content:''; position:absolute; top:50%; width:16px; height:16px; border-radius:50%;
  background:var(--bg); transform:translateY(-50%);
}
.tear::before{ left:-8px; } .tear::after{ right:-8px; }
.bg-alt .tear::before, .bg-alt .tear::after{ background:var(--bg-2); }

[data-reveal]{ opacity:0; transform:translateY(28px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible{ opacity:1; transform:translateY(0); }
[data-reveal="scale"]{ transform:scale(0.94) translateY(20px); }
[data-reveal="scale"].is-visible{ transform:scale(1) translateY(0); }
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1; transform:none; transition:none; }
}

.navbar{
  position:sticky; top:0; z-index:50;
  border-bottom:1px solid transparent;
  transition:background .3s ease, border-color .3s ease, padding .3s ease;
  background:rgba(7,17,13,0.0);
}
.navbar.is-scrolled{
  background:rgba(7,17,13,0.86); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom-color:var(--border);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; height:78px; }
.brand{ display:flex; align-items:center; gap:11px; font-family:var(--f-display); font-weight:900; font-size:19px; letter-spacing:-0.01em; }
.brand-mark{
  width:38px; height:38px; border-radius:9px; background:var(--card); border:1px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center; overflow:hidden; flex-shrink:0;
}
.brand-mark img, .brand-mark svg{ width:100%; height:100%; object-fit:contain; }
.brand small{ display:block; font-family:var(--f-mono); font-size:9.5px; letter-spacing:0.14em; color:var(--muted); font-weight:600; margin-top:2px; }

.nav-links{ display:flex; align-items:center; gap:36px; }
.nav-links a{ font-size:14.5px; font-weight:600; color:var(--muted); transition:color .2s ease; position:relative; }
.nav-links a:hover{ color:var(--text); }
.nav-cta-wrap{ display:flex; align-items:center; gap:14px; }
.nav-cta-wrap .btn{ padding:12px 22px; font-size:14px; min-height:44px; }

.menu-btn{ display:none; width:44px; height:44px; border-radius:10px; background:var(--card); border:1px solid var(--border-strong); align-items:center; justify-content:center; }
.menu-btn span{ position:relative; width:18px; height:2px; background:var(--text); display:block; }
.menu-btn span::before, .menu-btn span::after{ content:''; position:absolute; left:0; width:18px; height:2px; background:var(--text); transition:transform .25s ease; }
.menu-btn span::before{ top:-6px; } .menu-btn span::after{ top:6px; }
.menu-btn.is-open span{ background:transparent; }
.menu-btn.is-open span::before{ top:0; transform:rotate(45deg); }
.menu-btn.is-open span::after{ top:0; transform:rotate(-45deg); }

.mobile-panel{
  display:none; position:fixed; inset:78px 0 0 0; z-index:49; background:var(--bg);
  transform:translateY(-8px); opacity:0; pointer-events:none; transition:opacity .25s ease, transform .25s ease;
  overflow-y:auto;
}
.mobile-panel.is-open{ opacity:1; transform:translateY(0); pointer-events:auto; }
.mobile-panel .wrap{ padding-top:28px; padding-bottom:120px; }
.mobile-panel a{ display:block; font-family:var(--f-display); font-weight:800; font-size:26px; text-transform:uppercase; padding:16px 0; border-bottom:1px solid var(--border); }
.mobile-panel .btn{ margin-top:26px; width:100%; }

.mobile-sticky-cta{
  display:none; position:fixed; left:0; right:0; bottom:0; z-index:48;
  padding:12px var(--pad); padding-bottom:calc(12px + env(safe-area-inset-bottom));
  background:rgba(7,17,13,0.92); backdrop-filter:blur(14px); border-top:1px solid var(--border);
}
.mobile-sticky-cta .btn{ width:100%; }

.hero{ position:relative; padding-top:clamp(56px, 8vw, 96px); padding-bottom:clamp(48px, 8vw, 96px); overflow:hidden; }
.hero-glow{ position:absolute; top:-20%; left:50%; width:1100px; height:1100px; transform:translateX(-50%); background:radial-gradient(circle, var(--accent-dim) 0%, transparent 62%); pointer-events:none; z-index:0; }
.hero-grid-lines{ position:absolute; inset:0; z-index:0; opacity:0.5; background-image:linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size:64px 64px; mask-image:radial-gradient(ellipse 70% 55% at 50% 20%, #000 0%, transparent 75%); }
.hero-inner{ position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; text-align:center; }
.hero-eyebrow{ margin-bottom:22px; }
.hero h1{ font-size:clamp(42px, 8.6vw, 96px); max-width:1040px; }
.hero-sub{ margin-top:26px; max-width:600px; color:var(--muted); font-size:clamp(16px,2.1vw,19px); line-height:1.6; }
.hero-ctas{ display:flex; gap:16px; margin-top:36px; flex-wrap:wrap; justify-content:center; }
.hero-ctas .btn{ padding:18px 32px; font-size:16px; }

.trust-row{ margin-top:56px; display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }
.trust-chip{ display:flex; align-items:center; gap:8px; font-family:var(--f-mono); font-size:12px; letter-spacing:0.06em; font-weight:600; color:var(--muted); padding:10px 16px; border:1px solid var(--border); border-radius:100px; background:rgba(255,255,255,0.02); }
.trust-chip svg{ width:14px; height:14px; stroke:var(--accent); flex-shrink:0; }

.mascot-stage{ position:relative; margin:64px auto 0; width:min(560px, 82vw); aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; }
.mascot-stage .ring{ position:absolute; border-radius:50%; border:1px solid var(--border); }
.mascot-stage .ring-1{ inset:0; }
.mascot-stage .ring-2{ inset:38px; border-style:dashed; border-color:var(--border-strong); animation:spin-slow 34s linear infinite; }
.mascot-stage .ring-3{ inset:76px; background:radial-gradient(circle, var(--accent-dim), transparent 70%); }
@keyframes spin-slow{ to{ transform:rotate(360deg); } }
.mascot-spotlight{ position:absolute; bottom:6%; width:60%; height:24px; left:50%; transform:translateX(-50%); background:radial-gradient(ellipse, rgba(200,255,50,0.35), transparent 70%); filter:blur(6px); }
.mascot-figure{ position:relative; width:64%; z-index:2; filter:drop-shadow(0 30px 40px rgba(0,0,0,0.6)); animation:float-y 5.5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce){ .mascot-figure{ animation:none; } .mascot-stage .ring-2{ animation:none; } }
@keyframes float-y{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); } }
.particle{ position:absolute; width:5px; height:5px; border-radius:50%; background:var(--accent); box-shadow:0 0 10px 2px var(--accent-glow); opacity:0.8; animation:drift 6s ease-in-out infinite; }
@keyframes drift{ 0%,100%{ transform:translate(0,0); opacity:0.3;} 50%{ transform:translate(10px,-18px); opacity:0.9;} }
@media (prefers-reduced-motion: reduce){ .particle{ animation:none; } }

.mascot-placeholder{ width:100%; height:100%; border-radius:22px; border:1.5px dashed var(--border-strong); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; background:rgba(255,255,255,0.015); text-align:center; padding:20px; }
.mascot-placeholder svg{ width:38%; opacity:0.55; }
.mascot-placeholder .mp-label{ font-family:var(--f-mono); font-size:11px; letter-spacing:0.1em; color:var(--muted); text-transform:uppercase; }
.mascot-placeholder .mp-sub{ font-size:12px; color:var(--muted); max-width:220px; }

.problem-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.problem-card{ padding:30px 28px 34px; min-height:190px; display:flex; flex-direction:column; justify-content:space-between; transition:transform .3s ease, border-color .3s ease; }
.problem-card:hover{ transform:translateY(-6px); border-color:var(--border-strong); }
.problem-card .pc-q{ font-family:var(--f-display); font-weight:800; font-size:19px; line-height:1.25; }
.problem-card .pc-a{ margin-top:18px; display:flex; align-items:center; gap:8px; color:var(--accent); font-weight:700; font-size:14px; font-family:var(--f-mono); letter-spacing:0.02em; }
.problem-close{ margin-top:56px; text-align:center; }
.problem-close h3{ font-family:var(--f-display); font-weight:900; font-size:clamp(26px,4.4vw,44px); line-height:1.15; text-transform:uppercase; }
.problem-close .line2{ color:var(--accent); }

.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.service-card{ padding:30px; display:flex; flex-direction:column; gap:16px; transition:transform .3s ease, border-color .3s ease, background .3s ease; }
.service-card:hover{ transform:translateY(-6px); border-color:var(--accent); }
.service-icon{ width:52px; height:52px; border-radius:14px; background:var(--accent-dim); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.service-icon svg{ width:26px; height:26px; stroke:var(--accent); }
.service-card h3{ font-family:var(--f-display); font-weight:800; font-size:19px; text-transform:uppercase; }
.service-card p{ color:var(--muted); font-size:14.5px; flex-grow:1; }
.service-link{ display:inline-flex; align-items:center; gap:6px; font-weight:700; font-size:14px; color:var(--text); transition:gap .2s ease, color .2s ease; }
.service-card:hover .service-link{ color:var(--accent); gap:10px; }

.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:stretch; }
.price-card{ padding:36px 30px; display:flex; flex-direction:column; position:relative; }
.price-card.is-popular{ border-color:var(--accent); background:linear-gradient(160deg, rgba(200,255,50,0.07), rgba(255,255,255,0) 45%), var(--card); transform:translateY(-10px); }
.price-popular-badge{ position:absolute; top:-14px; left:30px; background:var(--accent); color:#07110D; font-family:var(--f-mono); font-size:11px; letter-spacing:0.08em; font-weight:700; text-transform:uppercase; padding:7px 14px; border-radius:100px; }
.price-plan-name{ font-family:var(--f-display); font-weight:800; font-size:22px; text-transform:uppercase; letter-spacing:0.01em; }
.price-amount{ margin-top:14px; display:flex; align-items:baseline; gap:6px; }
.price-amount .num{ font-family:var(--f-display); font-weight:900; font-size:44px; }
.price-amount .per{ color:var(--muted); font-size:14px; font-weight:600; }
.price-features{ margin-top:26px; display:flex; flex-direction:column; gap:13px; flex-grow:1; }
.price-features li{ display:flex; align-items:flex-start; gap:10px; font-size:14.5px; }
.price-features svg{ width:17px; height:17px; stroke:var(--accent); flex-shrink:0; margin-top:2px; }
.price-card .btn{ margin-top:28px; }
.price-note{ margin-top:6px; text-align:center; font-size:12px; color:var(--muted); min-height:16px; }
.pricing-disclaimer{ margin-top:36px; text-align:center; font-size:13px; color:var(--muted); max-width:640px; margin-left:auto; margin-right:auto; }

.onetime-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.onetime-card{ padding:26px 22px; display:flex; flex-direction:column; gap:16px; }
.onetime-card h4{ font-family:var(--f-display); font-weight:800; font-size:16.5px; text-transform:uppercase; }
.onetime-price{ font-family:var(--f-mono); color:var(--accent-2); font-weight:600; font-size:14.5px; }
.onetime-card .btn{ margin-top:auto; padding:12px 18px; font-size:13.5px; min-height:42px; }

.estate-section{ border-radius:32px; margin:0 var(--pad); overflow:hidden; position:relative; background:linear-gradient(150deg, var(--bg-2), var(--bg)); border:1px solid var(--border); }
.estate-inner{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:0; align-items:center; }
.estate-copy{ padding:clamp(40px,6vw,80px); }
.estate-copy h2{ font-size:clamp(30px,4.6vw,50px); }
.estate-copy p{ margin-top:20px; color:var(--muted); font-size:17px; max-width:480px; }
.estate-ctas{ margin-top:32px; display:flex; gap:14px; flex-wrap:wrap; }
.estate-visual{ position:relative; min-height:360px; display:flex; align-items:center; justify-content:center; padding:40px; background:radial-gradient(ellipse at 60% 40%, var(--accent-dim), transparent 65%); }
.house-illustration{ width:80%; max-width:320px; }

.timeline{ display:flex; align-items:center; justify-content:space-between; gap:0; margin-top:16px; flex-wrap:wrap; }
.timeline-step{ display:flex; flex-direction:column; align-items:center; gap:10px; flex:1; min-width:90px; }
.timeline-dot{ width:46px; height:46px; border-radius:50%; background:var(--card); border:1px solid var(--border-strong); display:flex; align-items:center; justify-content:center; font-family:var(--f-mono); font-size:11px; color:var(--muted); font-weight:700; transition:border-color .3s ease, color .3s ease, background .3s ease; }
.timeline-step.is-final .timeline-dot{ background:var(--accent); border-color:var(--accent); color:#07110D; }
.timeline-label{ font-size:12.5px; font-weight:700; letter-spacing:0.04em; text-transform:uppercase; color:var(--muted); text-align:center; }
.timeline-step.is-final .timeline-label{ color:var(--accent); }
.timeline-arrow{ width:clamp(20px,4vw,52px); height:1px; background:var(--border-strong); flex-shrink:0; margin-top:-24px; }
.presale-services{ margin-top:56px; display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.presale-chip{ padding:16px 18px; display:flex; align-items:center; gap:10px; font-size:14px; font-weight:600; }
.presale-chip svg{ width:16px; height:16px; stroke:var(--accent-2); flex-shrink:0; }
.presale-cta{ margin-top:44px; text-align:center; }

.steps-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; position:relative; }
.step-card{ padding:34px 30px; }
.step-num{ font-family:var(--f-mono); font-size:13px; color:var(--accent); font-weight:700; letter-spacing:0.05em; }
.step-card h3{ margin-top:16px; font-family:var(--f-display); font-weight:800; font-size:20px; text-transform:uppercase; }
.step-card p{ margin-top:12px; color:var(--muted); font-size:14.5px; }

.estimate-shell{ max-width:760px; margin:0 auto; }
.ef-progress{ display:flex; gap:6px; margin-bottom:36px; }
.ef-progress i{ flex:1; height:4px; border-radius:100px; background:var(--border); overflow:hidden; position:relative; }
.ef-progress i::after{ content:''; position:absolute; inset:0; background:var(--accent); transform:scaleX(0); transform-origin:left; transition:transform .4s ease; }
.ef-progress i.is-done::after, .ef-progress i.is-current::after{ transform:scaleX(1); }
.ef-progress i.is-current::after{ background:var(--accent-2); }
.ef-panel{ padding:clamp(28px,5vw,48px); }
.ef-step{ display:none; }
.ef-step.is-active{ display:block; animation:fadeUp .4s ease; }
@keyframes fadeUp{ from{ opacity:0; transform:translateY(10px);} to{opacity:1; transform:none;} }
@media (prefers-reduced-motion: reduce){ .ef-step.is-active{ animation:none; } }
.ef-step-label{ font-family:var(--f-mono); font-size:12px; color:var(--muted); letter-spacing:0.08em; margin-bottom:8px; }
.ef-step h3{ font-family:var(--f-display); font-weight:800; font-size:clamp(22px,3.4vw,30px); text-transform:uppercase; margin-bottom:26px; }
.ef-option-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.ef-option{ padding:18px 18px; border:1.5px solid var(--border); border-radius:14px; background:var(--bg-2); display:flex; align-items:center; gap:12px; text-align:left; font-weight:700; font-size:14.5px; color:var(--text); transition:border-color .2s ease, background .2s ease; min-height:56px; }
.ef-option svg{ width:18px; height:18px; stroke:var(--muted); flex-shrink:0; transition:stroke .2s ease; }
.ef-option.is-selected{ border-color:var(--accent); background:var(--accent-dim); }
.ef-option.is-selected svg{ stroke:var(--accent); }
.ef-field{ margin-bottom:18px; }
.ef-field label{ display:block; font-size:13.5px; font-weight:700; margin-bottom:8px; color:var(--muted); }
.ef-field input, .ef-field textarea, .ef-field select{ width:100%; padding:15px 16px; border-radius:12px; border:1.5px solid var(--border); background:var(--bg-2); color:var(--text); font-size:15.5px; min-height:52px; transition:border-color .2s ease; }
.ef-field textarea{ min-height:120px; resize:vertical; }
.ef-field input:focus, .ef-field textarea:focus, .ef-field select:focus{ border-color:var(--accent); outline:none; }
.ef-row2{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.ef-row3{ display:grid; grid-template-columns:2fr 1fr 1fr; gap:14px; }
.ef-upload{ border:1.5px dashed var(--border-strong); border-radius:14px; padding:28px; text-align:center; cursor:pointer; transition:border-color .2s ease, background .2s ease; }
.ef-upload:hover, .ef-upload.is-dragover{ border-color:var(--accent); background:var(--accent-dim); }
.ef-upload svg{ width:26px; height:26px; stroke:var(--muted); margin:0 auto 10px; }
.ef-upload input{ display:none; }
.ef-upload-list{ margin-top:14px; display:flex; flex-wrap:wrap; gap:8px; }
.ef-upload-chip{ font-family:var(--f-mono); font-size:12px; background:var(--card); border:1px solid var(--border); padding:6px 12px; border-radius:100px; }
.ef-nav{ display:flex; justify-content:space-between; align-items:center; margin-top:32px; gap:14px; }
.ef-nav .btn{ min-width:130px; }
.ef-back{ visibility:visible; }
.ef-back.is-hidden{ visibility:hidden; }
.ef-success{ text-align:center; padding:clamp(50px,8vw,90px) clamp(24px,5vw,60px); display:none; }
.ef-success.is-active{ display:block; }
.ef-success .check{ width:74px; height:74px; border-radius:50%; background:var(--accent-dim); border:1px solid var(--accent); display:flex; align-items:center; justify-content:center; margin:0 auto 26px; }
.ef-success .check svg{ width:32px; height:32px; stroke:var(--accent); }
.ef-success h3{ font-family:var(--f-display); font-weight:900; font-size:clamp(26px,4vw,38px); text-transform:uppercase; }
.ef-success p{ margin-top:14px; color:var(--muted); font-size:16px; max-width:420px; margin-left:auto; margin-right:auto; }
.ef-success .estimate-shell-ctas{ margin-top:32px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

.area-layout{ display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; }
.area-map{ position:relative; aspect-ratio:4/3.4; border-radius:24px; overflow:hidden; border:1px solid var(--border); background: radial-gradient(circle at 30% 30%, var(--accent-dim), transparent 55%), linear-gradient(var(--border) 1px, transparent 1px) 0 0/34px 34px, linear-gradient(90deg, var(--border) 1px, transparent 1px) 0 0/34px 34px, var(--bg-2); }
.area-pin{ position:absolute; width:11px; height:11px; border-radius:50%; background:var(--accent); box-shadow:0 0 0 5px var(--accent-dim); }
.area-pin::after{ content:attr(data-town); position:absolute; top:-26px; left:50%; transform:translateX(-50%); font-family:var(--f-mono); font-size:10px; color:var(--muted); white-space:nowrap; }
.area-count{ position:absolute; bottom:20px; left:20px; background:rgba(7,17,13,0.85); backdrop-filter:blur(6px); border:1px solid var(--border); border-radius:14px; padding:14px 18px; }
.area-count .n{ font-family:var(--f-display); font-weight:900; font-size:30px; color:var(--accent); }
.area-count .l{ font-family:var(--f-mono); font-size:10.5px; color:var(--muted); text-transform:uppercase; letter-spacing:0.06em; }
.area-list{ display:grid; grid-template-columns:1fr 1fr; gap:12px 20px; }
.area-list li{ display:flex; align-items:center; gap:10px; font-weight:600; font-size:15px; padding:9px 0; border-bottom:1px solid var(--border); }
.area-list li svg{ width:14px; height:14px; stroke:var(--accent); flex-shrink:0; }
.area-list li.more{ color:var(--muted); font-weight:500; font-style:normal; }

.why-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.why-card{ padding:26px 20px; text-align:left; }
.why-card .wc-tag{ font-family:var(--f-mono); font-size:12px; color:var(--accent-2); letter-spacing:0.08em; font-weight:700; }
.why-card p{ margin-top:12px; font-size:14.5px; color:var(--muted); }

.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testi-card{ padding:30px; display:flex; flex-direction:column; gap:20px; }
.testi-stars{ display:flex; gap:4px; }
.testi-stars svg{ width:15px; height:15px; fill:var(--accent-2); stroke:none; }
.testi-quote{ font-size:15.5px; color:var(--muted); font-style:italic; flex-grow:1; }
.testi-who{ display:flex; align-items:center; gap:12px; }
.testi-avatar{ width:38px; height:38px; border-radius:50%; background:var(--bg-2); border:1px solid var(--border-strong); }
.testi-name{ font-weight:700; font-size:14px; }
.testi-loc{ font-size:12.5px; color:var(--muted); }

.faq-list{ max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item{ border:1px solid var(--border); border-radius:16px; background:var(--card); overflow:hidden; }
.faq-q{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:22px 24px; background:transparent; border:none; color:var(--text); text-align:left; font-family:var(--f-display); font-weight:700; font-size:16.5px; text-transform:uppercase; letter-spacing:0.01em; }
.faq-q .plus{ width:22px; height:22px; border-radius:50%; border:1px solid var(--border-strong); flex-shrink:0; position:relative; transition:transform .3s ease, border-color .3s ease; }
.faq-q .plus::before, .faq-q .plus::after{ content:''; position:absolute; background:var(--muted); left:50%; top:50%; transform:translate(-50%,-50%); transition:opacity .2s ease, background .2s ease; }
.faq-q .plus::before{ width:9px; height:1.5px; }
.faq-q .plus::after{ width:1.5px; height:9px; }
.faq-item.is-open .faq-q .plus{ transform:rotate(45deg); border-color:var(--accent); }
.faq-item.is-open .faq-q .plus::before, .faq-item.is-open .faq-q .plus::after{ background:var(--accent); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-a-inner{ padding:0 24px 22px; color:var(--muted); font-size:15px; line-height:1.65; max-width:680px; }

.final-cta{ border-radius:36px; margin:0 var(--pad); padding:clamp(56px,9vw,120px) clamp(24px,6vw,60px); text-align:center; position:relative; overflow:hidden; background:radial-gradient(ellipse at 50% 0%, var(--accent-dim), transparent 60%), var(--bg-2); border:1px solid var(--border); }
.final-cta h2{ font-size:clamp(34px,6.4vw,72px); position:relative; z-index:1; }
.final-cta p{ margin-top:18px; color:var(--muted); font-size:18px; position:relative; z-index:1; }
.final-cta-ctas{ margin-top:36px; display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; z-index:1; }
.final-mascot{ width:min(220px,40vw); margin:0 auto 8px; opacity:0.9; }

footer{ padding:64px 0 40px; border-top:1px solid var(--border); }
.footer-top{ display:grid; grid-template-columns:1.4fr repeat(4,1fr); gap:32px; }
.footer-brand p{ margin-top:14px; color:var(--muted); font-size:14px; max-width:260px; }
.footer-brand .footer-locale{ margin-top:18px; font-family:var(--f-mono); font-size:12px; color:var(--accent); letter-spacing:0.05em; }
.footer-col h5{ font-family:var(--f-mono); font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); margin-bottom:16px; }
.footer-col a, .footer-col span{ display:block; font-size:14px; color:var(--text); opacity:0.85; padding:6px 0; }
.footer-col a:hover{ opacity:1; color:var(--accent); }
.footer-bottom{ margin-top:52px; padding-top:24px; border-top:1px solid var(--border); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13px; color:var(--muted); }

@media (max-width:1080px){
  .why-grid{ grid-template-columns:repeat(3,1fr); }
  .onetime-grid{ grid-template-columns:repeat(3,1fr); }
  .presale-services{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width:900px){
  .nav-links, .nav-cta-wrap .btn:first-child{ display:none; }
  .menu-btn{ display:flex; }
  .mobile-panel{ display:block; }
  .mobile-sticky-cta{ display:block; }
  body{ padding-bottom:78px; }
  .problem-grid, .services-grid, .pricing-grid, .steps-grid, .testi-grid{ grid-template-columns:1fr 1fr; }
  .price-card.is-popular{ transform:none; order:-1; }
  .estate-inner{ grid-template-columns:1fr; }
  .estate-visual{ min-height:260px; order:-1; }
  .area-layout{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-top{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .problem-grid, .services-grid, .pricing-grid, .steps-grid, .testi-grid, .onetime-grid, .presale-services, .why-grid{ grid-template-columns:1fr; }
  .ef-option-grid{ grid-template-columns:1fr; }
  .ef-row2, .ef-row3{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr 1fr; }
  .timeline{ display:none; }
  .timeline-mobile{ display:flex !important; }
  .hero-ctas{ flex-direction:column; width:100%; }
  .hero-ctas .btn{ width:100%; }
  .price-card.is-popular{ transform:none; }
}
.timeline-mobile{ display:none; flex-direction:column; gap:10px; margin-top:16px; }
.timeline-mobile .tm-row{ display:flex; align-items:center; gap:12px; padding:12px 16px; background:var(--card); border:1px solid var(--border); border-radius:12px; font-weight:700; font-size:13.5px; text-transform:uppercase; }
.timeline-mobile .tm-row.is-final{ border-color:var(--accent); color:var(--accent); }
.timeline-mobile .tm-num{ font-family:var(--f-mono); color:var(--muted); font-size:12px; }
