/* ══════════════════════════════════════════════════════
   CURSIO — SHARED LANDING PAGE STYLESHEET
   Usato da tutte le landing di segmento (/insegnanti,
   /personal-trainer, /fisioterapisti, /scuole,
   /psicologi, /istruttori)
══════════════════════════════════════════════════════ */

/* ══ TOKENS ══════════════════════════════════════════ */
:root {
  --bg:          #080c14;
  --bg-2:        #0d1117;
  --surface:     #111827;
  --surface-2:   #141e30;
  --border:      rgba(255,255,255,0.07);
  --border-2:    rgba(255,255,255,0.12);
  --primary:     #3b48e0;
  --primary-l:   #5c6ef8;
  --primary-dim: rgba(59,72,224,0.1);
  --primary-glow:rgba(59,72,224,0.3);
  --cta:         #f97316;
  --cta-glow:    rgba(249,115,22,0.35);
  --purple:      #8b5cf6;
  --text:        #f1f5f9;
  --text-2:      #94a3b8;
  --text-3:      #4a5568;
  --success:     #34d399;
  --r:           14px;
  --r-sm:        8px;
}

/* ══ RESET & BASE ════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text-2);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.4;
}

/* ══ LAYOUT ══════════════════════════════════════════ */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ══ SCROLL REVEAL ═══════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.23,1,0.32,1),
              transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-up.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.19s; }
.d4 { transition-delay: 0.26s; }
.d5 { transition-delay: 0.33s; }
.d6 { transition-delay: 0.40s; }

/* ══ NAVBAR ══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(8,12,20,0.7);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(8,12,20,0.92); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 62px; gap: 24px;
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 900; font-size: 1.35rem;
  color: var(--text); text-decoration: none; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.nav-logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary), 0 0 4px var(--primary);
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  color: var(--text-2); text-decoration: none; font-size: 0.875rem;
  font-weight: 500; padding: 6px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-btn-ghost {
  color: var(--text-2); background: transparent; border: 1px solid var(--border-2);
  font-family: inherit; font-size: 0.875rem; font-weight: 500;
  padding: 7px 18px; border-radius: 9px; cursor: pointer; text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav-btn-ghost:hover { color: var(--text); border-color: var(--border-2); background: rgba(255,255,255,0.05); }
.nav-cta {
  background: var(--cta); color: #fff;
  font-family: inherit; font-size: 0.875rem; font-weight: 700;
  padding: 8px 22px; border-radius: 9px; border: none;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 20px var(--cta-glow);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%); transition: transform 0.5s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 28px var(--cta-glow); }
.nav-cta:hover::before { transform: translateX(100%); }

.hamburger {
  display: none; background: none; border: none;
  color: var(--text-2); cursor: pointer; padding: 4px;
}

@media (max-width: 700px) {
  .nav-links, .nav-btn-ghost { display: none; }
  .hamburger { display: block; }
}

/* ══ BREADCRUMB ══════════════════════════════════════ */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--text-3);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--text-3); text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--primary-l); }
.breadcrumb-sep { opacity: 0.5; }
.breadcrumb-current { color: var(--text-2); font-weight: 500; }

/* ══ HERO SIMPLE ════════════════════════════════════ */
.hero-simple {
  position: relative; overflow: hidden;
  padding: 140px 0 96px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(59,72,224,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(139,92,246,0.1) 0%, transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

/* Grid pattern overlay */
.hero-simple::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
}

.hero-simple-inner {
  position: relative; z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(59,72,224,0.35);
  background: rgba(59,72,224,0.08);
  color: #a5b4fc; font-size: 0.75rem; font-weight: 600;
  padding: 5px 14px 5px 8px; border-radius: 100px;
  margin-bottom: 24px; letter-spacing: 0.03em;
}
.badge-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(59,72,224,0.2); border: 1px solid rgba(59,72,224,0.4);
  display: flex; align-items: center; justify-content: center;
}
.badge-dot::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary-l);
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* GDPR badge */
.gdpr-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(52,211,153,0.3);
  background: rgba(52,211,153,0.06);
  color: #6ee7b7; font-size: 0.75rem; font-weight: 600;
  padding: 5px 14px 5px 10px; border-radius: 100px;
  margin-bottom: 24px; letter-spacing: 0.03em;
}
.gdpr-badge svg {
  width: 14px; height: 14px; stroke: #34d399; stroke-width: 2; fill: none; flex-shrink: 0;
}

.hero-simple h1 {
  font-family: 'Syne', sans-serif; font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1; letter-spacing: -0.04em;
  color: var(--text); margin-bottom: 22px;
}
.hero-simple h1 .gradient-text {
  background: linear-gradient(135deg, #5c6ef8 0%, #a78bfa 50%, #818cf8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-sub {
  font-size: 1.1rem; line-height: 1.75; color: var(--text-2);
  max-width: 600px; margin-bottom: 40px;
}

.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px; align-items: center;
}

