@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #0f1114;
  --bg-soft: #171b21;
  --bg-light: #f4f2ee;
  --text: #111317;
  --text-light: #f6f3ee;
  --accent: #e94b3c;
  --accent-soft: #f6bca7;
  --muted: #6e7077;
  --border: rgba(17, 19, 23, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 28px 7vw 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  padding: 40px 7vw 70px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1,
.section h2 {
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  border-color: var(--text);
  color: var(--text);
  background: #fff;
}

.btn.ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 60px 7vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section.dark {
  background: var(--bg);
  color: var(--text-light);
}

.section.soft {
  background: var(--bg-light);
}

.section.layered {
  position: relative;
  overflow: hidden;
}

.section.layered::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--accent-soft);
  opacity: 0.35;
  top: -60px;
  right: -60px;
}

.section.layered::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: rgba(233, 75, 60, 0.2);
  bottom: 30px;
  left: 5vw;
  transform: rotate(12deg);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 22px 40px rgba(15, 17, 20, 0.08);
}

.card.dark {
  background: var(--bg-soft);
  border-color: rgba(255, 255, 255, 0.12);
}

.card h3 {
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(233, 75, 60, 0.12);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  width: fit-content;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat strong {
  font-size: 1.8rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing .price {
  font-size: 1.8rem;
  font-weight: 700;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 7vw;
  background: var(--bg);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: var(--text-light);
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 18px 30px rgba(15, 17, 20, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(15, 17, 20, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-stack .offset {
  margin-left: 8vw;
  margin-top: -20px;
  box-shadow: 0 20px 30px rgba(15, 17, 20, 0.18);
}

.notice {
  padding: 16px;
  border-radius: 16px;
  background: rgba(233, 75, 60, 0.08);
  border: 1px solid rgba(233, 75, 60, 0.25);
}

.page-hero {
  padding: 40px 7vw 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-hero p {
  max-width: 720px;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.address {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 500;
}

.divider {
  height: 1px;
  background: var(--border);
  width: 100%;
}

@media (min-width: 860px) {
  .hero {
    padding: 70px 10vw 90px;
  }

  .split {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row,
  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .pricing .card {
    flex: 1 1 240px;
  }

  .stats {
    flex-direction: row;
  }

  .form-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-wrap > div,
  .form-wrap form {
    flex: 1;
  }

  .section {
    padding: 80px 10vw;
  }

  .page-hero {
    padding: 50px 10vw 30px;
  }
}
