﻿body {
  font-family: Manrope, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
section[id] { scroll-margin-top: 96px; }
.container { width: var(--container); margin-inline: auto; }
h1 { font-size: clamp(2rem, 6vw, 3.5rem); line-height: 1.1; font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.2; font-weight: 800; margin-bottom: var(--space-3); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); line-height: 1.3; font-weight: 700; }
.lead { color: var(--muted); max-width: 70ch; margin-bottom: var(--space-4); }
.section { padding: clamp(64px, 8vw, 112px) 0; }
.soft { background: linear-gradient(120deg, #eff3ff, #f9f8ff); }
.dark { color: var(--white); background: linear-gradient(120deg, #1c2142, #33204d); }
.alert { color: var(--white); background: linear-gradient(120deg, #ff6b6b, #ff866b); }
.badge, .pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(102, 126, 234, 0.15);
}
.cards { display: grid; gap: var(--space-3); }
.cards.three { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.cards.two { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 16px 42px rgba(0,0,0,.14); }
.card.glass { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.3); box-shadow: none; }
.icon { font-size: 1.8rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(78, 205, 196, 0.8);
  outline-offset: 2px;
}
.btn-primary {
  color: var(--white);
  background: linear-gradient(120deg, var(--brand-a), var(--brand-b));
  box-shadow: 0 10px 26px rgba(102,126,234,.35);
}
.btn-primary:hover { box-shadow: 0 14px 32px rgba(102,126,234,.45); }
.btn-secondary {
  border-color: rgba(26,32,44,.25);
  background: transparent;
}
.btn-secondary:hover { background: rgba(102,126,234,.08); border-color: rgba(102,126,234,.45); }
.btn-secondary.white { color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-secondary.white:hover { background: rgba(255,255,255,.16); }
.muted { color: var(--muted); }
.price-inline { font-weight: 800; margin-top: 8px; }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 768px) {
  .cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
