/* ============================================================
   RESUMEFORGE LANDING PAGE — LIGHT PREMIUM THEME
============================================================ */

/* ── Variables ── */
:root {
  --accent:        #2563eb;
  --accent-dark:   #1d4ed8;
  --accent-light:  #eff6ff;
  --purple:        #7c3aed;
  --purple-light:  #f5f3ff;
  --green:         #059669;
  --green-light:   #ecfdf5;
  --orange:        #d97706;
  --orange-light:  #fffbeb;
  --teal:          #0891b2;
  --teal-light:    #ecfeff;
  --pink:          #db2777;
  --pink-light:    #fdf2f8;
  --red:           #dc2626;
  --indigo:        #4338ca;
  --indigo-light:  #eef2ff;

  --bg:            #ffffff;
  --bg-soft:       #f8fafc;
  --bg-muted:      #f1f5f9;
  --border:        #e2e8f0;
  --border-light:  #f1f5f9;
  --text:          #0f172a;
  --text-2:        #334155;
  --text-3:        #64748b;
  --text-4:        #94a3b8;

  --radius:        16px;
  --radius-sm:     10px;
  --radius-xs:     6px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);
  --shadow-xl:     0 40px 100px rgba(0,0,0,0.12);

  --font:          'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display:  'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utilities ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 100px 0; }
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-white {
  background: linear-gradient(135deg, #93c5fd, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.animate-up {
  opacity: 0;
  transform: translateY(28px);
  animation: slideUp 0.6s ease forwards;
}
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
.animate-float {
  animation: float 3.5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 20px;
  border: 1px solid rgba(37,99,235,0.15);
  margin-bottom: 18px;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title.left-align { text-align: left; }
.section-subtitle {
  font-size: 17px;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.45);
  color: #fff;
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: 14px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: transparent;
  color: var(--text-2);
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
.btn-ghost.btn-lg { padding: 15px 28px; font-size: 16px; border-radius: 14px; }

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.logo-accent { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  margin-left: 8px;
}
.nav-links a {
  padding: 7px 14px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--bg-muted); color: var(--text); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  border: 1px solid rgba(5,150,105,0.2);
}
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(37,99,235,0.3);
}
.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,0.4); color: #fff; }
.btn-nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-nav-login:hover { color: #2563eb; background: rgba(37,99,235,0.06); }
.btn-nav-signup {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: transparent;
  color: #2563eb;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1.5px solid #2563eb;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-nav-signup:hover { background: #2563eb; color: #fff; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--text-2); transition: all 0.2s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  padding: 12px 0;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
  display: block;
}
.nav-mobile a:last-child { border-bottom: none; }
.btn-mobile-cta {
  margin-top: 12px;
  padding: 13px !important;
  background: linear-gradient(135deg, var(--accent), var(--purple)) !important;
  color: #fff !important;
  border-radius: 12px;
  text-align: center;
  font-weight: 700 !important;
  border-bottom: none !important;
}

/* ================================================================
   HERO
================================================================ */
.hero {
  padding: 140px 0 100px;
  position: relative;
  background: linear-gradient(180deg, #fafbff 0%, #f0f4ff 50%, #f8fafc 100%);
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.12), transparent 70%);
  top: -200px; left: -150px;
}
.shape-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.1), transparent 70%);
  top: -100px; right: -100px;
}
.shape-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.08), transparent 70%);
  bottom: -100px; left: 40%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(5,150,105,0.4); }
  50%      { box-shadow: 0 0 0 5px rgba(5,150,105,0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
}
.trust-item i { color: var(--green); font-size: 14px; }
.trust-divider {
  width: 1px; height: 16px;
  background: var(--border);
}

/* Browser mockup */
.hero-visual { position: relative; }
.browser-mockup {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }
.browser-url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-4);
  background: var(--bg-muted);
  border-radius: 6px;
  padding: 4px 12px;
  max-width: 200px;
  margin: 0 auto;
}
.browser-screen { padding: 0; }

