/* TAKON.ai Design System */
:root {
  --navy: #003A66;
  --navy-dark: #00284d;
  --orange: #FF7D2D;
  --orange-hover: #e66b1f;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-50: #F1F5F9;
  --gray-100: #E2E8F0;
  --gray-200: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --border: #E2E8F0;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--gray-800);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: inline-block;
}
.logo-takon { color: #003A66; }
.logo-ai { color: #FF7D2D; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-hover); }
.nav-cta:active { transform: scale(0.98); }

/* ── HERO ── */
.hero {
  padding: 96px 32px 80px;
  background: var(--off-white);
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,125,45,0.1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 20px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(255,125,45,0.35);
}
.btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 6px 20px rgba(255,125,45,0.45);
  transform: translateY(-1px);
}
.btn-primary:active { transform: scale(0.98) translateY(0); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 14px 8px;
  transition: color 0.15s;
}
.btn-secondary:hover { color: var(--orange); }
.btn-secondary svg { transition: transform 0.15s; }
.btn-secondary:hover svg { transform: translateX(4px); }

/* ── LOGOS ── */
.logos { padding: 48px 32px; border-bottom: 1px solid var(--border); }
.logos-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  margin-bottom: 32px;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-badge-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: -0.01em;
}

/* ── PROBLEM ── */
.problem { padding: 96px 32px; }
.problem-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}
.problem-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 16px;
}
.problem-header p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.65;
}
.problem-transition {
  text-align: center;
  max-width: 540px;
  margin: 64px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.problem-transition p {
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ── FEATURES (WHY TAKON.ai) ── */
.features { padding: 96px 32px; background: var(--off-white); }
.features-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.features-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 16px;
}
.features-header p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.65;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,58,102,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.how { padding: 96px 32px; }
.how-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 64px;
}
.how-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 16px;
}
.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.how-step {
  flex: 1;
  padding: 0 40px;
  text-align: center;
  position: relative;
}
.how-step::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 28px;
  width: 36px;
  height: 2px;
  background: var(--orange);
}
.how-step:last-child::after { display: none; }
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}
.how-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.how-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── SAMPLE DELIVERY ── */
.sample { padding: 96px 32px; background: var(--off-white); }
.sample-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 40px;
}
.sample-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 12px;
}
.sample-header p { font-size: 16px; color: var(--gray-500); }
.sample-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.sample-tab {
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.15s;
}
.sample-tab:hover { border-color: var(--orange); color: var(--orange); }
.sample-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.sample-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.candidate-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.candidate-avatar {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.candidate-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.candidate-info p { font-size: 14px; color: var(--gray-500); }
.candidate-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
.candidate-detail-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 96px;
  padding-top: 2px;
}
.candidate-detail-value {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
}
.candidate-fit {
  background: var(--off-white);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 4px 0 16px;
}
.candidate-fit-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.candidate-fit p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}
.candidate-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}
.sample-note {
  text-align: center;
  max-width: 480px;
  margin: 28px auto 0;
  font-size: 14px;
  color: var(--gray-400);
  font-style: italic;
}

/* ── STORY ── */
.story { padding: 96px 32px; }
.story-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.story-main h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 20px;
}
.story-main p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
}
.story-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}
.story-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}
.story-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--off-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.story-badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.story-badge-text span { font-size: 13px; color: var(--gray-500); }

