/* =========================================================
   Scriptovate — shared design system
   ========================================================= */

:root {
  --teal: #14ecc0;
  --teal-deep: #0fb89a;
  --blue: #3b8ff0;
  --indigo: #6a6bf5;
  --purple: #9d5cf0;
  --pink: #cc5ce8;

  --brand-gradient: linear-gradient(100deg, var(--teal) 0%, var(--blue) 38%, var(--indigo) 62%, var(--purple) 82%, var(--pink) 100%);
  --brand-gradient-soft: linear-gradient(100deg, rgba(20,236,192,0.16) 0%, rgba(59,143,240,0.16) 40%, rgba(157,92,240,0.16) 75%, rgba(204,92,232,0.16) 100%);

  --bg: #080b14;
  --bg-alt: #0c1020;
  --panel: #10152633;
  --panel-solid: #131a2c;
  --panel-border: #232c44;
  --text: #eef1fa;
  --text-muted: #9aa3bd;
  --text-faint: #6b7592;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-glow: 0 20px 60px -20px rgba(59, 143, 240, 0.35);
  --shadow-card: 0 10px 30px -12px rgba(0, 0, 0, 0.5);

  --max-width: 1220px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

section { position: relative; }

h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; margin: 0; }

h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.06; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.15; }
h3 { font-size: 1.3rem; line-height: 1.3; }

p { margin: 0; }

.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(20, 236, 192, 0.08);
  border: 1px solid rgba(20, 236, 192, 0.28);
  padding: 7px 16px;
  border-radius: 999px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-top: 18px; }
.section-head p { margin-top: 18px; color: var(--text-muted); font-size: 1.08rem; }

.section-pad { padding: 110px 0; }
@media (max-width: 720px) { .section-pad { padding: 72px 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--brand-gradient);
  color: #06101a;
  box-shadow: 0 12px 30px -10px rgba(59, 143, 240, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(157, 92, 240, 0.55); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--panel-border);
}
.btn-ghost:hover { border-color: var(--blue); background: rgba(59,143,240,0.08); }

.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 0.9rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(8, 11, 20, 0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav-logo img { height: 30px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav-links { position: fixed; top: 78px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 0; background: var(--bg-alt); border-bottom: 1px solid var(--panel-border); padding: 8px 28px 20px; transform: translateY(-130%); transition: transform 0.3s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-toggle { display: block; }
  .nav-actions .btn-ghost { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -200px -200px auto -200px;
  height: 700px;
  background: radial-gradient(60% 60% at 50% 0%, rgba(59,143,240,0.22), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.hero-inner { text-align: center; max-width: 860px; margin: 0 auto; }
.hero h1 { margin-top: 22px; }
.hero .lead { margin-top: 24px; font-size: 1.2rem; color: var(--text-muted); max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 0.85rem; color: var(--text-faint); }

.hero-visual { margin-top: 68px; position: relative; }
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -70px;
  background: var(--brand-gradient);
  filter: blur(90px);
  opacity: 0.4;
  z-index: -1;
  animation: glow-shift 6s ease-in-out infinite;
}
@keyframes glow-shift {
  0%, 100% { opacity: 0.32; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.04); }
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  border: 1px solid var(--panel-border);
  overflow: hidden;
  background: #000;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), var(--shadow-glow), var(--shadow-card), 0 0 120px 20px rgba(106,107,245,0.28);
  transition: box-shadow 0.3s ease;
}
.video-embed:hover { box-shadow: 0 0 0 1px rgba(255,255,255,0.06), var(--shadow-glow), var(--shadow-card), 0 0 140px 26px rgba(157,92,240,0.38); }
.video-embed img, .video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}
.video-embed:not(.playing)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,10,20,0.1) 0%, rgba(6,10,20,0.55) 100%);
  pointer-events: none;
}

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--brand-gradient);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  animation: play-pulse 2.4s ease-in-out infinite;
  transition: transform 0.2s ease;
}
.video-embed:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); }
.play-btn svg { width: 30px; height: 30px; fill: #06101a; margin-left: 5px; }
.video-embed.playing .play-btn { display: none; }

@keyframes play-pulse {
  0% { box-shadow: 0 0 0 0 rgba(59, 143, 240, 0.5), 0 0 30px 6px rgba(157, 92, 240, 0.35); }
  70% { box-shadow: 0 0 0 22px rgba(59, 143, 240, 0), 0 0 40px 10px rgba(157, 92, 240, 0.2); }
  100% { box-shadow: 0 0 0 0 rgba(59, 143, 240, 0), 0 0 30px 6px rgba(157, 92, 240, 0.35); }
}

/* ---------- Trust strip ---------- */
.trust-strip { padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,0.06); border-top: 1px solid rgba(255,255,255,0.06); }
.trust-strip p { text-align: center; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 26px; }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.trust-logos img { height: 30px; width: auto; opacity: 0.7; filter: grayscale(1) brightness(2.4); transition: opacity 0.2s ease; }
.trust-logos img:hover { opacity: 1; }
.trust-logos .word { font-weight: 800; font-size: 1.1rem; letter-spacing: 0.02em; color: var(--text-faint); opacity: 0.7; }
.trust-logos .word:hover { opacity: 1; color: var(--text-muted); }

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--panel-solid);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(106,107,245,0.4); }
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-gradient);
  font-size: 1.3rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #06101a;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.96rem; }
