/* Krafden — Platform Styles */
:root {
  --navy: #1B3A5C;
  --navy-dark: #122840;
  --amber: #D4913B;
  --amber-light: #E8A54E;
  --warm-bg: #FAF8F5;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --green: #2E7D32;
  --green-light: #E8F5E9;
  --red: #C62828;
  --red-light: #FFEBEE;
  --radius: 12px;
  --shadow: 0 1px 4px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--warm-bg);
  color: var(--gray-800);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3 {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
}

main { flex: 1; padding-top: 82px; }

/* ── Navbar ── */
.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(27,58,92,0.08);
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.navbar .btn.btn-sm { color: var(--navy); border: 1.5px solid rgba(27,58,92,0.28); font-size: 14px; }
.navbar .btn.btn-sm:hover { border-color: var(--navy); }
.navbar .btn.btn-sm.btn-accent { color: var(--white); border: none; }
.nav-brand { text-decoration: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a { color: rgba(27,58,92,0.65); text-decoration: none; font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--amber); }
.nav-user { color: rgba(27,58,92,0.6); font-size: 13px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(27,58,92,0.25); }
.btn-accent { background: var(--amber); color: var(--white); }
.btn-accent:hover { background: #c07f2d; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(212,145,59,0.3); }
.btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn:disabled { opacity: 0.5; cursor: default; transform: none; box-shadow: none; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid var(--gray-100);
}
.card:hover { box-shadow: var(--shadow-lg); }
.card-body { padding: 24px; }
.card-header {
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
}

/* ── Full-bleed sections under navbar ── */
.hero, .course-hero, .pricing-hero, .inst-hero, .auth-hero-bg, .htp-hero, .eqf-hero, .courses-hero {
  margin-top: -82px;
}

/* ── Hero (Index) ── */
.hero {
  background: linear-gradient(135deg, #091a30 0%, var(--navy) 40%, #264966 100%);
  color: var(--white);
  padding: 106px 32px 60px;
  margin-top: -82px;
  text-align: center;
  position: relative;
}
.hero h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; margin-bottom: 12px; letter-spacing: -0.5px; line-height: 1.1; }
.hero p { font-size: 17px; opacity: 0.8; max-width: 900px; margin: 0 auto 20px; line-height: 1.7; }

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.page-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section { padding: 48px 0; }

/* ── Course Grid ── */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.course-card:hover { transform: translateY(-3px); }
.course-card .card-body h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.course-card .meta {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
}
.course-card .description {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.course-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--amber);
}

/* ── Course Detail ── */
.course-hero {
  background: var(--navy);
  color: var(--white);
  padding: 96px 32px 56px;
}
.course-hero h1 { font-size: 32px; max-width: 800px; line-height: 1.2; }
.course-hero .meta { font-size: 14px; opacity: 0.75; margin-top: 16px; display: flex; gap: 24px; flex-wrap: wrap; }

.module-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.module-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: all 0.2s;
}
.module-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.module-item .module-info { display: flex; align-items: center; gap: 16px; flex: 1; }
.module-number {
  width: 36px; height: 36px;
  background: var(--gray-100);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.module-number.completed { background: var(--green); color: var(--white); }
.module-title { font-size: 15px; font-weight: 600; color: var(--gray-800); }
.module-meta { font-size: 12px; color: var(--gray-400); margin-top: 3px; }

/* ── Dashboard ── */
.dash-header { padding: 32px 0 16px; }
.dash-header h1 { font-size: 24px; color: var(--navy); }
.progress-bar { height: 10px; background: var(--gray-200); border-radius: 5px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--amber), var(--amber-light)); border-radius: 5px; transition: width 0.4s; }

/* ── Auth Forms ── */
.auth-container {
  max-width: 460px;
  margin: 72px auto;
  padding: 0 24px;
}
.auth-container h1 { font-size: 26px; color: var(--navy); margin-bottom: 24px; text-align: center; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,58,92,0.1); }
.error-msg {
  background: var(--red-light);
  color: var(--red);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 16px;
}
.auth-footer { text-align: center; margin-top: 16px; font-size: 14px; color: var(--gray-500); }
.auth-footer a { color: var(--navy); font-weight: 600; }

