:root {
  --bg: #0f1115;
  --panel: #171b22;
  --panel-2: #202630;
  --text: #f5f0e8;
  --muted: #b8bdc5;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #f0b429;
  --accent-2: #2eb67d;
  --danger: #d94d3f;
  --ink: #101216;
  --radius: 8px;
  --max: 1160px;
  color-scheme: dark;
}

* {
  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", Arial, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(15, 17, 21, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(15, 17, 21, 0.94);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  background: var(--accent);
  color: var(--ink);
  border-radius: var(--radius);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius);
  color: rgba(245, 240, 232, 0.82);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
}

.site-nav .nav-cta {
  background: rgba(240, 180, 41, 0.16);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 72px) 44px;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 17, 21, 0.96) 0%, rgba(15, 17, 21, 0.72) 42%, rgba(15, 17, 21, 0.12) 100%),
    linear-gradient(0deg, rgba(15, 17, 21, 0.98) 0%, rgba(15, 17, 21, 0) 48%);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 11vw, 132px);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(245, 240, 232, 0.83);
  font-size: clamp(18px, 2.4vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

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

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

.button-primary {
  background: var(--accent);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffd166;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero-contact {
  margin: 0 0 34px;
  color: rgba(245, 240, 232, 0.8);
  font-size: 16px;
  font-weight: 750;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.hero-facts div {
  padding: 18px;
  background: rgba(23, 27, 34, 0.72);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 6px 0 0;
  font-weight: 850;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 100px) 0;
}

.section[id] {
  scroll-margin-top: 92px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.intro p:last-child,
.section-heading p,
.trust-panel p {
  color: var(--muted);
  font-size: 18px;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.service-card p,
.steps p,
.trust-list span {
  color: var(--muted);
}

.service-number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent-2);
  font-weight: 900;
}

.prices .section-heading p {
  max-width: 720px;
}

.price-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.price-benefits div {
  min-height: 132px;
  padding: 22px;
  background: var(--panel);
}

.price-benefits strong,
.price-benefits span {
  display: block;
}

.price-benefits strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.18;
}

.price-benefits span {
  color: var(--muted);
}

.price-board {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.price-item {
  background: var(--panel);
}

.price-item + .price-item,
.price-cta {
  margin-top: 1px;
}

.price-tab {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-left: 4px solid transparent;
  border-radius: 0;
  padding: 18px 22px;
  background: #13171e;
  color: rgba(245, 240, 232, 0.76);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  text-align: left;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.price-tab-icon::before {
  content: "+";
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.price-tab-icon {
  flex: 0 0 auto;
}

.price-tab:hover,
.price-tab:focus-visible {
  background: #1a2029;
  color: var(--text);
  outline: none;
}

.price-tab.is-active {
  border-left-color: var(--accent);
  background: #1a2029;
  color: var(--text);
}

.price-tab.is-active .price-tab-icon::before {
  content: "-";
  color: var(--text);
}

.price-panel[hidden] {
  display: none;
}

.price-panel {
  padding: clamp(20px, 4vw, 34px);
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.price-panel-head {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.price-panel-head h3 {
  margin: 0;
  font-size: clamp(26px, 3.3vw, 40px);
}

.price-panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.price-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 58px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-list span {
  min-width: 0;
  color: rgba(245, 240, 232, 0.9);
}

.price-list strong {
  color: var(--accent);
  font-size: 18px;
  white-space: nowrap;
}

.price-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 0;
  padding: 18px;
  border: 0;
  border-radius: 0;
  background: rgba(240, 180, 41, 0.08);
}

.price-cta span {
  color: var(--text);
  font-weight: 850;
}

.process {
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
}

.steps span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(240, 180, 41, 0.14);
  color: var(--accent);
  font-weight: 900;
}

.trust {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: 16px;
}

.trust-panel {
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--ink);
}

.trust-panel .section-kicker,
.trust-panel p {
  color: rgba(16, 18, 22, 0.72);
}

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

.trust-list div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.location {
  border-top: 1px solid var(--line);
}

.address-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 24px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.address-panel div {
  display: grid;
  gap: 4px;
}

.address-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.address-panel strong {
  color: var(--text);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.15;
}

.address-panel a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  padding: 0 16px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 850;
}

.map-wrap {
  height: min(62vh, 520px);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.78) contrast(1.08);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong,
.site-footer a {
  color: var(--text);
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 18px;
    right: 18px;
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 17, 21, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    justify-content: center;
  }

  .site-nav .nav-cta {
    background: var(--accent);
    color: var(--ink);
  }

  .hero {
    min-height: 94svh;
  }

  .intro,
  .trust {
    grid-template-columns: 1fr;
  }

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

  .price-benefits {
    grid-template-columns: 1fr;
  }

  .price-tab {
    min-height: 58px;
    text-align: left;
  }

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

@media (max-width: 620px) {
  body {
    padding-bottom: 78px;
  }

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

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 112px 18px 30px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(15, 17, 21, 0.96) 0%, rgba(15, 17, 21, 0.7) 68%, rgba(15, 17, 21, 0.24) 100%),
      linear-gradient(0deg, rgba(15, 17, 21, 0.98) 0%, rgba(15, 17, 21, 0) 62%);
  }

  h1 {
    font-size: clamp(48px, 18vw, 74px);
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-facts,
  .price-benefits,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .price-list li,
  .price-cta {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .price-list strong {
    white-space: normal;
  }

  .price-cta {
    display: grid;
  }

  .hero-facts div {
    padding: 15px;
  }

  .section {
    width: min(var(--max), calc(100% - 28px));
    padding-block: 54px;
  }

  .service-card,
  .steps li {
    min-height: auto;
  }

  .map-wrap {
    min-height: 300px;
  }

  .address-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-action-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  }

  .mobile-action-bar a {
    min-height: 54px;
    display: grid;
    place-items: center;
    background: #171b22;
    color: var(--text);
    font-size: 13px;
    font-weight: 850;
  }

  .mobile-action-bar a:last-child {
    background: var(--accent);
    color: var(--ink);
  }
}