.feature-card .tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(157,92,240,0.1);
  border: 1px solid rgba(157,92,240,0.3);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---------- AI spotlight ---------- */
.spotlight {
  background: var(--panel-solid);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.spotlight::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  right: -160px; top: -160px;
  background: var(--brand-gradient);
  opacity: 0.14;
  filter: blur(60px);
  border-radius: 50%;
}
@media (max-width: 900px) { .spotlight { grid-template-columns: 1fr; padding: 40px 26px; } }

.spotlight-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.spotlight-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-muted); font-size: 0.98rem; }
.spotlight-list b { color: var(--text); }
.check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(20,236,192,0.14);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  margin-top: 2px;
}

.mini-panel {
  background: var(--bg-alt);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.mini-panel .row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mini-panel .row:last-child { border-bottom: none; }
.mini-panel .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brand-gradient); flex-shrink: 0; }
.mini-panel .row span { color: var(--text-muted); font-size: 0.92rem; }
.mini-panel .row b { color: var(--text); font-weight: 600; }

/* ---------- Deep-dive feature rows ---------- */
.deep-dive { display: grid; gap: 18px; }
.dive-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 34px 0;
  border-top: 1px solid var(--panel-border);
}
.dive-row:first-child { border-top: none; }
@media (max-width: 760px) { .dive-row { grid-template-columns: 1fr; gap: 12px; } }
.dive-row h3 { display: flex; align-items: center; gap: 10px; }
.dive-row .num { font-size: 0.85rem; color: var(--text-faint); font-weight: 700; }
.dive-row p { color: var(--text-muted); }
.dive-row .sub-points { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--panel-solid);
  border: 1px solid var(--panel-border);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---------- Industry pros ---------- */
.pros-band {
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .pros-grid { grid-template-columns: 1fr; gap: 40px; } }
.pros-copy p { color: var(--text-muted); margin-top: 20px; font-size: 1.05rem; }
.pros-stats { display: flex; gap: 40px; margin-top: 32px; }
.pros-stats div b { display: block; font-size: 2rem; font-weight: 800; background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pros-stats div span { font-size: 0.85rem; color: var(--text-faint); }

.logo-wall {
  background: var(--panel-solid);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
  justify-items: center;
}
.logo-wall .plate {
  width: 100%;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  border: 1px solid var(--panel-border);
}
.logo-wall img { height: 30px; width: auto; filter: grayscale(1) brightness(1.8); opacity: 0.85; }
.logo-wall .plate.text-badge span { font-weight: 800; letter-spacing: 0.02em; color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Reviews ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .review-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--panel-solid);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.stars { color: var(--teal); letter-spacing: 3px; font-size: 0.95rem; margin-bottom: 14px; }
.review-card p.quote { color: var(--text-muted); font-size: 0.98rem; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand-gradient);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #06101a; font-size: 0.95rem;
  flex-shrink: 0;
}
.review-author div b { display: block; font-size: 0.92rem; }
.review-author div span { font-size: 0.8rem; color: var(--text-faint); }

