* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #14151a;
  --muted: #5e6673;
  --accent: #1f5eff;
  --accent-soft: #eef2ff;
  --surface: #f6f4f1;
  --surface-2: #eef3f6;
  --warm: #f4ede3;
  --shadow: 0 18px 40px rgba(15, 18, 30, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  position: relative;
  z-index: 3;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
}

.button.outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button.dark {
  background: var(--ink);
}

.section {
  padding: 72px 6vw;
  position: relative;
}

.section.compact {
  padding: 50px 6vw;
}

.section.surface {
  background: var(--surface);
}

.section.surface-2 {
  background: var(--surface-2);
}

.section.warm {
  background: var(--warm);
}

.section-title {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 20px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.offset-box {
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.offset-box.soft {
  background: var(--accent-soft);
}

.offset-box.warm {
  background: #fff5e9;
}

.tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e7ef;
  font-size: 0.85rem;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(18, 26, 45, 0.08);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 12px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #d7dde8;
  background: #fff;
  font-size: 0.9rem;
}

.media-frame {
  position: relative;
  padding: 12px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.media-frame::after {
  content: "";
  position: absolute;
  top: -16px;
  right: -18px;
  width: 120px;
  height: 120px;
  background: rgba(31, 94, 255, 0.08);
  border-radius: 36px;
  z-index: -1;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-22 {
  margin-top: 22px;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  background: var(--ink);
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1d6e0;
  font-size: 1rem;
  font-family: inherit;
}

.form-panel textarea {
  min-height: 110px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer {
  padding: 50px 6vw 70px;
  background: #10131b;
  color: #f3f5f8;
}

.footer a {
  color: #f3f5f8;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.muted {
  color: var(--muted);
}

.callout {
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 16px;
}

.page-title {
  font-size: 2.4rem;
  margin: 0 0 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(20, 25, 40, 0.08);
}

.banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.banner.hidden {
  display: none;
}

.banner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .form-panel {
    max-width: 520px;
  }

  .banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .banner-actions {
    flex-direction: row;
  }

  .offset-left {
    margin-left: -40px;
  }

  .offset-right {
    margin-right: -40px;
  }
}