/* ── Player ── */
.player-container {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--white);
  min-height: calc(100vh - 82px);
  display: flex;
  flex-direction: column;
}
.player-header {
  background: var(--navy);
  color: var(--white);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.player-header h2 { font-size: 15px; font-weight: 600; }
.player-phase {
  font-size: 12px;
  background: rgba(255,255,255,0.15);
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 500;
}
.player-progress { height: 6px; background: var(--navy-dark); }
.player-progress-fill { height: 100%; background: linear-gradient(90deg, var(--amber), var(--amber-light)); border-radius: 0 3px 3px 0; transition: width 0.4s; }

.slide-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--gray-100);
  flex: 1;
}
.slide-container img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: contain;
}
.slide-container .slide-html {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.slide-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.slide-counter { font-size: 13px; color: var(--gray-500); }

/* Slide fullscreen */
#slides-section:fullscreen {
  background: #111;
  display: flex;
  flex-direction: column;
}
#slides-section:fullscreen .slide-container {
  flex: 1;
  padding-top: 0;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
#slides-section:fullscreen .slide-container img {
  position: static;
  max-width: 100%;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
#slides-section:fullscreen .slide-controls {
  background: rgba(0,0,0,0.8);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 24px;
}
#slides-section:fullscreen .slide-counter {
  color: rgba(255,255,255,0.6);
}