/* App mockup inside browser */
.mock-app {
  display: flex;
  height: 340px;
  background: #f8fafc;
}
.mock-panel-left {
  width: 48%;
  background: #1e293b;
  padding: 12px;
  overflow: hidden;
}
.mock-panel-right {
  flex: 1;
  background: #fff;
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.mock-section-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  margin-bottom: 8px;
}
.mock-section-header.active { background: rgba(37,99,235,0.2); }
.mock-icon { width: 16px; height: 16px; border-radius: 4px; flex-shrink: 0; }
.mock-icon.blue   { background: rgba(37,99,235,0.7); }
.mock-icon.green  { background: rgba(5,150,105,0.7); }
.mock-icon.purple { background: rgba(124,58,237,0.7); }
.mock-label { flex: 1; height: 6px; background: rgba(255,255,255,0.3); border-radius: 3px; }
.mock-chevron { color: rgba(255,255,255,0.3); font-size: 10px; }
.mock-field { margin-bottom: 6px; }
.mock-field-label {
  height: 4px; width: 40%; background: rgba(255,255,255,0.12);
  border-radius: 2px; margin-bottom: 4px;
}
.mock-field-label.short { width: 25%; }
.mock-field-input {
  height: 20px; background: rgba(255,255,255,0.07);
  border-radius: 4px; border: 1px solid rgba(255,255,255,0.1);
}
.mock-field-input.filled { background: rgba(255,255,255,0.12); }
.mock-field-input.med { width: 75%; }
.mt8 { margin-top: 8px; }
.mock-exp-card {
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 4px;
}
.mock-exp-title { height: 6px; width: 70%; background: rgba(255,255,255,0.25); border-radius: 3px; margin-bottom: 4px; }
.mock-exp-sub   { height: 5px; width: 55%; background: rgba(255,255,255,0.12); border-radius: 3px; margin-bottom: 3px; }
.mock-exp-sub.short { width: 35%; }
.mock-gen-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: rgba(37,99,235,0.25);
  border: 1px solid rgba(37,99,235,0.5);
  border-radius: 20px;
  font-size: 9px;
  color: #93c5fd;
  margin-top: 4px;
}
.mock-skills { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; }
.mock-skill {
  padding: 2px 7px;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 20px;
  font-size: 9px;
  color: #c4b5fd;
}

