/* ── TESTIMONIALS ────────────────────────────────── */
.testi-sec {
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
}

.testi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.tc {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: left;
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
}
.tc::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(124, 92, 252, .06);
  line-height: 1;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.tc:hover {
  border-color: rgba(124, 92, 252, .3);
  transform: translateY(-4px);
}

.tc-stars {
  color: #fbbf24;
  font-size: .8rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.tc-quote {
  font-size: .875rem;
  line-height: 1.72;
  color: var(--muted2);
  font-weight: 300;
  margin-bottom: 22px;
  font-style: italic;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.tc-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
  color: #fff;
}

.av1 { background: linear-gradient(135deg, #7c5cfc, #4f9eff); }
.av2 { background: linear-gradient(135deg, #4f9eff, #a78bfa); }
.av3 { background: linear-gradient(135deg, #f472b6, #7c5cfc); }

.tc-name  { font-size: .85rem; font-weight: 600; letter-spacing: -.01em; }
.tc-role  { font-size: .72rem; color: var(--muted); margin-top: 1px; }


/* ── PRICING ─────────────────────────────────────── */
.pricing-sec {
  padding: var(--space-2xl) var(--space-lg);
  background: linear-gradient(to bottom, var(--ink), var(--ink2));
  text-align: center;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.plan {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all var(--t-med);
}
.plan:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 92, 252, .3);
  box-shadow: var(--shadow-lg);
}

.plan.star {
  background: linear-gradient(145deg, rgba(124,92,252,.12), rgba(79,158,255,.05));
  border-color: rgba(124, 92, 252, .4);
  box-shadow: var(--shadow-glow-lg);
}
.plan.star::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--blue), transparent);
}

.plan-pop {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--violet), var(--blue));
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}

.plan-name {
  font-family: 'Geist Mono', monospace;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.plan-price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
}
.plan-price.custom { font-size: 2rem; line-height: 1.2; }
.plan-price.custom span { font-size: 1rem; color: var(--muted); font-weight: 400; }
.plan-curr { font-size: 1.2rem; vertical-align: super; font-weight: 400; color: var(--muted); }
.plan-per  { font-size: .8rem; color: var(--muted); margin-top: 4px; }

.plan-div { height: 1px; background: var(--border); margin: 22px 0; }

.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan-feats li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--muted2);
}
.plan-feats li::before { content: '✓'; color: var(--violet2); font-weight: 700; flex-shrink: 0; }
.plan-feats li.no { opacity: .35; }
.plan-feats li.no::before { content: '×'; color: var(--muted); }

.plan-btn {
  margin-top: 28px;
  width: 100%;
  padding: 13px;
  border-radius: var(--r-md);
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  cursor: none;
  transition: all var(--t-med);
  letter-spacing: .01em;
}
.plan-btn:hover {
  background: rgba(124, 92, 252, .12);
  border-color: rgba(124, 92, 252, .4);
}
.plan.star .plan-btn {
  background: linear-gradient(135deg, var(--violet), #6040e0);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(124, 92, 252, .4);
}
.plan.star .plan-btn:hover {
  box-shadow: 0 12px 36px rgba(124, 92, 252, .6);
}


/* ── CTA FINAL ───────────────────────────────────── */
.cta-final {
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(124,92,252,.1), rgba(79,158,255,.05));
  border: 1px solid rgba(124, 92, 252, .25);
  border-radius: var(--r-2xl);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,92,252,.15), transparent);
  pointer-events: none;
}
.cta-inner::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--blue), transparent);
  border-radius: 2px;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}
.cta-sub {
  color: var(--muted2);
  font-size: .95rem;
  margin-bottom: 40px;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
}
.cta-contact {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--muted);
  position: relative;
}
.cta-contact a { color: var(--violet2); }
.cta-contact a:hover { color: var(--text); }


/* ── FOOTER ──────────────────────────────────────── */
footer {
  padding: 60px 60px 36px;
  border-top: 1px solid var(--border);
  background: var(--ink);
}

.foot-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.foot-brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #fff 40%, var(--violet2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.foot-brand p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
  font-weight: 300;
  margin-bottom: 20px;
}

.foot-socials { display: flex; gap: 8px; }
.fs-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border2);
  background: var(--glass2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: all var(--t-med);
  color: var(--text);
}
.fs-btn:hover {
  border-color: rgba(124, 92, 252, .4);
  background: rgba(124, 92, 252, .1);
  transform: translateY(-2px);
}

.foot-col h5 {
  font-family: 'Geist Mono', monospace;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.foot-col ul { display: flex; flex-direction: column; gap: 9px; }
.foot-col a {
  font-size: .85rem;
  color: var(--muted2);
  font-weight: 300;
  transition: color var(--t-fast);
}
.foot-col a:hover { color: var(--text); }

.foot-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.fb-left {
  font-size: .78rem;
  color: var(--muted);
  font-family: 'Geist Mono', monospace;
}

.fb-right { display: flex; gap: 20px; }
.fb-right a {
  font-size: .75rem;
  color: var(--muted);
  transition: color var(--t-fast);
}
.fb-right a:hover { color: var(--text); }
