* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #121212;
  --muted: #4f5560;
  --accent: #1c4ed8;
  --accent-soft: #e8efff;
  --sun: #f7b500;
  --stone: #f4f1ea;
  --mist: #f7f7fb;
  --line: #d9dde4;
}

body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw 8px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: var(--accent-soft);
}

.main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 80px;
}

.section {
  padding: 40px 8vw;
}

.section.alt {
  background: var(--mist);
}

.section.sand {
  background: var(--stone);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--ink);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #000000;
}

.btn.outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn.accent {
  background: var(--accent);
}

.inline-link {
  font-weight: 600;
  color: var(--accent);
}

.inline-link:hover {
  text-decoration: underline;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.highlight {
  background: #ffffff;
  border-left: 4px solid var(--sun);
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(18, 18, 18, 0.06);
}

.quote {
  font-style: italic;
}

.form-wrap {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form-group select,
.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(28, 78, 216, 0.3);
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 32px 8vw;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.footer small {
  color: #d9dde4;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 24px rgba(18, 18, 18, 0.12);
  z-index: 11;
  display: none;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-actions .reject {
  background: #eef1f7;
  color: var(--ink);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--sun);
  border-radius: 50%;
  margin-top: 6px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.notice {
  padding: 14px 16px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px dashed var(--line);
  font-size: 0.92rem;
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(18, 18, 18, 0.12);
}

.image-frame img {
  height: 100%;
  object-fit: cover;
}

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.2;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
  }

  .two-col > div {
    flex: 1;
  }
}
