* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0b1020;
  --ink-soft: #1a2338;
  --mist: #f5f6fa;
  --paper: #ffffff;
  --accent: #2f62ff;
  --accent-soft: #b9c8ff;
  --warm: #f7efe8;
  --sage: #e7f1ee;
  --shadow: 0 20px 45px rgba(11, 16, 32, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  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-end;
  padding: 28px 7vw 12px;
  border-bottom: 1px solid #e4e6ef;
  gap: 16px;
}

.nav .brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 40px 7vw 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}

.section--offset {
  background: var(--mist);
  padding: 36px 30px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.section--warm {
  background: var(--warm);
  padding: 34px 28px;
  border-radius: 26px;
}

.section--sage {
  background: var(--sage);
  padding: 34px 28px;
  border-radius: 26px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-row > div {
  flex: 1;
}

.offset-card {
  background: var(--paper);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.offset-card.shift {
  transform: translateX(12px);
}

.offset-card.shift-up {
  transform: translateY(-10px);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-button,
.cta-outline {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 25px rgba(47, 98, 255, 0.25);
}

.cta-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.signal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.signal-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.signal-item span {
  font-weight: 700;
  color: var(--accent);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-card .price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: var(--paper);
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step strong {
  color: var(--accent);
  min-width: 28px;
}

.form-card {
  background: var(--paper);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd5e3;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  margin-top: auto;
  background: var(--ink);
  color: #fff;
  padding: 36px 7vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: var(--accent-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink-soft);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f1427;
  color: #fff;
  padding: 16px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #fff;
  color: var(--ink);
}

.sidebar-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--paper);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.hero-image {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.bg-image {
  background-image: url("assets/bg-wave.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}

@media (min-width: 820px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split-row {
    flex-direction: row;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 220px;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1 1 240px;
  }

  .info-grid {
    flex-direction: row;
  }

  .info-grid > div {
    flex: 1;
  }
}