/* ── COMPARE ── */
.compare { padding: 96px 32px; background: var(--off-white); }
.compare-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 56px;
}
.compare-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 12px;
}
.compare-header p { font-size: 16px; color: var(--gray-500); }
.compare-table {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table th {
  padding: 18px 20px;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  border-bottom: 2px solid var(--border);
  background: var(--off-white);
}
.compare-table th.col-takon {
  color: var(--navy);
  background: rgba(0,58,102,0.06);
}
.compare-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: top;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.col-takon {
  background: rgba(0,58,102,0.03);
  color: var(--navy);
  font-weight: 500;
}
.compare-check { color: var(--orange); font-weight: 700; }
.compare-dash { color: var(--gray-300); }

/* ── PRICING ── */
.pricing { padding: 96px 32px; }
.pricing-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 56px;
}
.pricing-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 12px;
}
.pricing-header p { font-size: 16px; color: var(--gray-500); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 40px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--navy);
  box-shadow: 0 8px 32px rgba(0,58,102,0.12);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
}
.pricing-period { font-size: 16px; color: var(--gray-400); font-weight: 400; }
.pricing-sub { font-size: 13px; color: var(--gray-400); margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.5;
}
.pricing-features li svg { flex-shrink: 0; margin-top: 2px; }
.pricing-cta {
  display: block;
  width: 100%;
  padding: 13px 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s;
}
.pricing-cta:hover { background: var(--navy-dark); }
.pricing-card.featured .pricing-cta { background: var(--orange); }
.pricing-card.featured .pricing-cta:hover { background: var(--orange-hover); }
.pricing-included {
  max-width: 600px;
  margin: 0 auto 24px;
  font-size: 14px;
  color: rgba(0,58,102,0.6);
  text-align: center;
  font-style: italic;
}
.pricing-savings {
  max-width: 440px;
  margin: 0 auto 48px;
  padding: 18px 24px;
  background: rgba(0,58,102,0.05);
  border-radius: 12px;
  border: 1px solid rgba(0,58,102,0.1);
}
.pricing-savings p {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  text-align: center;
}
.pricing-savings strong { color: var(--orange); font-weight: 700; }

/* ── FAQ ── */
.faq { max-width: 700px; margin: 0 auto; }
.faq h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 16px;
  font-weight: 400;
  transition: transform 0.2s, background 0.15s, color 0.15s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: var(--white);
}
.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── FINAL CTA ── */
.cta-section { padding: 96px 32px; background: var(--navy); text-align: center; }
.cta-section h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cta-section .btn-primary {
  font-size: 16px;
  padding: 16px 32px;
  box-shadow: 0 4px 20px rgba(255,125,45,0.5);
}

/* ── FOOTER ── */
.footer {
  padding: 56px 32px 32px;
  background: var(--gray-900);
  color: var(--gray-400);
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 48px;
}
.footer-logo {
  margin-bottom: 8px;
}
.footer-logo .logo-text {
  font-size: 20px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.footer-vet {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-400);
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 6px;
}
.footer-links { display: flex; gap: 64px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-600);
}

/* ── LEGAL MODAL ── */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.legal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
}
.legal-panel {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modal-in 0.2s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--off-white);
}
.legal-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.legal-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.legal-close:hover { background: var(--gray-50); color: var(--navy); border-color: var(--gray-300); }
.legal-close:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.legal-body {
  overflow-y: auto;
  padding: 0;
  flex: 1;
}

/* Legal document typography */
.legal-doc {
  padding: 32px 36px 40px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-700);
}
.legal-doc p { margin-bottom: 16px; }
.legal-doc h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin: 28px 0 10px;
}
.legal-doc ul {
  margin: 8px 0 16px 20px;
}
.legal-doc ul li { margin-bottom: 6px; }
.legal-doc strong { color: var(--gray-800); font-weight: 600; }
.legal-doc a { color: var(--orange); text-decoration: none; }
.legal-doc a:hover { text-decoration: underline; }
.legal-effective {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 20px !important;
}

