:root {
  --background: #ffffff;
  --foreground: #030213;
  --card: #ffffff;
  --card-foreground: #030213;
  --primary: #030213;
  --primary-foreground: #ffffff;
  --secondary: #f0f0f5;
  --secondary-foreground: #030213;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --accent: #e9ebef;
  --border: rgba(0, 0, 0, 0.1);
  --destructive: #d4183d;
  --success: hsl(150, 55%, 45%);

  --surface: #f9fafb;
  --surface-card: #ffffff;
  --text-secondary: #4b5563;

  --container: 1120px;
  --radius: 0.625rem;
  --radius-lg: 0.875rem;

  --shadow-sm: 0 2px 12px hsl(220 15% 15% / 0.06);
  --shadow-md: 0 8px 24px hsl(220 15% 15% / 0.08);
  --shadow-lg: 0 16px 48px hsl(220 15% 15% / 0.12);
}

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

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

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--foreground);
  background: var(--surface);
  line-height: 1.5;
  min-height: 100vh;
  padding-bottom: 72px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 16px;
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #9333ea);
  color: #fff;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 20px;
  height: 20px;
}

.logo-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--foreground);
  letter-spacing: -0.01em;
}

.nav-links {
  display: none;
  gap: 32px;
  justify-content: center;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
  padding: 10px 0;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--muted-foreground);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-cta a {
  flex: 0 0 auto;
  min-width: max-content;
  text-align: center;
  white-space: nowrap;
}

.nav-cta .btn-ghost {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.875rem;
  color: var(--foreground);
}

.nav-cta .btn-ghost:hover {
  background: var(--surface);
}

.nav-cta .btn-primary {
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.875rem;
}

/* ---- Buttons ---- */
.btn-primary,
.btn-outline,
.btn-ghost,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1.25rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.btn-primary:hover {
  background: #1a1a2e;
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.btn-outline:hover {
  background: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--muted-foreground);
}

.btn-ghost:hover {
  color: var(--foreground);
  background: var(--accent);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background: #e4e4ea;
}

.btn-lg {
  padding: 11px 20px;
  font-size: 0.9375rem;
}

.btn-full {
  width: 100%;
}

.icon-arrow,
.icon-play {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn-primary:hover .icon-arrow {
  transform: translateX(2px);
}

/* ---- Hero ---- */
.hero {
  padding: 80px 0 48px;
  background: var(--surface);
}

.hero .container {
  max-width: 768px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: #9333ea;
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

.text-gradient {
  background: linear-gradient(to right, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  margin-top: 16px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--muted-foreground);
  max-width: 640px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.hero-actions a {
  width: 100%;
}

.hero-sub {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ---- Hero Stats Strip ---- */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stat .text-gradient {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.hero-stat span:last-child {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.hero-preview {
  margin-top: 48px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-card);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-preview-inner {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eff6ff, #f5f3ff);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ---- App Mockup ---- */
.mockup {
  display: flex;
  aspect-ratio: 16 / 10;
  height: auto;
  max-height: 500px;
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  font-size: 13px;
  text-align: left;
}

.mockup-sidebar {
  width: 200px;
  background: var(--surface-card);
  border-right: 1px solid var(--border);
  display: none;
  flex-direction: column;
  padding: 16px 12px;
  flex-shrink: 0;
}

.mockup-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}

.mockup-brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, #2563eb, #9333ea);
  flex-shrink: 0;
}

.mockup-brand-icon svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.mockup-brand-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--foreground);
}

.mockup-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: default;
}

.mockup-nav-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.mockup-nav-active {
  background: #eff6ff;
  color: #1d4ed8;
}

.mockup-upgrade {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #9333ea);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

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

.mockup-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-card);
}

.mockup-topbar h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

.mockup-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #9333ea);
}

.mockup-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.mockup-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.mockup-card-lg {
  flex: 1;
}

.mockup-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 10px;
}

.mockup-textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 80px;
}

.mockup-text-line {
  display: block;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
}

.mockup-btn-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.mockup-btn {
  padding: 7px 20px;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
}

.mockup-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mockup-stat {
  text-align: center;
  padding: 14px 10px;
}

.mockup-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
  white-space: nowrap;
}

.mockup-stat-green {
  color: hsl(150, 55%, 45%);
}

.mockup-stat-label {
  font-size: 11px;
  color: var(--muted-foreground);
  margin-top: 4px;
}

@media (min-width: 640px) {
  .mockup-sidebar {
    display: flex;
  }
}

