/* ─── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #5C6BC0;
  --primary-dark: #3F51B5;
  --primary-light: #E8EAF6;
  --accent: #26A69A;
  --accent-light: #E0F2F1;
  --danger: #EF5350;
  --orange: #FF7043;
  --purple: #7E57C2;
  --text: #1A1D2E;
  --text-secondary: #5A6070;
  --text-muted: #8A92A4;
  --border: #E4E8F0;
  --surface: #FFFFFF;
  --bg: #F8FAFF;
  --bg-dark: #0F1222;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--surface); line-height: 1.6; overflow-x: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-light { background: var(--bg); }

/* ─── TYPOGRAPHY ──────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Sora', 'Inter', sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.015em; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { color: var(--text-secondary); }
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--primary); background: var(--primary-light);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}
.section-label.light { color: var(--accent-light); background: rgba(255,255,255,.15); }
.section-sub { font-size: 1.1rem; color: var(--text-secondary); max-width: 560px; margin: 12px auto 0; }

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; box-shadow: 0 4px 16px rgba(92,107,192,.35);
}
.btn-primary:hover { box-shadow: 0 6px 24px rgba(92,107,192,.45); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-lg { padding: 15px 32px; font-size: 1rem; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAV ──────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0 0;
}
.nav.scrolled { background: rgba(255,255,255,.95); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--border); }
.nav.scrolled .nav-links a { color: var(--text); }
.nav.scrolled .nav-logo span { color: var(--text); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px; height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo span { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.15rem; color: #fff; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { font-weight: 500; font-size: 0.9rem; color: rgba(255,255,255,.85); transition: color var(--transition); }
.nav-links a:hover { color: #fff; }
.nav-cta { margin-left: 16px; padding: 9px 20px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1A1D3E 0%, #2D3166 40%, #1A3A4A 100%);
  padding: 140px 0 60px;
  min-height: 90vh; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(92,107,192,.25) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 80%, rgba(38,166,154,.15) 0%, transparent 50%);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(38,166,154,.2); border: 1px solid rgba(38,166,154,.4);
  color: #80CBC4; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.hero-badge::before { content: '●'; color: #26A69A; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-text h1 { color: #fff; margin-bottom: 20px; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.72); max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-value { font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 700; color: #fff; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,.55); }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* Hero visual */
