/* Home page (landing) — extende _shared.css */

/* Override body centering so the page scrolls top-to-bottom */
body.home {
  display: block;
  padding: 0;
  min-height: 100vh;
}

.home main { display: block; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* -------- Header -------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  background: rgba(11, 11, 19, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 800; font-size: 16px;
  letter-spacing: -.01em;
}
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 18px -4px rgba(124,92,255,.45), inset 0 1px 0 rgba(255,255,255,.18);
  position: relative;
}
.brand-mark svg { filter: drop-shadow(0 2px 4px rgba(251,191,36,.4)); }
.nav { display: flex; gap: 4px; align-items: center; }
.nav a {
  color: var(--muted); font-size: 14px; font-weight: 500;
  padding: 8px 12px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,.04); text-decoration: none; }
.nav-cta {
  margin-left: 8px;
  padding: 8px 14px !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  box-shadow: 0 6px 16px -4px rgba(124,92,255,.5);
}
.nav-cta:hover { filter: brightness(1.08); }
.lang-picker { position: relative; }
.lang-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: rgba(255,255,255,.04);
  color: var(--text);
  border: 1px solid var(--card-br);
  border-radius: 8px;
  font: inherit; font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.lang-trigger:hover { background: rgba(255,255,255,.07); border-color: rgba(124,92,255,.35); }
.lang-trigger svg { opacity: .7; transition: transform .2s; }
.lang-picker.open .lang-trigger { background: rgba(124,92,255,.12); border-color: rgba(124,92,255,.45); }
.lang-picker.open .lang-trigger svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 6px); right: 0;
  list-style: none; padding: 6px; margin: 0;
  min-width: 160px;
  background: linear-gradient(180deg, #1a1a2a, #12121c);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  box-shadow: 0 20px 48px -12px rgba(0,0,0,.6);
  z-index: 60;
  opacity: 0; pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .15s, transform .15s;
}
.lang-picker.open .lang-menu {
  opacity: 1; pointer-events: auto; transform: none;
}
.lang-menu li {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  transition: background .12s;
}
.lang-menu li:hover { background: rgba(124,92,255,.12); }
.lang-menu li.active {
  background: rgba(124,92,255,.18);
  color: var(--accent);
  font-weight: 600;
}
.lang-menu li.active::after {
  content: "✓"; float: right; color: var(--accent);
}
.menu-btn {
  display: none;
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--card-br);
  color: var(--text); cursor: pointer;
  align-items: center; justify-content: center;
}