.hero-social {
  display: flex; align-items: center; gap: 14px;
}
.avatar-stack { display: flex; }
.avatar-stack .av {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--bg);
  font-size: 0.7rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-left: -10px;
}
.avatar-stack .av:first-child { margin-left: 0; }
.hero-social-text { font-size: 0.85rem; color: var(--text-2); line-height: 1.4; }
.hero-social-text strong { color: var(--text); }
.hero-stars { display: flex; gap: 2px; margin-bottom: 2px; }
.hero-stars span { color: #fbbf24; font-size: 0.85rem; }

@media (max-width: 700px) {
  .hero-simple { padding: 110px 0 72px; }
  .hero-simple h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

/* ══ BUTTONS ════════════════════════════════════════ */
.btn-cta {
  background: var(--cta); color: #fff;
  font-family: inherit; font-weight: 700; font-size: 1rem;
  padding: 14px 32px; border-radius: 11px; border: none;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 6px 30px var(--cta-glow);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 40px var(--cta-glow); }
.btn-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-outline {
  background: transparent; color: var(--text);
  font-family: inherit; font-weight: 600; font-size: 0.95rem;
  padding: 13px 24px; border-radius: 11px;
  border: 1px solid var(--border-2);
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }

/* ══ SECTIONS ═══════════════════════════════════════ */
.section { padding: 100px 0; position: relative; z-index: 2; }
.section-alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 40%, var(--surface) 60%, var(--bg) 100%);
}

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary-l); margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ''; width: 20px; height: 2px;
  background: var(--primary); border-radius: 2px;
}
.section-title {
  font-family: 'Syne', sans-serif; font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--text); letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-2);
  max-width: 540px; line-height: 1.75;
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-header .section-sub { margin: 0 auto; }

/* ══ PAIN CARDS ══════════════════════════════════════ */
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.pain-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.pain-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--purple));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.pain-card:hover { border-color: rgba(59,72,224,0.25); transform: translateY(-4px); }
.pain-card:hover::before { transform: scaleX(1); }
.pain-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-dim); border: 1px solid rgba(59,72,224,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pain-card:hover .pain-icon { transform: scale(1.08); box-shadow: 0 0 20px var(--primary-glow); }
.pain-icon svg { width: 22px; height: 22px; stroke: var(--primary-l); stroke-width: 1.75; fill: none; }
.pain-title {
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800;
  color: var(--text); margin-bottom: 10px;
}
.pain-body { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; }

@media (max-width: 900px) { .pain-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pain-grid { grid-template-columns: 1fr; } }

/* ══ FEATURE ROWS ════════════════════════════════════ */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  margin-bottom: 72px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-text {}
.feature-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary-l); margin-bottom: 12px;
}
.feature-eyebrow::before {
  content: ''; width: 16px; height: 2px;
  background: var(--primary); border-radius: 2px;
}
.feature-text h3 {
  font-family: 'Syne', sans-serif; font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900; color: var(--text); letter-spacing: -0.03em;
  line-height: 1.2; margin-bottom: 16px;
}
.feature-text p {
  font-size: 1rem; color: var(--text-2); line-height: 1.75;
  margin-bottom: 24px;
}
.feature-checklist {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.feature-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-2); line-height: 1.5;
}
.feature-checklist li::before {
  content: '';
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
  flex-shrink: 0; margin-top: 2px;
}

.feature-visual {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.feature-visual-inner {
  width: 100%; height: 100%;
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  justify-content: center;
}
.fv-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.fv-title {
  font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 800;
  color: var(--text);
}
.fv-badge {
  font-size: 0.62rem; font-weight: 700; padding: 2px 10px;
  background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.25);
  color: #6ee7b7; border-radius: 100px;
}
.fv-row {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
}
.fv-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.fv-dot.blue { background: var(--primary-l); box-shadow: 0 0 6px var(--primary); }
.fv-dot.green { background: var(--success); box-shadow: 0 0 6px rgba(52,211,153,0.5); }
.fv-dot.orange { background: var(--cta); box-shadow: 0 0 6px rgba(249,115,22,0.5); }
.fv-label { font-size: 0.78rem; color: var(--text-2); flex: 1; }
.fv-val { font-size: 0.78rem; color: var(--text); font-weight: 600; }
.fv-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px;
}
.fv-stat {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px;
}
.fv-stat-label { font-size: 0.65rem; color: var(--text-3); margin-bottom: 4px; }
.fv-stat-val {
  font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 900; color: var(--text);
}
.fv-stat-val.green { color: var(--success); }
.fv-stat-val.blue { color: var(--primary-l); }
.fv-stat-val.orange { color: var(--cta); }

