/* ============================================================
   NextCV – Landing Page Styles
   Author: Empire Softtech
   ============================================================ */

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #2563EB;
  --blue-dark:  #1E3A8A;
  --blue-mid:   #1D4ED8;
  --blue-light: #EFF6FF;
  --blue-50:    #DBEAFE;
  --purple:     #7C3AED;
  --purple-lt:  #EDE9FE;
  --green:      #059669;
  --green-lt:   #D1FAE5;
  --red:        #DC2626;
  --red-lt:     #FEE2E2;
  --orange:     #EA580C;
  --orange-lt:  #FFEDD5;
  --teal:       #0D9488;
  --teal-lt:    #CCFBF1;

  --bg:         #F8FAFC;
  --surface:    #FFFFFF;
  --border:     #E2E8F0;
  --text:       #0F172A;
  --text-md:    #334155;
  --text-lt:    #64748B;
  --text-xlt:   #94A3B8;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  24px;
  --radius-full:9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl:  0 24px 60px rgba(0,0,0,.14), 0 8px 24px rgba(0,0,0,.08);

  --trans:      .25s ease;
  --trans-slow: .45s ease;

  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Section spacing ─────────────────────────────────────── */
.section { padding-block: 96px; }

/* ── Section header ──────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--blue-light);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-lt);
  max-width: 560px;
  margin-inline: auto;
}

/* ── Gradient text ───────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, #818CF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9375rem;
  transition: all var(--trans);
  cursor: pointer;
  white-space: nowrap;
}

.btn-lg { padding: 15px 30px; font-size: 1rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
  box-shadow: 0 6px 20px rgba(37,99,235,.45);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--blue);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ── Official Google Play badge (image-based) ── */
.gplay-badge-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.gplay-badge-link:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}
.gplay-badge {
  display: block;
  height: 44px;
  width: auto;
}
/* Nav: slightly smaller */
.nav__cta.gplay-badge-link .gplay-badge { height: 38px; }
/* Footer: standard */
.footer-dl-btn.gplay-badge-link .gplay-badge { height: 44px; }
/* Hero / CTA sections: larger */
.gplay-badge-link.gplay-badge-lg .gplay-badge { height: 54px; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

/* ── Reveal animation ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═════════════════════════════════════════════════════════
   HEADER
═════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(248,250,252,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.header.scrolled { box-shadow: var(--shadow-md); }

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text);
}
.logo-icon {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #fff;
  font-size: .9rem;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.logo-accent { color: var(--blue); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  padding: 8px 12px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-md);
  border-radius: var(--radius-sm);
  transition: color var(--trans), background var(--trans);
}
.nav__link:hover, .nav__link.active {
  color: var(--blue);
  background: var(--blue-light);
}

.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--text);
  transition: all var(--trans);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ═════════════════════════════════════════════════════════
   HERO
═════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 50%, #1D4ED8 100%);
}

/* floating shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
  background: #fff;
  animation: float 8s ease-in-out infinite;
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; animation-delay: 0s; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; animation-delay: -3s; }
.shape-3 { width: 200px; height: 200px; top: 30%;  right: 25%;  opacity:.04; animation-delay: -1.5s; }
.shape-4 { width: 150px; height: 150px; bottom: 20%; right: 10%; opacity:.05; animation-delay: -4s; }
.shape-5 { width: 80px;  height: 80px;  top: 20%;   left: 15%;  opacity:.07; animation-delay: -2s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(5deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-block: 80px;
  position: relative;
  z-index: 1;
}

/* hero left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  font-weight: 500;
}
.trust-stars { color: #FBBF24; display: flex; gap: 2px; font-size: .75rem; }
.trust-divider { width: 1px; height: 18px; background: rgba(255,255,255,.2); }

/* hero right – phone mockup */
.hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-wrap {
  position: relative;
  animation: gentle-float 5s ease-in-out infinite;
}
@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.phone-frame {
  width: 260px;
  background: #0F172A;
  border-radius: 36px;
  padding: 14px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,.12),
    0 40px 80px rgba(0,0,0,.5),
    inset 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
}
.phone-notch {
  width: 80px; height: 22px;
  background: #0F172A;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
}
.phone-screen {
  border-radius: 24px;
  overflow: hidden;
  background: #F8FAFC;
}