/* ---------- Pricing ---------- */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 56px;
}
.pricing-toggle span { font-weight: 600; color: var(--text-muted); font-size: 0.95rem; }
.pricing-toggle span.on { color: var(--text); }
.pricing-toggle .save { color: var(--teal); font-weight: 700; }
.switch {
  position: relative;
  width: 54px; height: 30px;
  background: var(--panel-solid);
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  cursor: pointer;
}
.switch .knob {
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-gradient);
  transition: transform 0.25s ease;
}
.switch.active .knob { transform: translateX(24px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

.price-card {
  background: var(--panel-solid);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}
.price-card.featured {
  border: 1px solid transparent;
  background: linear-gradient(var(--panel-solid), var(--panel-solid)) padding-box, var(--brand-gradient) border-box;
  transform: scale(1.03);
  box-shadow: var(--shadow-glow);
}
.price-card .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand-gradient);
  color: #06101a; font-weight: 700; font-size: 0.75rem;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-size: 1.1rem; color: var(--text-muted); font-weight: 700; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 4px; }
.price-amount .num { font-size: 2.6rem; font-weight: 800; }
.price-amount .per { color: var(--text-faint); font-size: 0.95rem; }
.price-sub { font-size: 0.85rem; color: var(--text-faint); min-height: 20px; }
.price-card .btn { margin: 24px 0 26px; }
.price-list-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 14px; }
.price-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--text-muted); }
.price-list li .check { background: rgba(20,236,192,0.12); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--panel-solid);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.faq-q .plus { font-size: 1.3rem; color: var(--teal); transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 26px;
  color: var(--text-muted);
  font-size: 0.96rem;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 26px 24px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--brand-gradient);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  color: #06101a;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: #06101a; }
.cta-banner p { color: rgba(6,16,26,0.75); margin-top: 14px; font-size: 1.08rem; }
.cta-banner .hero-ctas { margin-top: 30px; }
.cta-banner .btn-primary { background: #06101a; color: #fff; box-shadow: none; }
.cta-banner .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(0,0,0,0.4); }
.cta-banner .btn-ghost { border-color: rgba(6,16,26,0.35); color: #06101a; }
.cta-banner .btn-ghost:hover { background: rgba(6,16,26,0.08); }

/* ---------- Contact form ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.info-card {
  background: var(--panel-solid);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-card .feature-icon { margin-bottom: 0; flex-shrink: 0; }
.info-card h4 { margin-bottom: 6px; font-size: 1rem; }
.info-card p { color: var(--text-muted); font-size: 0.92rem; }

.form-card {
  background: var(--panel-solid);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; color: var(--text-muted); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); }
.field textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(20,236,192,0.1);
  border: 1px solid rgba(20,236,192,0.35);
  color: var(--teal);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 18px;
}
.form-success.show { display: flex; }
.form-success.error {
  background: rgba(232,76,76,0.1);
  border-color: rgba(232,76,76,0.35);
  color: #e86a6a;
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 64px 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}
@media (max-width: 780px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.footer-brand img { height: 26px; margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 280px; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text-faint);
  font-size: 0.85rem;
}
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--panel-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}
.footer-socials a:hover { border-color: var(--blue); color: var(--text); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: none;
}
@media (max-width: 640px) {
  .sticky-cta { display: block; width: calc(100% - 32px); }
  .sticky-cta .btn { width: 100%; }
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Partners ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .partner-grid { grid-template-columns: 1fr; } }

.partner-card {
  background: var(--panel-solid);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.partner-card:hover { transform: translateY(-4px); border-color: rgba(106,107,245,0.4); }

.partner-logo {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  border: 1.5px dashed var(--panel-border);
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-faint);
  margin-bottom: 20px;
}
.partner-logo svg { width: 30px; height: 30px; fill: none; stroke: var(--text-faint); stroke-width: 1.5; }
.partner-logo span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

.partner-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.partner-card .partner-tag { font-size: 0.82rem; color: var(--text-faint); margin-bottom: 18px; }

.partner-socials { display: flex; align-items: center; justify-content: center; gap: 12px; }
.partner-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--panel-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.partner-socials a svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.partner-socials a:hover { border-color: transparent; background: var(--brand-gradient); color: #06101a; }
