* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1b1f;
  --muted: #5d5a63;
  --accent: #5a3de8;
  --accent-dark: #3e2aab;
  --surface: #f6f4f9;
  --surface-strong: #efe9ff;
  --line: #d8d2e6;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--muted);
}

.split-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 46px 0 30px;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1.1;
}

.hero-panel {
  flex: 0.9;
  display: flex;
  align-items: stretch;
  position: relative;
}

.hero-card {
  background: var(--surface-strong);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-card img {
  border-radius: 18px;
}

.primary-btn,
.ghost-btn {
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  border: 1px solid transparent;
  gap: 6px;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
}

.primary-btn:hover {
  background: var(--accent-dark);
}

.ghost-btn {
  border-color: var(--line);
  color: var(--ink);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(90, 61, 232, 0.35);
  font-weight: 600;
  z-index: 20;
}

.floating-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 70px 0;
  position: relative;
}

.section.alt {
  background: var(--surface);
}

.section.offset {
  margin-top: -30px;
}

.section h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  margin-bottom: 12px;
}

.asym-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.pricing-item strong {
  font-size: 1.05rem;
}

.pricing-item span {
  font-weight: 700;
  color: var(--accent);
}

.inline-image {
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-wrapper {
  background: #fff;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 12px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background: #111016;
  color: #f2f2f2;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer small {
  color: #bdb7c9;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
}

.cookie-actions button.accept {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.image-grid {
  display: flex;
  gap: 16px;
}

.image-grid img {
  flex: 1;
  border-radius: 18px;
}

.side-note {
  background: var(--surface-strong);
  padding: 18px;
  border-radius: 16px;
}

@media (max-width: 860px) {
  .hero,
  .asym-row,
  .image-grid {
    flex-direction: column;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
