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

:root {
  --brand: #6C63FF;
  --brand-dark: #5549e0;
  --brand-light: #ede9ff;
  --accent: #FF6B6B;
  --green: #22c55e;
  --text: #0f172a;
  --text-muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(108, 99, 255, 0.10);
  --shadow-card: 0 2px 16px rgba(15, 23, 42, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(108, 99, 255, 0.35);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-ghost:hover {
  background: var(--brand-light);
}

.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 10px; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.logo span { color: var(--brand); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brand); }

.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
  color: var(--text);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}
.mobile-menu .btn { align-self: flex-start; margin-top: 4px; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #f0eeff 0%, #ffffff 60%);
}

.hero-glow {
  position: absolute;
  top: -100px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108,99,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(108,99,255,0.25);
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--text);
  max-width: 820px;
}

.highlight {
  color: var(--brand);
  position: relative;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), #a78bfa);
  border-radius: 4px;
  opacity: 0.4;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 24px 0 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 56px;
  padding: 24px 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -1px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== LOGOS ===== */
.logos {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.logos-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.company-pill {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: #fff;
  transition: all 0.2s;
}
.company-pill:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 56px;
}

/* ===== PROBLEM ===== */
.problem {
  padding: 96px 0;
  background: var(--bg);
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.problem-text h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.problem-text p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.7;
}
.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.problem-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.x { color: var(--accent); font-size: 18px; font-weight: 700; }

/* Resume Card Visual */
.problem-visual {
  display: flex;
  align-items: center;
  gap: 20px;
}
.resume-card {
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.resume-card-header {
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  margin-bottom: 4px;
}
.resume-card-header.red { background: #fff0f0; color: var(--accent); }
.resume-card-header.green { background: #f0fdf4; color: var(--green); }

.resume-line {
  height: 10px;
  border-radius: 4px;
  background: var(--brand);
  opacity: 0.8;
}
.resume-line.long { width: 100%; }
.resume-line.medium { width: 70%; }
.resume-line.short { width: 45%; }
.resume-line.dim { background: #cbd5e1; opacity: 0.5; }

.resume-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand);
  letter-spacing: 0.8px;
  margin-top: 4px;
}
.resume-section-label.dim { color: #94a3b8; }

.resume-stamp {
  position: absolute;
  bottom: 12px; right: 12px;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  background: #fff0f0;
  color: var(--accent);
}
.green-stamp {
  background: #f0fdf4;
  color: var(--green);
}

.arrow-right {
  font-size: 28px;
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 96px 0;
  background: var(--bg-soft);
  text-align: center;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 8px;
  justify-content: center;
}
.step {
  flex: 1;
  max-width: 300px;
  padding: 32px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(108,99,255,0.15);
  border-color: var(--brand);
}
.step-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.step-icon { font-size: 36px; margin-bottom: 16px; }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.step-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--brand));
  margin-top: 60px;
  opacity: 0.4;
}

/* ===== FEATURES ===== */
.features {
  padding: 96px 0;
  background: var(--bg);
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.feature-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  text-align: left;
  background: #fff;
  transition: all 0.25s;
}
.feature-card:hover {
  border-color: var(--brand);
  box-shadow: 0 6px 28px rgba(108,99,255,0.12);
  transform: translateY(-4px);
}
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 96px 0;
  background: var(--bg-soft);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.testimonial-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1.5px solid var(--border);
  text-align: left;
  box-shadow: var(--shadow-card);
  transition: all 0.25s;
}
.testimonial-card.featured {
  border-color: var(--brand);
  box-shadow: 0 8px 32px rgba(108,99,255,0.18);
  transform: translateY(-8px);
}
.testimonial-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 12px 0 24px;
  font-style: italic;
}
.stars { color: #f59e0b; font-size: 16px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ===== CTA ===== */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(108,99,255,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta-section h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin-bottom: 36px;
}
.cta-form {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-input {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border 0.2s;
}
.cta-input::placeholder { color: rgba(255,255,255,0.45); }
.cta-input:focus { border-color: var(--brand); }
.cta-note { color: rgba(255,255,255,0.45); font-size: 13px; margin-top: 16px; }

/* ===== FAQ ===== */
.faq {
  padding: 96px 0;
  background: var(--bg);
}
.faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--brand); }

.faq-item summary {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--brand);
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: #fff;
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: #fff; }
.footer-brand .logo span { color: #a78bfa; }
.footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  line-height: 1.6;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }

  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .problem-visual { justify-content: center; }

  .steps { flex-direction: column; align-items: center; gap: 20px; }
  .step-connector { width: 2px; height: 32px; margin: 0; background: linear-gradient(180deg, var(--border), var(--brand)); }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { transform: none; }

  .faq-inner { grid-template-columns: 1fr; gap: 32px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 64px 0 56px; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .problem-visual { flex-direction: column; align-items: center; }
  .arrow-right { transform: rotate(90deg); }
  .resume-card { width: 100%; }
}