/* mock app UI inside phone */
.mock-app {
  padding: 14px 12px;
  min-height: 430px;
  position: relative;
  background: #F8FAFC;
}
.mock-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.mock-avatar-circle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mock-greeting { flex: 1; }
.mock-ats-badge {
  font-size: .55rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-lt);
  padding: 3px 7px;
  border-radius: var(--radius-full);
}

/* mock bars */
.mock-bar {
  height: 6px;
  border-radius: var(--radius-full);
  background: #CBD5E1;
}
.mock-bar-sm  { width: 50%; }
.mock-bar-md  { width: 70%; }
.mock-bar-lg  { width: 85%; }
.mock-bar-xl  { width: 95%; }
.mock-bar-full{ width: 100%; }
.mock-bar-white{ background: rgba(255,255,255,.6); }
.mock-bar-light{ background: rgba(255,255,255,.4); }
.mock-bar-blue { background: #93C5FD; margin-top: 4px; width: 55%; height: 4px; }
.mock-bar-gray { background: #CBD5E1; }

.mock-hero-card {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 16px;
}
.mock-card-label {
  font-size: .5rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.mock-tags { display: flex; gap: 5px; margin-top: 10px; }
.mock-tag {
  font-size: .45rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.2);
  color: #fff;
}
.mock-tag-ai { background: rgba(124,58,237,.5); }

.mock-section-title {
  font-size: .55rem;
  font-weight: 700;
  color: var(--text-md);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.mock-list { display: flex; flex-direction: column; gap: 8px; }
.mock-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.mock-item-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--blue-light);
  color: var(--blue);
  display: grid; place-items: center;
  font-size: .6rem;
  flex-shrink: 0;
}
.mock-item-icon-purple { background: var(--purple-lt); color: var(--purple); }
.mock-item-icon-orange { background: var(--orange-lt); color: var(--orange); }
.mock-item-body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mock-score {
  font-size: .55rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  min-width: 28px;
  text-align: center;
}
.mock-score-high { background: var(--green-lt); color: var(--green); }
.mock-score-med  { background: #FEF3C7; color: #D97706; }
.mock-score-low  { background: var(--red-lt); color: var(--red); }

.mock-fab {
  position: absolute;
  bottom: 14px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #fff;
  display: grid; place-items: center;
  font-size: .75rem;
  box-shadow: 0 4px 12px rgba(37,99,235,.4);
}

/* floating chips */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  min-width: 140px;
}
.float-chip-ats { top: 5%;  right: -20px; animation: chip-float 4s ease-in-out infinite; }
.float-chip-ai  { top: 42%; left: -25px;  animation: chip-float 4s ease-in-out infinite .8s; }
.float-chip-pdf { bottom: 8%; right: -15px; animation: chip-float 4s ease-in-out infinite 1.6s; }

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.float-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  font-size: .875rem;
  flex-shrink: 0;
}
.float-icon-green { background: var(--green-lt); color: var(--green); }
.float-icon-blue  { background: var(--blue-light); color: var(--blue); }
.float-icon-red   { background: var(--red-lt); color: var(--red); }

.float-label { font-size: .6875rem; color: var(--text-lt); font-weight: 500; }
.float-value { font-size: .9375rem; font-weight: 700; color: var(--text); }

/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  animation: bounce 2.5s ease-in-out infinite;
}
.scroll-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ═════════════════════════════════════════════════════════
   STATS
═════════════════════════════════════════════════════════ */
.stats-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding-block: 56px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .875rem;
  color: var(--text-lt);
  font-weight: 500;
}

/* ═════════════════════════════════════════════════════════
   FEATURES
═════════════════════════════════════════════════════════ */
.features-section { background: var(--bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-light) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--trans);
}
.feature-card:hover {
  border-color: var(--blue-50);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }

.feat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.feat-icon-blue   { background: var(--blue-light); color: var(--blue); }
.feat-icon-purple { background: var(--purple-lt);  color: var(--purple); }
.feat-icon-green  { background: var(--green-lt);   color: var(--green); }
.feat-icon-red    { background: var(--red-lt);     color: var(--red); }
.feat-icon-orange { background: var(--orange-lt);  color: var(--orange); }
.feat-icon-teal   { background: var(--teal-lt);    color: var(--teal); }

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.feature-card p {
  font-size: .9rem;
  color: var(--text-lt);
  line-height: 1.65;
  position: relative; z-index: 1;
}