/* Resume preview mockup */
.mock-resume { position: relative; height: 100%; }
.mock-resume-header {
  padding: 8px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 6px;
  margin-bottom: 8px;
}
.mock-resume-name { height: 10px; width: 55%; background: rgba(255,255,255,0.9); border-radius: 3px; margin-bottom: 4px; }
.mock-resume-title { height: 6px; width: 40%; background: rgba(255,255,255,0.5); border-radius: 3px; margin-bottom: 5px; }
.mock-resume-contact { display: flex; gap: 8px; }
.mock-resume-contact span { flex: 1; height: 4px; background: rgba(255,255,255,0.3); border-radius: 2px; }
.mock-resume-section { margin-bottom: 8px; }
.mock-resume-section-title { height: 6px; width: 35%; background: #2563eb; border-radius: 3px; margin-bottom: 5px; }
.mock-resume-line { height: 4px; background: #e2e8f0; border-radius: 2px; margin-bottom: 3px; }
.mock-resume-line.full { width: 100%; }
.mock-resume-line.med  { width: 75%; }
.mock-resume-line.short { width: 45%; }
.mock-resume-line.bold  { background: #94a3b8; height: 5px; }
.mock-resume-line.thin  { background: #e2e8f0; }
.mock-resume-line.mt4   { margin-top: 4px; }
.mock-resume-job { margin-bottom: 4px; }
.mock-skill-pills { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 4px; }
.mock-skill-pills span { flex: 0 0 auto; width: 40px; height: 12px; background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 10px; }
.ats-badge {
  position: absolute;
  bottom: 8px; right: 8px;
  padding: 3px 8px;
  background: var(--green-light);
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  border-radius: 20px;
  border: 1px solid rgba(5,150,105,0.25);
  display: flex;
  align-items: center;
  gap: 3px;
}

/* Float cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  white-space: nowrap;
  font-size: 12px;
}
.float-card i { font-size: 20px; flex-shrink: 0; }
.float-card-title { font-weight: 700; color: var(--text); margin-bottom: 1px; }
.float-card-sub   { color: var(--text-3); font-size: 11px; }
.float-card-1 { bottom: -20px; left: -30px; }
.float-card-2 { top: 20px;   right: -20px; }
.float-card-3 { bottom: 60px; right: -10px; }
.text-blue   { color: var(--accent); }
.text-purple { color: var(--purple); }
.text-green  { color: var(--green); }

/* ================================================================
   STATS BAR
================================================================ */
.stats-bar {
  padding: 32px 0;
  background: var(--text);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 40px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ================================================================
   FEATURES
================================================================ */
.features { background: #fff; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(37,99,235,0.2);
}
.feature-card.feature-card-large {
  grid-column: span 2;
}
.feature-card.feature-card-right {
  grid-column: 2 / span 2;
}
.feature-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.feature-icon-wrap.blue   { background: var(--accent-light); color: var(--accent); }
.feature-icon-wrap.green  { background: var(--green-light);  color: var(--green); }
.feature-icon-wrap.purple { background: var(--purple-light); color: var(--purple); }
.feature-icon-wrap.orange { background: var(--orange-light); color: var(--orange); }
.feature-icon-wrap.teal   { background: var(--teal-light);   color: var(--teal); }
.feature-icon-wrap.pink   { background: var(--pink-light);   color: var(--pink); }
.feature-icon-wrap.indigo { background: var(--indigo-light); color: var(--indigo); }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.65;
}

/* Feature visuals */
.feature-visual { margin-top: 20px; }
.fv-split {
  display: flex;
  gap: 12px;
  background: var(--bg-muted);
  border-radius: 10px;
  padding: 14px;
  border: 1px solid var(--border);
}
.fv-left, .fv-right { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.fv-divider { width: 1px; background: var(--border); }
.fv-bar     { height: 8px; background: var(--border); border-radius: 4px; }
.fv-bar.short { width: 55%; }
.fv-bar.med   { width: 75%; }
.fv-resume-name { height: 10px; width: 50%; background: #93c5fd; border-radius: 3px; margin-bottom: 6px; }
.fv-resume-line { height: 5px; background: var(--border); border-radius: 3px; }
.fv-resume-line.full  { width: 100%; }
.fv-resume-line.med   { width: 70%; }
.fv-resume-line.short { width: 40%; }

.export-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.export-badge {
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.export-badge.red    { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.export-badge.blue   { background: var(--accent-light); color: var(--accent); border: 1px solid #bfdbfe; }
.export-badge.indigo { background: var(--indigo-light); color: var(--indigo); border: 1px solid #c7d2fe; }
.export-badge.gray   { background: var(--bg-muted); color: var(--text-3); border: 1px solid var(--border); }

.gen-mini-demo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding: 10px;
  background: var(--purple-light);
  border-radius: 10px;
  border: 1px solid rgba(124,58,237,0.15);
}
.gen-mini-chip {
  padding: 3px 10px;
  background: #fff;
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--purple);
}
.gen-mini-arrow { color: var(--purple); font-size: 14px; }
.gen-mini-out {
  padding: 3px 10px;
  background: var(--purple);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.color-swatches { display: flex; gap: 8px; margin-top: 16px; }
.color-swatches span {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.15s;
}
.color-swatches span:hover { transform: scale(1.2); }

kbd {
  display: inline-block;
  padding: 2px 8px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  border-radius: 5px;
  font-size: 12px;
  font-family: monospace;
  font-weight: 600;
  color: var(--text-2);
}
.kbd-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-3);
}
.kbd-sep { color: var(--text-4); }

.shortcut-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.sc-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-3);
}
.sc-item kbd { font-size: 11px; }

/* ================================================================
   TEMPLATES
================================================================ */
.templates-section { background: var(--bg-soft); }
.templates-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.template-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}
.template-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.template-card.active { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.12), var(--shadow-md); }
.template-preview {
  height: 200px;
  padding: 12px;
  background: #fff;
  overflow: hidden;
}
.template-info {
  padding: 12px 14px 14px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-soft);
}
.template-name { font-weight: 700; font-size: 13px; color: var(--text); margin-bottom: 2px; }
.template-desc { font-size: 11px; color: var(--text-3); margin-bottom: 8px; line-height: 1.4; }
.template-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
}
.template-tag i { font-size: 11px; }
.templates-cta { text-align: center; }

/* Template previews */
.tpl-modern { height: 100%; font-size: 0; }
.tpl-header {
  padding: 8px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 4px;
  margin-bottom: 6px;
}
.blue-header {}
.tpl-name   { height: 8px; width: 50%; background: rgba(255,255,255,0.9); border-radius: 2px; margin-bottom: 4px; }
.tpl-title  { height: 5px; width: 35%; background: rgba(255,255,255,0.5); border-radius: 2px; margin-bottom: 5px; }
.tpl-contact { display: flex; gap: 6px; }
.tpl-contact span { flex: 1; height: 3px; background: rgba(255,255,255,0.3); border-radius: 2px; }
.tpl-body { padding: 4px 0; }
.tpl-section { margin-bottom: 6px; }
.tpl-section-title { height: 5px; width: 30%; background: #2563eb; border-radius: 2px; margin-bottom: 4px; }
.tpl-line { height: 3px; background: #e2e8f0; border-radius: 2px; margin-bottom: 2px; }
.tpl-line.full { width: 100%; }
.tpl-line.med  { width: 70%; }
.tpl-line.short { width: 40%; }
.tpl-line.bold  { background: #475569; height: 4px; }
.tpl-line.thin  { background: #e2e8f0; }
.tpl-line.right { margin-left: auto; }
.tpl-job-header { display: flex; justify-content: space-between; margin-bottom: 3px; }
.tpl-chips { display: flex; gap: 3px; flex-wrap: wrap; }
.tpl-chips span { width: 28px; height: 9px; background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 6px; }

/* Minimal template */
.tpl-minimal { height: 100%; }
.tpl-min-header { text-align: center; margin-bottom: 5px; padding: 5px; }
.tpl-min-name   { height: 9px; width: 45%; background: #0f172a; border-radius: 2px; margin: 0 auto 4px; }
.tpl-min-title  { height: 5px; width: 30%; background: #94a3b8; border-radius: 2px; margin: 0 auto 4px; }
.tpl-min-contact { display: flex; justify-content: center; gap: 6px; }
.tpl-min-contact span { width: 28px; height: 3px; background: #cbd5e1; border-radius: 2px; }
.tpl-min-divider { height: 1px; background: #0f172a; margin: 4px 0; }
.tpl-min-body { display: flex; gap: 8px; }
.tpl-min-section { flex: 1; }
.tpl-min-title-label { height: 5px; width: 50%; background: #0f172a; border-radius: 2px; margin-bottom: 4px; }

/* Developer template */
.tpl-developer {}
.tpl-dev-header { padding: 6px; background: #0f172a; border-radius: 4px; margin-bottom: 6px; }
.tpl-dev-name   { height: 7px; width: 45%; background: #93c5fd; border-radius: 2px; margin-bottom: 3px; }
.tpl-dev-title  { height: 4px; width: 35%; background: rgba(255,255,255,0.3); border-radius: 2px; margin-bottom: 4px; }
.tpl-dev-contact { display: flex; gap: 5px; }
.tpl-dev-contact span { height: 3px; flex: 1; background: rgba(255,255,255,0.15); border-radius: 2px; }
.tpl-dev-badge {
  height: 5px; width: 35%; border-left: 2px solid #2563eb;
  background: #eff6ff; border-radius: 0 2px 2px 0; margin-bottom: 4px; padding-left: 3px;
}
.tpl-dev-chips { display: flex; gap: 3px; margin-bottom: 4px; flex-wrap: wrap; }
.tpl-dev-chips span { padding: 0 5px; height: 10px; background: #1e293b; border-radius: 2px; font-size: 0; width: 25px; }
.tpl-dev-body {}
.tpl-dev-section { margin-bottom: 5px; }

/* Compact template */
.tpl-compact {}
.tpl-cmp-header { padding: 6px; border-bottom: 1.5px solid #2563eb; margin-bottom: 5px; }
.tpl-cmp-name { height: 8px; width: 50%; background: #0f172a; border-radius: 2px; margin-bottom: 3px; }
.tpl-cmp-row  { display: flex; gap: 5px; }
.tpl-cmp-row span { height: 3px; width: 30px; background: #94a3b8; border-radius: 2px; }
.tpl-cmp-body.two-col { display: flex; gap: 8px; }
.tpl-cmp-col-left, .tpl-cmp-col-right { flex: 1; }
.tpl-cmp-section-title { height: 4px; width: 55%; background: #2563eb; border-radius: 2px; margin-bottom: 3px; }
.tpl-cmp-section-title.mt4 { margin-top: 5px; }

/* Sidebar template */
.tpl-sidebar { display: flex; height: 100%; gap: 0; }
.tpl-sdbar-left {
  width: 35%; background: #1e293b; padding: 8px; border-radius: 4px 0 0 4px; overflow: hidden;
}
.tpl-sdbar-right { flex: 1; padding: 8px; }
.tpl-sdbar-name  { height: 7px; width: 80%; background: #fff; border-radius: 2px; margin-bottom: 3px; }
.tpl-sdbar-title { height: 4px; width: 65%; background: rgba(255,255,255,0.4); border-radius: 2px; margin-bottom: 6px; }
.tpl-sdbar-section { margin-bottom: 6px; }
.tpl-sdbar-label { height: 4px; width: 60%; border-radius: 2px; margin-bottom: 4px; }
.tpl-sdbar-label.dark { background: #0f172a; }
.tpl-sdbar-label:not(.dark) { background: rgba(255,255,255,0.3); }
.tpl-sdbar-chip { height: 10px; background: rgba(255,255,255,0.12); border-radius: 2px; margin-bottom: 3px; }

/* ================================================================
   HOW IT WORKS
================================================================ */
.how-it-works { background: #fff; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 56px;
}
.step-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-number {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  font-family: var(--font-display);
  letter-spacing: -0.05em;
  user-select: none;
}
.step-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 16px;
}
.step-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  padding: 4px 0;
  font-weight: 500;
}
.step-features li i { color: var(--green); font-size: 14px; }
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  padding-top: 60px;
  color: var(--text-4);
  font-size: 22px;
}
.hiw-cta { text-align: center; }

/* ================================================================
   SMART GENERATOR HIGHLIGHT
================================================================ */
.generator-section {
  background: linear-gradient(135deg, #f5f3ff 0%, #eff6ff 100%);
}
.gen-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.gen-highlight-desc {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: 28px;
}
.gen-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.gen-step {
  display: flex;
  align-items: center;
  gap: 14px;
}
.gen-step-num {
  width: 28px; height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.gen-step-text { font-size: 14px; color: var(--text-2); font-weight: 500; }
.gen-highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.gen-hl-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.gen-hl-item i { color: var(--purple); }
.mt-cta { margin-top: 8px; }

/* Generator modal mock */
.gen-modal-mock {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}
.gmm-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}
.gmm-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--accent-light), var(--purple-light));
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--purple);
}
.gmm-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 1px; }
.gmm-sub   { font-size: 10px; color: var(--text-3); }
.gmm-body  { display: flex; height: 280px; }
.gmm-left  {
  width: 140px; flex-shrink: 0;
  padding: 12px;
  border-right: 1px solid var(--border);
  background: #fafbff;
}
.gmm-right { flex: 1; padding: 12px; overflow: hidden; display: flex; flex-direction: column; gap: 8px; }
.gmm-label {
  font-size: 9px; font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
.gmm-label.mt8 { margin-top: 8px; }
.gmm-tags { display: flex; flex-wrap: wrap; gap: 3px; margin-bottom: 4px; }
.gmm-tag {
  padding: 2px 7px;
  background: var(--accent-light);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 20px;
  font-size: 9px;
  font-weight: 600;
  color: var(--accent);
}
.gmm-pills { display: flex; flex-wrap: wrap; gap: 3px; }
.gmm-pill {
  padding: 2px 7px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 9px;
  font-weight: 500;
  color: var(--text-3);
}
.gmm-pill.active {
  background: var(--accent-light);
  border-color: rgba(37,99,235,0.3);
  color: var(--accent);
}
.gmm-generate-btn {
  margin-top: 10px;
  padding: 6px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.gmm-var-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.gmm-var-card.active { border-color: var(--accent); }
.gmm-var-card.muted  { opacity: 0.5; }
.gmm-var-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
}
.gmm-var-num {
  width: 16px; height: 16px;
  background: var(--accent-light);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gmm-var-label { flex: 1; font-size: 9px; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.gmm-var-use {
  padding: 1px 6px;
  background: var(--accent);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}
.gmm-var-use.selected { background: var(--green); }
.gmm-var-text { padding: 7px 8px; font-size: 10px; color: var(--text-2); line-height: 1.5; }

/* ================================================================
   PRIVACY SECTION
================================================================ */
.privacy-section { background: #fff; }
.privacy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.privacy-content p {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: 32px;
}
.privacy-list { display: flex; flex-direction: column; gap: 20px; }
.privacy-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.privacy-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.privacy-icon.green  { background: var(--green-light);  color: var(--green); }
.privacy-icon.blue   { background: var(--accent-light); color: var(--accent); }
.privacy-icon.purple { background: var(--purple-light); color: var(--purple); }
.privacy-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.privacy-item p      { font-size: 13px; color: var(--text-3); line-height: 1.55; margin-bottom: 0; }

/* Privacy visual */
.pv-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.pv-shield {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--green-light), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--green);
  margin: 0 auto 16px;
  border: 3px solid rgba(5,150,105,0.15);
}
.pv-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 20px; }
.pv-items { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.pv-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
}
.pv-item.deny  { background: #fff8f8; color: #dc2626; }
.pv-item.deny i  { color: #dc2626; }
.pv-item.allow { background: #f0fdf4; color: #065f46; }
.pv-item.allow i { color: var(--green); }
.pv-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* ================================================================
   ATS SECTION
================================================================ */
.ats-section { background: var(--bg-soft); }
.ats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: start;
}
.ats-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.ats-card-center {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
}
.ats-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.ats-icon.red   { background: #fef2f2; color: #dc2626; }
.ats-icon.green { background: var(--green-light); color: var(--green); }
.ats-card h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.ats-list { display: flex; flex-direction: column; gap: 9px; }
.ats-list li {
  font-size: 13.5px;
  color: var(--text-2);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.ats-list.bad li::before  { content: '✗'; position: absolute; left: 0; color: #dc2626; font-weight: 700; }
.ats-list.good li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.score-ring-wrap { position: relative; width: 120px; height: 120px; }
.ats-score-visual { position: relative; width: 120px; height: 120px; margin-bottom: 12px; }
.ats-score-visual svg { width: 120px; height: 120px; }
.score-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-number { font-size: 22px; font-weight: 800; color: var(--text); font-family: var(--font-display); }
.score-label  { font-size: 9px; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.ats-center-label { font-size: 12px; color: var(--text-3); text-align: center; font-weight: 600; }

/* ================================================================
   FAQ
================================================================ */
.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 900px; margin: 0 auto; }
.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.faq-item:hover { border-color: rgba(37,99,235,0.3); }
.faq-item.open  { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.08); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
}
.faq-icon {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.7;
  padding: 0 18px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 18px 16px; }

/* ================================================================
   FINAL CTA
================================================================ */
.final-cta {
  background: linear-gradient(135deg, #f0f4ff 0%, #f5f3ff 100%);
  padding: 80px 0 100px;
}
.cta-card {
  background: linear-gradient(135deg, var(--text) 0%, #1e1b4b 100%);
  border-radius: 28px;
  padding: 72px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-shape-1 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.3), transparent 70%);
  top: -150px; left: -100px;
}
.cta-shape-2 {
  position: absolute; width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.3), transparent 70%);
  bottom: -100px; right: -50px;
}
.cta-content { position: relative; z-index: 1; }
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.cta-card p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions { margin-bottom: 28px; }
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  border-radius: 14px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 36px rgba(0,0,0,0.3); color: var(--text); }
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.cta-trust i { color: rgba(255,255,255,0.4); }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--text);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.65;
}
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand .logo-text { color: rgba(255,255,255,0.85); }
.footer-brand .logo-accent { color: #93c5fd; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}

/* ================================================================
   SCROLL REVEAL ANIMATIONS
================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .hero-inner   { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual  { max-width: 560px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.feature-card-large { grid-column: span 1; }
  .feature-card.feature-card-right { grid-column: span 1; }
  .templates-showcase { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: flex; align-items: center; justify-content: center; padding: 4px; transform: rotate(90deg); }
  .gen-highlight { grid-template-columns: 1fr; }
  .privacy-inner { grid-template-columns: 1fr; }
  .ats-grid { grid-template-columns: 1fr; }
  .ats-card-center { flex-direction: row; gap: 16px; justify-content: flex-start; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .templates-showcase { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .cta-card { padding: 48px 28px; }
  .stats-inner { justify-content: center; }
  .stat-item { padding: 8px 20px; }
  .hero { padding: 110px 0 70px; }
  .float-card { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .templates-showcase { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .cta-card h2 { font-size: 1.75rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
}
