:root {
  --bg-dark: #111111;
  --bg-light: #ffffff;
  --overlay-blue: rgba(10, 20, 66, 0.65);
  --text-white: #ffffff;
  --text-muted: #bbbbbb;
  --text-dark: #111111;
  --text-secondary: #575757;
  --card-border: #e8e5e2;
  --card-dark-bg: #1b1b1b;
  --card-dark-border: #343434;
  --accent: #ff5c1d;
  --accent-hover: #ff6f38;
  --accent-border: #ffd0bf;
  --divider-dark: #313131;
  --radius: 8px;
  --radius-lg: 16px;
  --page-max: 1400px;
  --page-pad: 100px;

  --font-tight: "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-tight);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

/* ---------- Header ---------- */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 76px;
  transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header--scrolled {
  position: fixed;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  max-width: var(--page-max);
  height: 100%;
  margin: 0 auto;
  padding: 16px var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.nav__list {
  display: flex;
  gap: 24px;
}

.nav__link {
  font-family: var(--font-tight);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--text-white);
}

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

.icon-btn {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--text-white);
  transition: background 0.25s ease;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- Burger button ---------- */

.burger-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  color: var(--text-white);
  cursor: pointer;
  transition: background 0.15s ease;
}

.burger-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.burger-btn__icon {
  display: block;
}

.burger-btn__icon--close {
  display: none;
}

body.menu-open .burger-btn__icon--open {
  display: none;
}

body.menu-open .burger-btn__icon--close {
  display: block;
}

/* ---------- Mobile menu overlay ---------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 15;
  background: rgba(17, 17, 17, 0.96);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 76px 20px 40px;
  overflow-y: auto;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__nav {
  width: 100%;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.mobile-menu__list a {
  display: inline-block;
  padding: 8px 16px;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.mobile-menu__list a:hover,
.mobile-menu__list a:focus-visible {
  color: var(--text-white);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--light {
  background: var(--text-white);
  color: #000;
}

.btn--light:hover {
  background: #d9d9d9;
}

.btn--primary {
  background: var(--accent);
  color: var(--text-white);
}

.btn--primary:hover {
  background: #FF4700;
}

.btn--primary_service {
  max-width: 180px;
}

.btn--ghost {
  background: transparent;
  color: var(--text-white);
  border-color: var(--text-white);
  padding: 13px 25px;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- Hero (screen - 1) ---------- */

.hero {
  position: relative;
  min-height: 794px;
  overflow: hidden;
  color: var(--text-white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  position: absolute;
  top: 0;
  left: 9.43%;
  height: 100%;
  width: 101.59%;
  max-width: none;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140.99deg, #111111 39.48%, rgba(10, 20, 66, 0.65) 93.83%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  min-height: 794px;
  display: flex;
  align-items: center;
}

.hero__content {
  width: 590px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero__title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -0.02em;
}

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

.hero__title--bright {
  color: var(--text-white);
}

.hero__lead {
  margin: 0;
  max-width: 486px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.04em;
  color: var(--text-muted);
}

.hero__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- Services (screen - 2) ---------- */

.services {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 100px var(--page-pad);
}

.services__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.services__title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  text-align: center;
}

.services__cards {
  display: flex;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  /*flex-wrap: wrap;*/
}

.service-card {
  background: var(--bg-light);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 488px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card__media {
  height: 424px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f5f5f5;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  letter-spacing: -0.02em;
}

.service-card__title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  color: var(--text-dark);
}

.service-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
  letter-spacing: 0;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: var(--accent);
  transition: gap 0.25s ease;
}

.service-card__cta:hover {
  gap: 8px;
  text-decoration: underline;
}

.service-card__cta img {
  display: block;
}

/* ---------- What's Included (screen - 3) ---------- */

.checks {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 120px var(--page-pad);
}

.checks__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.checks__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 588px;
}

.checks__title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.checks__lead {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.04em;
  color: var(--text-muted);
}

