* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #101014;
  --muted: #5f6170;
  --accent: #4b6bff;
  --accent-soft: #dfe6ff;
  --sand: #f6f2ea;
  --rose: #ffe4e0;
  --mint: #e6f7ef;
  --sky: #e4f2ff;
  --shadow: rgba(16, 16, 20, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 28px 6vw 0;
  align-items: flex-end;
  gap: 32px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 6vw;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.hero-visual img {
  width: min(520px, 80vw);
  border-radius: 26px;
  box-shadow: 0 26px 60px var(--shadow);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: #cfd3ff;
}

.btn-soft {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent-soft);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 6vw;
}

.section-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-split .split-text {
  max-width: 520px;
}

.section-split .split-visual {
  align-self: flex-end;
  max-width: 480px;
}

.section-muted {
  background: var(--sand);
}

.section-sand {
  background: var(--sand);
}

.section-rose {
  background: var(--rose);
}

.section-mint {
  background: var(--mint);
}

.section-sky {
  background: var(--sky);
}

.section h2 {
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.2;
}

.section p {
  color: var(--muted);
}

.story-blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px var(--shadow);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(75, 107, 255, 0.4);
}

.trust-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-row strong {
  font-size: 24px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 20px var(--shadow);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px var(--shadow);
}

.price {
  font-size: 22px;
  font-weight: 700;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.benefit span {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 32px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d8e5;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 6vw 48px;
  background: #11121b;
  color: #f4f4f6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  background: #11121b;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 18px 40px var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e7e7ef;
  color: var(--ink);
}

.page-title {
  padding: 20px 6vw 0;
  font-size: clamp(28px, 5vw, 44px);
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0 6vw 36px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 26px var(--shadow);
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 6vw 36px;
  color: var(--muted);
}

.policy h2 {
  color: var(--ink);
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-visual {
    margin-top: 0;
  }

  .section-split {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .trust-row {
    flex-direction: row;
    justify-content: space-between;
  }

  .testimonials {
    flex-direction: row;
  }

  .pricing {
    flex-direction: row;
  }

  .pricing-card {
    flex: 1;
  }

  .benefits {
    flex-direction: row;
  }

  .benefit {
    flex: 1;
  }
}
