:root {
  --bg: #07070a;
  --bg-soft: #101017;
  --panel: rgba(18, 18, 27, 0.82);
  --panel-solid: #15151f;
  --text: #f8f7fb;
  --muted: #b9b7c8;
  --line: rgba(255, 255, 255, 0.12);
  --magenta: #ff2ea6;
  --violet: #8d5cff;
  --blue: #15d8ff;
  --gold: #e5bd68;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 46, 166, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(21, 216, 255, 0.16), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 10, 0.72);
  backdrop-filter: blur(18px);
}

.brand,
.header-cta,
.btn,
.mobile-quote {
  font-weight: 800;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand-mark,
.brand-logo {
  display: grid;
  place-items: center;
  width: 52px;
  height: 42px;
}

.brand-mark {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--magenta), var(--violet) 54%, var(--blue));
  box-shadow: 0 0 28px rgba(255, 46, 166, 0.35);
  font-size: 0.82rem;
}

.brand-logo {
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(255, 46, 166, 0.24);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.9rem;
}

.main-nav a {
  transition: color 0.2s ease;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-cta,
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--magenta), var(--violet) 58%, var(--blue));
  box-shadow: 0 14px 44px rgba(141, 92, 255, 0.34);
}

.btn-secondary,
.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.section {
  position: relative;
  padding: clamp(76px, 9vw, 126px) clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero {
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding-top: 116px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 10, 0.95) 0%, rgba(7, 7, 10, 0.68) 42%, rgba(7, 7, 10, 0.22) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 22%, rgba(7, 7, 10, 0.16) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.hero-logo {
  width: min(340px, 76vw);
  margin-bottom: 24px;
  border-radius: 8px;
  filter: drop-shadow(0 22px 46px rgba(0, 0, 0, 0.42));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5.2vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-title {
  display: grid;
  gap: 0.08em;
  max-width: 11.8ch;
  font-size: clamp(2.7rem, 5.6vw, 5.5rem);
  line-height: 0.96;
  text-wrap: balance;
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  width: max-content;
  max-width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 45%, #c9eaff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title span:last-child {
  color: #eceaf6;
  font-size: 0.72em;
  line-height: 1.06;
}

.hero-title::after {
  content: "";
  width: min(180px, 52%);
  height: 4px;
  margin-top: 0.18em;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--magenta), var(--violet), var(--blue));
  box-shadow: 0 0 28px rgba(255, 46, 166, 0.42);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.hero-lead,
.large-text,
.section-heading p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.quick-facts span,
.tag-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ebe9f4;
}

.quick-facts span {
  padding: 10px 13px;
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.configurator-section {
  padding-top: clamp(58px, 6vw, 92px);
}

.configurator-section .section-heading {
  margin-bottom: 24px;
}

.configurator-section .section-heading h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
}

.configurator-section .section-heading p {
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
}

.section-heading.compact {
  width: min(660px, 100%);
}

.card-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card,
.price-card,
.review-card,
.configurator,
.contact-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.card,
.price-card,
.review-card {
  padding: 26px;
}

.card {
  min-height: 220px;
}

.card-icon {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 800;
}

.card p,
.price-card p,
.review-card p,
.faq-list p,
.contact p {
  color: var(--muted);
}

.service-card {
  min-height: 250px;
}

.service-card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--magenta), var(--blue));
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.tag-grid span {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 12px;
  text-align: center;
  font-weight: 700;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
}

.price-card.highlighted {
  border-color: rgba(255, 46, 166, 0.42);
  background: linear-gradient(180deg, rgba(255, 46, 166, 0.16), rgba(21, 216, 255, 0.04));
}

.price-card ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.price-card strong {
  color: var(--text);
  text-align: right;
  white-space: nowrap;
}

.centered {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.configurator {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  overflow: hidden;
  background: rgba(15, 15, 23, 0.9);
}

.estimate-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.progress-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-track span {
  display: block;
  width: 14.28%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--magenta), var(--blue));
  transition: width 0.25s ease;
}

.step-count {
  margin-top: 10px;
  color: var(--muted);
}

