/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d1117;
  --surface:   #161b22;
  --card:      #1c2128;
  --card2:     #21262d;
  --border:    #30363d;
  --accent:    #58a6ff;
  --accent2:   #1f6feb;
  --purple:    #a371f7;
  --text:      #e6edf3;
  --muted:     #8b949e;
  --green:     #3fb950;
  --red:       #f85149;
  --yellow:    #d29922;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 8px 32px rgba(0,0,0,.4);
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #79b8ff; }

img { max-width: 100%; display: block; }

code {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: .85em;
  background: var(--card2);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ── Gradient text ───────────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff;
  box-shadow: 0 4px 16px rgba(88,166,255,.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(88,166,255,.4);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--card2);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* ── Section header ──────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(88,166,255,.1);
  border: 1px solid rgba(88,166,255,.25);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ── Reveal animation ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* NAV                                                                        */
/* ═══════════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,17,23,.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav.scrolled { background: rgba(13,17,23,.97); }

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo i { color: var(--accent); font-size: 1.2rem; }
.nav-logo .amp { color: var(--accent); }
.nav-logo:hover { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.nav-links a:hover { color: var(--text); background: var(--card2); }

.nav-cta { margin-left: 12px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--muted);
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; padding-top: 16px; }
.nav-mobile.open { display: flex; }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* HERO                                                                       */
/* ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  padding-top: 130px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(88,166,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88,166,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 400px;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(88,166,255,.12) 0%, transparent 70%);
}
.hero-glow-2 {
  width: 400px; height: 300px;
  top: 100px; right: 10%;
  background: radial-gradient(ellipse, rgba(163,113,247,.1) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(88,166,255,.08);
  border: 1px solid rgba(88,166,255,.2);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  animation: fadeDown .6s ease;
}
.hero-badge i { color: var(--yellow); }

.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 24px;
  animation: fadeDown .7s ease .1s both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 36px;
  animation: fadeDown .7s ease .2s both;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeDown .7s ease .3s both;
}

.hero-platforms {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 500;
  animation: fadeDown .7s ease .4s both;
}
.hero-platforms span { display: flex; align-items: center; gap: 6px; }
.hero-platforms i { color: var(--accent); }

/* ── Mockup ─────────────────────────────────────────────────────────────── */
.hero-mockup-wrap {
  margin-top: 64px;
  position: relative;
  z-index: 1;
  animation: fadeUp .8s ease .5s both;
}

.hero-mockup-wrap::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(88,166,255,.2) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.mockup-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(88,166,255,.08);
  max-width: 980px;
  margin: 0 auto;
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.mockup-dots { display: flex; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }

.mockup-title {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mockup-title i { color: var(--accent); }

.mockup-tabs {
  display: flex;
  gap: 2px;
}
.tab {
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  padding: 4px 12px;
  border-radius: 6px;
  cursor: default;
}
.tab.active {
  background: var(--card2);
  color: var(--text);
  border: 1px solid var(--border);
}

.mockup-body {
  display: flex;
  height: 380px;
}

.mockup-sidebar {
  width: 200px;
  flex-shrink: 0;
  background: var(--card);
  border-right: 1px solid var(--border);
  padding: 12px 0;
  font-size: .78rem;
  overflow: hidden;
}

.sidebar-section { margin-bottom: 16px; }

.sidebar-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 12px;
  margin-bottom: 4px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  color: var(--muted);
  cursor: default;
  border-radius: 0;
  font-size: .78rem;
}
.sidebar-item.active {
  background: rgba(88,166,255,.1);
  color: var(--accent);
  border-left: 2px solid var(--accent);
}
.sidebar-item i { width: 14px; flex-shrink: 0; }

.env-badge {
  font-size: .75rem;
  font-weight: 600;
  color: var(--yellow);
  padding: 4px 12px;
}

.mockup-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mockup-toolbar {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.mockup-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--card2);
  color: var(--text);
  cursor: default;
  font-family: inherit;
}
.mockup-btn.primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  border-color: transparent;
  color: #fff;
}

.mockup-editors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  overflow: hidden;
}

.editor-pane {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  overflow: hidden;
}
.editor-pane:last-child { border-right: none; }