.fv-notification {
  display: flex; align-items: center; gap: 12px;
  background: rgba(59,72,224,0.08); border: 1px solid rgba(59,72,224,0.2);
  border-radius: 10px; padding: 12px 14px;
}
.fv-notif-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(59,72,224,0.15); border: 1px solid rgba(59,72,224,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.fv-notif-text { font-size: 0.8rem; color: var(--text); font-weight: 600; }
.fv-notif-sub { font-size: 0.7rem; color: var(--text-2); }

@media (max-width: 880px) {
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse { direction: ltr; }
  .feature-visual { aspect-ratio: 16/9; }
}

/* ══ TESTIMONIALS ════════════════════════════════════ */
.testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.testi-card::before {
  content: '"'; position: absolute; top: -10px; left: 16px;
  font-size: 6rem; font-family: 'Syne', sans-serif; font-weight: 900;
  color: var(--primary-dim); line-height: 1; pointer-events: none;
}
.testi-card:hover { border-color: rgba(59,72,224,0.2); transform: translateY(-3px); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars span { color: #fbbf24; font-size: 0.9rem; }
.testi-text {
  font-size: 0.95rem; color: var(--text-2); line-height: 1.75;
  margin-bottom: 24px; position: relative; z-index: 1;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 0.8rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-info { line-height: 1.35; }
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.testi-role { font-size: 0.77rem; color: var(--text-3); }

@media (max-width: 680px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ══ PRICING ═════════════════════════════════════════ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: start;
}
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.pricing-card.popular {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(59,72,224,0.1) 0%, var(--surface) 100%);
  transform: scale(1.03);
  box-shadow: 0 0 0 1px var(--primary), 0 20px 60px rgba(59,72,224,0.2);
}
.pricing-card:not(.popular):hover { border-color: rgba(59,72,224,0.25); transform: translateY(-4px); }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary), var(--purple));
  color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
  z-index: 20;
}
.price-plan {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 12px;
}
.price-num {
  font-family: 'Syne', sans-serif; font-size: 2.6rem; font-weight: 900;
  color: var(--text); line-height: 1; margin-bottom: 6px;
}
.price-num sup { font-size: 1.2rem; vertical-align: super; line-height: 0; }
.price-num sub { font-size: 0.8rem; color: var(--text-3); font-weight: 500; }
.price-vat { font-size: 0.72rem; color: var(--text-3); font-weight: 500; margin-top: -2px; margin-bottom: 14px; letter-spacing: 0.02em; }
.price-desc { font-size: 0.85rem; color: var(--text-2); line-height: 1.5; margin-bottom: 28px; }
.price-features {
  list-style: none; margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.price-features li {
  font-size: 0.875rem; color: var(--text-2);
  display: flex; align-items: center; gap: 8px;
}
.price-features li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(52,211,153,0.15); border: 1px solid rgba(52,211,153,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.price-features li.check::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}
.price-features li.cross { opacity: 0.4; }
.price-features li.cross::before {
  background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1);
}

.btn-plan {
  display: block; text-align: center; text-decoration: none;
  width: 100%; padding: 13px; border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; border: none; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-plan.primary {
  background: var(--cta); color: #fff;
  box-shadow: 0 4px 20px var(--cta-glow);
}
.btn-plan.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--cta-glow); }
.btn-plan.outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-plan.outline:hover { background: rgba(255,255,255,0.05); }

@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
}

/* ══ FAQ ═════════════════════════════════════════════ */
.faq-list {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 2px;
}
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(59,72,224,0.25); }
.faq-trigger {
  width: 100%; padding: 20px 24px; background: none; border: none;
  color: var(--text); font-family: inherit; font-size: 0.95rem; font-weight: 600;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--primary-dim);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-icon svg {
  width: 12px; height: 12px; stroke: var(--primary-l);
  stroke-width: 2.5; fill: none; transition: transform 0.3s;
}
.faq-item.open .faq-icon { background: var(--primary); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { stroke: #fff; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.23,1,0.32,1); }
.faq-body-inner { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-2); line-height: 1.75; }
.faq-item.open .faq-body { max-height: 300px; }

/* ══ CTA BANNER ══════════════════════════════════════ */
.cta-banner {
  position: relative; z-index: 2;
  padding: 96px 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(59,72,224,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(139,92,246,0.1) 0%, transparent 60%),
    var(--surface);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.cta-inner {
  text-align: center; position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
}
.cta-inner h2 {
  font-family: 'Syne', sans-serif; font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text); letter-spacing: -0.035em; line-height: 1.1;
  margin-bottom: 20px;
}
.cta-inner p {
  font-size: 1.05rem; color: var(--text-2); line-height: 1.7;
  margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 16px; font-size: 0.8rem; color: var(--text-3); }

/* ══ SCROLL TOP ══════════════════════════════════════ */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.scroll-top.visible { opacity: 1; transform: none; }
.scroll-top:hover { background: var(--primary); }
.scroll-top svg { width: 18px; height: 18px; stroke: var(--text); stroke-width: 2; fill: none; }

/* ══ FOOTER ══════════════════════════════════════════ */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 60px 0 40px; position: relative; z-index: 2;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-logo { font-size: 1.25rem; margin-bottom: 12px; }
.footer-brand-desc {
  font-size: 0.875rem; color: var(--text-3);
  line-height: 1.65; max-width: 260px;
}
.footer-col h5 {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.875rem; color: var(--text-3);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-3); gap: 16px; flex-wrap: wrap;
}
.footer-bottom a { color: var(--text-3); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--text); }

@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ══ REDUCED MOTION ══════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
