* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b2733;
  --muted: #54606c;
  --accent: #1f6aa5;
  --accent-strong: #0f4f7a;
  --sand: #f4f0ea;
  --mist: #eef3f6;
  --steel: #d7e0e7;
  --night: #0d1c2b;
  --sun: #f7c873;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  background: var(--night);
  color: #f6f8fa;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #b6c4d3;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-links a {
  font-weight: 600;
  color: #ecf2f8;
  padding: 6px 0;
}

.nav-note {
  color: #9fb2c4;
  font-size: 0.95rem;
}

.sidebar-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sun);
  color: #18222c;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

section {
  padding: 48px 24px;
}

.hero {
  background: linear-gradient(120deg, #f1f6fb 0%, #e8f2f9 60%, #ffffff 100%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin: 0;
}

.hero-meta {
  color: var(--muted);
  max-width: 540px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--mist);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 12px;
  background: #fff;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
}

.layered {
  background: var(--sand);
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/grid.svg") no-repeat right top;
  opacity: 0.5;
  pointer-events: none;
}

.data-band {
  background: var(--night);
  color: #f6f8fa;
}

.data-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.data-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.data-item strong {
  font-size: 1.3rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 2px solid var(--steel);
  padding-left: 18px;
}

.timeline span {
  display: block;
  font-weight: 600;
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
}

.form-section {
  background: #f5f9fc;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(13, 28, 43, 0.08);
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input,
textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccd6e1;
  background: #fff;
}

button {
  border: none;
  font: inherit;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--accent-strong);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffb540;
  color: #2a2f35;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #0d1c2b;
  color: #f6f8fa;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1;
  background: #f7c873;
  color: #17212b;
}

.cookie-actions .reject {
  background: #1f6aa5;
  color: #fff;
}

.footer {
  padding: 28px 24px 40px;
  background: #101b25;
  color: #c9d6e1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.hero-image,
.section-image {
  border-radius: 18px;
  overflow: hidden;
}

.badge-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  background: #fff;
  border: 1px solid #d9e4ee;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
}

.support-band {
  background: linear-gradient(120deg, #10283a 0%, #18374d 100%);
  color: #f1f6fb;
}

.support-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.support-grid div {
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
  border-radius: 14px;
}

.policy {
  max-width: 760px;
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    position: relative;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .card-row {
    flex-direction: row;
  }

  .data-items {
    flex-direction: row;
  }

  .badge-row {
    flex-direction: row;
  }

  .support-grid {
    flex-direction: row;
  }
}
