:root {
  --bg: #030712;
  --bg-alt: #0b1120;
  --bg-surface: rgba(19, 29, 53, 0.7);
  --border: rgba(148, 163, 184, 0.2);
  --border-strong: rgba(99, 102, 241, 0.4);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --accent: #6366f1;
  --accent-strong: #7c3aed;
  --accent-warm: #f97316;
  --accent-cool: #22d3ee;
  --success: #22c55e;
  --shadow-lg: 0 40px 60px -30px rgba(15, 23, 42, 0.5);
  --shadow-md: 0 20px 34px -18px rgba(15, 23, 42, 0.45);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.6rem;
  background: radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.35), transparent 60%),
              radial-gradient(circle at 90% 30%, rgba(14, 165, 233, 0.25), transparent 55%),
              var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Special Offer Banner */
.special-offer-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
  border-bottom: 2px solid #991b1b;
}

@keyframes shimmer {
  0% { background-position: 200% 50%; }
  50% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.special-offer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 2rem;
  color: white;
  flex-wrap: wrap;
  position: relative;
}

.special-offer-badge {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.special-offer-text {
  font-size: 1.5rem;
  font-weight: 500;
}

.special-offer-text strong {
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.special-offer-btn {
  background: white;
  color: #dc2626;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.special-offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  background: #fef2f2;
}

.special-offer-close {
  position: absolute;
  right: 1rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 2.4rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  padding: 0;
  line-height: 1;
}

.special-offer-close:hover {
  opacity: 1;
}

/* Mobile responsive banner */
@media (max-width: 768px) {
  .special-offer-content {
    padding: 0.8rem 1rem;
    gap: 1rem;
  }

  .special-offer-badge {
    font-size: 1rem;
    padding: 0.2rem 0.6rem;
  }

  .special-offer-text {
    font-size: 1.3rem;
    text-align: center;
  }

  .special-offer-text strong {
    font-size: 1.5rem;
  }

  .special-offer-btn {
    font-size: 1.3rem;
    padding: 0.5rem 1.2rem;
  }

  .special-offer-close {
    font-size: 2rem;
    right: 0.5rem;
    top: 0.5rem;
  }
}

/* Adjust body padding when banner is present */
body.has-banner {
  padding-top: 60px;
}

@media (max-width: 768px) {
  body.has-banner {
    padding-top: 100px;
  }
}

main {
  overflow: hidden;
}

img, svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 12vw, 9rem) 0 clamp(6rem, 12vw, 11rem);
  background: linear-gradient(145deg, rgba(10, 15, 36, 0.95), rgba(30, 41, 82, 0.85));
}

.hero__background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(99, 102, 241, 0.75), transparent 45%),
    radial-gradient(circle at 75% 25%, rgba(236, 72, 153, 0.35), transparent 50%),
    radial-gradient(circle at 50% 85%, rgba(34, 211, 238, 0.35), transparent 50%);
  filter: blur(0px);
  opacity: 0.9;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.38rem;
  font-size: 1.2rem;
  color: var(--accent-cool);
  margin-bottom: 1.6rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 0 20px 40px rgba(15, 23, 42, 0.6);
}

.hero__subtitle {
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  margin: 0 auto clamp(3rem, 4vw, 3.6rem);
  max-width: 62rem;
  color: var(--text-muted);
}

.hero__cta {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  margin-bottom: clamp(4rem, 6vw, 5.4rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  padding: 1.4rem 3rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 20px 45px -20px rgba(99, 102, 241, 0.8);
}

.btn--primary:hover,
.btn--glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px -18px rgba(59, 130, 246, 0.65);
}

.btn--glow {
  background: linear-gradient(135deg, var(--accent-cool), var(--accent));
  color: #04101f;
  font-weight: 700;
}

.cta-note {
  font-size: 1.4rem;
  color: #e0f2fe;
}

.hero__proof {
  margin-bottom: clamp(3.6rem, 6vw, 4.8rem);
}

.hero__proof ul {
  list-style: none;
  display: grid;
  gap: 1rem;
  max-width: 60rem;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.5rem;
}

.hero__proof li {
  position: relative;
  padding-left: 2.8rem;
}

.hero__proof li::before {
  content: ">";
  position: absolute;
  left: 0.6rem;
  top: 0;
  color: var(--accent-cool);
}

.hero__stats {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: clamp(5rem, 7vw, 6.4rem);
}

.stat-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  text-align: left;
  backdrop-filter: blur(12px);
}

