* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --soft: #f4f0ed;
  --accent: #2f4bff;
  --accent-2: #e64d6f;
  --accent-3: #1a8a6e;
  --paper: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 24px 6vw;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.brand {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 6vw 60px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 70%;
  height: 85%;
  background: rgba(47, 75, 255, 0.08);
  transform: skewY(-6deg);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--paper);
}

.btn-ghost {
  border: 1px solid var(--ink);
  background: transparent;
}

.hero-image {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section {
  padding: 64px 6vw;
}

.section-muted {
  background: var(--soft);
}

.vision {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.92)
    ),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset-card {
  background: var(--paper);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.insight-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.insight-item {
  background: var(--paper);
  border-left: 4px solid var(--accent-2);
  padding: 18px 20px;
}

.testimonial-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  background: #111111;
  color: var(--paper);
  padding: 24px;
  border-radius: 18px;
}

.service-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
  position: relative;
}

.service-card img {
  border-radius: 14px;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 4px;
  background: var(--accent-3);
  bottom: 0;
  left: 18px;
  border-radius: 999px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--paper);
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-shell label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d2ce;
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent-2);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f1f1f;
  color: var(--paper);
  padding: 18px 6vw;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 40px 6vw 60px;
  background: #101010;
  color: var(--paper);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.page-header {
  padding: 48px 6vw;
  background: var(--soft);
}

.page-header h1 {
  font-size: 2.4rem;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal {
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.magnet {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--paper);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.magnet img {
  border-radius: 18px;
}

.asym {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .insight-grid {
    flex-direction: row;
  }

  .insight-item {
    flex: 1;
  }

  .testimonial-row {
    flex-direction: row;
  }

  .service-wrap {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row > div {
    flex: 1;
  }

  .asym {
    flex-direction: row;
    align-items: stretch;
  }

  .asym > div:first-child {
    flex: 0.9;
  }

  .asym > div:last-child {
    flex: 1.1;
  }
}
