* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1c1f;
  --muted: #61656f;
  --accent: #2a5c8f;
  --accent-soft: #dbe7f4;
  --sand: #f4f1ec;
  --night: #0f1b24;
  --sun: #f7d06c;
  --line: #e3e6ea;
  --radius: 20px;
  --shadow: 0 18px 40px rgba(12, 20, 28, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw 10px;
  font-size: 0.95rem;
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
}

.hero {
  background: linear-gradient(120deg, #f7f3ed 10%, #f1f6fb 90%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 36px 6vw 80px;
}

.hero-text {
  max-width: 620px;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.sun {
  background: var(--sun);
  color: #3b2f00;
}

.btn.small {
  padding: 10px 18px;
  font-size: 0.95rem;
}

.text-link {
  font-weight: 600;
  color: var(--accent);
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--night);
  color: #ffffff;
}

.section.dark p,
.section.dark li,
.section.dark a {
  color: #c7d2df;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .split-text,
.split .split-media {
  flex: 1;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.9rem;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 27, 36, 0.08);
}

.card.dark {
  background: #1f2f3c;
  border: 1px solid #2f4251;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 160px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.form-section {
  background: #ffffff;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--sand);
  padding: 24px;
  border-radius: var(--radius);
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 40px 6vw 60px;
  background: #0f1b24;
  color: #c7d2df;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #c7d2df;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  list-style: none;
  padding-left: 0;
}

.badge-row span {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
}

.layered::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--accent-soft);
  border-radius: 50%;
  top: -80px;
  right: 10%;
  z-index: 0;
}

.layered > * {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 900px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-grid .card {
    flex: 1 1 calc(50% - 18px);
  }

  .form-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  form {
    flex: 1;
  }

  .form-aside {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }
}