@media (max-width: 600px) {
  .legal-modal { padding: 0; align-items: flex-end; }
  .legal-panel {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
  }
  .legal-doc { padding: 24px 24px 36px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .container { padding: 0 20px; }
  .hero, .logos { padding: 64px 20px; }
  .problem, .features, .how, .sample, .story, .compare, .pricing, .cta-section { padding: 64px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; align-items: center; gap: 40px; }
  .how-step::after { display: none; }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .compare-table { overflow-x: auto; display: block; }
  .compare-table table { min-width: 600px; }
  .footer-top { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── CREDIBILITY ── */
.credibility { padding: 80px 32px; background: var(--navy); text-align: center; }
.credibility-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.credibility h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.credibility-body {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}
.credibility-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}
.cred-badge svg { color: var(--orange); }
.founding-note {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  background: rgba(255,125,45,0.15);
  border: 1px solid rgba(255,125,45,0.3);
  padding: 6px 16px;
  border-radius: 100px;
}

/* ── WORKFLOW ── */
.workflow { padding: 96px 32px; }
.workflow-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}
.workflow-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 14px;
}
.workflow-header p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.65;
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.workflow-step {
  position: relative;
  text-align: center;
}
.workflow-step-icon {
  width: 72px;
  height: 72px;
  background: rgba(0,58,102,0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  border: 1px solid var(--border);
}
.workflow-step-num {
  position: absolute;
  top: -8px;
  right: calc(50% - 44px);
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.workflow-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.workflow-step-sub {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
  margin-bottom: 16px;
}
.workflow-step ul {
  list-style: none;
  text-align: left;
}
.workflow-step ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 8px;
  line-height: 1.5;
}
.workflow-step ul li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── COST COMPARE ── */
.cost-compare { padding: 96px 32px; background: var(--off-white); }
.cost-compare-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.cost-compare-header h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  margin-bottom: 12px;
}
.cost-compare-header p { font-size: 16px; color: var(--gray-500); }
.cost-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.cost-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.cost-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }
.cost-card.highlight {
  border-color: var(--orange);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(255,125,45,0.15);
}
.cost-card-icon { font-size: 36px; margin-bottom: 16px; }
.cost-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.cost-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.cost-price-unit { font-size: 14px; font-weight: 400; color: var(--gray-400); }
.cost-per-search {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
}
.cost-card.highlight .cost-per-search {
  background: rgba(255,125,45,0.1);
  color: var(--orange);
}
.cost-card-items { list-style: none; text-align: left; }
.cost-card-items li {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}
.cost-card-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-300);
}
.cost-card.highlight .cost-card-items li::before { background: var(--orange); }
.cost-card.highlight .cost-card-title { color: var(--orange); }

/* ── WHO USES ── */
.who-uses { padding: 96px 32px; }
.who-uses-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.who-uses-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 12px;
}
.who-uses-header p { font-size: 16px; color: var(--gray-500); }
.who-uses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.who-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.who-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,58,102,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.who-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.who-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ── OPERATORS ── */
.operators { padding: 96px 32px; background: var(--off-white); }
.operators-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.operators-main h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  margin-bottom: 20px;
}
.operators-main p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}
.operators-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}
.operators-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}
.operators-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.operators-badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.operators-badge-text span { font-size: 13px; color: var(--gray-500); }

/* ── PIPELINE TABLE (sample delivery upgrade) ── */
.pipeline-table-wrap { max-width: 800px; margin: 0 auto; }
.pipeline-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.pipeline-table-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.pipeline-table-meta { font-size: 13px; color: var(--gray-400); }
.pipeline-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.pipeline-table th {
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  text-align: left;
  white-space: nowrap;
}
.pipeline-table td {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.pipeline-table tr:last-child td { border-bottom: none; }
.pipeline-table tr:hover td { background: rgba(0,58,102,0.02); }
.td-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
}
.td-company { color: var(--gray-500); font-size: 12px; }
.td-fit {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
  max-width: 200px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
}
.badge-available {
  background: rgba(0,200,100,0.1);
  color: #009944;
}
.badge-available svg { color: #009944; }
.sample-tabs-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.sample-tab-btn {
  padding: 8px 16px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.sample-tab-btn:hover { background: var(--gray-50); color: var(--navy); }
.sample-tab-btn.active { background: var(--navy); color: var(--white); }
.pipeline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.sample-review-note {
  text-align: center;
  max-width: 560px;
  margin: 24px auto 0;
  font-size: 13px;
  color: var(--gray-400);
  font-style: italic;
}

@media (max-width: 900px) {
  .workflow-steps { grid-template-columns: 1fr; max-width: 400px; }
  .cost-cards { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .who-uses-grid { grid-template-columns: 1fr 1fr; }
  .operators-inner { grid-template-columns: 1fr; gap: 40px; }
  .credibility-badges { gap: 16px; }
  .pipeline-table-wrap { overflow-x: auto; }
  .pipeline-table { min-width: 700px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .hero-actions { flex-direction: column; }
  .btn-primary { width: 100%; justify-content: center; }
  .logos-row { gap: 24px; }
  .sample-selector { gap: 6px; }
  .sample-card { padding: 24px; }
  .pricing-card { padding: 28px 24px; }
  .who-uses-grid { grid-template-columns: 1fr; }
  .credibility-badges { flex-direction: column; }
}