* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background: #f5f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 0;
  gap: 24px;
}

.nav .logo {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.nav .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.nav .nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav .nav-links a:hover {
  border-bottom-color: #1c1c1c;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 56px 6vw 32px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #4c4c4c;
}

.hero h1 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  max-width: 520px;
  margin: 0;
  font-size: 18px;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fefefe;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1c1c1c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1c1c1c;
  color: #f5f3ef;
}

.button.secondary {
  background: transparent;
  color: #1c1c1c;
}

.button.ghost {
  border-color: transparent;
  background: transparent;
  color: #1c1c1c;
  padding: 0;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin-left: auto;
  margin-right: 6vw;
  background: #111;
  color: #f5f3ef;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  z-index: 3;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 54px 6vw;
  position: relative;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #1f1f1f;
  color: #f5f3ef;
}

.section .title {
  font-size: clamp(26px, 3vw, 40px);
  margin: 0;
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-block {
  background: #efe8dc;
  padding: 24px;
  border-radius: 18px;
  margin-left: auto;
  max-width: 640px;
}

.offset-block.dark {
  background: #2b2b2b;
  color: #f5f3ef;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.card .price {
  font-weight: 700;
  font-size: 18px;
}

.flow-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.flow-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 16px;
  background: #fefefe;
}

.flow-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #1c1c1c;
  color: #f5f3ef;
  font-weight: 700;
}

.quote-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  border-left: 3px solid #1c1c1c;
  padding-left: 18px;
  font-style: italic;
}

.dark .quote {
  border-left-color: #f5f3ef;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.form-shell label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
  font-family: inherit;
}

.form-shell button {
  align-self: flex-start;
}

.footer {
  padding: 40px 6vw;
  background: #111;
  color: #f5f3ef;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookies {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 10;
}

.cookies.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookies .button {
  width: 100%;
  justify-content: center;
}

.cookies .button.secondary {
  border-color: #1c1c1c;
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-title {
  padding: 40px 6vw 12px;
  font-size: clamp(30px, 4vw, 46px);
  margin: 0;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-panel {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

.contact-block {
  background: #efe8dc;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal {
  padding: 32px 6vw 64px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: flex-start;
    gap: 42px;
  }

  .hero-inner {
    flex: 1.1;
  }

  .hero-media {
    flex: 0.9;
  }

  .section-grid {
    flex-direction: row;
    align-items: center;
    gap: 36px;
  }

  .section-grid.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .flow-row {
    flex-direction: row;
  }

  .flow-item {
    flex: 1;
  }

  .quote-row {
    flex-direction: row;
  }

  .quote {
    flex: 1;
  }

  .info-grid {
    flex-direction: row;
  }

  .info-panel {
    flex: 1;
  }
}
