* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --ink: #1b1c1f;
  --muted: #5c6068;
  --accent: #5a4cf0;
  --accent-dark: #3e35b6;
  --soft: #e7e4ff;
  --highlight: #fff2d8;
  --line: #d8d2c9;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 6vw 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-disclosure {
  font-size: 0.85rem;
  background: var(--highlight);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #f2d7a2;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 4vw;
  border-radius: 28px;
  overflow: hidden;
  background: #dde2ee;
}

.hero-image {
  height: 440px;
  background: #d1d7e5;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 8vw;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.05) 20%, rgba(10, 10, 12, 0.65) 100%);
  color: #fff;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  max-width: 720px;
}

.hero-content p {
  max-width: 640px;
  font-size: 1.1rem;
  margin-top: 12px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.button,
.button-outline {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--accent);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button {
  background: var(--accent);
  color: #fff;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.section {
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.offset-block {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  top: -18px;
}

.offset-block.right {
  top: 22px;
}

.image-card {
  flex: 1;
  min-width: 280px;
  border-radius: 22px;
  overflow: hidden;
  background: #d9d4c8;
  height: 320px;
}

.asym-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.asym-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.asym-card .card-image {
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  background: #d7d2c5;
}

.highlight-band {
  background: var(--soft);
  border-radius: 28px;
  margin: 0 6vw;
  padding: 50px 8vw;
  position: relative;
}

.highlight-band::after {
  content: "";
  position: absolute;
  right: 12%;
  top: -16px;
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.highlight-band p {
  max-width: 720px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.timeline-step span {
  font-weight: 700;
  color: var(--accent);
  min-width: 40px;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.pricing-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.form-section {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  border-radius: 12px;
  border: 1px solid #cfc9bf;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.inline-cta:hover,
.inline-cta:focus-visible {
  border-bottom-color: var(--accent);
}

.footer {
  margin-top: auto;
  padding: 32px 8vw 40px;
  background: #ede9e2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #45484f;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.floating-cta:hover,
.floating-cta:focus-visible {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  max-width: 340px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.button.small {
  padding: 8px 14px;
  font-size: 0.9rem;
}

.page-hero {
  padding: 70px 8vw 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-block {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.legal-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-columns .legal-block {
  flex: 1 1 260px;
}

@media (max-width: 900px) {
  .hero-content {
    position: static;
    color: var(--ink);
    background: #fff;
  }

  .hero {
    margin: 0;
    border-radius: 0;
  }

  .hero-image {
    height: 320px;
  }

  .button-outline {
    color: var(--accent);
    border-color: var(--accent);
  }
}