.stat-card--highlight {
  background: linear-gradient(150deg, rgba(34, 211, 238, 0.16), rgba(99, 102, 241, 0.34));
  border-color: rgba(14, 165, 233, 0.55);
}

.stat-card__label {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.stat-card__value {
  font-size: 2.6rem;
  font-weight: 700;
}

.hero__illustration {
  margin: 0 auto;
  max-width: 56rem;
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-lg);
}

.section {
  padding: clamp(6rem, 10vw, 9rem) 0;
}

.section--contrast {
  background: rgba(10, 15, 36, 0.4);
  position: relative;
}

.section--contrast::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(99, 102, 241, 0.1), transparent 55%);
  pointer-events: none;
}

.section--letter {
  background: linear-gradient(160deg, rgba(14, 116, 144, 0.16), rgba(99, 102, 241, 0.1));
}

.letter {
  background: rgba(2, 6, 23, 0.6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.28);
  padding: clamp(3.6rem, 6vw, 4.6rem);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 2.4rem;
}

.letter__buckets {
  display: grid;
  gap: clamp(2.4rem, 4vw, 3.2rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.letter__buckets article {
  background: rgba(15, 23, 42, 0.6);
  border-radius: var(--radius-md);
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: 2.2rem;
  display: grid;
  gap: 1.2rem;
}

.letter__buckets h3 {
  font-size: 1.9rem;
  color: var(--text);
}

.letter__buckets ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  color: var(--text-muted);
}

.section__header {
  text-align: center;
  max-width: 68rem;
  margin: 0 auto 4.8rem;
}

.section__header h2 {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  margin-bottom: 1.6rem;
}

.section__header p {
  color: var(--text-muted);
}

.lead {
  font-weight: 600;
  color: #f1f5f9;
  margin-top: 2.4rem;
}

.two-column {
  display: grid;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.two-column--reverse {
  grid-template-areas:
    "content"
    "visual";
}

@media (min-width: 820px) {
  .two-column--reverse {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
  }
}

.two-column__content {
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.two-column__visual {
  position: relative;
  z-index: 1;
}

.checklist {
  list-style: none;
  margin: 2.4rem 0;
  display: grid;
  gap: 1.2rem;
}

.checklist li {
  padding-left: 3.2rem;
  position: relative;
  color: var(--text-muted);
}

.checklist li::before {
  content: "✔";
  font-size: 1.6rem;
  color: var(--accent-cool);
  position: absolute;
  left: 0.5rem;
  top: 0;
}

.card {
  background: rgba(10, 15, 36, 0.66);
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 4vw, 3.6rem);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.card--glass {
  backdrop-filter: blur(18px);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.card h3 {
  font-size: 2.2rem;
  margin-bottom: 1.6rem;
}

.comparison {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.comparison ul {
  list-style: none;
  color: var(--text-muted);
  display: grid;
  gap: 0.8rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  font-size: 1.2rem;
  background: rgba(99, 102, 241, 0.18);
  color: var(--accent-cool);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
}

.tag--muted {
  background: rgba(148, 163, 184, 0.15);
  color: var(--text-muted);
}

.comparison__note {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #bfdbfe;
}

.feature-grid {
  display: grid;
  gap: clamp(2.4rem, 5vw, 3.6rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
  background: rgba(10, 15, 36, 0.6);
  border-radius: var(--radius-md);
  padding: clamp(2rem, 3vw, 2.6rem);
  border: 1px solid rgba(148, 163, 184, 0.25);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(236, 72, 153, 0.3));
  margin-bottom: 1.8rem;
}

.icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  background-size: cover;
  background-repeat: no-repeat;
}

.icon--precision { background-image: linear-gradient(135deg, var(--accent), var(--accent-cool)); mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"%3E%3Cpath d="M12 3l1.45 4.45L18 8l-3.5 3.05L15 16l-3-1.8L9 16l.5-4.95L6 8l4.55-.55L12 3z"/%3E%3C/svg%3E'); mask-size: contain; mask-repeat: no-repeat; mask-position: center; }

.icon--time { background-image: linear-gradient(135deg, var(--accent), var(--accent-warm)); mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"%3E%3Cpath d="M12 1.75A9.25 9.25 0 1 1 2.75 11 9.26 9.26 0 0 1 12 1.75zm0 2.5a6.75 6.75 0 1 0 6.75 6.75A6.76 6.76 0 0 0 12 4.25zm-.75 2.75h1.5v4.5l3.25 1.95-.75 1.27L11.25 13z"/%3E%3C/svg%3E'); mask-size: contain; mask-repeat: no-repeat; mask-position: center; }

.icon--shield { background-image: linear-gradient(135deg, var(--success), var(--accent)); mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"%3E%3Cpath d="M12 2l7 3v5c0 5.55-3.84 10.74-7 12-3.16-1.26-7-6.45-7-12V5l7-3zm0 2.18L7 6v4c0 4.17 2.87 8.66 5 9.93 2.13-1.27 5-5.76 5-9.93V6l-5-1.82z"/%3E%3C/svg%3E'); }

.icon--cash { background-image: linear-gradient(135deg, var(--accent-warm), var(--accent)); mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"%3E%3Cpath d="M4 5h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2zm0 2v10h16V7zm8 2a3 3 0 1 1-3 3 3.003 3.003 0 0 1 3-3zm0 2a1 1 0 1 0 1 1 1.001 1.001 0 0 0-1-1z"/%3E%3C/svg%3E'); }

.section--spotlight {
  background: linear-gradient(150deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 82, 0.7));
}

.spotlight {
  display: grid;
  gap: clamp(3rem, 5vw, 5rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.icon-list {
  list-style: none;
  display: grid;
  gap: 1.4rem;
  margin: 2.4rem 0;
}

.icon-list li {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  color: var(--text-muted);
}

.icon--pulse {
  background-image: linear-gradient(135deg, var(--accent-cool), var(--accent));
  mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"%3E%3Cpath d="M5 12h3l2-5 4 10 2-5h3" stroke="white" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
}

.icon--globe { background-image: linear-gradient(135deg, var(--accent), var(--accent-cool)); mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"%3E%3Cpath d="M12 2a10 10 0 1 0 10 10A10.011 10.011 0 0 0 12 2zm6 9h-2.17a16.072 16.072 0 0 0-1.2-5.09A8.012 8.012 0 0 1 18 11zm-6-7a14.011 14.011 0 0 1 2.44 6H9.56A14.011 14.011 0 0 1 12 4zm-6 7h2.17a16.072 16.072 0 0 0 1.2 5.09A8.012 8.012 0 0 1 6 12zm6 8a14.011 14.011 0 0 1-2.44-6h4.88A14.011 14.011 0 0 1 12 20z"/%3E%3C/svg%3E'); }

.icon--layers { background-image: linear-gradient(135deg, var(--accent-warm), var(--accent)); mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"%3E%3Cpath d="M12 2l9 5-9 5-9-5zm0 9l9 5-9 5-9-5zm0 9l9-5" stroke="white" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round" fill="none"/%3E%3C/svg%3E'); }

.icon--chart { background-image: linear-gradient(135deg, var(--success), var(--accent-cool)); mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"%3E%3Cpath d="M5 3h2v18H5zm6 6h2v12h-2zm6-4h2v16h-2z"/%3E%3C/svg%3E'); }

.spotlight__price {
  margin-top: 3rem;
  font-size: 1.4rem;
  color: #bfdbfe;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section--proof {
  background: rgba(10, 15, 36, 0.38);
}

.proof-grid {
  display: grid;
  gap: clamp(2.4rem, 5vw, 3.2rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.quote-card {
  background: rgba(2, 6, 23, 0.65);
  border-radius: var(--radius-md);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: clamp(2.4rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 1.4rem;
}

.quote-card h3 {
  font-size: 1.8rem;
  color: var(--accent-cool);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.quote-card__tag {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(186, 230, 253, 0.8);
}

.blueprint-card {
  background: rgba(15, 23, 42, 0.8);
  border-radius: var(--radius-lg);
  padding: 2.6rem;
  border: 1px solid rgba(94, 234, 212, 0.35);
  box-shadow: var(--shadow-lg);
}

.blueprint-card header {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--accent-cool);
  margin-bottom: 2rem;
}

.blueprint-card__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.blueprint-card ul {
  list-style: none;
  color: var(--text-muted);
  display: grid;
  gap: 0.8rem;
}

.progress {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.2);
  margin: 2.4rem 0 1.2rem;
}

.progress span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent-cool), var(--accent));
}

.blueprint-card__footer {
  font-size: 1.3rem;
  color: #bae6fd;
}

.section--pillars {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.7), rgba(15, 23, 42, 0.8));
}

.pillars__intro {
  text-align: center;
  max-width: 60rem;
  margin: 0 auto 4rem;
}

.pillars__grid {
  display: grid;
  gap: clamp(2.4rem, 5vw, 3.6rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pillars__grid article {
  background: rgba(10, 15, 36, 0.6);
  border-radius: var(--radius-md);
  padding: 2.4rem;
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: var(--text-muted);
}

.pillars__grid h3 {
  color: var(--text);
  font-size: 2rem;
  margin-bottom: 1.4rem;
}

.section--timeline {
  background: rgba(10, 15, 36, 0.4);
}

.timeline__header {
  text-align: center;
  max-width: 62rem;
  margin: 0 auto 4.2rem;
}

.timeline__list {
  list-style: none;
  counter-reset: steps;
  display: grid;
  gap: 2.4rem;
}

.timeline__list li {
  position: relative;
  padding: 2.4rem;
  padding-left: 5.6rem;
  background: rgba(15, 23, 42, 0.65);
  border-radius: var(--radius-md);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: var(--text-muted);
}

.timeline__list li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 2.2rem;
  top: 2.4rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent-cool));
  color: #020617;
}

.section--blueprint-detail {
  background: linear-gradient(160deg, rgba(99, 102, 241, 0.15), rgba(34, 211, 238, 0.12));
}

.accordion {
  background: rgba(2, 6, 23, 0.55);
  border-radius: var(--radius-md);
  border: 1px solid rgba(99, 102, 241, 0.35);
  overflow: hidden;
}

.accordion details {
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  padding: 1.6rem 2rem;
}

.accordion details:last-of-type {
  border-bottom: none;
}

.accordion summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--text);
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion p {
  margin-top: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}


.section--objections {
  background: rgba(10, 15, 36, 0.4);
}

.objections {
  display: grid;
  gap: clamp(2.4rem, 4vw, 3.4rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.objections article {
  background: rgba(2, 6, 23, 0.62);
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.28);
  padding: 2.6rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-md);
}

.objections h3 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.section--pricing {
  background: rgba(15, 23, 42, 0.5);
}

.pricing {
  display: grid;
  gap: clamp(3rem, 5vw, 5rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.pricing__intro h2 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  margin-bottom: 1.6rem;
}

.pricing__list {
  list-style: none;
  display: grid;
  gap: 1.2rem;
  color: var(--text-muted);
}

.pricing__list li {
  position: relative;
  padding-left: 2.4rem;
}

.pricing__list li::before {
  content: "•";
  position: absolute;
  left: 0.8rem;
  top: 0;
  color: var(--accent-cool);
}

.section--choices {
  background: linear-gradient(140deg, rgba(2, 6, 23, 0.8), rgba(15, 23, 42, 0.7));
  text-align: center;
}

.choices {
  display: grid;
  gap: clamp(2.4rem, 4vw, 3.6rem);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 4rem;
}

.choices article {
  background: rgba(15, 23, 42, 0.6);
  border-radius: var(--radius-md);
  padding: 2.4rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: var(--text-muted);
}

.choices__highlight {
  border-color: rgba(99, 102, 241, 0.5);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(56, 189, 248, 0.2));
  color: #e0f2fe;
}

.section--cta {
  background: radial-gradient(circle at 20% -10%, rgba(34, 211, 238, 0.4), transparent 65%),
              linear-gradient(160deg, rgba(10, 15, 36, 0.9), rgba(30, 41, 82, 0.85));
}

.cta-card {
  text-align: center;
  padding: clamp(3.6rem, 6vw, 4.8rem);
  background: rgba(2, 6, 23, 0.65);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(99, 102, 241, 0.4);
  box-shadow: var(--shadow-lg);
}

.cta-card h2 {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  margin-bottom: 2rem;
}

.cta-card ol {
  list-style-position: inside;
  text-align: left;
  margin: 0 auto 2.8rem;
  max-width: 42rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.8rem;
}

.cta-card__note {
  margin-top: 1.8rem;
  font-size: 1.4rem;
  color: #bae6fd;
}

.section--ps {
  background: rgba(10, 15, 36, 0.35);
}

.ps-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.ps-grid article {
  background: rgba(15, 23, 42, 0.65);
  padding: 2.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: var(--text-muted);
}

.ps-grid h3 {
  color: var(--text);
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.footer {
  padding: 3.2rem 0;
  background: rgba(2, 6, 23, 0.85);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.footer__links {
  display: flex;
  gap: 2.4rem;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.4rem;
}

.footer__links a:hover {
  color: var(--accent-cool);
}

@media (min-width: 720px) {
  .footer__content {
    flex-direction: row;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