/* ═════════════════════════════════════════════════════════
   HOW IT WORKS
═════════════════════════════════════════════════════════ */
.how-section { background: #fff; }

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step-card {
  flex: 1;
  text-align: center;
  padding: 36px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all var(--trans);
  position: relative;
}
.step-card:hover {
  border-color: var(--blue-50);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue-50);
  line-height: 1;
  margin-bottom: 12px;
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.25rem;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(37,99,235,.3);
}
.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step-card p {
  font-size: .875rem;
  color: var(--text-lt);
  line-height: 1.6;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.125rem;
  padding-inline: 8px;
  padding-top: 60px;
  flex-shrink: 0;
  opacity: .5;
}

/* ═════════════════════════════════════════════════════════
   ATS SECTION
═════════════════════════════════════════════════════════ */
.ats-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
  overflow: hidden;
  position: relative;
}
.ats-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}

.ats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ats-content .section-tag {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
}
.ats-content .section-title { color: #fff; margin-bottom: 20px; }
.ats-content > p {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.ats-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.ats-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: .9375rem;
}
.ats-list li i { color: #34D399; font-size: 1rem; }

/* ATS card */
.ats-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
}

.ats-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.ats-icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.ats-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.ats-card-sub { font-size: .8125rem; color: var(--text-lt); }

/* ring */
.ats-ring-wrap {
  position: relative;
  width: 140px;
  margin: 0 auto 28px;
}
.ats-ring-svg { width: 100%; transform: rotate(-90deg); }
.ring-bg   { fill: none; stroke: #E2E8F0; stroke-width: 10; }
.ring-fill {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 10;
  stroke-linecap: round;
  stroke: var(--blue);
  transition: stroke-dashoffset 1.5s ease;
}
.ats-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ats-ring-score {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.ats-ring-total { font-size: .75rem; color: var(--text-lt); font-weight: 500; }
.ats-ring-grade {
  font-size: .6875rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ATS bars */
.ats-bars { display: flex; flex-direction: column; gap: 14px; }
.ats-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8125rem;
  color: var(--text-md);
}
.ats-bar-row span:first-child { min-width: 100px; font-weight: 500; }
.ats-bar-row span:last-child  { min-width: 36px; text-align: right; font-weight: 600; color: var(--blue); }
.ats-bar-track {
  flex: 1;
  height: 7px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.ats-bar-fill {
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--blue) 0%, #60A5FA 100%);
  border-radius: var(--radius-full);
  transform-origin: left;
  animation: bar-grow 1.2s ease both;
}
@keyframes bar-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ═════════════════════════════════════════════════════════
   TEMPLATES
═════════════════════════════════════════════════════════ */
.templates-section { background: var(--bg); }

.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.tmpl-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--trans);
  cursor: pointer;
}
.tmpl-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--blue-50);
}

