/* =============================================
   AI Workshops - Main Stylesheet
   Deep blue #1e40af / Electric #3b82f6
   Dark bg #0c1222 / Light bg #f8fafc
   Font: Inter
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-deep: #1e40af;
  --blue-electric: #3b82f6;
  --blue-light: #60a5fa;
  --blue-pale: #dbeafe;

  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-inverse: #ffffff;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-blue: 0 4px 24px rgba(59,130,246,0.25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --nav-height: 72px;
  --transition: 200ms cubic-bezier(0.4,0,0.2,1);
}

html.dark {
  --bg-primary: #0c1222;
  --bg-secondary: #111827;
  --bg-card: #131d30;
  --bg-card-hover: #182236;
  --border: #1e293b;
  --border-strong: #2d3f5c;

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.5);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

/* --- Gradient text --- */
.gradient-text {
  background: linear-gradient(135deg, var(--blue-electric) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Section labels --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-electric);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--blue-electric);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 6px 30px rgba(59,130,246,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: var(--bg-card);
  color: var(--text-primary);
  border-color: var(--blue-electric);
}

.btn-outline {
  background: transparent;
  color: var(--blue-electric);
  border: 1.5px solid var(--blue-electric);
}
.btn-outline:hover {
  background: var(--blue-electric);
  color: #ffffff;
}

.btn-large {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(12, 18, 34, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

html:not(.dark) .nav {
  background: rgba(248, 250, 252, 0.9);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.wordmark {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.wordmark-ai { color: var(--blue-electric); }
.wordmark-dash { color: var(--text-muted); }
.wordmark-workshops { color: var(--text-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--text-primary); background: var(--bg-card); }

.nav-cta {
  background: var(--blue-electric) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: #2563eb !important; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.theme-toggle:hover { color: var(--text-primary); border-color: var(--blue-electric); }
.theme-toggle svg { width: 16px; height: 16px; }

html.dark .icon-sun { display: block; }
html.dark .icon-moon { display: none; }
html:not(.dark) .icon-sun { display: none; }
html:not(.dark) .icon-moon { display: block; }

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
}
.hamburger svg { width: 18px; height: 18px; }

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  z-index: -1;
}

html:not(.dark) .hero-bg-grid { opacity: 0.25; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--blue-electric);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero-headline {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: 0 auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue-electric);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* =============================================
   PROBLEM
   ============================================= */
.problem { background: var(--bg-secondary); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.problem-card:hover {
  border-color: var(--blue-electric);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(59,130,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-electric);
  margin-bottom: 20px;
}
.problem-icon svg { width: 22px; height: 22px; }

.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.problem-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   METHOD
   ============================================= */
.method-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-bottom: 48px;
}

.method-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 32px;
  position: relative;
  padding-bottom: 48px;
}

.method-step:last-child { padding-bottom: 0; }

.step-connector {
  position: absolute;
  left: 31px;
  top: 64px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-electric), transparent);
  opacity: 0.3;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  border: 3px solid var(--blue-electric);
  box-shadow: var(--shadow-blue);
  z-index: 1;
}

.step-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.step-content:hover {
  border-color: rgba(59,130,246,0.4);
  box-shadow: var(--shadow-md);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(59,130,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-electric);
  flex-shrink: 0;
}
.step-icon svg { width: 20px; height: 20px; }

.step-meta { display: flex; flex-direction: column; gap: 4px; }

.step-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-electric);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.step-duration {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.step-duration svg { width: 12px; height: 12px; }

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.step-outcomes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-outcomes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.step-outcomes li svg {
  width: 14px;
  height: 14px;
  color: var(--blue-electric);
  flex-shrink: 0;
}

.method-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}
.method-result svg { width: 20px; height: 20px; color: var(--blue-electric); }

/* =============================================
   PACKAGES
   ============================================= */
.packages { background: var(--bg-secondary); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all var(--transition);
}
.package-card:hover {
  border-color: rgba(59,130,246,0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.package-featured {
  border-color: var(--blue-electric);
  box-shadow: var(--shadow-blue);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-electric);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.package-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(59,130,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-electric);
}
.package-icon svg { width: 18px; height: 18px; }

.package-sessions {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.package-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.package-price {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.price-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.package-features li svg {
  width: 14px;
  height: 14px;
  color: var(--blue-electric);
  flex-shrink: 0;
}

.packages-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-secondary);
}
.packages-note svg { width: 16px; height: 16px; color: var(--blue-electric); flex-shrink: 0; }
.packages-note a { color: var(--blue-electric); font-weight: 600; }
.packages-note a:hover { text-decoration: underline; }

/* =============================================
   INDUSTRIES
   ============================================= */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.industry-card:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.industry-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(59,130,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-electric);
  margin-bottom: 18px;
}
.industry-icon svg { width: 22px; height: 22px; }

.industry-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.industry-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.industry-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-electric);
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.15);
  padding: 3px 10px;
  border-radius: 100px;
}

/* =============================================
   RESULTS
   ============================================= */
.results { background: var(--bg-secondary); }

.results-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.results-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.result-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(59,130,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-electric);
  flex-shrink: 0;
  margin-top: 2px;
}
.result-icon svg { width: 18px; height: 18px; }