.checks__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.check-card {
  background: var(--card-dark-bg);
  border: 1px solid var(--card-dark-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.check-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-card__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-card__title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.check-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.04em;
  color: var(--text-muted);
}

.checks__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 588px;
}

.checks__cta-lead {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.04em;
  color: var(--text-muted);
}

/* ---------- How It Works (screen - 4) ---------- */

.how {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 100px var(--page-pad);
}

.how__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.how__content {
  flex: 0 0 590px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.how__title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(2, 285px);
  gap: 20px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step__label {
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.step__title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.step__desc {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.04em;
  color: var(--text-secondary);
}

.how__media {
  flex: 0 0 590px;
  height: 590px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.how__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Why It's Worth It (screen - 5) ---------- */

.why {
  background: var(--accent);
  color: var(--text-white);
  padding: 120px var(--page-pad);
}

.why__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.why__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 794px;
}

.why__title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.why__lead {
  margin: 0;
  max-width: 588px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.04em;
  color: var(--text-white);
}

.why__grid {
  width: 100%;
  max-width: 996px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--accent-hover);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--text-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text-white);
}

.why-card__title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -0.02em;
}

.why-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.04em;
}

/* ---------- Transparent Pricing (screen - 6) ---------- */

.pricing {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 120px var(--page-pad);
}

.pricing__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.pricing__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 794px;
}

.pricing__title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.pricing__lead {
  margin: 0;
  max-width: 588px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.04em;
  color: var(--text-secondary);
}

.pricing__grid {
  width: 100%;
  max-width: 996px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  background: var(--bg-light);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.price-card:last-child {
  border: 1px solid var(--accent);
}

.price-card__title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.price-card__rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row + .price-row {
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
}

.price-row__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.price-row__label {
  color: var(--text-dark);
}

.price-row__price {
  color: var(--accent);
  flex-shrink: 0;
}

.price-row__desc {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.04em;
  color: var(--text-secondary);
}

.pricing__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 590px;
}

.pricing__cta-lead {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.04em;
  color: var(--text-secondary);
}

/* ---------- Our Happy Customers (screen - 7) ---------- */

.customers {
  background: var(--bg-dark);
  padding: 120px 0;
  overflow: hidden;
}

.customers__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.customers__title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: var(--text-white);
  text-align: center;
}

.customers__gallery {
  position: relative;
  width: 100%;
  height: 720px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.customers__gallery::before,
.customers__gallery::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 160px;
  z-index: 2;
  pointer-events: none;
}

.customers__gallery::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg-dark), transparent);
}

.customers__gallery::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-dark), transparent);
}

.customers__col {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.customers__track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: customers-scroll-up 50s linear infinite;
}

.customers__col--down .customers__track {
  animation-name: customers-scroll-down;
}

.customers__col:nth-child(2) .customers__track {
  animation-delay: -17s;
}

.customers__col:nth-child(3) .customers__track {
  animation-delay: -34s;
}

.customers__track img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

@keyframes customers-scroll-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes customers-scroll-down {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .customers__track {
    animation-play-state: paused;
  }
}

/* ---------- FAQ (screen - 8) ---------- */

.faq {
  background: #f6f5f4;
  color: var(--text-dark);
  padding: 120px var(--page-pad);
}

.faq__inner {
  max-width: 794px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.faq__title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  text-align: center;
}

