* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0c1a23;
  --muted: #5a6a75;
  --sand: #f7f4ee;
  --wave: #e7f0f6;
  --accent: #1f6feb;
  --accent-dark: #14449c;
  --highlight: #ffe9b3;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

header {
  padding: 24px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e3e8ec;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 48px 6vw 96px;
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.hero {
  background: var(--wave);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  background: var(--highlight);
  border-radius: 50%;
  opacity: 0.7;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: 1px solid transparent;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 10px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid #edf1f4;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.card img {
  margin-bottom: 16px;
}

.soft-panel {
  background: var(--sand);
  padding: 32px;
  border-radius: 24px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.pricing {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #edf1f4;
}

.pricing h3 {
  margin-bottom: 6px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent-dark);
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-panel {
  background: var(--wave);
  padding: 32px;
  border-radius: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8e0e6;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

footer {
  padding: 48px 6vw;
  background: #0b1b2a;
  color: #d9e3ea;
}

footer a {
  color: #d9e3ea;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(12, 25, 38, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e3e8ec;
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 16px 30px rgba(12, 25, 38, 0.15);
  z-index: 30;
  max-width: 360px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #edf1f4;
  padding: 20px;
}

@media (max-width: 900px) {
  .hero {
    padding: 32px;
  }

  header {
    padding: 20px 5vw;
  }

  .page {
    padding: 40px 5vw 80px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
