:root {
  --bg: #f4f7fb;
  --bg-soft: #e8eef6;
  --surface: #ffffff;
  --ink: #0b1a33;
  --ink-soft: #3d516c;
  --muted: #6b7f99;
  --line: rgba(11, 26, 51, 0.1);
  --brand: #1a8cff;
  --brand-deep: #0066cc;
  --brand-navy: #001a3f;
  --whatsapp: #128c7e;
  --whatsapp-hover: #0e7a6e;
  --radius: 14px;
  --font: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --display: "Outfit", "Source Sans 3", system-ui, sans-serif;
  --shadow: 0 20px 50px rgba(0, 26, 63, 0.1);
  --wrap: min(1120px, calc(100% - 2.5rem));
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 90% -10%, rgba(26, 140, 255, 0.12), transparent 55%),
    radial-gradient(700px 420px at -5% 20%, rgba(0, 26, 63, 0.06), transparent 50%),
    linear-gradient(180deg, #f7fafd 0%, var(--bg) 40%, #eef3f9 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-deep); text-decoration: none; }
a:hover { color: var(--brand); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.narrow { max-width: 640px; margin-inline: auto; text-align: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(244, 247, 251, 0.86);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.25rem;
}

.brand img { width: 148px; height: auto; }

.nav {
  display: flex;
  gap: 1.35rem;
  margin-left: 0.5rem;
  flex: 1;
}

.nav a {
  color: var(--ink-soft);
  font-weight: 550;
  font-size: 0.95rem;
}

.nav a:hover { color: var(--brand-navy); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lang-switch select {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 12px;
  padding: 0.35rem 0.85rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  z-index: 60;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

body.nav-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.nav-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: block;
  background: rgba(11, 26, 51, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: min(320px, 86vw);
  height: 100%;
  height: 100dvh;
  margin: 0;
  padding: 1.25rem 1.35rem 1.75rem;
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 48px rgba(0, 26, 63, 0.16);
  transform: translateX(105%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s;
}

.mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.35rem;
}

.mobile-nav-head img {
  width: 118px;
  height: auto;
}

.menu-close {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  cursor: pointer;
  position: relative;
  padding: 0;
}

.menu-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.menu-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.menu-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mobile-nav-links a {
  color: var(--brand-navy);
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.15rem;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid var(--line);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
}

.mobile-nav-actions .btn { width: 100%; }

body.nav-open {
  overflow: hidden;
}

.back-top {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 45;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(26, 140, 255, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, box-shadow 0.2s ease;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top:hover {
  box-shadow: 0 14px 32px rgba(26, 140, 255, 0.45);
  transform: translateY(-2px);
}

.back-top:focus-visible {
  outline: 2px solid var(--brand-navy);
  outline-offset: 3px;
}

body.nav-open .back-top {
  opacity: 0;
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 12px;
  padding: 0.55rem 1.15rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(26, 140, 255, 0.28);
}

.btn-primary:hover { color: #fff; box-shadow: 0 14px 30px rgba(26, 140, 255, 0.36); }

.btn-ghost {
  background: transparent;
  color: var(--brand-navy);
  border-color: var(--line);
}

.btn-ghost:hover {
  background: var(--surface);
  color: var(--brand-navy);
  border-color: rgba(26, 140, 255, 0.35);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover { background: var(--whatsapp-hover); color: #fff; }

.btn-lg { padding: 0.8rem 1.45rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  padding: 2.5rem 0 3.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(244, 247, 251, 0.92) 0%, rgba(244, 247, 251, 0.55) 42%, rgba(232, 238, 246, 0.2) 100%),
    radial-gradient(ellipse 80% 70% at 78% 45%, rgba(26, 140, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(0, 26, 63, 0.12), transparent 55%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23001a3f' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
  animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from { opacity: 1; }
  to { opacity: 0.85; filter: saturate(1.1); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem 3rem;
  align-items: center;
}

.hero-brand {
  width: min(300px, 78vw);
  margin-bottom: 1.1rem;
  animation: riseIn 0.7s ease both;
}

.hero-copy h1 {
  font-family: var(--display);
  font-weight: 750;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--brand-navy);
  margin: 0 0 1rem;
  animation: riseIn 0.75s ease 0.08s both;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 0 0 1.6rem;
  animation: riseIn 0.75s ease 0.16s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: riseIn 0.75s ease 0.24s both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Product stage mock */
.hero-stage {
  animation: riseIn 0.9s ease 0.2s both;
}

.stage-frame {
  background: linear-gradient(160deg, #0b1730 0%, #132445 55%, #001a3f 100%);
  border-radius: 20px;
  padding: 0.85rem;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #eef3fb;
  position: relative;
  overflow: hidden;
}

.stage-frame::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(26, 140, 255, 0.35), transparent 65%);
  pointer-events: none;
}

.stage-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 1.7rem;
  height: 1.7rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-deep, #0066cc);
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.stage-play svg {
  width: 0.95rem;
  height: 0.95rem;
  margin-left: 2px;
}

.stage-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
  box-shadow: 0 16px 40px rgba(26, 140, 255, 0.45);
}

.stage-play:focus-visible {
  outline: 2px solid #4db0ff;
  outline-offset: 4px;
}

.stage-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(6, 16, 31, 0.28);
  pointer-events: none;
  border-radius: inherit;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.video-modal[hidden] {
  display: none !important;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 31, 0.78);
  backdrop-filter: blur(6px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.video-modal-dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #001a3f;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

body.video-open {
  overflow: hidden;
}

.stage-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  padding: 0.2rem 0.35rem 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stage-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.stage-bar span:nth-child(1) { background: #f87171; }
.stage-bar span:nth-child(2) { background: #fbbf24; }
.stage-bar span:nth-child(3) { background: #4ade80; }

.stage-bar em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--display);
}

.stage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.stage-tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.stage-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
}

.av-a { background: linear-gradient(135deg, #1a8cff, #4db0ff); color: #fff; }
.av-b { background: linear-gradient(135deg, #334155, #64748b); color: #fff; }

.stage-meta strong {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
}

.stage-meta small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.stage-cap {
  margin: auto 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(238, 243, 251, 0.9);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  border-left: 3px solid var(--brand);
}

.cap-b { border-left-color: #94a3b8; }

.stage-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--display);
  color: #9ad0ff;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55);
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-why {
  padding-top: 1rem;
}

.section-head {
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.eyebrow {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.65rem;
}

.section h2 {
  font-family: var(--display);
  font-weight: 720;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  color: var(--brand-navy);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.section-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.step {
  padding-top: 1rem;
  border-top: 2px solid var(--brand);
}

.step-num {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.step h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  margin: 0 0 0.45rem;
  color: var(--brand-navy);
}

.step p {
  margin: 0;
  color: var(--ink-soft);
}

.section-features {
  background: linear-gradient(180deg, transparent, rgba(232, 238, 246, 0.65) 20%, rgba(232, 238, 246, 0.65) 80%, transparent);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--brand-navy);
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
}

/* Plans — interactive purchase CTAs */
.plans {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}

.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.plan:hover {
  border-color: rgba(26, 140, 255, 0.4);
  box-shadow: 0 12px 32px rgba(0, 26, 63, 0.08);
  transform: translateY(-3px);
}

.plan-featured {
  border-color: rgba(26, 140, 255, 0.55);
  box-shadow: 0 16px 40px rgba(26, 140, 255, 0.14);
  background: linear-gradient(180deg, #fff 0%, #f3f8ff 100%);
}

.plan-badge {
  position: absolute;
  top: -0.65rem;
  left: 1rem;
  margin: 0;
  background: var(--brand);
  color: #fff;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.plan h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin: 0.25rem 0 0;
  color: var(--brand-navy);
}

.plan-price {
  font-family: var(--display);
  font-weight: 750;
  font-size: 1.45rem;
  margin: 0.15rem 0;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.plan-price span {
  font-size: 0.85rem;
  font-weight: 550;
  color: var(--muted);
  margin-left: 0.15rem;
}

.plan-meta {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
  flex: 1;
}

.section-contact {
  padding-bottom: 5rem;
}

.faq-wrap {
  max-width: 760px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(26, 140, 255, 0.35);
  box-shadow: 0 10px 28px rgba(0, 26, 63, 0.06);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.02rem;
  color: var(--brand-navy);
  user-select: none;
}

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

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
  margin-top: -0.2rem;
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
  margin-top: 0.2rem;
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 62ch;
}

.contact-grid {
  background:
    radial-gradient(600px 280px at 100% 0%, rgba(26, 140, 255, 0.12), transparent 60%),
    linear-gradient(135deg, #fff 0%, #eef4fb 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.75rem, 4vw, 3rem);
}

.contact-phone {
  margin: 1.25rem 0 0;
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.05rem;
}

.contact-phone a { color: var(--brand-navy); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0 2.25rem;
  background: rgba(255, 255, 255, 0.55);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  justify-content: space-between;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.1rem;
}

.footer-links a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .plans { grid-template-columns: repeat(3, 1fr); }
  .plan:nth-child(4),
  .plan:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .header-actions .btn-ghost { display: none; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .header-actions { order: 2; }
  .menu-toggle { order: 3; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    min-height: auto;
    padding-top: 1.75rem;
  }

  .steps,
  .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .plans { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .header-actions .btn-primary { display: none; }
  .plans { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .stage-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
