* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0f1a1f;
  --muted: #4d5b63;
  --accent: #5b4bff;
  --accent-2: #e35b4f;
  --accent-3: #2a8f7a;
  --sand: #f5f1ea;
  --mist: #eef1f4;
  --stone: #dfe4e8;
  --glow: rgba(91, 75, 255, 0.12);
  --shadow: 0 20px 60px rgba(15, 26, 31, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fbfbfd;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-bottom: 120px;
}

.top-shell {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px 20px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 20px;
}

.hero-panel {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 10% 12% auto auto;
  width: 140px;
  height: 140px;
  background: var(--glow);
  border-radius: 50%;
  z-index: 0;
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.1;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.hero p {
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 40px rgba(91, 75, 255, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateX(-8px);
}

.section {
  padding: 0 20px;
}

.image-section {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.image-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 31, 0.55);
  z-index: 0;
}

.image-section > * {
  position: relative;
  z-index: 1;
}

.image-section .btn-outline {
  border-color: #fff;
  color: #fff;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.section-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offset-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--stone);
}

.floating-quote {
  background: var(--mist);
  border-left: 4px solid var(--accent-2);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-style: italic;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--stone);
  box-shadow: 0 18px 40px rgba(15, 26, 31, 0.08);
}

.card img {
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  height: 180px;
  object-fit: cover;
}

.highlight-strip {
  background: var(--ink);
  color: #fff;
  padding: 22px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-strip a {
  color: #fff;
  text-decoration: underline;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline-index {
  background: var(--accent-3);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  background: var(--sand);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid rgba(91, 75, 255, 0.2);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stone);
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.cta-inline {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 5;
}

.footer {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--stone);
  background: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ghost-btn {
  background: transparent;
  border: 1px solid var(--stone);
  color: var(--ink);
}

.aside-banner {
  background: linear-gradient(120deg, rgba(91, 75, 255, 0.15), rgba(227, 91, 79, 0.12));
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.media-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-strip img {
  border-radius: var(--radius-md);
}

.page-banner {
  background: var(--mist);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

@media (min-width: 820px) {
  .top-shell {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 36px 60px 0;
  }

  .nav {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
    padding: 0 60px;
  }

  .hero-panel {
    flex: 1.1;
  }

  .hero-image {
    flex: 0.9;
    transform: translate(12px, 24px);
  }

  .section {
    padding: 0 60px;
  }

  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing-wrap {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .form-shell form {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-shell form > * {
    flex: 1 1 220px;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 420px;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