/* ---- Trust Bar ---- */
.trust-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface-card);
}

.trust-label {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.trust-logos span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted-foreground);
  opacity: 0.5;
}

/* ---- AI Showcase ---- */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.showcase-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.showcase-before {
  border-left: 4px solid var(--destructive);
}

.showcase-after {
  border-left: 4px solid var(--success);
}

.showcase-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-weak {
  background: hsl(0, 70%, 95%);
  color: hsl(0, 60%, 45%);
}

.badge-strong {
  background: hsl(150, 60%, 92%);
  color: hsl(150, 55%, 35%);
}

.showcase-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 12px;
}

.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.showcase-list li {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.showcase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.showcase-before .showcase-list li::before {
  background: var(--destructive);
  opacity: 0.4;
}

.showcase-after .showcase-list li::before {
  background: var(--success);
}

/* ---- Sections ---- */
.section {
  padding: 40px 0;
}

.section-surface {
  background: var(--surface);
}

.section-card {
  background: var(--surface-card);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.025em;
}

.section-header p {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--muted-foreground);
}

/* ---- How It Works ---- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  margin: 0 auto 16px;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.step-icon-1 { background: linear-gradient(135deg, #2563eb, #9333ea); }
.step-icon-2 { background: linear-gradient(135deg, #9333ea, #ec4899); }
.step-icon-3 { background: linear-gradient(135deg, #16a34a, #0d9488); }

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ---- Feature Detail Sections ---- */
.feature-detail {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.feature-detail:last-child {
  border-bottom: none;
}

.feature-detail-text {
  flex: 1;
  min-width: 0;
}

.feature-detail-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 16px;
}

.feature-detail-text p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 480px;
}

.feature-detail-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-detail-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
}