.results-list strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.results-list p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.testimonial-placeholder {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-card-secondary { opacity: 0.75; }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testimonial-stars svg {
  width: 14px;
  height: 14px;
  color: #f59e0b;
  fill: #f59e0b;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border-strong);
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* =============================================
   FUNDING
   ============================================= */
.funding {
  background: var(--bg-primary);
  text-align: center;
}

.funding-inner { max-width: 900px; margin: 0 auto; }

.funding-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  color: var(--blue-electric);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.funding-badge svg { width: 14px; height: 14px; }

.funding .section-subtitle { margin-left: auto; margin-right: auto; }

.funding-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  text-align: left;
}

.funding-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.funding-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.funding-card-highlight {
  border-color: var(--blue-electric);
  background: rgba(59,130,246,0.04);
}

.funding-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(59,130,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-electric);
  margin-bottom: 16px;
}
.funding-card-icon svg { width: 22px; height: 22px; }

.funding-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-electric);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.funding-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.funding-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.funding-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.funding-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.funding-card li svg { width: 14px; height: 14px; color: var(--blue-electric); flex-shrink: 0; }

.funding-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: left;
}
.funding-note svg { width: 16px; height: 16px; color: var(--text-muted); flex-shrink: 0; margin-top: 2px; }
.funding-note p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--bg-secondary); }

.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bg-card);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-bottom: 16px;
  overflow: hidden;
}
.about-photo-placeholder svg { width: 80px; height: 80px; }

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}
.credential svg { width: 14px; height: 14px; color: var(--blue-electric); }

.about-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-electric);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-electric);
  border: 1.5px solid rgba(59,130,246,0.3);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.about-link svg { width: 14px; height: 14px; }
.about-link:hover { background: rgba(59,130,246,0.08); border-color: var(--blue-electric); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { background: var(--bg-primary); }

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.cta-bg-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.cta-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
  text-align: left;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.cta-feature svg { width: 16px; height: 16px; color: var(--blue-electric); flex-shrink: 0; }

.cta-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}
.cta-note a { color: var(--blue-electric); }
.cta-note a:hover { text-decoration: underline; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding-top: 64px;
  padding-bottom: 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a:hover {
  color: var(--blue-electric);
  border-color: var(--blue-electric);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-links-group h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-links-group a:hover { color: var(--blue-electric); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--blue-electric); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .results-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-wrap { display: flex; gap: 20px; align-items: center; }
  .about-photo-placeholder { width: 120px; aspect-ratio: 1; margin-bottom: 0; flex-shrink: 0; }
  .about-credentials { flex-direction: row; flex-wrap: wrap; }
  .funding-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
    z-index: 99;
  }
  .nav-links.open a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .hamburger { display: flex; }
  .stats-bar { padding: 16px 24px; gap: 0; }
  .stat { padding: 0 16px; }
  .stat-divider { height: 30px; }
  .stat-value { font-size: 20px; }
  .method-step { grid-template-columns: 48px 1fr; gap: 0 16px; }
  .step-number { width: 48px; height: 48px; font-size: 12px; }
  .step-connector { left: 23px; top: 48px; }
  .packages-grid { grid-template-columns: 1fr; }
  .cta-features { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===== USE CASE PAGES ===== */
.uc-hero {
  padding: 80px 0 60px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.uc-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.uc-back:hover { color: var(--accent); }
.uc-back svg { width: 16px; height: 16px; }

.uc-hero-inner { max-width: 760px; }

.uc-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 12px 0 20px;
}

.uc-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}

.uc-body {
  padding: 60px 0;
}

.uc-content {
  max-width: 760px;
}

.uc-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.uc-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}

.uc-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.uc-content ul, .uc-content ol {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.uc-content li { margin-bottom: 0.5rem; }

.uc-content strong { color: var(--text); }

.uc-cta {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.uc-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.uc-cta-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text);
  margin: 12px 0 16px;
  letter-spacing: -0.03em;
}

.uc-cta-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.uc-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Use-case list page */
.uc-list-hero {
  padding: 80px 0 60px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.uc-list-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 12px 0 16px;
}

.uc-list-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.6;
}

.uc-list-body { padding: 60px 0; }

.uc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.uc-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.2s, transform 0.2s;
}
.uc-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.uc-card-inner { padding: 28px; }

.uc-card-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-bottom: 16px;
}

.uc-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.uc-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.uc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}
.uc-card-link svg { width: 14px; height: 14px; }

.uc-list-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.uc-list-cta p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 8px;
}

.uc-list-cta .btn { display: inline-flex; }

/* ===== USE CASES PREVIEW (homepage) ===== */
.use-cases-preview { background: var(--bg-card); }

.uc-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 48px 0 40px;
}

.uc-preview-card {
  display: block;
  text-decoration: none;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.2s, transform 0.2s;
}
.uc-preview-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.uc-preview-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  margin-bottom: 14px;
}

.uc-preview-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.uc-preview-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.uc-preview-cta {
  text-align: center;
}


/* ===== LEGAL PAGES ===== */
.legal-page {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.2;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.legal-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content strong {
  color: var(--text);
  font-weight: 600;
}

.legal-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

.legal-content em {
  color: var(--text-muted);
  font-style: italic;
}
