:root {
  --ink: #07111d;
  --ink-2: #0c1b29;
  --panel: #102437;
  --text: #0d1522;
  --muted: #5d6978;
  --line: #dfe5ec;
  --soft: #f4f7fa;
  --white: #ffffff;
  --orange: #ff6a00;
  --orange-dark: #de5200;
  --orange-soft: #fff1e8;
  --green: #169b62;
  --shadow: 0 18px 40px rgba(7, 17, 29, 0.18);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
select {
  font: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 4vw, 56px);
  color: var(--white);
  background: rgba(5, 17, 27, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
}

.logo-mark {
  width: 34px;
  height: 34px;
  color: var(--orange);
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-mark path:first-child {
  fill: currentColor;
}

.logo-mark path:last-child {
  fill: none;
  stroke: var(--white);
  stroke-width: 5;
  stroke-linecap: round;
}

.logo-text {
  font-size: clamp(1.35rem, 2.1vw, 1.65rem);
  letter-spacing: 0;
}

.logo-text span {
  color: var(--orange);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 38px);
  font-size: 0.94rem;
  font-weight: 750;
}

.main-nav a,
.phone-link {
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.main-nav a:hover,
.phone-link:hover {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(255, 106, 0, 0.28);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.22);
}

.button-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.button-small {
  min-height: 44px;
  padding-inline: 22px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  place-items: center;
}

.menu-toggle .icon-close {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(620px, 78svh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(2, 14, 24, 0.76) 36%, rgba(2, 14, 24, 0.28) 68%, rgba(2, 14, 24, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 17, 27, 0.32), rgba(5, 17, 27, 0.05));
}

.hero-content {
  padding: 64px 0 92px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 950;
}

.hero h1::after {
  content: "";
  display: block;
  width: 116px;
  height: 7px;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--orange);
}

.hero-copy {
  max-width: 560px;
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 620px;
  margin: 38px 0 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(5, 17, 27, 0.7);
  backdrop-filter: blur(14px);
}

.hero-proof div {
  min-width: 150px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof dt {
  margin: 0;
  color: var(--orange);
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 950;
}

.hero-proof dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 700;
}

.trust-band {
  margin-top: -44px;
  position: relative;
  z-index: 3;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--panel));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item .icon {
  width: 34px;
  height: 34px;
  color: var(--orange);
  stroke-width: 1.8;
}

.trust-item h2,
.trust-item p {
  margin: 0;
}

.trust-item h2 {
  font-size: 1rem;
  line-height: 1.2;
}

.trust-item p {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 650;
}

.section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.why-panel h2,
.process-panel h2,
.about-copy h2,
.faq-panel h2,
.booking-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 950;
}

.section-heading-light h2 {
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.service-card,
.step-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 17, 29, 0.07);
}

.service-card {
  min-height: 186px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  padding: 22px 18px;
  text-align: center;
}

.service-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--orange);
}

.service-card h3,
.step-card h3,
.price-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.03rem;
  line-height: 1.12;
  font-weight: 950;
}

.service-card p,
.step-card p,
.price-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.split-section {
  padding-top: 0;
  background:
    linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.18fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.why-panel,
.process-panel {
  min-width: 0;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 780;
}

.check-list .icon {
  width: 26px;
  height: 26px;
  padding: 5px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  stroke-width: 3;
}

.review-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(100%, 360px);
  margin-top: 30px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.rating-logo {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #4285f4;
  background: var(--soft);
  font-size: 1.6rem;
  font-weight: 950;
}

.stars {
  display: flex;
  gap: 2px;
  color: #f5b400;
}

.stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.2;
}

.review-strip strong {
  display: block;
  margin-top: 4px;
  font-size: 0.96rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.step-card {
  position: relative;
  min-height: 214px;
  padding: 28px 20px 22px;
  text-align: center;
}

.step-number {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-weight: 950;
}

.pricing-band {
  padding: clamp(62px, 8vw, 92px) 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.12), transparent 34%),
    linear-gradient(135deg, var(--ink), var(--ink-2) 56%, #102a33);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  min-height: 212px;
  padding: 28px;
  color: var(--text);
}

.price-card .service-icon {
  margin-inline: 0;
  margin-bottom: 16px;
}

