@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #475569;
  --accent: #2563eb;
  --accent-soft: #e0e7ff;
  --surface: #f8fafc;
  --surface-2: #eef2ff;
  --sun: #fcd34d;
  --shadow: rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background: #ffffff;
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

header {
  padding: 24px 5vw 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  padding: 40px 5vw 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.article {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 16px 5vw 56px;
}

.story-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  padding: 26px 0;
}

.story-section.layered {
  background: var(--surface);
  padding: 32px 28px;
  border-radius: 22px;
  box-shadow: 0 18px 40px var(--shadow);
}

.story-section.tint {
  background: var(--surface-2);
  padding: 30px 24px;
  border-radius: 20px;
}

.story-section.backdrop {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 500'><rect width='900' height='500' fill='%23eef2ff'/><circle cx='700' cy='160' r='140' fill='%23fcd34d' opacity='0.6'/><circle cx='240' cy='380' r='180' fill='%232563eb' opacity='0.15'/></svg>");
  background-size: cover;
  background-position: center;
  padding: 36px 28px;
  border-radius: 24px;
}

.story-section h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.story-section p {
  margin: 0;
  color: var(--muted);
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.pull-quote {
  background: var(--ink);
  color: #ffffff;
  padding: 22px;
  border-radius: 20px;
  font-size: 1.2rem;
}

.media-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-row .caption {
  font-size: 0.95rem;
  color: var(--muted);
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-chip {
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.9rem;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 24px var(--shadow);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card {
  padding: 22px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card strong {
  font-size: 1.1rem;
}

.card-image {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.price-tag {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.service-picker {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-button {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #cbd5f5;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s ease, border 0.2s ease;
}

.service-button.active {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px var(--shadow);
}

.cta-button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.cta-secondary {
  background: var(--sun);
  color: #1f2937;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-family: inherit;
}

footer {
  padding: 40px 5vw 56px;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer a {
  color: #c7d2fe;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 32px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  padding: 10px 18px;
  background: #ffffff;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.notice {
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.policy {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 5vw 64px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 860px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .media-row {
    flex-direction: row;
  }

  .media-row.reverse {
    flex-direction: row-reverse;
  }

  .pricing-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-card {
    flex: 1 1 220px;
  }

  .service-options {
    flex-direction: row;
  }

  .service-button {
    flex: 1 1 220px;
  }

  .contact-grid {
    flex-direction: row;
  }
}