.hero-visual { position: relative; height: 480px; }
.screen-mockup {
  position: absolute; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.screen-mockup.admin-mockup {
  width: 72%; top: 0; right: 0; background: #1e2030;
  border: 1px solid rgba(255,255,255,.1);
}
.screen-mockup.mobile-mockup {
  width: 28%; bottom: 0; left: 8%; background: #1e2030;
  border: 1px solid rgba(255,255,255,.1); border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.mockup-bar {
  height: 28px; background: #2a2d42; display: flex; align-items: center; gap: 6px; padding: 0 12px;
}
.mockup-bar span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-bar span:nth-child(1) { background: #FF5F57; }
.mockup-bar span:nth-child(2) { background: #FEBC2E; }
.mockup-bar span:nth-child(3) { background: #28C840; }
.mockup-notch { height: 20px; background: #1e2030; display: flex; justify-content: center; padding-top: 6px; }
.mockup-notch::after { content: ''; width: 60px; height: 8px; background: #2a2d42; border-radius: 4px; }
.screen-mockup img { width: 100%; object-fit: cover; object-position: top; }

.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ─── PROBLEM ──────────────────────────────────────────────────── */
.problem { padding: 100px 0; text-align: center; }
.problem h2 { margin-bottom: 56px; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: left; }
.problem-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.problem-icon { font-size: 2rem; margin-bottom: 16px; }
.problem-card h3 { margin-bottom: 10px; }

/* ─── FEATURES ─────────────────────────────────────────────────── */
.features { padding: 100px 0; text-align: center; }
.features > .container > h2 { margin-bottom: 56px; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto; gap: 24px; text-align: left;
}
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.feature-card--large { grid-column: span 2; }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  color: var(--c); margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 0.95rem; }
.feature-list { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.feature-list li {
  font-size: 0.88rem; color: var(--text-secondary);
  display: flex; align-items: center; gap: 8px;
}
.feature-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ─── HOW IT WORKS ─────────────────────────────────────────────── */
.how-it-works { padding: 100px 0; text-align: center; }
.how-it-works h2 { margin-bottom: 12px; }
.steps { margin-top: 64px; display: flex; flex-direction: column; gap: 0; max-width: 720px; margin-left: auto; margin-right: auto; text-align: left; }
.step { display: flex; gap: 32px; align-items: flex-start; padding: 8px 0; }
.step-num {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(92,107,192,.3);
}
.step-content { padding-bottom: 8px; }
.step-content h3 { margin-bottom: 8px; }
.step-content p { font-size: 0.95rem; }
.step-connector { width: 2px; height: 32px; background: linear-gradient(to bottom, var(--primary), var(--accent)); margin-left: 25px; border-radius: 2px; opacity: .4; }

/* ─── PLATFORM SCREENSHOTS ─────────────────────────────────────── */
.platform { padding: 100px 0; text-align: center; }
.platform h2 { margin-bottom: 40px; }
.platform-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.tab-btn {
  padding: 10px 22px; border-radius: 100px; font-weight: 600; font-size: 0.88rem;
  border: 1.5px solid var(--border); color: var(--text-secondary);
  transition: all var(--transition);
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.platform-panel { display: none; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; text-align: left; }
.platform-panel.active { display: grid; }
.panel-text h3 { font-size: 1.5rem; margin-bottom: 16px; }
.panel-text p { font-size: 1rem; margin-bottom: 8px; }

/* Large mockups in platform section */
.admin-mockup-lg {
  width: 100%; background: #1e2030; border: 1px solid rgba(0,0,0,.1);
}
.mobile-mockup-lg {
  width: 280px; margin: 0 auto; background: #1e2030;
  border-radius: 28px; border: 1px solid rgba(0,0,0,.1);
  overflow: hidden;
}

/* ─── TECH STACK ───────────────────────────────────────────────── */
.tech { padding: 100px 0; text-align: center; }
.tech h2 { margin-bottom: 56px; }
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.tech-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.tech-icon { font-size: 1.8rem; margin-bottom: 14px; }
.tech-card h3 { margin-bottom: 8px; font-size: 1rem; }
.tech-card p { font-size: 0.9rem; }

/* ─── TEAM ─────────────────────────────────────────────────────── */
.team { padding: 100px 0; text-align: center; }
.team h2 { margin-bottom: 12px; }
.team-grid { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 56px; }
.team-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; width: 280px; text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.team-card--placeholder { opacity: .55; }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; background: var(--bg);
  background: linear-gradient(135deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 80%, var(--bg-dark)) 100%);
  background: var(--bg);
  background-color: var(--bg);
  --bg: color-mix(in srgb, var(--bg, var(--primary)) 20%, white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.4rem;
  color: #fff; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--bg, var(--primary)) 0%, color-mix(in srgb, var(--bg, var(--primary)) 70%, black) 100%);
}
.team-card h3 { margin-bottom: 4px; font-size: 1.1rem; }
.team-role { font-size: 0.85rem; color: var(--primary); font-weight: 500; margin-bottom: 12px; }
.team-bio { font-size: 0.88rem; color: var(--text-secondary); }
.team-links { display: flex; gap: 12px; justify-content: center; margin-top: 20px; }
.team-links a { color: var(--text-muted); transition: color var(--transition); }
.team-links a:hover { color: var(--primary); }
.team-links svg { width: 20px; height: 20px; }

/* ─── CONTACT ──────────────────────────────────────────────────── */
.contact {
  background: linear-gradient(135deg, #1A1D3E 0%, #2D3166 50%, #1A3A4A 100%);
  padding: 100px 0; color: #fff;
}
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-text h2 { color: #fff; margin-bottom: 16px; }
.contact-text p { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.8); }
.contact-item svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-item a { color: rgba(255,255,255,.9); font-weight: 500; }
.contact-item a:hover { color: #fff; }

.contact-form {
  background: #fff; border-radius: var(--radius-lg); padding: 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
}
.contact-form h3 { color: var(--text); margin-bottom: 24px; font-size: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.95rem; color: var(--text); outline: none; background: #fff;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* ─── FOOTER ───────────────────────────────────────────────────── */
.footer { background: #0F1222; padding: 64px 0 0; color: rgba(255,255,255,.6); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 64px; padding-bottom: 48px; }
.footer-brand { max-width: 280px; }
.footer-brand .nav-logo span { color: #fff; }
.footer-brand p { margin-top: 12px; font-size: 0.88rem; line-height: 1.7; }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 24px; text-align: center; font-size: 0.83rem; }

/* ─── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .problem-grid, .tech-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large { grid-column: span 1; }
  .platform-panel { grid-template-columns: 1fr; }
  .panel-screen { order: -1; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav.menu-open .nav-links {
    display: flex; flex-direction: column; position: fixed;
    top: 68px; left: 0; right: 0; background: rgba(15,18,34,.97);
    padding: 24px; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav.menu-open .nav-links a { color: #fff; font-size: 1.1rem; }
  .problem-grid, .tech-grid, .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .footer-links { flex-direction: column; gap: 32px; }
}

/* ─── ANIMATIONS ───────────────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

code { font-family: monospace; font-size: 0.85em; background: var(--bg); padding: 2px 6px; border-radius: 4px; color: var(--primary); }

/* ─── HERO BADGE ──────────────────────────────────────────────── */
.badge-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #26A69A; animation: pulse 2s infinite; flex-shrink: 0;
}

/* ─── PROBLEM CARDS (numbered) ───────────────────────────────── */
.problem-num {
  font-family: 'Sora', sans-serif; font-size: 1.8rem; font-weight: 800;
  color: var(--primary); margin-bottom: 10px;
}

/* ─── WHY TRIALLI ─────────────────────────────────────────────── */
.why { padding: 100px 0; }
.why h2 { text-align: center; margin-bottom: 56px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 0; }

.why-card {
  border-radius: var(--radius-lg); padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.why-card--primary { background: linear-gradient(135deg, #E8EAF6 0%, #C5CAE9 100%); border: 1px solid #9FA8DA; }
.why-card--accent  { background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%); border: 1px solid #80CBC4; }
.why-card--dark    { background: linear-gradient(135deg, #1A1D3E 0%, #2D3166 100%); border: 1px solid rgba(255,255,255,.1); }
.why-card--dark h3, .why-card--dark p { color: #fff; }
.why-card--dark .why-tag { background: rgba(255,255,255,.15); color: rgba(255,255,255,.85); }

.why-number {
  font-family: 'Sora', sans-serif; font-size: 3rem; font-weight: 800;
  opacity: .12; position: absolute; top: 16px; right: 24px; line-height: 1;
}
.why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0,0,0,.08); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card--dark .why-icon { background: rgba(255,255,255,.12); color: #fff; }
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.why-card p { font-size: 0.93rem; line-height: 1.65; }
.why-tag {
  display: inline-block; margin-top: 20px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  background: rgba(0,0,0,.08); padding: 4px 12px; border-radius: 100px;
  color: var(--text-secondary);
}

/* ─── COMPETITIVE TABLE ───────────────────────────────────────── */
.compare-table-wrap { margin-top: 72px; }
.compare-scroll { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.compare-table th {
  background: var(--text); color: #fff; padding: 13px 16px;
  text-align: left; font-size: 0.8rem; font-weight: 600; white-space: nowrap;
}
.compare-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); white-space: nowrap; }
.compare-table tr:last-child td { border-bottom: none; }
.row-highlight td { background: var(--primary-light); font-weight: 600; }
.yes { color: #2E7D32; font-weight: 700; }
.no  { color: var(--text-muted); }
.badge-new {
  display: inline-block; margin-left: 8px; font-size: 0.7rem; font-weight: 700;
  background: var(--primary); color: #fff; padding: 2px 8px; border-radius: 100px;
  vertical-align: middle;
}
.compare-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; }

/* ─── VOICE AI ────────────────────────────────────────────────── */
.voice-ai { padding: 100px 0; text-align: center; }
.voice-ai h2 { margin-bottom: 16px; }
.voice-flow {
  display: flex; align-items: flex-start; gap: 0; margin: 56px 0 48px;
  justify-content: center; flex-wrap: wrap;
}
.voice-step {
  flex: 1; min-width: 180px; max-width: 220px; text-align: center; padding: 0 8px;
}
.voice-step-icon { font-size: 2.2rem; margin-bottom: 12px; }
.voice-step h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.voice-step p { font-size: 0.85rem; color: var(--text-secondary); }
.voice-arrow {
  font-size: 1.6rem; color: var(--primary); font-weight: 700;
  padding: 0 4px; align-self: center; margin-top: -24px; flex-shrink: 0;
}

.voice-instruments { text-align: center; margin-bottom: 40px; }
.voice-instruments h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.82rem; }
.instrument-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.instrument-pill {
  background: var(--primary-light); color: var(--primary); border: 1px solid #C5CAE9;
  border-radius: 100px; padding: 6px 16px; font-size: 0.85rem; font-weight: 600;
}

.voice-safety {
  display: flex; align-items: flex-start; gap: 20px; text-align: left;
  max-width: 720px; margin: 0 auto;
  background: linear-gradient(135deg, #FFF8E1, #FFF3CD);
  border: 1px solid #FFE082; border-radius: var(--radius-lg); padding: 24px 28px;
}
.safety-icon { font-size: 2rem; flex-shrink: 0; }
.voice-safety h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.voice-safety p { font-size: 0.9rem; color: var(--text-secondary); }

/* ─── AFFILIATION BAR ─────────────────────────────────────────── */
.affil-bar {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 28px; margin: 40px 0 56px;
  justify-content: center; gap: 0;
}
.affil-item { text-align: center; padding: 8px 24px; }
.affil-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.affil-value { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.affil-divider { width: 1px; height: 40px; background: var(--border); }

/* ─── FOOTER GRANT NOTE ───────────────────────────────────────── */
.footer-grant { font-size: 0.78rem; color: rgba(255,255,255,.35); margin-top: 8px; }

/* ─── RESPONSIVE ADDITIONS ────────────────────────────────────── */
@media (max-width: 960px) {
  .why-grid { grid-template-columns: 1fr; }
  .voice-flow { flex-direction: column; align-items: center; }
  .voice-arrow { transform: rotate(90deg); margin: 4px 0; }
  .affil-bar { flex-direction: column; gap: 16px; }
  .affil-divider { width: 80px; height: 1px; }
  .compare-table td, .compare-table th { white-space: normal; }
}

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