.price-card-featured {
  border: 2px solid var(--orange);
  transform: translateY(-10px);
  box-shadow: 0 22px 42px rgba(255, 106, 0, 0.18);
}

.popular-label {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 152px;
  padding: 7px 14px;
  color: var(--white);
  background: var(--orange);
  border-radius: var(--radius) var(--radius) 0 0;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-prefix {
  margin-top: 14px;
  font-weight: 800;
}

.price {
  margin: 0;
  color: var(--orange);
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 0.9;
  font-weight: 950;
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  object-position: center;
}

.about-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stats-row div {
  min-height: 106px;
  padding: 16px 12px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.stats-row .icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 8px;
  color: var(--orange);
  stroke-width: 1.8;
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  color: var(--orange);
  font-size: 1.15rem;
  line-height: 1.1;
}

.stats-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.faq-panel {
  align-self: stretch;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 900;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

.booking-section {
  padding: 28px 0 36px;
  color: var(--white);
  background: var(--white);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
  padding: 30px 34px;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.14), transparent 40%),
    linear-gradient(135deg, var(--ink), var(--panel));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-copy h2 {
  color: var(--white);
}

.booking-copy p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.booking-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.booking-contact a,
.booking-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 850;
}

.booking-contact .icon {
  color: var(--orange);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--white);
}

.booking-form label {
  min-width: 0;
}

.booking-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.booking-form input,
.booking-form select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.16);
}

.span-2 {
  grid-column: span 2;
}

.span-1 {
  grid-column: span 1;
}

.booking-form .button {
  width: 100%;
  height: 48px;
  min-height: 48px;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
  gap: 36px;
  padding: 46px 0 28px;
}

.footer-logo {
  color: var(--white);
}

.footer-grid p {
  margin: 12px 0 0;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid nav,
.footer-grid address {
  display: grid;
  align-content: start;
  gap: 8px;
  font-style: normal;
}

.footer-grid a,
.footer-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
}

.legal-page {
  min-height: 100svh;
  padding: 48px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.16), transparent 34%),
    linear-gradient(135deg, var(--ink), var(--panel));
}

.legal-content {
  max-width: 760px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 17, 27, 0.72);
}

.legal-content h1 {
  margin: 42px 0 20px;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.legal-content p {
  color: rgba(255, 255, 255, 0.78);
}

.legal-content a:not(.button) {
  color: var(--orange);
  font-weight: 850;
}

.legal-content .button {
  margin-top: 18px;
}

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

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

  .menu-open .menu-toggle .icon-menu {
    display: none;
  }

  .menu-open .menu-toggle .icon-close {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 16px 20px 24px;
    background: rgba(5, 17, 27, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-open .main-nav {
    transform: translateY(0);
  }

  .header-actions {
    justify-self: end;
  }

  .phone-link {
    display: none;
  }

  .trust-grid,
  .service-grid,
  .process-steps,
  .pricing-grid,
  .about-grid,
  .booking-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-image {
    align-self: stretch;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .site-header {
    height: 68px;
    padding-inline: 14px;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
  }

  .header-actions .button {
    display: none;
  }

  .main-nav {
    inset: 68px 0 auto 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    object-position: 55% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.66)),
      linear-gradient(0deg, rgba(5, 17, 27, 0.42), rgba(5, 17, 27, 0.16));
  }

  .hero-content {
    padding: 92px 0 78px;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }

  .hero-proof div {
    min-width: 0;
    padding: 14px 10px;
    text-align: center;
  }

  .hero-proof dt {
    font-size: 1.25rem;
  }

  .hero-proof dd {
    font-size: 0.73rem;
  }

  .trust-band {
    margin-top: 0;
  }

  .trust-grid,
  .service-grid,
  .process-steps,
  .pricing-grid,
  .about-grid,
  .booking-grid,
  .booking-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    border-radius: 0;
    width: 100%;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

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

  .section,
  .pricing-band {
    padding: 56px 0;
  }

  .price-card-featured {
    transform: none;
  }

  .about-image img {
    aspect-ratio: 16 / 11;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stats-row div {
    min-height: 86px;
  }

  .booking-grid {
    padding: 24px 16px 16px;
    width: calc(100% - 28px);
  }

  .span-2,
  .span-1 {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 14px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
