:root {
  --bg: #05070c;
  --panel: #0b0f18;
  --panel-2: #0f1520;
  --line: rgba(255,255,255,.1);
  --text: #f3f6fb;
  --muted: #9aa4b3;
  --blue: #087cff;
  --blue-2: #19b7ff;
  --silver: #dce4ed;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(0,126,255,.45); }

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
.bg-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 20%, rgba(0,124,255,.15), transparent 34%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  padding: 14px 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5,7,12,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.brand img { width: 150px; display: block; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; color: #c6cfdb; }
.nav a:hover { color: white; }
.nav-cta {
  padding: 10px 15px;
  border: 1px solid rgba(26,145,255,.5);
  background: rgba(0,119,255,.1);
  border-radius: 8px;
  color: white !important;
}
.menu-toggle { display: none; background: none; border: 0; }

.section { max-width: var(--max); margin: auto; padding: 110px 24px; }
.hero {
  min-height: 730px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  padding-top: 80px;
}
.eyebrow { display: flex; align-items: center; gap: 10px; color: #aab6c7; font-size: 11px; font-weight: 800; letter-spacing: .2em; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-2); box-shadow: 0 0 15px var(--blue); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 22px 0;
  font-size: clamp(58px, 8vw, 108px);
  line-height: .88;
  letter-spacing: -.06em;
  font-weight: 900;
}
h1 span, h2 span { color: var(--blue); text-shadow: 0 0 35px rgba(0,130,255,.2); }
.hero-text { max-width: 620px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 8px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: white;
  background: linear-gradient(120deg, #006eff, #0aa7ff);
  border: 0;
  box-shadow: 0 12px 35px rgba(0,114,255,.24);
}
.button-ghost { color: #dce5ef; background: rgba(255,255,255,.025); }
.trust-row { display: flex; gap: 26px; margin-top: 44px; }
.trust-row div { display: grid; gap: 1px; }
.trust-row strong { font-size: 12px; color: var(--blue-2); }
.trust-row span { font-size: 11px; color: #7d8796; text-transform: uppercase; letter-spacing: .08em; }

.hero-visual { min-height: 520px; position: relative; display: grid; place-items: center; }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 390px; height: 390px; background: radial-gradient(circle, rgba(0,138,255,.25), transparent 65%); }
.orb-two { width: 260px; height: 260px; border: 1px solid rgba(17,142,255,.28); box-shadow: 0 0 80px rgba(0,132,255,.15); }
.hero-card {
  width: min(430px, 90%);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.015));
  box-shadow: 0 35px 90px rgba(0,0,0,.55), inset 0 0 50px rgba(0,125,255,.05);
  transform: rotate(3deg);
}
.hero-card img { width: 75%; filter: drop-shadow(0 0 25px rgba(0,132,255,.25)); }
.card-line { width: 55%; height: 1px; background: linear-gradient(90deg, transparent, #1b9cff, transparent); }
.hero-card p { font-size: 10px; letter-spacing: .45em; color: #a6b0bd; margin: 0; }

.stats-strip {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}
.stats-strip div { padding: 25px 5vw; border-right: 1px solid var(--line); }
.stats-strip div:last-child { border-right: 0; }
.stats-strip strong { display: block; font-size: 12px; letter-spacing: .1em; }
.stats-strip span { color: #737e8d; font-size: 11px; }

.section-heading { max-width: 720px; margin-bottom: 55px; }
.section-heading h2, .why-copy h2, .contact-copy h2 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: .96;
  letter-spacing: -.045em;
  margin: 18px 0;
}
.section-heading p, .why-copy > p, .contact-copy > p { color: var(--muted); max-width: 650px; }
.centered { text-align: center; margin-left: auto; margin-right: auto; }
.centered .eyebrow { justify-content: center; }

.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.service-card {
  position: relative;
  min-height: 360px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.01));
  transition: transform .25s, border-color .25s, background .25s;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 180px; height: 180px; right: -100px; bottom: -100px;
  background: rgba(0,126,255,.16);
  filter: blur(40px);
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(0,143,255,.5); background: rgba(8,20,34,.75); }
.service-number { color: #647080; font-size: 11px; }
.icon { font-size: 38px; margin: 55px 0 28px; color: var(--blue-2); text-shadow: 0 0 20px rgba(0,153,255,.4); }
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { color: #8994a3; font-size: 14px; }
.service-link { position: absolute; bottom: 25px; color: #5f6b7a; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

.process-section { max-width: none; background: linear-gradient(180deg, transparent, rgba(0,87,160,.05), transparent); }
.process-section > * { max-width: var(--max); margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.process-step { padding: 35px 25px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.process-step:last-child { border-right: 0; }
.process-step > span { color: var(--blue-2); font-weight: 900; font-size: 13px; }
.process-step h3 { margin: 45px 0 10px; }
.process-step p { color: #7f8998; font-size: 14px; }

.why-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-visual {
  min-height: 480px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: radial-gradient(circle, rgba(0,116,255,.13), transparent 55%), #080b12;
  overflow: hidden;
}
.monogram { font-size: 190px; font-weight: 950; letter-spacing: -.12em; color: transparent; -webkit-text-stroke: 1px rgba(52,159,255,.45); text-shadow: 0 0 50px rgba(0,125,255,.15); }
.scan-line { position: absolute; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,164,255,.8), transparent); top: 50%; box-shadow: 0 0 25px #008eff; animation: scan 3s ease-in-out infinite; }
@keyframes scan { 0%,100% { transform: translateY(-170px); opacity: 0; } 50% { transform: translateY(170px); opacity: 1; } }
.check-list { padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: center; color: #c3ccd7; font-size: 14px; }
.check-list span { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; color: var(--blue-2); background: rgba(0,128,255,.12); font-size: 11px; }

.faq-list { max-width: 850px; margin: auto; }
details { border-top: 1px solid var(--line); padding: 23px 0; }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; display: flex; justify-content: space-between; list-style: none; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--blue-2); font-size: 24px; font-weight: 400; }
details[open] summary span { transform: rotate(45deg); }
details p { color: #818b99; margin: 14px 35px 0 0; font-size: 14px; }

.contact-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.contact-note { display: flex; gap: 14px; margin-top: 40px; padding: 17px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.02); }
.contact-note > span { color: var(--blue-2); font-size: 22px; }
.contact-note small { display: block; color: #687383; font-size: 9px; letter-spacing: .15em; }
.contact-note strong { font-size: 12px; word-break: break-word; }
.project-form { padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 8px; color: #aeb8c6; font-size: 11px; font-weight: 700; letter-spacing: .04em; margin-bottom: 15px; }
input, textarea, select {
  width: 100%; border: 1px solid rgba(255,255,255,.1); border-radius: 7px;
  background: #080c13; color: white; padding: 13px 14px; outline: none;
}
input:focus, textarea:focus, select:focus { border-color: rgba(0,147,255,.75); box-shadow: 0 0 0 3px rgba(0,123,255,.1); }
textarea { resize: vertical; }
.consent { display: flex; grid-template-columns: auto 1fr; align-items: flex-start; font-weight: 400; letter-spacing: 0; font-size: 11px; color: #778292; }
.consent input { width: auto; margin-top: 3px; }
.consent a { color: #b9dfff; text-decoration: underline; }
.submit-button { width: 100%; }
.form-status { margin: 14px 0 0; font-size: 12px; color: #8b98a8; min-height: 20px; }

.footer {
  max-width: var(--max); margin: auto; padding: 45px 24px 35px;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: end;
}
.footer-brand img { width: 130px; }
.footer-brand p { color: #687383; font-size: 11px; letter-spacing: .12em; }
.footer-links { display: flex; gap: 20px; font-size: 11px; color: #8893a2; }
.copyright { grid-column: 1 / -1; color: #4e5866; font-size: 10px; margin: 10px 0 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.legal-page { min-height: 100vh; }
.legal-container { max-width: 850px; margin: auto; padding: 100px 24px; }
.legal-container h1 { font-size: clamp(48px, 7vw, 78px); }
.legal-container h2 { margin-top: 45px; font-size: 25px; }
.legal-container p, .legal-container li { color: #9aa4b3; font-size: 15px; }
.legal-container ul { padding-left: 20px; }
.legal-back { display: inline-flex; margin-bottom: 40px; color: #a8d7ff; font-size: 13px; }

@media (max-width: 950px) {
  .hero, .why-section, .contact-section { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .hero-visual { min-height: 390px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .stats-strip div:nth-child(2) { border-right: 0; }
  .stats-strip div { border-bottom: 1px solid var(--line); }
}
@media (max-width: 700px) {
  .site-header { padding: 12px 20px; }
  .brand img { width: 125px; }
  .menu-toggle { display: grid; gap: 4px; padding: 8px; }
  .menu-toggle span { width: 24px; height: 2px; background: white; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 65px; padding: 18px 20px;
    background: #070a10; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch;
  }
  .nav.open { display: flex; }
  .nav-cta { text-align: center; }
  .section { padding: 80px 20px; }
  h1 { font-size: 60px; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 310px; }
  .hero-card { width: 290px; }
  .stats-strip, .service-grid, .process-grid { grid-template-columns: 1fr; }
  .stats-strip div, .stats-strip div:nth-child(2) { border-right: 0; }
  .service-card { min-height: 320px; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .why-visual { min-height: 300px; }
  .monogram { font-size: 125px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}
/* ================================
   PRICE ESTIMATOR
================================ */

.estimator-section {
  position: relative;
}

.estimator-card {
  max-width: 1100px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 30px;
  padding: 35px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(14px);
}

.estimate-options {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.estimate-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.estimate-group > label:first-child {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.estimate-group select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: inherit;
  font: inherit;
  outline: none;
}

.estimate-group select:focus {
  border-color: rgba(255,255,255,.4);
}

.estimate-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  cursor: pointer;
  transition: .2s ease;
}

.estimate-check:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.25);
}

.estimate-check input {
  width: 18px;
  height: 18px;
  accent-color: currentColor;
}

.estimate-check span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 15px;
}

.estimate-check strong {
  white-space: nowrap;
}

.estimate-result {
  position: sticky;
  top: 30px;
  align-self: start;
  padding: 35px;
  border-radius: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  text-align: center;
}

.estimate-result-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: .65;
}

.estimate-price {
  margin: 18px 0;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -3px;
}

.estimate-result p {
  font-size: 14px;
  line-height: 1.6;
  opacity: .65;
  margin-bottom: 25px;
}

.estimate-result .button {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

@media (max-width: 800px) {
  .estimator-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .estimate-result {
    position: static;
  }
}