.tmpl-preview {
  padding: 20px;
  min-height: 260px;
}
.tmpl-modern      { background: #F0F4FF; }
.tmpl-professional{ background: #F5F3FF; }
.tmpl-executive   { background: #FAFAFA; }
.tmpl-minimal     { background: #F0FFF4; }

.tmpl-header { padding: 14px; border-radius: var(--radius-md); margin-bottom: 12px; }
.tmpl-hdr-blue  { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%); }
.tmpl-hdr-dark  { background: linear-gradient(135deg, #1E293B 0%, #334155 100%); }
.tmpl-hdr-clean { background: #fff; border: 1px solid var(--border); }
.tmpl-hdr-minimal { background: transparent; }

/* template bars (simulated content lines) */
.t-bar {
  height: 5px;
  border-radius: var(--radius-full);
  background: #CBD5E1;
}
.t-bar-xl   { width: 80%; }
.t-bar-lg   { width: 65%; }
.t-bar-sm   { width: 45%; }
.t-bar-full { width: 100%; }
.t-bar-white{ background: rgba(255,255,255,.8); }
.t-bar-light{ background: rgba(255,255,255,.5); }
.t-bar-dark { background: #1E293B; }
.t-bar-accent{ background: var(--blue); }
.t-bar-gray { background: #CBD5E1; }

.mt2 { margin-top: 4px; }
.mt4 { margin-top: 8px; }
.mt6 { margin-top: 10px; }
.mt8 { margin-top: 14px; }

.tmpl-contact-row { display: flex; gap: 8px; }
.tmpl-body { padding: 0 4px; }
.tmpl-two-col { display: flex; gap: 10px; }
.tmpl-sidebar { width: 38%; }
.tmpl-main-col { flex: 1; }
.tmpl-section { margin-bottom: 10px; }

.t-section-label {
  height: 7px;
  width: 55%;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}
.t-sl-blue    { background: var(--blue); }
.t-sl-dark    { background: #1E293B; }
.t-sl-accent  { background: var(--blue); }
.t-sl-minimal { background: #CBD5E1; }

.t-divider { height: 1px; background: var(--border); }

.t-chips { display: flex; gap: 5px; flex-wrap: wrap; }
.t-chips-col { display: flex; flex-direction: column; gap: 4px; }
.t-chip {
  height: 14px;
  width: 44px;
  border-radius: var(--radius-full);
}
.t-chip-blue    { background: var(--blue-light); }
.t-chip-dark    { background: #E2E8F0; }
.t-chip-outline { background: transparent; border: 1.5px solid #CBD5E1; }

.tmpl-info { padding: 20px; border-top: 1px solid var(--border); }
.tmpl-info h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.tmpl-info p { font-size: .8125rem; color: var(--text-lt); margin-bottom: 12px; line-height: 1.5; }

.tmpl-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tmpl-badge-blue  { background: var(--blue-light); color: var(--blue); }
.tmpl-badge-green { background: var(--green-lt); color: var(--green); }
.tmpl-badge-purple{ background: var(--purple-lt); color: var(--purple); }
.tmpl-badge-gray  { background: #F1F5F9; color: var(--text-lt); }

/* ═════════════════════════════════════════════════════════
   SCREENSHOTS / SLIDER
═════════════════════════════════════════════════════════ */
.screenshots-section { background: #fff; }

.slider-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.slider-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.slider-track {
  display: flex;
  gap: 32px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.slide {
  flex: 0 0 calc(33.33% - 22px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* slide phone */
.slide-phone {
  width: 200px;
  background: #0F172A;
  border-radius: 30px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25), 0 0 0 1.5px rgba(255,255,255,.1);
}
.slide-notch {
  width: 60px; height: 16px;
  background: #0F172A;
  border-radius: 0 0 10px 10px;
  margin: 0 auto 8px;
}
.slide-screen {
  border-radius: 20px;
  overflow: hidden;
  background: #F8FAFC;
}
.slide-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-lt);
}

/* real-image phone frame */
.slide-phone-img {
  width: 220px;
  background: #0F172A;
  border-radius: 36px;
  padding: 10px;
  box-shadow:
    0 30px 60px rgba(0,0,0,.35),
    0 0 0 1.5px rgba(255,255,255,.12),
    inset 0 0 0 2px #1E293B;
  position: relative;
}
.slide-phone-img::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 5px;
  background: #1E293B;
  border-radius: 0 0 6px 6px;
  z-index: 2;
}
.slide-phone-frame {
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  line-height: 0;
  position: relative;
}
.slide-real-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 26px;
}

/* ── screen mocks (shared base) ── */
.ss {
  padding: 10px 9px;
  min-height: 340px;
  position: relative;
  font-size: .45rem;
}
.ss-bar {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #fff;
  font-weight: 700;
  font-size: .55rem;
}
.ss-bar-plain {
  background: transparent;
  color: var(--text);
  gap: 6px;
  padding: 0 0 8px;
  border-bottom: 1px solid var(--border);
}
.ss-logo-text { font-weight: 800; font-size: .7rem; }
.ss-avatar {
  margin-left: auto;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: grid; place-items: center;
  font-size: .5rem; font-weight: 700;
}
.ss-back { color: var(--blue); font-size: .65rem; }
.ss-share,.ss-gear { margin-left: auto; color: var(--text-lt); font-size: .65rem; }

.ss-welcome { font-weight: 700; font-size: .65rem; color: var(--text); margin-bottom: 2px; }
.ss-sub { font-size: .5rem; color: var(--text-lt); margin-bottom: 10px; }

.ss-card {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 6px;
}
.ss-card-blue   { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%); }
.ss-card-purple { background: linear-gradient(135deg, var(--purple) 0%, #6D28D9 100%); }

.ss-card-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,.2);
  color: #fff;
  display: grid; place-items: center;
  font-size: .65rem;
  flex-shrink: 0;
}
.ss-card-body { flex: 1; }
.ss-score-badge {
  font-size: .5rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(255,255,255,.2);
  color: #fff;
  margin-top: 5px;
  display: inline-block;
}
.ss-score-med { background: rgba(251,191,36,.3); }
.ss-new-btn {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #fff;
  font-weight: 700;
  font-size: .55rem;
}

/* shared bar in slides */
.s-bar { height: 4px; border-radius: 4px; background: rgba(255,255,255,.5); }
.s-bar-lg { width: 70%; }
.s-bar-sm { width: 50%; }
.s-bar-gray { background: #CBD5E1; }
.s-bar-light { background: rgba(255,255,255,.3); }

/* builder screen */
.ss-progress {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 0;
}
.ss-step {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #E2E8F0;
  display: grid; place-items: center;
  font-size: .45rem;
  font-weight: 700;
  color: var(--text-lt);
  flex-shrink: 0;
}
.ss-step-done   { background: var(--green); color: #fff; }
.ss-step-active { background: var(--blue); color: #fff; }
.ss-step-line {
  flex: 1;
  height: 2px;
  background: #E2E8F0;
}
.ss-sl-done { background: var(--green); }

.ss-section-name {
  font-weight: 700; font-size: .6rem;
  color: var(--text); margin-bottom: 8px;
}
.ss-field { margin-bottom: 7px; }
.ss-field-label { font-size: .5rem; color: var(--text-lt); margin-bottom: 3px; }
.ss-field-box {
  height: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
}
.ss-field-tall { height: 32px; }
.ss-ai-chip {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  color: #fff;
  font-size: .5rem;
  font-weight: 600;
}

/* preview screen */
.ss-resume-doc {
  background: #fff;
  border-radius: 6px;
  padding: 10px 8px;
  margin-bottom: 8px;
  box-shadow: var(--shadow-sm);
}
.rp-name-bar  { height: 6px; width: 70%; background: #1E293B; border-radius: 4px; }
.rp-title-bar { height: 4px; width: 50%; background: var(--blue); border-radius: 4px; }
.rp-contact-row { display: flex; gap: 6px; }
.rp-c-bar { height: 3px; width: 28%; background: #CBD5E1; border-radius: 4px; }
.rp-divider { height: 1px; background: var(--border); }
.rp-section { margin-top: 7px; }
.rp-sec-title { height: 5px; width: 45%; background: var(--blue); border-radius: 4px; margin-bottom: 5px; }
.rp-bar { height: 3px; background: #CBD5E1; border-radius: 4px; }
.rp-bar-full { width: 100%; }
.rp-bar-lg { width: 70%; }
.rp-bar-sm { width: 45%; }
.ss-dl-bar {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}
.ss-dl-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #fff;
  font-size: .5rem;
  font-weight: 700;
}

/* ATS screen */
.ss-ats-ring-wrap {
  position: relative;
  width: 80px;
  margin: 8px auto 6px;
}
.ss-ats-ring-wrap svg { width: 100%; }
.ss-ats-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ss-ats-num {
  font-weight: 800;
  font-size: .85rem;
  color: var(--blue);
  line-height: 1;
}
.ss-ats-lbl { font-size: .38rem; color: var(--text-lt); }
.ss-ats-grade {
  text-align: center;
  font-weight: 700;
  font-size: .6rem;
  color: var(--green);
  margin-bottom: 8px;
}
.ss-mini-bars { display: flex; flex-direction: column; gap: 6px; }
.ss-mini-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .45rem;
  color: var(--text-md);
}
.ss-mini-row span:first-child { min-width: 44px; }
.ss-mini-row span:last-child  { min-width: 24px; text-align: right; font-weight: 600; }
.ss-mini-track {
  flex: 1;
  height: 4px;
  background: #E2E8F0;
  border-radius: 4px;
  overflow: hidden;
}
.ss-mini-track div {
  height: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, #60A5FA 100%);
  border-radius: 4px;
}

/* templates screen */
.ss-tmpl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 8px;
}
.ss-tmpl { position: relative; }
.ss-tmpl-thumb {
  height: 70px;
  border-radius: 6px;
  border: 2px solid transparent;
  margin-bottom: 4px;
}
.ss-tmpl-active .ss-tmpl-thumb { border-color: var(--blue); }
.ss-tt-modern { background: linear-gradient(135deg, var(--blue-light) 0%, #BFDBFE 100%); }
.ss-tt-prof   { background: linear-gradient(135deg, var(--purple-lt) 0%, #DDD6FE 100%); }
.ss-tt-exec   { background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%); }
.ss-tt-min    { background: linear-gradient(135deg, var(--green-lt) 0%, #A7F3D0 100%); }
.ss-tmpl-name { font-size: .5rem; font-weight: 600; color: var(--text); text-align: center; }
.ss-tmpl-check {
  position: absolute;
  top: 4px; right: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid; place-items: center;
  font-size: .45rem;
}

/* profile screen */
.ss-profile-hero {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.ss-profile-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  color: #fff;
  font-weight: 700;
  font-size: .6rem;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ss-pstats {
  display: flex;
  gap: 6px;
  background: var(--blue-light);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 10px;
}
.ss-pstat { flex: 1; text-align: center; }
.ss-pstat-n { font-weight: 800; font-size: .75rem; color: var(--blue); }
.ss-pstat-l { font-size: .4rem; color: var(--text-lt); }
.ss-menu { display: flex; flex-direction: column; gap: 3px; }
.ss-menu-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 6px;
  background: #fff;
  font-size: .5rem;
  font-weight: 600;
  color: var(--text);
}

/* slider nav */
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  display: grid; place-items: center;
  font-size: .875rem;
  flex-shrink: 0;
  transition: all var(--trans);
  box-shadow: var(--shadow-sm);
}
.slider-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
}
.slider-btn:disabled { opacity: .35; pointer-events: none; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--trans);
  padding: 0;
}
.slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--blue);
}

/* ═════════════════════════════════════════════════════════
   COMPARISON TABLE
═════════════════════════════════════════════════════════ */
.compare-section { background: #fff; }

.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.compare-table th, .compare-table td {
  padding: 16px 24px;
  text-align: center;
  font-size: .9375rem;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: #F8FAFC;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
  font-size: .9rem;
  letter-spacing: .02em;
}
.compare-table td:first-child, .compare-table th:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-md);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--bg); }

.col-nexcv { background: var(--blue-light) !important; }
.nexcv-col-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
}

.icon-yes     { color: var(--green); font-size: 1.25rem; }
.icon-no      { color: #CBD5E1; font-size: 1.25rem; }
.icon-limited {
  font-size: .8125rem;
  font-weight: 600;
  color: #D97706;
  background: #FEF3C7;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* ═════════════════════════════════════════════════════════
   TESTIMONIALS
═════════════════════════════════════════════════════════ */
.testimonials-section {
  background: linear-gradient(135deg, var(--bg) 0%, #EFF6FF 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testi-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue-50);
}

.testi-stars { display: flex; gap: 3px; color: #FBBF24; font-size: .875rem; }

.testi-card blockquote {
  font-size: .9375rem;
  color: var(--text-md);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  border-left: 3px solid var(--blue-50);
  padding-left: 16px;
}

.testi-author { display: flex; align-items: center; gap: 14px; }

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: .875rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-av-1 { background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%); }
.testi-av-2 { background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%); }
.testi-av-3 { background: linear-gradient(135deg, var(--orange) 0%, #EF4444 100%); }

.testi-info strong { display: block; font-weight: 700; font-size: .9375rem; color: var(--text); }
.testi-info span   { font-size: .8125rem; color: var(--text-lt); }

/* ═════════════════════════════════════════════════════════
   FAQ
═════════════════════════════════════════════════════════ */
.faq-section { background: #fff; }

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
  transition: box-shadow var(--trans);
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--blue-50); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background var(--trans), color var(--trans);
}
.faq-q:hover { background: var(--blue-light); color: var(--blue); }
.faq-item.open .faq-q { background: var(--blue-light); color: var(--blue); }

.faq-chevron {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-lt);
  font-size: .75rem;
  flex-shrink: 0;
  transition: transform var(--trans), background var(--trans);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--blue-50);
  color: var(--blue);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: .9375rem;
  color: var(--text-md);
  line-height: 1.75;
}

/* ═════════════════════════════════════════════════════════
   DOWNLOAD CTA
═════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, #2563EB 100%);
  position: relative;
  overflow: hidden;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-s1 { width: 400px; height: 400px; top: -200px; left: -100px; }
.cta-s2 { width: 300px; height: 300px; bottom: -150px; right: -50px; }
.cta-s3 { width: 150px; height: 150px; top: 30%; right: 20%; opacity: .08; }

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 96px;
}

.cta-icon-badge {
  display: inline-grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-text-group { display: flex; flex-direction: column; align-items: flex-start; }
.btn-sm-text { font-size: .65rem; font-weight: 400; opacity: .75; }
.btn-lg-text { font-size: 1rem; font-weight: 700; }

.cta-perks {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.7);
  font-size: .875rem;
}
.cta-perks span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-perks i { color: #34D399; }

/* ═════════════════════════════════════════════════════════
   FOOTER
═════════════════════════════════════════════════════════ */
.footer {
  background: #0F172A;
  color: rgba(255,255,255,.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-block: 72px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: .875rem;
  line-height: 1.65;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  display: grid; place-items: center;
  font-size: .875rem;
  transition: all var(--trans);
}
.social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--trans);
}
.footer-links a:hover { color: #fff; }

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
}
.footer-contact-info i { color: var(--blue); }
.footer-contact-info a {
  color: rgba(255,255,255,.5);
  transition: color var(--trans);
}
.footer-contact-info a:hover { color: #fff; }

.footer-dl-btn { font-size: .8125rem; padding: 10px 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
}

/* ═════════════════════════════════════════════════════════
   BACK TO TOP
═════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: .875rem;
  box-shadow: 0 4px 16px rgba(37,99,235,.4);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--trans);
  z-index: 999;
  pointer-events: none;
  display: grid; place-items: center;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,.5);
}

/* ═════════════════════════════════════════════════════════
   RESPONSIVE
═════════════════════════════════════════════════════════ */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: 60px;
    gap: 48px;
  }
  .hero-content { order: 1; max-width: 600px; margin-inline: auto; }
  .hero-desc { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-mockup { order: 2; }
  .phone-wrap { width: fit-content; }

  .ats-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .ats-list { align-items: center; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }

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

  .slide { flex: 0 0 calc(50% - 16px); }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  .section { padding-block: 64px; }
  .section-head { margin-bottom: 40px; }

  /* nav */
  .nav__menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(248,250,252,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__link { padding: 12px 16px; border-radius: var(--radius-md); font-size: 1rem; }
  .nav__cta  { display: none; }
  .nav__toggle { display: flex; }

  .hero { min-height: auto; padding-top: 72px; }
  .phone-frame { width: 220px; }
  .float-chip { display: none; }

  .steps-row {
    flex-direction: column;
    gap: 16px;
  }
  .step-arrow { transform: rotate(90deg); margin: -8px auto; }

  .slide { flex: 0 0 calc(100% - 8px); }
  .slider-btn { display: none; }

  .compare-table th, .compare-table td { padding: 12px 16px; font-size: .85rem; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }

  .cta-btns { flex-direction: column; align-items: center; }

  .back-to-top { bottom: 20px; right: 20px; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .hero-title { font-size: 1.875rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .trust-divider { display: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-number { font-size: 2rem; }

  .features-grid { grid-template-columns: 1fr; }
  .templates-grid { grid-template-columns: 1fr 1fr; }

  .cta-section { padding-block: 32px; }
  .section { padding-block: 48px; }
}