/* -------- Hero -------- */
.hero-sec {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-sec::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(124,92,255,.18), transparent 50%),
    radial-gradient(ellipse at 110% 30%, rgba(91,140,255,.14), transparent 55%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(124,92,255,.12);
  border: 1px solid rgba(124,92,255,.3);
  color: var(--accent); font-size: 12px; font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
.hero-h1 {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 20px;
  font-weight: 800;
}
.hero-h1 .grad {
  background: linear-gradient(135deg, #a78bfa 0%, #7c5cff 50%, #5b8cff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead {
  font-size: 17px; color: var(--muted);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-lg {
  padding: 14px 22px;
  font-size: 15px;
  width: auto;
  border-radius: 10px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-top: 28px; padding-top: 22px;
  border-top: 1px dashed rgba(255,255,255,.08);
  font-size: 13px; color: var(--muted);
}
.hero-trust .t-item { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { color: #4ade80; }

/* -------- SVG mockup -------- */
.mock-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 540px;
  padding: 20px 30px;
}
.mock {
  position: relative;
  width: 320px;
  border-radius: 22px;
  background: linear-gradient(180deg, #1a1a2a, #0f0f18);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,.6),
    0 20px 40px -12px rgba(124,92,255,.25),
    inset 0 1px 0 rgba(255,255,255,.05);
  padding: 16px;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  animation: mockFloat 5s ease-in-out infinite;
}
@keyframes mockFloat {
  0%, 100% { transform: perspective(1200px) rotateY(-6deg) rotateX(2deg) translateY(0); }
  50%      { transform: perspective(1200px) rotateY(-6deg) rotateX(2deg) translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .mock { animation: none; }
}
.mock-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mock-brand {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text); font-weight: 700; font-size: 13px;
}
.mock-logo {
  width: 22px; height: 22px; border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.mock-badge {
  padding: 3px 8px; border-radius: 999px;
  background: rgba(124,92,255,.15);
  border: 1px solid rgba(124,92,255,.35);
  font-size: 10px; font-weight: 700; color: var(--accent);
  letter-spacing: .04em;
}
.mock-search {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  color: var(--muted); font-size: 12px;
  margin-bottom: 14px;
}
.mock-list { display: grid; gap: 8px; margin-bottom: 12px; }
.mock-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px; border-radius: 8px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.05);
}
.mock-fav {
  width: 28px; height: 28px; border-radius: 7px;
  background: linear-gradient(135deg, var(--fav-a, #7c5cff), var(--fav-b, #5b8cff));
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 12px;
}
.mock-item-txt { flex: 1; min-width: 0; }
.mock-item-title { font-size: 12px; color: var(--text); font-weight: 600; }
.mock-item-sub { font-size: 10px; color: var(--muted); }
.mock-cta {
  text-align: center; font-size: 12px; font-weight: 700;
  padding: 10px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

/* Floating cards around mock */
.mock-float {
  position: absolute;
  background: linear-gradient(180deg, #1a1a2a, #0f0f18);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.5);
  display: inline-flex; align-items: center; gap: 8px;
  animation: floatCard 6s ease-in-out infinite;
}
.mock-float svg { flex-shrink: 0; }
.mock-float-a {
  top: 60px; left: -46px;
  color: #4ade80;
  animation-delay: 0s;
}
.mock-float-a svg { color: #4ade80; }
.mock-float-b {
  top: 55%; right: -40px;
  color: #fbbf24;
  animation-delay: 2s;
}
.mock-float-b svg { color: #fbbf24; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .mock-float { animation: none; }
}

/* Mini floating mockups (generator + 2FA) */
.mini-mock {
  position: absolute;
  width: 180px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #1a1a2a, #0f0f18);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 50px -18px rgba(0,0,0,.6), 0 10px 20px -10px rgba(124,92,255,.3);
  z-index: 2;
  animation: floatCard 6s ease-in-out infinite;
}
.mini-mock-gen {
  top: -10px; right: -30px;
  animation-delay: 1s;
  transform: perspective(900px) rotateY(6deg) rotateX(2deg);
}
.mini-mock-totp {
  bottom: -10px; left: -40px;
  animation-delay: 3s;
  transform: perspective(900px) rotateY(-6deg) rotateX(2deg);
}
.mini-head {
  display: flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.mini-head svg { color: var(--accent); flex-shrink: 0; }

/* Generator */
.mini-pwd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: #fff;
  padding: 8px 10px; border-radius: 8px;
  background: rgba(124,92,255,.08);
  border: 1px solid rgba(124,92,255,.25);
  text-align: center;
  margin-bottom: 8px;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.mini-bar {
  height: 4px; border-radius: 3px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  margin-bottom: 6px;
}
.mini-bar-fill {
  display: block; width: 92%; height: 100%;
  background: linear-gradient(90deg, #4ade80, #22c55e);
  border-radius: inherit;
  animation: miniBarPulse 2.4s ease-in-out infinite;
}
@keyframes miniBarPulse {
  0%, 100% { width: 92%; }
  50%      { width: 96%; }
}
.mini-meta {
  display: flex; justify-content: space-between;
  font-size: 10.5px;
}
.mini-meta span:first-child { color: #4ade80; font-weight: 700; }
.mini-meta span:last-child { color: var(--muted); }

/* 2FA */
.mini-code {
  display: flex; justify-content: center; align-items: center;
  gap: 3px; margin-bottom: 8px;
}
.mini-code span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 26px;
  background: rgba(124,92,255,.1);
  border: 1px solid rgba(124,92,255,.25);
  border-radius: 5px;
  color: #fff; font-weight: 700; font-size: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.mini-code-gap { width: 6px !important; height: 26px; background: transparent !important; border: none !important; }
.mini-timer {
  display: flex; align-items: center; justify-content: center;
  gap: 5px;
  font-size: 11px; color: #4ade80; font-weight: 600;
}
.mini-timer-arc {
  stroke-dasharray: 88;
  stroke-dashoffset: 20;
  animation: miniTimerArc 30s linear infinite;
}
@keyframes miniTimerArc {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: 88; }
}

@media (prefers-reduced-motion: reduce) {
  .mini-mock, .mini-bar-fill, .mini-timer-arc { animation: none; }
}

/* -------- Stats strip -------- */
.stats {
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 22px 0;
  background: rgba(255,255,255,.015);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-item .v {
  font-size: 22px; font-weight: 800; letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats-item .l { font-size: 12px; color: var(--muted); letter-spacing: .02em; }

/* -------- Generic section -------- */
.sec { padding: 90px 0; }
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-tag {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.sec-title {
  font-size: 36px; letter-spacing: -.02em;
  line-height: 1.15; margin: 0 0 16px;
  font-weight: 800;
}
.sec-lead {
  font-size: 16px; color: var(--muted);
  max-width: 600px; margin: 0 auto; line-height: 1.55;
}

/* -------- Feature grid -------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feat-card {
  padding: 26px 22px;
  border-radius: 16px;
  background:
    radial-gradient(100% 60% at 50% 0%, rgba(124,92,255,.04), transparent 80%),
    rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .2s, transform .2s, background .2s;
}
.feat-card:hover {
  border-color: rgba(124,92,255,.3);
  transform: translateY(-3px);
}
.feat-ic-lg {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(124,92,255,.12);
  border: 1px solid rgba(124,92,255,.28);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.feat-ic-lg.green { background: rgba(74,222,128,.10); border-color: rgba(74,222,128,.28); color: #4ade80; }
.feat-ic-lg.yellow { background: rgba(251,191,36,.10); border-color: rgba(251,191,36,.28); color: #fbbf24; }
.feat-ic-lg.blue { background: rgba(91,140,255,.10); border-color: rgba(91,140,255,.28); color: #7aa7ff; }
.feat-ic-lg.pink { background: rgba(255,92,122,.10); border-color: rgba(255,92,122,.28); color: #ff8fa0; }
.feat-ic-lg.cyan { background: rgba(56,189,248,.10); border-color: rgba(56,189,248,.28); color: #38bdf8; }
.feat-card h3 {
  font-size: 17px; font-weight: 700; letter-spacing: -.01em;
  margin: 0 0 8px;
}
.feat-card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--muted); }

/* -------- How it works -------- */
.how { background: rgba(255,255,255,.015); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.how-grid::before {
  content: "";
  position: absolute; top: 38px; left: 15%; right: 15%;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(124,92,255,.4), transparent);
}
.how-step {
  text-align: center; padding: 20px;
  position: relative;
  background: rgba(11,11,19,.6);
  border-radius: 14px;
}
.how-num {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-weight: 800; font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 14px 30px -8px rgba(124,92,255,.5);
}
.how-step h3 { margin: 0 0 8px; font-size: 17px; font-weight: 700; }
.how-step p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }

/* -------- Security section -------- */
.sec-sec { position: relative; overflow: hidden; }
.sec-sec::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(124,92,255,.12), transparent 60%);
  pointer-events: none;
}
.sec-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sec-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.sec-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
}
.sec-list .i {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  background: rgba(124,92,255,.12); border: 1px solid rgba(124,92,255,.3);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.sec-list strong { display: block; margin-bottom: 2px; font-size: 14px; }
.sec-list p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5; }
.sec-illust {
  padding: 40px;
  border-radius: 20px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(124,92,255,.2), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
  box-shadow: 0 30px 80px -30px rgba(124,92,255,.35);
}

/* Lock illustration animations */
.lock-halo {
  transform-origin: 110px 110px;
  animation: lockHaloPulse 3s ease-in-out infinite;
}
.lock-ring { transform-origin: 110px 110px; }
.lock-ring-1 { animation: lockRingPulse 2.4s ease-out infinite; opacity: .6; }
.lock-ring-2 { animation: lockRingPulse 2.4s ease-out infinite .6s; opacity: .4; }
.lock-ring-3 { animation: lockRingPulse 2.4s ease-out infinite 1.2s; opacity: .25; }
.lock-spark { opacity: 0; animation: lockSparkBlink 3.2s ease-in-out infinite; }
.lock-spark-1 { animation-delay: 0s; }
.lock-spark-2 { animation-delay: .8s; }
.lock-spark-3 { animation-delay: 1.6s; }
.lock-spark-4 { animation-delay: 2.4s; }
@keyframes lockSparkBlink {
  0%, 100% { opacity: 0; }
  40%, 60% { opacity: 1; }
}
.lock-body {
  filter: drop-shadow(0 8px 22px rgba(124,92,255,.5));
}
.lock-shackle {
  animation: lockShackleGlow 2.4s ease-in-out infinite;
}
@keyframes lockHaloPulse {
  0%, 100% { opacity: .85; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.08); }
}
@keyframes lockRingPulse {
  0%   { transform: scale(.85); opacity: 0; }
  25%  { opacity: 1; }
  100% { transform: scale(1.15); opacity: 0; }
}
@keyframes lockShackleGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(167,139,250,0)); }
  50%      { filter: drop-shadow(0 0 6px rgba(167,139,250,.8)); }
}
@media (prefers-reduced-motion: reduce) {
  .lock-halo, .lock-ring, .lock-spark, .lock-shackle { animation: none; }
}

/* -------- Reviews -------- */
.reviews { background: rgba(255,255,255,.015); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  padding: 24px;
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
}
.review-stars { color: #fbbf24; font-size: 14px; margin-bottom: 12px; letter-spacing: 1px; }
.review-txt { font-size: 14px; line-height: 1.6; color: var(--text); margin: 0 0 18px; }
.review-who { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 600; }
.review-role { font-size: 12px; color: var(--muted); }
.reviews-note {
  text-align: center; font-size: 12px; color: var(--muted);
  margin-top: 32px; padding: 12px;
  background: rgba(251,191,36,.05);
  border: 1px solid rgba(251,191,36,.2);
  border-radius: 10px;
  max-width: 620px; margin-left: auto; margin-right: auto;
}

/* -------- Price -------- */
.price-card {
  max-width: 460px; margin: 0 auto;
  padding: 40px 32px;
  border-radius: 20px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(124,92,255,.2), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid rgba(124,92,255,.3);
  text-align: center;
  box-shadow: 0 30px 80px -30px rgba(124,92,255,.5);
  position: relative;
}
.price-ribbon {
  position: absolute; top: 16px; right: -6px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #1a1200; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 4px;
  box-shadow: 0 6px 14px -4px rgba(251,146,60,.5);
}
.price-card h3 {
  font-size: 22px; margin: 0 0 8px;
  letter-spacing: -.01em;
}
.price-card .price-row {
  display: inline-flex; align-items: baseline; gap: 6px;
  margin: 18px 0 4px;
}
.price-card .p-cur { font-size: 18px; font-weight: 700; color: var(--muted); }
.price-card .p-val {
  font-size: 68px; font-weight: 900; line-height: 1;
  letter-spacing: -.035em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-card .p-note { font-size: 13px; color: var(--muted); margin: 0 0 24px; }
.price-card ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  text-align: left; display: grid; gap: 10px;
}
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.price-card li svg { color: #4ade80; flex-shrink: 0; margin-top: 2px; }

/* -------- FAQ -------- */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(124,92,255,.3); }
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 15px; font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 22px; color: var(--accent);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  padding: 0 22px 20px;
  margin: 0;
  font-size: 14px; line-height: 1.65; color: var(--muted);
}

/* -------- Final CTA -------- */
.cta-final {
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(124,92,255,.2), transparent 60%);
  pointer-events: none;
}
.cta-final h2 {
  position: relative;
  font-size: 42px; font-weight: 800; letter-spacing: -.02em;
  margin: 0 0 16px; line-height: 1.15;
}
.cta-final p { position: relative; max-width: 540px; margin: 0 auto 32px; font-size: 16px; }
.cta-final .hero-ctas { position: relative; justify-content: center; }

/* -------- Footer -------- */
.site-footer {
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.2);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.foot-brand p { font-size: 13px; color: var(--muted); max-width: 320px; margin: 10px 0 0; }
.foot-col h4 {
  font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 14px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.foot-col a { color: var(--text); font-size: 14px; opacity: .8; }
.foot-col a:hover { opacity: 1; text-decoration: none; }
.foot-bot {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: 12px; color: var(--muted);
}
.foot-author {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(124,92,255,.35);
  transition: color .15s, border-color .15s;
}
.foot-author:hover {
  color: #ff5e5b;
  border-bottom-color: #ff5e5b;
  text-decoration: none;
}

/* -------- Responsivo -------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .mock-wrap { min-height: 400px; }
  .hero-h1 { font-size: 42px; }
  .feat-grid, .how-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .sec-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-grid::before { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav a:not(.nav-cta) { display: none; }
  .hero-sec { padding: 56px 0 40px; }
  .hero-h1 { font-size: 34px; }
  .hero-lead { font-size: 15px; }
  .sec { padding: 64px 0; }
  .sec-title, .cta-final h2 { font-size: 28px; }
  .feat-grid, .how-grid, .reviews-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .mock-wrap { min-height: 460px; padding: 10px; }
  .mock-float-a { left: -10px; }
  .mock-float-b { right: -10px; }
  .mini-mock { display: none; }
}

/* -------- Scroll animations -------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
