* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #0b0f1a;
  --muted: #586173;
  --accent: #4659ff;
  --accent-dark: #313fb8;
  --warm: #f8e8d7;
  --mint: #e1f5ef;
  --cloud: #f6f7fb;
  --line: #e2e6ef;
  --shadow: 0 20px 50px rgba(14, 19, 33, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 64px 6vw 48px;
  background: linear-gradient(120deg, #f9fbff 10%, #f1f3ff 60%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.button.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: var(--cloud);
}

.section.warm {
  background: var(--warm);
}

.section.mint {
  background: var(--mint);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 680px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(70, 89, 255, 0.1);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.quote {
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: #ffffff;
  border-radius: 16px;
}

.price-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 260px;
  border-radius: 18px;
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 3;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  display: none;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 4;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #0f1322;
  color: #e6e9f1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: #b8bfce;
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

@media (min-width: 960px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-inner,
  .hero-visual {
    flex: 1 1 50%;
  }

  .hero-visual {
    display: flex;
    justify-content: flex-end;
  }
}