.step-dots {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.step-dots li {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
}

.step-dots li::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.step-dots li.active::before,
.step-dots li.done::before {
  border-color: transparent;
  background: linear-gradient(135deg, var(--magenta), var(--blue));
}

.step-dots li.active::before {
  transform: scale(1.28);
  box-shadow: 0 0 20px rgba(21, 216, 255, 0.26);
}

.step-dots span {
  display: none;
}

.total-box {
  padding: 20px;
  border: 1px solid rgba(229, 189, 104, 0.24);
  border-radius: 8px;
  background: rgba(229, 189, 104, 0.08);
}

.total-box span,
.summary-box span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.total-box strong {
  display: block;
  margin-top: 8px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.summary-box {
  display: grid;
  gap: 11px;
  color: var(--text);
  font-size: 0.92rem;
}

.steps {
  padding: 28px 30px;
}

.step {
  display: none;
  min-height: 0;
}

.step.active {
  display: block;
  animation: fadeUp 0.25s ease;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice {
  width: 100%;
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.choice span {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 0.88rem;
}

.choice:hover,
.choice.selected {
  border-color: rgba(21, 216, 255, 0.72);
  background: rgba(21, 216, 255, 0.1);
  transform: translateY(-1px);
}

.choice.selected {
  box-shadow: inset 0 0 0 1px rgba(21, 216, 255, 0.22);
}

.extra-hours {
  display: none;
  margin-top: 20px;
}

.extra-hours.visible {
  display: grid;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 13px 14px;
  outline: 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
}

select option {
  background: #171720;
}

.full {
  grid-column: 1 / -1;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.form-alert {
  min-height: 24px;
  margin: 14px 0 0;
  color: #ffb3d9;
  font-weight: 700;
}

.hidden-field {
  display: none;
}

.final-summary {
  margin: 22px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.final-summary dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 10px 16px;
  margin: 0;
}

.final-summary dt {
  color: var(--muted);
}

.final-summary dd {
  margin: 0;
  font-weight: 800;
}

.submit-btn {
  width: 100%;
}

.review-card p {
  font-size: 1.1rem;
}

.review-card strong {
  color: var(--gold);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
}

.contact-logo {
  width: min(320px, 100%);
  margin-bottom: 26px;
  border-radius: 8px;
}

.contact-details {
  display: grid;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
}

.text-copy,
.inline-copy {
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.inline-copy {
  display: inline;
  color: var(--blue);
}

.text-copy:hover,
.inline-copy:hover {
  color: var(--blue);
}

.contact-actions {
  grid-column: 1 / -1;
  margin-top: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  padding: 32px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--text);
  font-weight: 700;
}

.legal-page {
  padding-top: 150px;
}

.legal-content {
  max-width: 920px;
}

.legal-content h1 {
  margin-bottom: 44px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.legal-content section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.mobile-quote {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 35;
  display: none;
  min-width: 104px;
  padding: 12px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--magenta), var(--blue));
  text-align: center;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.38);
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 60;
  max-width: min(360px, calc(100vw - 36px));
  padding: 13px 18px;
  border: 1px solid rgba(21, 216, 255, 0.36);
  border-radius: 8px;
  background: rgba(12, 12, 18, 0.94);
  color: var(--text);
  box-shadow: var(--shadow);
  font-weight: 800;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.copy-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    background: rgba(7, 7, 10, 0.98);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 4px;
  }

  .header-cta {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .configurator {
    grid-template-columns: 1fr;
  }

  .estimate-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .section {
    padding: 72px 18px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 7, 10, 0.96), rgba(7, 7, 10, 0.62)),
      linear-gradient(0deg, var(--bg) 0%, transparent 36%);
  }

  .split,
  .card-grid.three,
  .pricing-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .tag-grid,
  .choice-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .configurator-section {
    padding-top: 56px;
  }

  .configurator-section .section-heading {
    margin-bottom: 16px;
  }

  .configurator-section .section-heading h2 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  .configurator-section .section-heading p {
    max-width: 46ch;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .estimate-panel {
    position: sticky;
    top: 66px;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(116px, 0.75fr) minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    background: rgba(12, 12, 18, 0.96);
    backdrop-filter: blur(16px);
  }

  .estimate-panel .eyebrow {
    margin-bottom: 8px;
    font-size: 0.68rem;
  }

  .progress-track {
    height: 6px;
  }

  .step-count {
    margin: 6px 0 0;
    font-size: 0.9rem;
  }

  .step-dots {
    gap: 5px;
    margin-top: 10px;
  }

  .step-dots li::before {
    width: 7px;
    height: 7px;
  }

  .total-box {
    align-self: stretch;
    display: grid;
    align-content: center;
    padding: 12px;
  }

  .total-box strong {
    margin-top: 4px;
    font-size: 1rem;
  }

  .summary-box {
    display: none;
  }

  .steps {
    padding: 18px;
  }

  .step h3 {
    margin: 0 0 14px;
    font-size: 1.18rem;
  }

  .choice-grid {
    gap: 8px;
  }

  .choice {
    min-height: 52px;
    padding: 11px 13px;
    line-height: 1.25;
  }

  .choice span {
    margin-top: 3px;
    font-size: 0.78rem;
  }

  .form-grid {
    gap: 10px;
  }

  label {
    gap: 5px;
    font-size: 0.86rem;
  }

  input,
  select,
  textarea {
    padding: 10px 12px;
  }

  textarea {
    min-height: 96px;
  }

  .final-summary {
    margin: 14px 0;
    padding: 14px;
  }

  .step-actions {
    position: sticky;
    bottom: 76px;
    z-index: 4;
    margin: 16px -2px 0;
    padding-top: 10px;
    background: linear-gradient(180deg, transparent, rgba(15, 15, 23, 0.96) 35%);
  }

  .price-card {
    min-height: 0;
  }

  .mobile-quote {
    display: block;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  h1 {
    font-size: clamp(1.9rem, 8.4vw, 2.35rem);
    line-height: 1.02;
  }

  .hero-title {
    max-width: 12.2ch;
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  .hero-content {
    width: 336px;
    max-width: calc(100vw - 54px);
    min-width: 0;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn,
  .header-cta {
    width: 100%;
  }

  .quick-facts span {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .steps,
  .estimate-panel {
    padding: 20px;
  }

  .configurator {
    border-radius: 8px;
  }

  .estimate-panel {
    top: 62px;
    grid-template-columns: minmax(98px, 0.7fr) minmax(0, 1fr);
    padding: 12px;
  }

  .steps {
    padding: 16px;
  }

  .step-actions {
    flex-direction: row;
    bottom: 64px;
    gap: 8px;
  }

  .step-actions .btn {
    flex: 1;
    width: auto;
    min-height: 44px;
    padding: 0 12px;
  }

  .submit-btn {
    min-height: 46px;
  }

  .final-summary dl {
    grid-template-columns: 1fr;
  }

  .price-card li {
    display: grid;
  }

  .price-card strong {
    text-align: left;
  }
}
