* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --text: #1c1c1c;
  --muted: #575757;
  --light: #f6f3ee;
  --accent: #1f5eff;
  --accent-dark: #163bb0;
  --warm: #f4e6d1;
  --deep: #111018;
  --card: #ffffff;
  --border: rgba(28, 28, 28, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.page {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 2.5rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.brand-text strong {
  display: block;
  font-size: 1.1rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.95rem;
}

.section {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section--hero {
  padding-top: 1rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta {
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta--primary {
  background: var(--accent);
  color: #fff;
}

.cta--ghost {
  border-color: var(--border);
  color: var(--text);
  background: #fff;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--warm);
  font-size: 0.85rem;
  color: var(--deep);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.section--story {
  background: #fff;
  border-radius: 32px;
  padding: 4rem 2.5rem;
}

.story-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight {
  background: var(--deep);
  color: #fff;
  padding: 2rem;
  border-radius: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split .panel {
  flex: 1;
}

.section--pressure {
  background: #efe7dc;
  border-radius: 30px;
  padding: 4rem 2.5rem;
}

.pressure-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insight-box {
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  font-size: 1.15rem;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.4rem;
  border-radius: 20px;
  flex: 1 1 180px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial {
  background: #fff;
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.8rem;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-tag {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.section--reveal {
  background: #fff;
  border-radius: 32px;
  padding: 4rem 2.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-item span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.sticky-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sticky-cta {
  background: var(--deep);
  color: #fff;
  padding: 2rem;
  border-radius: 28px;
  position: sticky;
  top: 1.5rem;
}

.sticky-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.form-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

button {
  font-family: inherit;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.inline-cta {
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
}

.site-footer {
  padding: 3rem 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  font-size: 0.9rem;
}

.legal-note {
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  z-index: 99;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.section--bg {
  background-image: linear-gradient(120deg, rgba(31, 94, 255, 0.12), rgba(244, 230, 209, 0.8));
  border-radius: 32px;
  padding: 4rem 2.5rem;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.aside-box {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 1.5rem;
}

@media (min-width: 860px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }

  .story-columns,
  .split,
  .sticky-layout,
  .two-col {
    flex-direction: row;
  }

  .sticky-layout .panel {
    flex: 1;
  }

  .nav {
    justify-content: flex-end;
  }
}