/* Quiz in player */
.quiz-section { display: none; padding: 36px 32px; flex: 1; max-width: 720px; margin: 0 auto; }
.quiz-section.active { display: block; }
.quiz-section h2 { font-size: 14px; font-weight: 700; color: var(--amber); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.quiz-intro { font-size: 14px; color: var(--gray-400); margin-bottom: 28px; }

.q-number { font-size: 12px; color: var(--amber); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.q-text { font-size: 18px; font-weight: 600; color: var(--navy); line-height: 1.5; margin-bottom: 20px; }
.question-block { display: none; }
.question-block.active { display: block; }

.options { display: flex; flex-direction: column; gap: 12px; }
.option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}
.option:hover { border-color: var(--navy); background: #f0f4f8; transform: translateX(2px); }
.option.selected { border-color: var(--navy); background: #e8eef5; }
.option.correct { border-color: var(--green); background: var(--green-light); }
.option.incorrect { border-color: var(--red); background: var(--red-light); }
.option-letter {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray-100); color: var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
  transition: all 0.2s;
}
.option.selected .option-letter { background: var(--navy); color: var(--white); }
.option.correct .option-letter { background: var(--green); color: var(--white); }
.option.incorrect .option-letter { background: var(--red); color: var(--white); }
.option-text { font-size: 15px; color: var(--gray-700); line-height: 1.5; }

.feedback {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.5;
}
.feedback.show { display: block; }
.feedback.correct { background: var(--green-light); border-left: 4px solid var(--green); color: #1b5e20; }
.feedback.incorrect { background: var(--red-light); border-left: 4px solid var(--red); color: #7f0000; }

.quiz-footer {
  padding: 14px 24px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quiz-counter { font-size: 13px; color: var(--gray-500); }

/* Results */
.results-section {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 32px;
  text-align: center;
  flex: 1;
}
.results-section.active { display: flex; }
.score-circle {
  width: 130px; height: 130px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 800; color: var(--white);
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.results-section h2 { font-size: 24px; color: var(--navy); margin-bottom: 8px; }
.results-section p { color: var(--gray-500); font-size: 15px; margin-bottom: 8px; max-width: 500px; }
.results-detail { font-size: 13px; color: var(--gray-400); }
.results-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 40px 32px;
  font-size: 13px;
  color: var(--gray-500);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  margin-top: auto;
}
.footer-tagline {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 6px;
}
.footer a { color: var(--gray-500); text-decoration: none; transition: color 0.2s; }
.footer a:hover { color: var(--navy); }
.footer-sep { margin: 0 8px; color: var(--gray-300); }

/* ── Legal Pages ── */
.legal-content h2 {
  font-size: 16px;
  color: var(--navy);
  margin: 24px 0 8px;
  font-weight: 600;
}
.legal-content p, .legal-content li {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-content code {
  background: var(--gray-100);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 13px;
}

/* ── Flash Messages ── */
.flash {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 16px;
}
.flash-error { background: var(--red-light); color: var(--red); }
.flash-success { background: var(--green-light); color: var(--green); }
.flash-info { background: #E3F2FD; color: #1565C0; }

/* ── Hamburger ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Utilities ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* ── Trust & Engagement ── */
.trust-line {
  font-size: 13px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-line svg { flex-shrink: 0; }

.eqf-badge {
  position: relative;
  cursor: help;
  border-bottom: 1px dotted var(--gray-400);
}
.eqf-badge:hover::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

/* Celebration card */
.celebration-card {
  background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 50%, #E8F5E9 100%);
  border: 2px solid var(--green);
  border-radius: 16px;
  text-align: center;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(46,125,50,0.08);
}
.celebration-card h2 {
  color: var(--green);
  margin-bottom: 8px;
}

/* Auth trust */
.auth-trust {
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.auth-trust p {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 4px;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 48px 24px;
}
.empty-state p { font-size: 16px; color: var(--gray-500); margin-bottom: 16px; }

/* Hero subtitle */
.hero-sub {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-style: normal;
  font-size: 20px;
  opacity: 0.75;
  margin-bottom: 24px;
  letter-spacing: -0.2px;
}

/* Course card improvements */
.course-card .card-body { display: flex; flex-direction: column; }
.course-card .description { flex: 1; }
.course-hook {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}
.course-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid var(--gray-100);
}

/* Price context */
.price-context {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 400;
}

/* Warm welcome banner */
.welcome-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #264966 50%, #1a4060 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}
.welcome-banner h1 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 6px;
}
.welcome-banner p {
  opacity: 0.8;
  font-size: 15px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 16px 24px;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a, .nav-links .nav-user { font-size: 15px; }

  .hero { padding: 100px 20px 48px; }
  .hero h1 { font-size: clamp(26px, 5vw, 36px); }
  .hero p { font-size: 15px; }

  .container { padding: 0 16px; }
  .section { padding: 32px 0; }

  .course-grid { grid-template-columns: 1fr; gap: 16px; }

  .course-hero { padding: 100px 16px 40px; }
  .course-hero h1 { font-size: 24px; }
  .course-hero .meta { flex-wrap: wrap; gap: 8px 16px; }

  .module-item { padding: 14px 16px; flex-wrap: wrap; gap: 8px; }
  .module-title { font-size: 14px; }

  .auth-container { margin: 40px auto; }

  .player-header { padding: 12px 16px; flex-wrap: wrap; gap: 6px; }
  .player-header h2 { font-size: 13px; }
  .slide-controls { padding: 10px 16px; }
  .quiz-section { padding: 24px 16px; }
  .q-text { font-size: 16px; }
  .option { padding: 12px 14px; }
  .results-section { padding: 36px 20px; }

  .dash-header { padding: 20px 0 12px; }
  .dash-header h1 { font-size: 20px; }
  .flex-between { flex-wrap: wrap; gap: 8px; }

  .welcome-banner { padding: 24px; border-radius: 12px; }
  .welcome-banner h1 { font-size: 22px; }

  .celebration-card { padding: 24px 16px; }

  /* Admin tables scroll */
  .card table { display: block; overflow-x: auto; }

  /* Admin metric grid */
  .admin-metrics { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Landing page ──────────────────────────────────────────────── */

.lp-hero {
  background: var(--navy);
  color: #fff;
  padding: 80px 24px 72px;
  text-align: center;
}

.lp-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.lp-headline {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 20px;
}

.lp-subhead {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 36px;
  font-weight: 400;
}

.lp-capture-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}

.lp-capture-form-compact {
  margin-top: 28px;
  margin-bottom: 8px;
}

.lp-email-input {
  flex: 1 1 240px;
  min-width: 220px;
  padding: 13px 16px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  color: var(--gray-800);
  background: #fff;
}

.lp-sector-select {
  flex: 1 1 180px;
  min-width: 160px;
  padding: 13px 14px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  color: var(--gray-700);
  background: #fff;
  cursor: pointer;
}

.lp-cta-btn {
  flex-shrink: 0;
  padding: 13px 28px;
  font-size: 15px;
  border-radius: 10px;
}

.lp-microcopy {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.lp-success-banner {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 16px 24px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}

.lp-error-banner {
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.3);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 14px;
  color: #fca5a5;
}

.lp-section {
  padding: 64px 24px;
}

.lp-section-light {
  background: var(--gray-50);
}

.lp-container {
  max-width: 800px;
  margin: 0 auto;
}

.lp-problem-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  text-align: center;
  font-style: italic;
}

.lp-what-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-700);
  text-align: center;
  margin-bottom: 40px;
}

.lp-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-pill {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.lp-pill-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.lp-pill-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.lp-pill-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

.lp-section-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  margin-bottom: 28px;
}

.lp-trade-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.lp-trade-chip {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

.lp-bottom-cta {
  text-align: center;
}

.lp-for-section .lp-microcopy {
  color: var(--gray-400);
}

@media (max-width: 640px) {
  .lp-headline { font-size: 26px; }
  .lp-subhead { font-size: 15px; }
  .lp-hero { padding: 56px 20px 52px; }
  .lp-pills { grid-template-columns: 1fr; }
  .lp-email-input, .lp-sector-select { min-width: 100%; }
}