.editor-header {
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 12px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-green {
  font-size: .68rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(63,185,80,.1);
  border: 1px solid rgba(63,185,80,.3);
  padding: 2px 7px;
  border-radius: 999px;
}

.editor-content {
  flex: 1;
  padding: 10px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  line-height: 1.7;
  background: var(--bg);
  overflow: hidden;
}

.code-line { white-space: pre; }
.indent  { padding-left: 14px; }
.indent2 { padding-left: 28px; }

.c-key    { color: #79b8ff; }
.c-str    { color: #9ecbff; }
.c-punc   { color: var(--muted); }
.c-comment{ color: #6a737d; font-style: italic; }
.c-kw     { color: #f97583; }
.c-fn     { color: #b392f0; }
.c-var    { color: #e1e4e8; }
.c-num    { color: #79b8ff; }

.mockup-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: .72rem;
  color: var(--muted);
  background: var(--card);
  border-top: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.status-dot.green { background: var(--green); box-shadow: 0 0 6px var(--green); }
.status-right { margin-left: auto; color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* STATS BAR                                                                  */
/* ═══════════════════════════════════════════════════════════════════════════ */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* FEATURES                                                                   */
/* ═══════════════════════════════════════════════════════════════════════════ */
.features { background: var(--bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(88,166,255,.04) 0%, transparent 60%);
  pointer-events: none;
}
.feature-card:hover {
  border-color: rgba(88,166,255,.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}

.feature-card--large {
  grid-column: span 1;
}

/* Make first and last large cards span 2 cols on wide screens */
@media (min-width: 900px) {
  .feature-card--large:nth-child(1) { grid-column: span 2; }
  .feature-card--large:nth-child(8) { grid-column: span 2; }
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(88,166,255,.12);
  border: 1px solid rgba(88,166,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon {
  font-size: 1.2rem;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}

.feature-list {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--muted);
}
.feature-list li i {
  color: var(--green);
  font-size: .75rem;
  width: 14px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* HOW IT WORKS                                                               */
/* ═══════════════════════════════════════════════════════════════════════════ */
.how-it-works {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps { display: flex; flex-direction: column; gap: 80px; }

.step {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.step--reverse {
  grid-template-columns: auto 1fr 1fr;
}
.step--reverse .step-content { order: 2; }
.step--reverse .step-visual  { order: 1; }

.step-num {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -.05em;
  color: rgba(88,166,255,.12);
  line-height: 1;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-content p { color: var(--muted); font-size: .95rem; }

/* Step visuals */
.step-code, .step-progress, .step-results, .step-repair {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .8rem;
}

.step-progress { display: flex; flex-direction: column; gap: 12px; }
.progress-label { font-size: .82rem; font-weight: 600; color: var(--accent); }
.progress-label i { color: var(--yellow); }
.progress-bar { height: 6px; background: var(--card2); border-radius: 99px; overflow: hidden; }
.progress-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  border-radius: 99px;
  animation: progressPulse 2s ease-in-out infinite;
}
@keyframes progressPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}
.progress-detail { font-size: .72rem; color: var(--muted); }

.step-results { display: flex; flex-direction: column; gap: 6px; }
.result-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  padding: 4px 0;
  color: var(--muted);
}
.result-row.pass i { color: var(--green); }
.result-row.fail { color: var(--red); }
.result-row.fail i { color: var(--red); }
.result-summary {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  font-size: .75rem;
  color: var(--muted);
}
.pass-count { color: var(--green); }
.fail-count { color: var(--red); }

.step-repair { display: flex; flex-direction: column; gap: 10px; }
.repair-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--muted);
}
.repair-row.ok i { color: var(--green); }
.repair-row.ok { color: var(--text); }
.repair-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(63,185,80,.1);
  border: 1px solid rgba(63,185,80,.3);
  padding: 5px 12px;
  border-radius: 999px;
  margin-top: 4px;
  align-self: flex-start;
}

.spin { animation: spin 1.5s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* PRICING                                                                    */
/* ═══════════════════════════════════════════════════════════════════════════ */
.pricing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  border-color: rgba(88,166,255,.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}

.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(88,166,255,.07) 0%, var(--card) 60%);
  box-shadow: 0 0 0 1px rgba(88,166,255,.2), 0 16px 48px rgba(88,166,255,.1);
}
.pricing-card--featured:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(88,166,255,.4), 0 20px 60px rgba(88,166,255,.15);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.plan-name {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.plan-price {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--text);
}
.price-currency { font-size: 1.4rem; font-weight: 700; vertical-align: top; margin-top: 8px; display: inline-block; color: var(--muted); }
.price-period { font-size: 1rem; font-weight: 500; color: var(--muted); }

.plan-desc {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 20px;
  min-height: 40px;
}

.plan-credits {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.credit-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--text);
}
.credit-row i { color: var(--accent); width: 14px; flex-shrink: 0; }

.credit-overage {
  font-size: .72rem;
  color: var(--muted);
  padding-top: 6px;
  border-top: 1px solid var(--border);
  margin-top: 2px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--muted);
}
.plan-features li i { color: var(--green); font-size: .75rem; width: 14px; flex-shrink: 0; }

.plan-btn { width: 100%; justify-content: center; }

/* Pricing note */
.pricing-note {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.pricing-note-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-note-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pricing-note-item > i {
  font-size: 1.1rem;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}
.pricing-note-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pricing-note-item strong {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
}
.pricing-note-item span {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-note-inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* USE CASES                                                                  */
/* ═══════════════════════════════════════════════════════════════════════════ */
.use-cases { background: var(--bg); }

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.use-case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.use-case-card:hover {
  border-color: rgba(88,166,255,.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.uc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(88,166,255,.15), rgba(163,113,247,.15));
  border: 1px solid rgba(88,166,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--accent);
}

.use-case-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.use-case-card p {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.uc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.uc-tags span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(88,166,255,.1);
  border: 1px solid rgba(88,166,255,.2);
  padding: 3px 10px;
  border-radius: 999px;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* TECH STACK                                                                 */
/* ═══════════════════════════════════════════════════════════════════════════ */
.tech-stack {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  min-width: 100px;
  text-align: center;
  transition: all var(--transition);
}
.tech-item:hover {
  border-color: rgba(88,166,255,.4);
  transform: translateY(-2px);
  background: var(--card2);
}

.tech-icon { font-size: 1.8rem; color: var(--accent); }

.tech-item span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* DOWNLOAD                                                                   */
/* ═══════════════════════════════════════════════════════════════════════════ */
.download { background: var(--bg); }

.download-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(88,166,255,.12) 0%, transparent 70%);
  pointer-events: none;
}

.download-card .section-tag { margin-bottom: 16px; }
.download-card .section-title { margin-bottom: 16px; }
.download-card .section-sub { margin-bottom: 48px; }

.download-options {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
  min-width: 260px;
  text-align: left;
}
.download-btn:hover {
  border-color: var(--accent);
  background: var(--card2);
  transform: translateY(-2px);
  color: var(--text);
  box-shadow: 0 8px 32px rgba(88,166,255,.15);
}
.download-btn > i:first-child {
  font-size: 2rem;
  color: var(--accent);
  flex-shrink: 0;
}
.dl-label { font-size: .95rem; font-weight: 600; margin-bottom: 2px; }
.dl-sub { font-size: .78rem; color: var(--muted); }
.dl-arrow { margin-left: auto; color: var(--muted); font-size: .9rem; flex-shrink: 0; }

.download-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto 48px;
}
.download-note i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════════════════════════ */
/* FAQ                                                                        */
/* ═══════════════════════════════════════════════════════════════════════════ */
.faq { background: var(--surface); border-top: 1px solid var(--border); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(88,166,255,.35); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: .95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  font-size: .8rem;
  color: var(--muted);
  transition: transform .25s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--accent); }

.faq-a {
  display: none;
  padding: 0 24px 20px;
}
.faq-a p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-a a { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* CTA BANNER                                                                 */
/* ═══════════════════════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #0d1117 0%, #0f1923 50%, #0d1117 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow-1, .cta-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-glow-1 {
  width: 500px; height: 300px;
  top: -50px; left: 30%;
  background: radial-gradient(ellipse, rgba(88,166,255,.1) 0%, transparent 70%);
}
.cta-glow-2 {
  width: 300px; height: 200px;
  bottom: -50px; right: 30%;
  background: radial-gradient(ellipse, rgba(163,113,247,.1) 0%, transparent 70%);
}

.cta-content { position: relative; z-index: 1; }

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 36px;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* FOOTER                                                                     */
/* ═══════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 14px; }

.footer-brand p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  color: var(--muted);
}
.footer-contact a:hover { color: var(--accent); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: .88rem;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--muted);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* ANIMATIONS                                                                 */
/* ═══════════════════════════════════════════════════════════════════════════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* RESPONSIVE                                                                 */
/* ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-mockup-wrap { overflow-x: auto; }
  .mockup-window { min-width: 680px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large { grid-column: span 2 !important; }

  .step { grid-template-columns: auto 1fr; }
  .step .step-visual { display: none; }
  .step--reverse .step-content { order: unset; }
  .step--reverse .step-visual  { order: unset; }

  .use-cases-grid { grid-template-columns: 1fr; }

  .download-card { padding: 40px 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1 !important; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .footer-links { grid-template-columns: 1fr 1fr; }

  .hero-actions { flex-direction: column; align-items: center; }

  .download-options { flex-direction: column; align-items: center; }
  .download-btn { width: 100%; max-width: 340px; }

  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* ── Auth Modal ──────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.72);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  backdrop-filter: blur(4px);
  animation: fadeIn .15s ease;
}
.modal-overlay[hidden] { display: none; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  width: 100%; max-width: 420px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  animation: slideUp .18s ease;
}
@keyframes slideUp { from { transform: translateY(16px); opacity: 0; } to { transform: none; opacity: 1; } }

.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 1rem; line-height: 1;
  padding: 6px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.modal-close:hover { color: var(--text); background: var(--card2); }

.modal-tabs {
  display: flex; gap: 4px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.modal-tab {
  flex: 1; background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: .9rem; font-weight: 500;
  padding: 10px 0 12px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.modal-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.modal-tab:hover:not(.active) { color: var(--text); }

.modal-form { display: flex; flex-direction: column; gap: 18px; }
.modal-form[hidden] { display: none; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 500; color: var(--muted); }
.form-group input {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 14px;
  color: var(--text); font-size: .95rem; outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus { border-color: var(--accent); }
.form-group input::placeholder { color: var(--muted); }

.input-pw-wrap { position: relative; }
.input-pw-wrap input { padding-right: 42px; }
.pw-toggle {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: .85rem;
  padding: 4px;
  transition: color var(--transition);
}
.pw-toggle:hover { color: var(--text); }

.form-hint { font-size: .78rem; color: var(--muted); }
.optional { font-size: .8rem; color: var(--muted); font-weight: 400; }

.form-check {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--muted); cursor: pointer;
}
.form-check input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--accent); }

.form-error {
  background: rgba(248,81,73,.12); border: 1px solid rgba(248,81,73,.3);
  color: var(--red); border-radius: var(--radius);
  padding: 10px 14px; font-size: .85rem; line-height: 1.4;
}
.form-error[hidden] { display: none; }

.form-submit {
  width: 100%; padding: 12px;
  font-size: .95rem; font-weight: 600;
  position: relative;
}
.btn-spinner[hidden] { display: none; }

.form-switch {
  text-align: center; font-size: .85rem; color: var(--muted); margin: 0;
}
.link-btn {
  background: none; border: none; cursor: pointer;
  color: var(--accent); font-size: inherit;
  padding: 0; text-decoration: underline; text-decoration-style: dotted;
}
.link-btn:hover { text-decoration-style: solid; }

/* Account panel */
.modal-account { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.modal-account[hidden] { display: none; }
.account-avatar { font-size: 3.5rem; color: var(--accent); line-height: 1; }
.account-name { font-size: 1.2rem; font-weight: 700; }
.account-plan-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.account-plan {
  font-size: .82rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--green); background: rgba(63,185,80,.12);
  border: 1px solid rgba(63,185,80,.25);
  padding: 4px 12px; border-radius: 20px;
}
.account-plan.no-sub { color: var(--yellow); background: rgba(210,153,34,.12); border-color: rgba(210,153,34,.25); }
.account-status-badge {
  font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  padding: 3px 9px; border-radius: 20px;
}
.account-status-badge.active   { color: var(--green);  background: rgba(63,185,80,.12);  border: 1px solid rgba(63,185,80,.2); }
.account-status-badge.cancelled{ color: var(--red);    background: rgba(248,81,73,.12);   border: 1px solid rgba(248,81,73,.2); }
.account-status-badge.past_due { color: var(--yellow); background: rgba(210,153,34,.12); border: 1px solid rgba(210,153,34,.2); }

/* Upgrade plan picker inside account panel */
.account-upgrade { width: 100%; }
.upgrade-label { font-size: .78rem; color: var(--muted); text-align: center; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }
.upgrade-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.upgrade-plan-card {
  background: var(--card2); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 8px; text-align: center;
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color var(--transition), transform var(--transition);
}
.upgrade-plan-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.upgrade-plan-name { font-size: .8rem; font-weight: 700; }
.upgrade-plan-price { font-size: .95rem; font-weight: 800; color: var(--accent); }
.upgrade-plan-price span { font-size: .7rem; font-weight: 400; color: var(--muted); }
.upgrade-plan-btn {
  margin-top: 4px; font-size: .75rem; padding: 5px 0;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff; border: none; border-radius: 6px; cursor: pointer;
  font-weight: 600; transition: opacity var(--transition);
}
.upgrade-plan-btn:hover { opacity: .85; }

/* Modal plan selection step */
.modal-plan-step { display: flex; flex-direction: column; gap: 14px; }
.modal-plan-step[hidden] { display: none; }

.modal-plan-back {
  background: none; border: none; color: var(--muted); font-size: .8rem;
  cursor: pointer; display: flex; align-items: center; gap: 6px;
  font-family: inherit; padding: 0; transition: color var(--transition);
  align-self: flex-start;
}
.modal-plan-back:hover { color: var(--text); }

.modal-plan-title { font-size: 1.1rem; font-weight: 700; margin: 0; }
.modal-plan-sub   { font-size: .78rem; color: var(--muted); margin: -6px 0 0; }

.modal-plan-list  { display: flex; flex-direction: column; gap: 8px; }

.mpl-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface2, var(--card2, #1c2128));
  transition: border-color var(--transition);
}
.mpl-row:hover { border-color: var(--accent); }
.mpl-free { border-color: rgba(63,185,80,.3); background: rgba(63,185,80,.04); }
.mpl-free:hover { border-color: var(--green); }

.mpl-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mpl-name { font-size: .88rem; font-weight: 700; display: flex; align-items: center; gap: 7px; }
.mpl-tag  {
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  background: rgba(63,185,80,.15); color: var(--green);
  border: 1px solid rgba(63,185,80,.3); border-radius: 4px; padding: 1px 6px;
}
.mpl-desc { font-size: .75rem; color: var(--muted); }

.mpl-price {
  font-size: 1rem; font-weight: 800; white-space: nowrap;
  color: var(--text);
}
.mpl-price span { font-size: .7rem; font-weight: 400; color: var(--muted); }

.mpl-btn {
  border: none; border-radius: 7px; padding: 7px 14px;
  font-size: .8rem; font-weight: 700; cursor: pointer; font-family: inherit;
  white-space: nowrap; position: relative; min-width: 80px;
  transition: opacity var(--transition);
}
.mpl-btn .btn-label  { display: block; }
.mpl-btn .btn-spinner {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.mpl-btn:disabled { opacity: .5; cursor: not-allowed; }
.mpl-btn-primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent)); color: #fff;
}
.mpl-btn-primary:hover:not(:disabled) { opacity: .85; }
.mpl-btn-ghost {
  background: transparent; color: var(--green);
  border: 1px solid rgba(63,185,80,.4);
}
.mpl-btn-ghost:hover:not(:disabled) { background: rgba(63,185,80,.08); }

/* Wider modal card when showing plan step */
.modal-card.plan-step-active { max-width: 500px; }

/* Manage billing actions */
.account-billing-actions { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.billing-hint { font-size: .75rem; color: var(--muted); margin: 0; text-align: center; }

.usage-section { width: 100%; display: flex; flex-direction: column; gap: 10px; }
.usage-row { font-size: .83rem; color: var(--muted); }
.usage-label { display: flex; justify-content: space-between; margin-bottom: 5px; }
.usage-bar { background: var(--card2); border-radius: 4px; height: 6px; overflow: hidden; }
.usage-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--accent2), var(--accent)); transition: width .6s ease; }
.usage-fill.warn { background: linear-gradient(90deg, var(--yellow), #f0a82e); }
.usage-fill.over { background: linear-gradient(90deg, var(--red), #ff6b63); }

/* Nav user state */
.nav-auth-area { display: flex; align-items: center; gap: 10px; }
.nav-user-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 14px 5px 10px;
  cursor: pointer; transition: border-color var(--transition);
  font-size: .85rem; font-weight: 500;
}
.nav-user-badge:hover { border-color: var(--accent); }
.nav-user-badge i { color: var(--accent); }

/* Checkout notice */
.checkout-notice {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--card); border: 1px solid var(--border);
  border-radius: 30px; padding: 12px 24px;
  font-size: .9rem; color: var(--text);
  box-shadow: var(--shadow); z-index: 3000;
  display: flex; align-items: center; gap: 10px;
}
.checkout-notice[hidden] { display: none; }

@media (max-width: 480px) {
  .modal-card { padding: 28px 20px 24px; }
}

/* ── TESTIMONIALS ─────────────────────────────────────────────────────────── */
.testimonials { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.testimonial-stars { color: #f59e0b; font-size: 0.85rem; display: flex; gap: 3px; }
.testimonial-text {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.97rem;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #818cf8);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.93rem; color: var(--text); }
.testimonial-role { font-size: 0.82rem; color: var(--text-muted); margin-top: 1px; }

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