.feature-detail-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-bullet-1 { background: #2563eb; }
.feature-bullet-2 { background: #9333ea; }
.feature-bullet-3 { background: #16a34a; }
.feature-bullet-4 { background: #f59e0b; }
.feature-bullet-5 { background: #0ea5e9; }
.feature-bullet-6 { background: #8b5cf6; }

.feature-detail-visual {
  flex: 1;
  min-width: 0;
  width: 100%;
}

/* Feature mockup cards */
.feature-mockup {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.fm-card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 12px;
}

.fm-card:last-child {
  margin-bottom: 0;
}

.fm-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fm-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fm-icon-circle svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.fm-icon-blue { background: linear-gradient(135deg, #2563eb, #9333ea); }
.fm-icon-purple { background: linear-gradient(135deg, #9333ea, #ec4899); }
.fm-icon-green { background: linear-gradient(135deg, #16a34a, #0d9488); }

.fm-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
}

.fm-sub {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-top: 2px;
}

.fm-score {
  margin-left: auto;
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
}

.fm-score-high {
  background: linear-gradient(to right, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fm-score-mid {
  color: var(--muted-foreground);
}

/* Resume before/after mockup */
.feature-mockup-resume {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.fm-resume-before,
.fm-resume-after {
  width: 100%;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.fm-resume-before {
  background: var(--surface);
}

.fm-resume-after {
  background: linear-gradient(135deg, #eff6ff, #f5f3ff);
  border-color: rgba(37, 99, 235, 0.2);
}

.fm-resume-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.fm-label-weak { color: var(--muted-foreground); }
.fm-label-strong { color: #2563eb; }

.fm-resume-line {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.fm-resume-line:last-child {
  border-bottom: none;
}

.fm-line-strong {
  color: var(--foreground);
  font-weight: 500;
}

.fm-resume-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
}

.fm-resume-arrow svg {
  width: 24px;
  height: 24px;
  color: var(--muted-foreground);
}

/* Interview mockup */
.fm-question-card {
  text-align: center;
}

.fm-question-badge {
  display: inline-block;
  padding: 4px 14px;
  background: linear-gradient(135deg, #eff6ff, #f5f3ff);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 20px;
}

.fm-question-text {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.6;
  font-style: italic;
  max-width: 400px;
  margin: 0 auto 24px;
}

.fm-star-steps {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.fm-star-step {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.fm-star-s { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.fm-star-t { background: linear-gradient(135deg, #9333ea, #a855f7); }
.fm-star-a { background: linear-gradient(135deg, #16a34a, #22c55e); }
.fm-star-r { background: linear-gradient(135deg, #f59e0b, #fbbf24); }

/* ---- Hero Trust Badges ---- */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.hero-trust svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---- Section Label ---- */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(to right, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

/* ---- Platform Pillars Grid ---- */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.pillar-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.pillar-card:hover {
  border-color: rgba(0,0,0,0.15);
  box-shadow: var(--shadow-md);
}

.pillar-card-1 { background: linear-gradient(135deg, #eff6ff, #f8f9ff); }
.pillar-card-2 { background: linear-gradient(135deg, #f5f3ff, #fdf4ff); }
.pillar-card-3 { background: linear-gradient(135deg, #fffbeb, #fff7ed); }
.pillar-card-4 { background: linear-gradient(135deg, #f5f3ff, #eef2ff); }

.pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.pillar-icon-1 { background: linear-gradient(135deg, #2563eb, #9333ea); }
.pillar-icon-2 { background: linear-gradient(135deg, #9333ea, #ec4899); }
.pillar-icon-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.pillar-icon-4 { background: linear-gradient(135deg, #8b5cf6, #6366f1); }

.pillar-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  margin-bottom: 4px;
}

.pillar-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ---- Feature Badge ---- */
.feature-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.feature-badge-search {
  background: linear-gradient(135deg, #eff6ff, #f5f3ff);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.feature-badge-resume {
  background: linear-gradient(135deg, #f5f3ff, #fdf4ff);
  color: #9333ea;
  border: 1px solid rgba(147, 51, 234, 0.15);
}

.feature-badge-interview {
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.15);
}

/* ---- Step Numbers ---- */
.step-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(to right, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  margin-bottom: 12px;
  line-height: 1;
}

/* ---- Stats Grid ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 4px;
}

/* ---- Trust Block ---- */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 40px 0;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

/* ---- Testimonials Grid ---- */
.testimonials-section {
  overflow: hidden;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.testimonial-card-extra {
  display: none;
}

.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  font-size: 0.875rem;
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--foreground);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

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

.author-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #9333ea);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.author-name {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--foreground);
}

.author-role {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.testimonials-toggle-wrap {
  text-align: center;
  margin-top: 24px;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--muted-foreground);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-question::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 20px 16px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.pricing-featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 999px;
}

.pricing-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.pricing-price {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
}

.price-period {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-features {
  list-style: none;
  margin: 20px 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.875rem;
  color: var(--foreground);
}

.pricing-features svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

/* ---- CTA ---- */
.section-cta {
  padding: 56px 0 80px;
}

.section-cta-mid {
  padding: 0 0 0;
}

.cta-card {
  background: linear-gradient(135deg, #eff6ff, #f5f3ff);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 20px;
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}

.cta-card h2 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--foreground);
}

.cta-card > p {
  margin-top: 12px;
  max-width: 480px;
  margin-inline: auto;
  color: var(--muted-foreground);
  color: #bfdbfe;
  font-size: 0.9375rem;
}

.cta-card .btn-secondary {
  margin-top: 24px;
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.cta-card .btn-secondary:hover {
  background: #d4d4dc;
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

.cta-trust svg {
  width: 16px;
  height: 16px;
}

/* ---- Sticky Mobile CTA ---- */
.sticky-mobile-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-top: 1px solid var(--border);
  background: hsla(0,0%,100%,0.95);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}

.sticky-mobile-cta .btn-primary {
  width: 100%;
}

/* ---- Footer ---- */
.site-footer {
  padding: 48px 0 24px;
  background: var(--surface-card);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 280px;
}

.footer-links h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 4px 0;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--foreground);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  gap: 8px;
}

/* ---- Carousel (kept for sub-pages) ---- */
.carousel-outer {
  position: relative;
  padding: 0;
}

#testimonial-slider {
  display: flex;
  overflow: hidden;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-card);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  color: var(--foreground);
  padding: 0;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

.carousel-arrow:hover {
  background: var(--surface);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow-left {
  left: 0;
}

.carousel-arrow-right {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 24px;
}

.carousel-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active::after {
  background: linear-gradient(135deg, #2563eb, #9333ea);
  transform: scale(1.3);
}

.carousel-dot:hover:not(.active)::after {
  background: var(--muted-foreground);
}

.keen-slider__slide.testimonial-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

/* ---- Legal Pages ---- */
.legal-page {
  padding: 120px 0 80px;
}

.legal-header {
  text-align: center;
  margin-bottom: 48px;
}

.legal-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.025em;
}

.legal-updated {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  box-shadow: var(--shadow-sm);
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 12px;
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 16px 0 8px;
}

.legal-section p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 12px 0;
  padding-left: 24px;
  color: var(--muted-foreground);
}

.legal-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-section a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section a:hover {
  color: var(--foreground);
}

/* ---- Content Pages ---- */
.content-page {
  padding: 100px 0 80px;
}

.content-page .container {
  max-width: 800px;
}

.page-header {
  text-align: center;
  margin-bottom: 48px;
}

.page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.025em;
}

.page-header p {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 560px;
  margin-inline: auto;
}

.page-header .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-bottom: 16px;
}

.page-header .breadcrumb a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.blog-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: block;
  transition: box-shadow 0.2s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
}

.blog-card .blog-meta {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-bottom: 8px;
}

.blog-card h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}

.article-content {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  box-shadow: var(--shadow-sm);
}

.article-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 32px 0 12px;
}

.article-content h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 24px 0 8px;
}

.article-content p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 16px;
}

.article-content ul,
.article-content ol {
  margin: 12px 0 16px;
  padding-left: 24px;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content strong {
  color: var(--foreground);
}

.article-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 12px 20px;
  margin: 20px 0;
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--muted-foreground);
  font-style: italic;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 24px 0;
}

.compare-table th,
.compare-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.compare-table th {
  background: var(--surface);
  font-weight: 600;
  color: var(--foreground);
}

.compare-table td {
  color: var(--muted-foreground);
}

.compare-table .check {
  color: var(--success);
  font-weight: 600;
}

.compare-table .cross {
  color: var(--destructive);
}

.compare-table .highlight-col {
  background: hsla(165, 35%, 92%, 0.4);
}

.about-section {
  margin-bottom: 48px;
}

.about-section h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 16px;
}

.about-section p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}

.value-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---- Sub-page Utilities ---- */
.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-tagline {
  font-size: 0.6875rem;
  color: var(--muted-foreground);
  line-height: 1;
}

.btn-xl {
  padding: 14px 28px;
  font-size: 1rem;
}

.gradient-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Table Scroll (compare pages) ---- */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-scroll .compare-table {
  min-width: 600px;
}

/* ---- Responsive ---- */
@media (max-width: 374px) {
  .nav-cta .btn-primary,
  .nav-cta .btn-ghost {
    padding: 8px 12px;
    font-size: 0.8125rem;
  }

  .logo-tagline {
    display: none;
  }
}

@media (max-width: 639px) {
  .logo-tagline {
    display: none;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 64px 0 32px;
  }

  .mockup {
    max-height: 280px;
  }
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .hero {
    padding: 112px 0 80px;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }

  .hero-actions a {
    width: auto;
  }

  .hero-stats {
    gap: 48px;
  }

  .section {
    padding: 64px 0;
  }

  .feature-detail {
    padding: 56px 0;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing-grid {
    gap: 20px;
  }

  .steps-grid {
    gap: 32px;
  }

  .blog-grid {
    gap: 20px;
  }

  .article-content {
    padding: 48px 40px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-card {
    padding: 56px 40px;
  }

  .section-cta-mid {
    padding: 0;
  }

  .legal-content {
    padding: 40px;
  }

  .footer-links a {
    min-height: auto;
  }

  body {
    padding-bottom: 0;
  }

  .sticky-mobile-cta {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testimonials-toggle-wrap {
    display: none;
  }

  .testimonial-card-extra {
    display: flex;
  }

  .trust-logos {
    gap: 40px;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-outer {
    padding: 0 52px;
  }

  .carousel-arrow {
    display: flex;
  }
}

@media (min-width: 768px) {
  .nav {
    flex-wrap: nowrap;
    gap: 32px;
  }

  .nav-links {
    display: flex;
  }

  .hero {
    padding: 128px 0 80px;
  }

  .section {
    padding: 80px 0;
  }

  .feature-detail {
    flex-direction: row;
    gap: 48px;
    padding: 64px 0;
  }

  .feature-detail-reverse {
    flex-direction: row-reverse;
  }

  .feature-detail-text,
  .feature-detail-visual {
    flex: 1;
  }

  .feature-mockup-resume {
    flex-direction: row;
    gap: 20px;
  }

  .fm-resume-arrow {
    transform: rotate(0deg);
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header {
    margin: 0 auto 40px;
  }

  .content-page {
    padding: 120px 0 80px;
  }

  .content-page .container {
    max-width: 860px;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
  }

  .feature-detail {
    gap: 64px;
  }

  .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