.faq__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-light);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.faq-item__head {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.faq-item__head::-webkit-details-marker {
  display: none;
}

.faq-item__title {
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  flex: 1;
}

.faq-item__toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq-item[open] .faq-item__toggle {
  transform: rotate(180deg);
}

.faq-item__body {
  margin: 16px 0 0;
  overflow: hidden;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.04em;
  color: var(--text-secondary);
}

/* ---------- Book form (screen - 9) ---------- */

.book {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 120px var(--page-pad);
}

.book__inner {
  max-width: 794px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.book__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 588px;
}

.book__title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.book__lead {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.04em;
  color: var(--text-muted);
}

.book-form {
  position: relative;
  width: 100%;
  background: var(--card-dark-bg);
  border: 1px solid var(--card-dark-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.book-form .form-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: end;
  justify-items: stretch;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

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

.field__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.04em;
  color: var(--text-muted);
}

.field__input {
  width: 100%;
  min-width: 0;
  background: #292929;
  border: 1px solid #404040;
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.04em;
  color: var(--text-white);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.field__input::placeholder {
  color: #6a6a6a;
}

.field__input:hover {
  border-color: #4d4d4d;
}

.field__input:focus {
  outline: none;
  border-color: var(--accent);
}

.field__input--textarea {
  min-height: 100px;
  resize: vertical;
  font-family: var(--font-body);
}

.field--select {
  position: relative;
}

.field--select .field__input {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.field--select .field__input::-ms-expand {
  display: none;
}

.field--select .field__input option {
  background: var(--card-dark-bg);
  color: var(--text-white);
}

.field__chevron {
  position: absolute;
  right: 16px;
  bottom: 13px;
  pointer-events: none;
}

.book-form__submit {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 4px;
}

.field__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 12px 0 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.form-status--error {
  color: #f87171;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  min-height: 320px;
  padding: 40px 24px;
}

.form-success[hidden] {
  display: none;
}

.form-success__icon {
  margin-bottom: 4px;
}

.form-success__title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.form-success__desc {
  margin: 0;
  max-width: 380px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: var(--text-muted);
}

.form-success__reset {
  margin-top: 8px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.form-success__reset:hover {
  color: var(--accent-hover);
}

/* ---------- Contact modal ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow-y: auto;
}

.modal-overlay[hidden] {
  display: none;
}

.modal {
  position: relative;
  border: 1px solid var(--card-dark-border);
  background: var(--card-dark-bg);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: min(520px, 100%);
  max-height: calc(100vh - 32px);
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.modal--wide {
  width: min(760px, 100%);
}

.modal .book-form {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.modal__close:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.06);
}

.modal__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.modal__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 40px;
}

.modal__title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.modal__lead {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.04em;
  color: var(--text-muted);
}

.modal-form {
  position: relative;
}

.modal-form .form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-form__submit {
  align-self: stretch;
  margin-top: 8px;
}

@media (max-width: 560px) {
  .modal {
    padding: 24px;
  }

  .modal__title {
    font-size: 24px;
    line-height: 28px;
  }

  .book-form .form-fields,
  .modal-form .form-fields {
    gap: 10px;
  }

  .field__input {
    padding: 8px 14px;
  }

  .field__input--textarea {
    height: 42px;
    min-height: 0;
    resize: none;
  }

  .field--select .field__chevron {
    bottom: 8px;
  }

  .book-form__submit,
  .modal-form__submit {
    justify-self: stretch;
    width: 100%;
  }
}

/* ---------- Static pages (Terms, Privacy) ---------- */

.page {
  background: var(--bg-dark);
  color: var(--text-white);
  min-height: calc(100vh - 76px);
  padding: 160px var(--page-pad) 100px;
}

.page__inner {
  max-width: 794px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page__title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.page__lead {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.04em;
  color: var(--text-muted);
}

.page__updated {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--text-muted);
}

.page__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 16px;
}

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

.page__section h2 {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.page__section p,
.page__section li {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: var(--text-muted);
}

.page__section ul {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page__section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page__section a:hover {
  color: var(--accent-hover);
}

@media (max-width: 1200px) {
  .page {
    padding: 140px var(--page-pad) 80px;
  }

  .page__title {
    font-size: 40px;
    line-height: 44px;
  }
}

@media (max-width: 560px) {
  .page {
    padding: 120px var(--page-pad) 64px;
  }

  .page__title {
    font-size: 32px;
    line-height: 36px;
  }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg-dark);
  color: var(--text-muted);
  border-top: 1px solid var(--card-dark-border);
}

.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.04em;
  color: var(--text-muted);
}

.site-footer__copy {
  margin: 0;
}

.site-footer__legal {
  display: flex;
  gap: 20px;
}

.site-footer__legal a {
  color: inherit;
  transition: color 0.15s ease;
}

.site-footer__legal a:hover {
  color: var(--text-white);
}

/* ---------- Responsive ---------- */

@media (max-width: 1200px) {
  :root {
    --page-pad: 48px;
  }

  .hero__title {
    font-size: 48px;
    line-height: 52px;
  }

  .services {
    padding: 80px var(--page-pad);
  }

  .services__title {
    font-size: 40px;
    line-height: 44px;
  }

  .checks {
    padding: 96px var(--page-pad);
  }

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

  .checks__title,
  .how__title,
  .why__title,
  .pricing__title,
  .faq__title,
  .book__title,
  .customers__title {
    font-size: 40px;
    line-height: 44px;
  }

  .why,
  .pricing,
  .faq,
  .book,
  .customers {
    padding: 96px var(--page-pad);
  }

  .customers__inner {
    padding: 0;
  }

  .how__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .how__content,
  .how__media {
    flex: 0 0 auto;
    width: 100%;
  }

  .how__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .how__media {
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: 590px;
  }
}

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

  .burger-btn {
    display: inline-flex;
  }

  .site-header__inner {
    justify-content: space-between;
  }

  

  .hero__content {
    width: 100%;
  }

  .hero__title {
    max-width: 590px;
  }

  .services__cards {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: auto
  }

  .service-card__media {
    height: 320px;
  }

  .checks__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

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

  .why__grid,
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 488px;
    margin: 0 auto;
  }

  .book-form .form-fields {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 560px) {
  :root {
    --page-pad: 20px;
  }

  .hero__title {
    font-size: 32px;
    line-height: 36px;
  }

  .hero__lead {
    font-size: 16px;
    line-height: 24px;
  }

  .btn {
    padding: 12px 18px;
    font-size: 15px;
  }

  .btn--ghost {
    padding: 11px 19px;
  }

  .services {
    padding: 64px var(--page-pad);
    gap: 32px;
  }

  .services__title {
    font-size: 32px;
    line-height: 36px;
  }

  .service-card {
    padding: 20px;
  }

  .service-card__media {
    height: 240px;
  }

  .service-card__title {
    font-size: 26px;
    line-height: 30px;
  }

  .checks {
    padding: 64px var(--page-pad);
  }

  .checks__title,
  .how__title,
  .why__title,
  .pricing__title,
  .faq__title,
  .book__title,
  .customers__title {
    font-size: 32px;
    line-height: 36px;
  }

  .checks__lead,
  .checks__cta-lead,
  .why__lead,
  .pricing__lead,
  .pricing__cta-lead,
  .book__lead {
    font-size: 16px;
    line-height: 24px;
  }

  .how,
  .why,
  .pricing,
  .faq,
  .book,
  .customers {
    padding: 64px var(--page-pad);
  }

  .customers__gallery {
    grid-template-columns: repeat(2, 1fr);
    height: 480px;
  }

  .customers__col:nth-child(3) {
    display: none;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-item__title {
    font-size: 18px;
    line-height: 24px;
  }

  .site-footer__legal {
    gap: 12px;
    flex-wrap: wrap;
  }

  .site-footer__inner {
    font-size: 14px;
  }

  .check-card__title,
  .step__title,
  .why-card__title {
    font-size: 22px;
    line-height: 26px;
  }

  .price-card {
    padding: 24px;
  }

  .price-card__title {
    font-size: 26px;
    line-height: 30px;
  }

  .price-row__head {
    font-size: 20px;
    line-height: 22px;
    flex-wrap: wrap;
    white-space: normal;
  }
}

@media (max-width: 500px) {
  .site-footer__inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .site-footer__legal {
    justify-content: center;
  }
}
