*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --ink: #1f2328;
  --muted: #5f666f;
  --accent: #116d7c;
  --accent-dark: #0b4a55;
  --warm: #e6d7c5;
  --highlight: #f1c24d;
  --surface: #ffffff;
  --shadow: 0 18px 40px rgba(15, 27, 42, 0.14);
  --radius: 24px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 10px;
}

.nav__brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
}

.nav__links a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav__links a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 20px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.hero__layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__content {
  max-width: 540px;
}

.hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--muted);
}

.hero__title {
  font-size: 2.6rem;
  line-height: 1.08;
  margin: 12px 0 16px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: var(--ink);
  background: transparent;
}

.btn--light {
  background: var(--highlight);
  color: #2a2214;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero__visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__badge {
  position: absolute;
  left: 0;
  bottom: -22px;
  background: var(--surface);
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 260px;
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section--layered {
  background: var(--surface);
  border-radius: 40px;
  margin: 0 4vw;
  box-shadow: var(--shadow);
}

.section--warm {
  background: var(--warm);
}

.section__title {
  font-size: 2rem;
  margin: 0 0 16px;
}

.section__text {
  color: var(--muted);
  max-width: 640px;
}

.offset {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset--reverse {
  flex-direction: column-reverse;
}

.offset__card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offset__image {
  border-radius: var(--radius);
  overflow: hidden;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.stat {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pillars__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pillars__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card__media {
  border-radius: 20px;
  overflow: hidden;
}

.card__price {
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 18px;
  box-shadow: var(--shadow);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.pricing__item {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  border-left: 6px solid var(--accent);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.form {
  background: var(--surface);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: inherit;
}

.form button {
  align-self: flex-start;
}

.footer {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
}

.cookie {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 40;
}

.cookie__actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-header {
  padding: 30px 6vw 10px;
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.split__panel {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy h2 {
  margin: 12px 0 4px;
}

.hero__visual::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 18px;
  width: 120px;
  height: 120px;
  background: url("../img/texture.svg") center/cover no-repeat;
  opacity: 0.6;
}

@media (min-width: 860px) {
  .hero__layout {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .offset,
  .offset--reverse {
    flex-direction: row;
    align-items: center;
  }

  .offset--reverse {
    flex-direction: row-reverse;
  }

  .cards,
  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .pricing__item {
    flex: 1 1 240px;
  }

  .stats {
    flex-direction: row;
    gap: 40px;
  }

  .pillars {
    flex-direction: row;
  }

  .pillars__item {
    flex: 1;
  }

  .form-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-wrap > * {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }
}
