/* AI ATS Resume Builder Theme — Blue & White design system */

:root {
	--blue: #2f6fed;
	--blue-dark: #1d4ed8;
	--blue-darker: #1e3a8a;
	--blue-light: #eaf1ff;
	--blue-lighter: #f5f8ff;
	--purple: #7c3aed;
	--purple-light: #f1e9ff;
	--green-light: #dcfce7;
	--orange: #d97706;
	--orange-light: #fef3c7;
	--pink: #db2777;
	--pink-light: #fce7f3;
	--navy-dark: #0f1229;
	--bg: #ffffff;
	--surface: #ffffff;
	--text: #111827;
	--muted: #6b7280;
	--border: #e5e7eb;
	--success: #16a34a;
	--danger: #dc2626;
	--radius: 14px;
	--shadow: 0 4px 20px rgba(31, 76, 200, 0.08);
	--shadow-lg: 0 12px 40px rgba(31, 76, 200, 0.12);
}

/* Dark mode — same blue accent, dark surfaces. Toggled via <html data-ats-theme="dark">,
   set by the sun/moon toggle in the app nav (see header.php + theme-core.js). Default is
   always light; dark is strictly opt-in and remembered per-visitor via localStorage. */
html[data-ats-theme='dark'] {
	--blue-light: #1e2b4d;
	--blue-lighter: #16213d;
	--bg: #0f1120;
	--surface: #171a2e;
	--text: #f1f2f8;
	--muted: #9498ad;
	--border: #2a2e47;
	--shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
	--shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
}
html[data-ats-theme='dark'] .ats-topnav,
html[data-ats-theme='dark'] .ats-landing-nav { background: rgba(15, 17, 32, 0.9); }
html[data-ats-theme='dark'] .ats-input,
html[data-ats-theme='dark'] .ats-select,
html[data-ats-theme='dark'] textarea.ats-input { background: #1e2138; color: var(--text); }
html[data-ats-theme='dark'] .ats-auth-card,
html[data-ats-theme='dark'] .ats-modal { background: var(--surface); }

* { box-sizing: border-box; }

html, body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 15px;
	line-height: 1.55;
	transition: background 0.2s ease, color 0.2s ease;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.ats-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------------- Top navigation ---------------- */
.ats-topnav {
	background: #fff;
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 50;
}
.ats-topnav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1180px;
	margin: 0 auto;
	padding: 14px 24px;
}
.ats-logo {
	font-weight: 800;
	font-size: 18px;
	color: var(--blue-darker);
	display: flex;
	align-items: center;
	gap: 8px;
}
.ats-logo-img { height: 36px; width: auto; display: block; }
.ats-logo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); display: inline-block; }
.ats-nav-links { display: flex; align-items: center; gap: 6px; }
.ats-nav-link {
	padding: 8px 14px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	color: var(--text);
}
.ats-nav-link:hover { background: var(--blue-light); text-decoration: none; }
.ats-nav-link.active { background: var(--blue); color: #fff; }
.ats-nav-credits {
	background: var(--blue-light);
	color: var(--blue-darker);
	font-weight: 700;
	font-size: 13px;
	padding: 6px 12px;
	border-radius: 999px;
	margin-right: 6px;
}
.ats-nav-logout { color: var(--danger); font-weight: 600; font-size: 13.5px; margin-left: 8px; cursor: pointer; }
.ats-theme-toggle {
	background: var(--blue-light); border: none; border-radius: 999px; width: 34px; height: 34px;
	font-size: 15px; cursor: pointer; margin-right: 10px; display: inline-flex; align-items: center; justify-content: center;
	transition: transform 0.15s ease;
}
.ats-theme-toggle:hover { transform: scale(1.08); }

@media (max-width: 780px) {
	.ats-nav-links { display: none; }
	.ats-topnav-inner { gap: 8px; }
}

/* ---------------- Buttons ---------------- */
.ats-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: none;
	border-radius: 10px;
	padding: 11px 20px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
	transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}
.ats-btn:hover { transform: translateY(-1px); }
.ats-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.ats-btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 16px rgba(47,111,237,0.28); }
.ats-btn-primary:hover { background: var(--blue-dark); }
.ats-btn-outline { background: #fff; color: var(--blue); border: 1.5px solid var(--blue); }
.ats-btn-outline:hover { background: var(--blue-light); }
.ats-btn-ghost { background: var(--blue-light); color: var(--blue-darker); }
.ats-btn-danger { background: #fee2e2; color: var(--danger); }
.ats-btn-block { width: 100%; }
.ats-btn-sm { padding: 7px 14px; font-size: 13px; }

/* ---------------- Cards / surfaces ---------------- */
.ats-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px;
	box-shadow: var(--shadow);
}
.ats-card-flat { box-shadow: none; }

/* ---------------- Forms ---------------- */
.ats-field { display: block; margin-bottom: 14px; }
.ats-field-label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.ats-input, .ats-select, textarea.ats-input {
	width: 100%;
	padding: 11px 14px;
	border-radius: 9px;
	border: 1.5px solid var(--border);
	font-size: 14.5px;
	font-family: inherit;
	color: var(--text);
	background: #fff;
	transition: border-color 0.12s ease;
}
.ats-input:focus, .ats-select:focus, textarea.ats-input:focus {
	outline: none;
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(47,111,237,0.14);
}
textarea.ats-input { min-height: 90px; resize: vertical; }

/* ---------------- Auth / login page ---------------- */
.ats-auth-page {
	min-height: calc(100vh - 65px);
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--blue-lighter) 0%, #ffffff 60%);
	padding: 40px 20px;
}
.ats-auth-card {
	width: 100%;
	max-width: 420px;
	background: #fff;
	border-radius: 18px;
	box-shadow: var(--shadow-lg);
	padding: 36px 32px;
}
.ats-auth-title { font-size: 22px; font-weight: 800; text-align: center; margin-bottom: 4px; color: var(--blue-darker); }
.ats-auth-subtitle { text-align: center; color: var(--muted); font-size: 13.5px; margin-bottom: 26px; }
.ats-auth-tabs { display: flex; background: var(--blue-light); border-radius: 10px; padding: 4px; margin-bottom: 22px; }
.ats-auth-tab { flex: 1; text-align: center; padding: 8px; border-radius: 8px; font-weight: 700; font-size: 13.5px; cursor: pointer; color: var(--blue-darker); }
.ats-auth-tab.active { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.ats-auth-link { text-align: center; font-size: 13px; margin-top: 16px; color: var(--muted); }
.ats-auth-error { background: #fee2e2; color: var(--danger); padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 14px; }
.ats-auth-success { background: #dcfce7; color: var(--success); padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 14px; }
.ats-divider { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; margin: 18px 0; }
.ats-divider::before, .ats-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ---------------- Page shell ---------------- */
.ats-page { padding: 32px 0 60px; min-height: calc(100vh - 65px); }
.ats-page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.ats-page-title { font-size: 24px; font-weight: 800; color: var(--text); }
.ats-page-subtitle { color: var(--muted); font-size: 14px; margin-top: 2px; }

/* ---------------- Dashboard stats ---------------- */
.ats-stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 28px; }
.ats-stat-card { text-align: center; padding: 22px 16px; }
.ats-stat-icon { font-size: 22px; margin-bottom: 6px; }
.ats-stat-value { font-size: 28px; font-weight: 800; color: var(--blue); }
.ats-stat-label { font-size: 12.5px; color: var(--muted); margin-top: 4px; font-weight: 600; }

.ats-section { margin-bottom: 34px; }
.ats-section-heading { font-size: 17px; font-weight: 800; margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; }

/* ---------------- Resume / template grids ---------------- */
.ats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.ats-resume-card { display: flex; flex-direction: column; gap: 8px; }
.ats-resume-title { font-weight: 700; font-size: 15px; }
.ats-resume-meta { font-size: 12.5px; color: var(--muted); }
.ats-badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 700; }
.ats-badge-score-high { background: #dcfce7; color: var(--success); }
.ats-badge-score-mid { background: #fef3c7; color: #b45309; }
.ats-badge-score-low { background: #fee2e2; color: var(--danger); }
.ats-resume-actions { display: flex; gap: 8px; margin-top: 4px; }

.ats-template-card { text-align: center; cursor: pointer; transition: box-shadow 0.15s ease, border-color 0.15s ease; }
.ats-template-card:hover { box-shadow: var(--shadow-lg); border-color: var(--blue); }
.ats-template-card.selected { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,111,237,0.16); }
.ats-template-thumb {
	width: 100%; height: 180px; border-radius: 10px; margin-bottom: 12px;
	background: linear-gradient(160deg, var(--blue-light), #fff);
	display: flex; align-items: center; justify-content: center;
	font-size: 40px; font-weight: 800; color: var(--blue);
	border: 1px solid var(--border);
}
.ats-template-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.ats-template-desc { font-size: 12.5px; color: var(--muted); margin-bottom: 12px; min-height: 32px; }

/* ---------------- Wallet ---------------- */
.ats-wallet-hero {
	background: linear-gradient(135deg, var(--blue), var(--blue-darker));
	color: #fff;
	border-radius: 18px;
	padding: 32px;
	text-align: center;
	margin-bottom: 28px;
}
.ats-wallet-balance { font-size: 40px; font-weight: 800; }
.ats-wallet-sub { opacity: 0.9; font-size: 14px; margin-top: 4px; }
.ats-pack-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; margin-bottom: 28px; }
.ats-pack-card { text-align: center; }
.ats-pack-price { font-size: 26px; font-weight: 800; color: var(--blue-darker); margin: 6px 0; }
.ats-txn-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 13.5px; }
.ats-txn-row:last-child { border-bottom: none; }
.ats-tag-success { color: var(--success); font-weight: 700; }
.ats-tag-muted { color: var(--muted); }

/* ---------------- New Resume modal ---------------- */
.ats-modal-overlay {
	position: fixed; inset: 0; background: rgba(17, 24, 39, 0.5);
	display: flex; align-items: center; justify-content: center;
	z-index: 100; padding: 20px;
}
.ats-modal {
	background: #fff; border-radius: 16px; padding: 28px; max-width: 720px; width: 100%;
	box-shadow: var(--shadow-lg); position: relative; max-height: 88vh; overflow-y: auto;
}
.ats-modal-close {
	position: absolute; top: 16px; right: 18px; background: none; border: none;
	font-size: 16px; color: var(--muted); cursor: pointer;
}
.ats-modal-title { font-size: 19px; font-weight: 800; margin-bottom: 18px; padding-right: 24px; }
.ats-modal-subtitle { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.ats-modal-status { font-size: 13px; color: var(--muted); margin-top: 10px; min-height: 18px; }

.ats-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ats-choice-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 700px) { .ats-choice-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ats-choice-grid, .ats-choice-grid-3 { grid-template-columns: 1fr; } }
.ats-choice-card {
	border: 1.5px solid var(--border); border-radius: 12px; padding: 18px; cursor: pointer;
	transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
.ats-choice-card:hover { border-color: var(--blue); box-shadow: 0 4px 14px rgba(47,111,237,0.14); }
.ats-choice-icon { font-size: 26px; margin-bottom: 8px; }
.ats-choice-title { font-weight: 700; font-size: 14.5px; margin-bottom: 6px; }
.ats-choice-desc { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.ats-modal-body-slot:not(:empty) { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }

/* ---------------- Misc ---------------- */
.ats-empty { text-align: center; color: var(--muted); padding: 40px 20px; }
.ats-loading { text-align: center; color: var(--muted); padding: 40px 20px; }
.ats-footer { border-top: 1px solid var(--border); padding: 32px 0; text-align: center; color: var(--muted); font-size: 13px; }
.ats-footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.ats-footer-logo { height: 34px; width: auto; opacity: 0.9; }
.ats-footer-copy { font-size: 12.5px; color: var(--muted); }

/* ================================================================
   Landing / marketing page
   ================================================================ */
.ats-landing-nav {
	background: rgba(255,255,255,0.85);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	position: sticky;
	top: 0;
	z-index: 60;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.ats-landing-nav.scrolled {
	border-bottom-color: var(--border);
	box-shadow: 0 4px 20px rgba(31, 76, 200, 0.06);
}
.ats-landing-nav-inner {
	max-width: 1180px; margin: 0 auto; padding: 16px 24px;
	display: flex; align-items: center; justify-content: space-between;
}
.ats-landing-nav-links { display: flex; align-items: center; gap: 26px; }
.ats-landing-nav-links a:not(.ats-btn) {
	color: var(--text); font-weight: 600; font-size: 14.5px; position: relative; padding: 4px 0;
}
.ats-landing-nav-links a:not(.ats-btn)::after {
	content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
	background: var(--blue); transition: right 0.18s ease; border-radius: 2px;
}
.ats-landing-nav-links a:not(.ats-btn):hover { color: var(--blue); text-decoration: none; }
.ats-landing-nav-links a:not(.ats-btn):hover::after { right: 0; }
.ats-landing-nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--blue-darker); }
.ats-landing-nav-cta-mobile { display: none; }

@media (max-width: 860px) {
	.ats-landing-nav-links {
		position: absolute; top: 100%; left: 0; right: 0; background: #fff;
		flex-direction: column; align-items: flex-start; padding: 16px 24px; gap: 14px;
		border-bottom: 1px solid var(--border); display: none;
		box-shadow: 0 12px 24px rgba(31,76,200,0.08);
	}
	.ats-landing-nav-links.open { display: flex; }
	.ats-landing-nav-toggle { display: block; }
	.ats-landing-nav-cta { display: none; }
	.ats-landing-nav-links.open .ats-landing-nav-cta-mobile { display: flex; gap: 10px; margin-top: 6px; }
}

/* Scroll-reveal utility: elements fade + rise into place as they enter the viewport.
   Scoped to .ats-js (set synchronously in <head>) so content is never hidden if
   JavaScript fails to load — it just skips the animation and shows immediately. */
.ats-js .ats-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.ats-reveal.is-visible { opacity: 1; transform: translateY(0); }
.ats-reveal-delay-1.is-visible { transition-delay: 0.08s; }
.ats-reveal-delay-2.is-visible { transition-delay: 0.16s; }
.ats-reveal-delay-3.is-visible { transition-delay: 0.24s; }

.ats-hero {
	position: relative;
	background: linear-gradient(180deg, var(--blue-lighter) 0%, #ffffff 100%);
	padding: 88px 24px 70px;
	overflow: hidden;
}
.ats-hero::before, .ats-hero::after {
	content: ''; position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0;
	opacity: 0.35;
}
.ats-hero::before { width: 420px; height: 420px; background: #93c5fd; top: -160px; right: -120px; }
.ats-hero::after { width: 320px; height: 320px; background: #c7d2fe; bottom: -140px; left: -100px; }
.ats-hero-inner {
	position: relative; z-index: 1;
	max-width: 1180px; margin: 0 auto;
	display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.ats-hero-eyebrow {
	display: inline-flex; align-items: center; gap: 6px;
	background: #fff; color: var(--blue-darker); border: 1px solid var(--blue-light);
	font-weight: 700; font-size: 12.5px; padding: 7px 16px; border-radius: 999px; margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(47,111,237,0.1);
}
.ats-hero-title { font-size: 44px; font-weight: 800; line-height: 1.14; color: var(--text); margin-bottom: 20px; letter-spacing: -0.5px; }
.ats-hero-title span {
	background: linear-gradient(120deg, var(--blue) 0%, #6366f1 100%);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.ats-hero-subtitle { font-size: 17.5px; color: var(--muted); margin-bottom: 30px; max-width: 520px; line-height: 1.6; }
.ats-hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.ats-hero-cta-row .ats-btn-primary { padding: 13px 26px; font-size: 15px; }
.ats-hero-trust { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); }
.ats-hero-trust::before { content: '✓'; color: var(--success); font-weight: 800; }

/* Trust / capability strip beneath the hero */
.ats-trust-strip {
	max-width: 1180px; margin: 8px auto 0; padding: 0 24px 10px;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
	position: relative; z-index: 1;
}
@media (max-width: 780px) { .ats-trust-strip { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.ats-trust-item {
	display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 700; color: var(--blue-darker);
	background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 15px 18px;
	box-shadow: var(--shadow); line-height: 1.35;
}
.ats-trust-item span.ats-trust-icon { font-size: 19px; flex-shrink: 0; }

/* Simple CSS resume mockup — no external images required */
.ats-mockup-wrap { position: relative; }
.ats-mockup {
	background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg);
	border: 1px solid var(--border); padding: 26px; transform: rotate(-2deg);
	position: relative; z-index: 1;
}
.ats-mockup-compact { padding-bottom: 22px; }
.ats-mockup-avatar {
	width: 40px; height: 40px; border-radius: 50%;
	background: linear-gradient(135deg, var(--blue), #6366f1); margin-bottom: 14px;
}
.ats-mockup-bar { height: 10px; border-radius: 5px; background: var(--blue-light); margin-bottom: 12px; }
.ats-mockup-bar.short { width: 40%; }
.ats-mockup-bar.medium { width: 70%; }
.ats-mockup-name { height: 18px; width: 55%; border-radius: 5px; background: var(--blue); margin-bottom: 16px; }
.ats-mockup-score {
	display: inline-flex; align-items: center; gap: 8px; background: #dcfce7; color: var(--success);
	font-weight: 800; font-size: 13px; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.ats-mockup-section-title { height: 10px; width: 30%; border-radius: 5px; background: var(--blue-darker); margin: 18px 0 10px; }

/* ATS Analysis panel — score ring + keyword match/gap chips, overlapping the resume mockup */
.ats-analysis-panel {
	position: relative; z-index: 2; margin: -28px 18px 0; background: #fff;
	border-radius: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
	padding: 18px 20px; display: flex; align-items: center; gap: 18px;
}
.ats-score-ring-wrap { position: relative; width: 76px; height: 76px; flex-shrink: 0; }
.ats-score-ring { width: 76px; height: 76px; transform: rotate(-90deg); }
.ats-score-ring-bg { fill: none; stroke: var(--blue-light); stroke-width: 10; }
.ats-score-ring-fg {
	fill: none; stroke: var(--blue); stroke-width: 10; stroke-linecap: round;
	transition: stroke-dasharray 0.6s ease;
}
.ats-score-ring-label {
	position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ats-score-ring-value { font-size: 20px; font-weight: 800; color: var(--blue-darker); line-height: 1; }
.ats-score-ring-caption { font-size: 8.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.4px; margin-top: 2px; }
.ats-analysis-details { flex: 1; min-width: 0; }
.ats-analysis-heading { font-size: 11.5px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.ats-keyword-list { display: flex; flex-wrap: wrap; gap: 8px; }
.ats-kw {
	font-size: 11.5px; font-weight: 700; padding: 6px 13px; border-radius: 999px;
	white-space: nowrap;
}
.ats-kw-match { background: #dcfce7; color: #15803d; }
.ats-kw-missing { background: #fee2e2; color: #b91c1c; }

@media (max-width: 860px) {
	.ats-hero-inner { grid-template-columns: 1fr; }
	.ats-hero-title { font-size: 32px; }
	.ats-mockup { transform: none; }
	.ats-analysis-panel { margin: -20px 8px 0; flex-direction: column; align-items: flex-start; gap: 12px; }
	.ats-analysis-details { width: 100%; }
}

@media (max-width: 420px) {
	.ats-keyword-list { gap: 6px; }
	.ats-kw { font-size: 11px; padding: 5px 9px; }
}

.ats-section-public { padding: 76px 24px; position: relative; }
.ats-section-public.alt { background: var(--blue-lighter); }
.ats-section-public-inner { max-width: 1180px; margin: 0 auto; }
.ats-section-eyebrow {
	text-align: center; color: var(--blue); font-weight: 800; font-size: 13px;
	text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.ats-section-title { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.3px; }
.ats-section-subtitle { text-align: center; color: var(--muted); font-size: 15.5px; max-width: 620px; margin: 0 auto 48px; line-height: 1.65; }

.ats-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .ats-benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ats-benefits-grid { grid-template-columns: 1fr; } }

.ats-benefit-card {
	background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px;
	box-shadow: var(--shadow); position: relative; overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ats-benefit-card::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
	background: var(--benefit-accent, var(--blue));
}
.ats-benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ats-benefit-icon {
	width: 52px; height: 52px; border-radius: 14px;
	background: var(--benefit-bg, var(--blue-light));
	display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px;
}
.ats-benefit-title { font-weight: 700; font-size: 16.5px; margin-bottom: 8px; }
.ats-benefit-desc { color: var(--muted); font-size: 14px; line-height: 1.65; }

.ats-steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
@media (max-width: 900px) { .ats-steps-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ats-steps-row { grid-template-columns: 1fr; } }
.ats-steps-row::before {
	content: ''; position: absolute; top: 22px; left: 12.5%; right: 12.5%; height: 2px;
	background: repeating-linear-gradient(90deg, var(--blue) 0 8px, transparent 8px 16px);
	opacity: 0.4; z-index: 0;
}
@media (max-width: 900px) { .ats-steps-row::before { display: none; } }
.ats-step { text-align: center; position: relative; z-index: 1; }
.ats-step-number {
	width: 46px; height: 46px; border-radius: 50%;
	background: linear-gradient(135deg, var(--blue), #6366f1); color: #fff;
	display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 17px;
	margin: 0 auto 16px; box-shadow: 0 8px 18px rgba(47,111,237,0.3);
}
.ats-step-title { font-weight: 700; font-size: 15.5px; margin-bottom: 6px; }
.ats-step-desc { color: var(--muted); font-size: 13.5px; line-height: 1.5; }

/* Mini template preview swatches for the templates teaser section */
.ats-template-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px; }
@media (max-width: 780px) { .ats-template-preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ats-template-preview-grid { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; } }
.ats-template-preview-card {
	background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 16px;
	box-shadow: var(--shadow); transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ats-template-preview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ats-tpl-swatch { border-radius: 8px; height: 130px; margin-bottom: 12px; padding: 10px; box-sizing: border-box; overflow: hidden; }
.ats-tpl-swatch .ats-tpl-line { height: 6px; border-radius: 3px; margin-bottom: 6px; }
.ats-tpl-preview-img { width: 100%; height: 190px; object-fit: cover; object-position: top; border-radius: 8px; margin-bottom: 12px; border: 1px solid var(--border); display: block; background: #fff; }
.ats-tpl-name { font-weight: 700; font-size: 13.5px; text-align: center; }

/* Resume examples chip row on the landing page */
.ats-example-chip-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.ats-example-chip {
	background: #fff; border: 1px solid var(--border); border-radius: 999px;
	padding: 10px 18px; font-size: 13.5px; font-weight: 700; color: var(--blue-darker);
	box-shadow: var(--shadow);
}

.ats-app-section-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 0 24px; }
@media (max-width: 860px) { .ats-app-section-inner { grid-template-columns: 1fr; } }
.ats-app-feature-list { list-style: none; padding: 0; margin: 22px 0 0; }
.ats-app-feature-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14.5px; color: var(--text); }
.ats-app-feature-list li::before { content: '✓'; color: var(--success); font-weight: 800; flex-shrink: 0; }
.ats-app-badges { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.ats-app-badge {
	display: inline-flex; align-items: center; gap: 8px; background: var(--blue-darker); color: #fff;
	padding: 10px 18px; border-radius: 10px; font-weight: 700; font-size: 13.5px;
	box-shadow: 0 8px 18px rgba(30,58,138,0.25);
}
.ats-phone-mockup {
	width: 250px; height: 500px; margin: 0 auto; background: #fff; border: 10px solid var(--blue-darker);
	border-radius: 36px; box-shadow: var(--shadow-lg); padding: 26px 16px 20px; position: relative;
}
.ats-phone-notch {
	position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
	width: 70px; height: 6px; border-radius: 4px; background: var(--blue-darker); opacity: 0.4;
}
.ats-phone-mockup .ats-mockup-bar { background: var(--blue-light); }

.ats-cta-banner {
	position: relative; overflow: hidden;
	background: linear-gradient(135deg, var(--blue), var(--blue-darker));
	color: #fff; text-align: center; padding: 76px 24px;
}
.ats-cta-banner::before, .ats-cta-banner::after {
	content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08);
}
.ats-cta-banner::before { width: 300px; height: 300px; top: -140px; left: -80px; }
.ats-cta-banner::after { width: 220px; height: 220px; bottom: -100px; right: -60px; }
.ats-cta-banner-inner { position: relative; z-index: 1; }
.ats-cta-banner h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.3px; }
.ats-cta-banner p { opacity: 0.92; font-size: 15.5px; margin-bottom: 30px; }
.ats-cta-banner .ats-btn-primary { background: #fff; color: var(--blue-darker); box-shadow: 0 10px 26px rgba(0,0,0,0.18); padding: 14px 30px; font-size: 15.5px; }
.ats-cta-banner .ats-btn-primary:hover { background: #f0f4ff; }

/* ---------------- Before / After comparison ---------------- */
.ats-compare-grid {
	display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: stretch;
}
@media (max-width: 780px) { .ats-compare-grid { grid-template-columns: 1fr; } }
.ats-compare-card {
	background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 26px;
	box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.ats-compare-card-after { border-color: #bbf7d0; background: #f7fdf9; }
.ats-compare-label {
	display: inline-block; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 0.8px;
	padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; width: fit-content;
}
.ats-compare-label-before { background: #fee2e2; color: var(--danger); }
.ats-compare-label-after { background: #dcfce7; color: var(--success); }
.ats-compare-text { font-size: 14.5px; line-height: 1.7; margin: 0; }
.ats-compare-text-before { color: var(--muted); font-style: italic; }
.ats-compare-text strong { color: var(--blue-darker); background: var(--blue-light); padding: 1px 4px; border-radius: 4px; }
.ats-compare-arrow {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
	font-size: 26px; color: var(--blue);
}
.ats-compare-arrow div { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
@media (max-width: 780px) { .ats-compare-arrow { flex-direction: row; padding: 4px 0; } }

/* ---------------- Pricing ---------------- */
.ats-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .ats-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }
.ats-pricing-card {
	background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 30px 26px;
	box-shadow: var(--shadow); position: relative; transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ats-pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ats-pricing-card-highlight { border-color: var(--blue); box-shadow: 0 10px 30px rgba(47,111,237,0.18); }
.ats-pricing-badge {
	position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
	background: var(--blue); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.4px;
	padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.ats-pricing-name { font-weight: 700; font-size: 15px; color: var(--muted); margin-bottom: 6px; }
.ats-pricing-price { font-size: 30px; font-weight: 800; color: var(--blue-darker); margin-bottom: 18px; }
.ats-pricing-price span { font-size: 14px; font-weight: 600; color: var(--muted); }
.ats-pricing-list { list-style: none; padding: 0; margin: 0; }
.ats-pricing-list li {
	font-size: 13.5px; color: var(--text); padding: 8px 0; border-top: 1px solid var(--border);
	display: flex; align-items: flex-start; gap: 8px;
}
.ats-pricing-list li:first-child { border-top: none; }
.ats-pricing-list li::before { content: '✓'; color: var(--success); font-weight: 800; flex-shrink: 0; }
.ats-pricing-card .ats-btn { margin-top: 20px; }
.ats-pricing-trust {
	display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 36px;
	font-size: 13px; font-weight: 600; color: var(--blue-darker);
}

/* ---------------- FAQ accordion ---------------- */
.ats-faq-list { display: flex; flex-direction: column; gap: 12px; }
.ats-faq-item {
	background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 4px 20px;
	box-shadow: var(--shadow);
}
.ats-faq-item summary {
	cursor: pointer; font-weight: 700; font-size: 15px; padding: 16px 0; list-style: none;
	display: flex; align-items: center; justify-content: space-between; color: var(--text);
}
.ats-faq-item summary::-webkit-details-marker { display: none; }
.ats-faq-item summary::after { content: '+'; font-size: 20px; color: var(--blue); font-weight: 400; margin-left: 12px; }
.ats-faq-item[open] summary::after { content: '−'; }
.ats-faq-item p { color: var(--muted); font-size: 13.5px; line-height: 1.65; margin: 0 0 18px; }



/* ================================================================
   Landing page redesign v2 — nav dropdown, hero mockup/chips,
   trust bar, colorful features grid, connected steps, pricing +
   wallet card, testimonials, CTA banner, footer columns
   ================================================================ */

/* ---- Nav: text link + dropdown ---- */
.ats-nav-text-link { font-weight: 700; font-size: 14.5px; color: var(--text); }
.ats-nav-text-link:hover { color: var(--blue); text-decoration: none; }
.ats-nav-dropdown { position: relative; padding-bottom: 14px; margin-bottom: -14px; }
.ats-nav-dropdown-trigger { font-weight: 600; font-size: 14.5px; color: var(--text); cursor: pointer; }
.ats-nav-dropdown-menu {
	position: absolute; top: 100%; left: 0; margin-top: 4px; background: #fff;
	border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-lg);
	padding: 8px; display: none; flex-direction: column; min-width: 180px; z-index: 20;
}
.ats-nav-dropdown-menu a { padding: 8px 12px; border-radius: 8px; font-size: 13.5px; font-weight: 600; }
.ats-nav-dropdown-menu a:hover { background: var(--blue-light); text-decoration: none; }
.ats-nav-dropdown:hover .ats-nav-dropdown-menu,
.ats-nav-dropdown:focus-within .ats-nav-dropdown-menu,
.ats-nav-dropdown.ats-open .ats-nav-dropdown-menu { display: flex; }

/* ---- Hero chips row ---- */
.ats-hero-chip-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0; }
.ats-hero-chip {
	display: flex; flex-direction: column; align-items: center; gap: 6px;
	background: #fff; border: 1px solid var(--border); border-radius: 14px;
	padding: 14px 16px; box-shadow: var(--shadow); font-size: 12px; font-weight: 700; color: var(--text);
	min-width: 90px;
}
.ats-hero-chip-icon { font-size: 20px; }

/* ---- Hero social proof ---- */
.ats-hero-social-proof { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.ats-avatar-stack { display: flex; }
.ats-avatar-dot {
	width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff;
	margin-left: -10px; display: inline-block; flex-shrink: 0;
}
.ats-avatar-stack .ats-avatar-dot:first-child { margin-left: 0; }
.ats-social-proof-text { font-size: 13px; font-weight: 600; color: var(--text); }
.ats-star-rating { font-size: 13px; color: #f59e0b; letter-spacing: 1px; }
.ats-star-rating span { color: var(--muted); font-size: 12px; letter-spacing: normal; margin-left: 6px; }

/* ---- Hero mockup v2: floating score badge ---- */
.ats-mockup-floating-score {
	position: absolute; top: -22px; right: -8px; z-index: 3;
	background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
	padding: 12px 18px; display: flex; align-items: center; gap: 10px;
}
.ats-score-ring-sm { width: 46px; height: 46px; transform: rotate(-90deg); flex-shrink: 0; }
.ats-mockup-floating-score-label { position: relative; width: 0; height: 0; }
.ats-mockup-floating-score-value {
	position: absolute; left: -37px; top: -33px; width: 46px; text-align: center;
	font-size: 14px; font-weight: 800; color: var(--blue-darker); transform: rotate(0deg);
}
.ats-mockup-floating-score-text { display: flex; flex-direction: column; gap: 2px; }
.ats-mockup-floating-score-title { font-size: 12px; font-weight: 800; color: var(--text); }
.ats-mockup-floating-score-sub { font-size: 10.5px; font-weight: 700; color: var(--success); }

/* ---- Hero mockup v2: resume with dark sidebar ---- */
.ats-resume-mockup-v2 {
	display: flex; background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg);
	border: 1px solid var(--border); overflow: hidden; position: relative; z-index: 1;
}
.ats-resume-mockup-sidebar { width: 34%; background: var(--navy-dark); padding: 22px 16px; flex-shrink: 0; }
.ats-mockup-sb-heading { color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 0.6px; margin-bottom: 10px; }
.ats-mockup-sb-line { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.18); margin-bottom: 8px; }
.ats-mockup-sb-line.long { width: 90%; }
.ats-mockup-sb-line.medium { width: 65%; }
.ats-mockup-sb-line.short { width: 45%; }
.ats-resume-mockup-main { flex: 1; padding: 22px 20px; min-width: 0; }
.ats-mockup-name-sm { font-size: 16px; font-weight: 800; color: var(--text); }
.ats-mockup-title-sm { font-size: 11px; color: var(--muted); margin-top: 2px; }
.ats-mockup-contact-sm { font-size: 8.5px; color: var(--muted); margin-top: 6px; }
.ats-mockup-section-heading { font-size: 10px; font-weight: 800; color: var(--blue-darker); letter-spacing: 0.5px; margin: 16px 0 8px; border-bottom: 1px solid var(--border); padding-bottom: 5px; }
.ats-mockup-bar-sm { height: 6px; border-radius: 3px; background: #e5e7eb; margin-bottom: 6px; }
.ats-mockup-bar-sm.dark { background: #cbd5e1; height: 8px; }
.ats-mockup-bar-sm.w95 { width: 95%; } .ats-mockup-bar-sm.w85 { width: 85%; }
.ats-mockup-bar-sm.w80 { width: 80%; } .ats-mockup-bar-sm.w75 { width: 75%; }
.ats-mockup-bar-sm.w70 { width: 70%; } .ats-mockup-bar-sm.w60 { width: 60%; }

/* ---- Hero mockup v2: side feature cards ---- */
.ats-mockup-side-cards { position: absolute; right: -230px; top: 90px; display: flex; flex-direction: column; gap: 14px; z-index: 2; width: 210px; }
.ats-mockup-side-card {
	display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border);
	border-radius: 12px; padding: 12px 14px; box-shadow: var(--shadow-lg);
}
.ats-mockup-side-icon { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.ats-mockup-side-title { font-size: 12.5px; font-weight: 800; color: var(--text); }
.ats-mockup-side-sub { font-size: 10.5px; color: var(--muted); }

@media (max-width: 1180px) { .ats-mockup-side-cards { display: none; } }
@media (max-width: 860px) {
	.ats-mockup-floating-score { top: -16px; right: 8px; padding: 10px 14px; }
	.ats-resume-mockup-sidebar { padding: 16px 12px; }
	.ats-resume-mockup-main { padding: 16px 14px; }
}

/* ---- Trust bar ---- */
.ats-trust-bar { background: var(--blue-lighter); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 26px 24px; }
.ats-trust-bar-inner { max-width: 1180px; margin: 0 auto; text-align: center; }
.ats-trust-bar-label { font-size: 11.5px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.ats-trust-bar-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.ats-trust-bar-chips span { font-size: 13.5px; font-weight: 700; color: var(--blue-darker); background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 8px 16px; }

/* ---- Gradient text (reused for section heading highlights) ---- */
.ats-gradient-text {
	background: linear-gradient(120deg, var(--blue) 0%, var(--purple) 100%);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- Features grid v2 ---- */
.ats-features-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .ats-features-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ats-features-grid-v2 { grid-template-columns: 1fr; } }
.ats-feature-card-v2 {
	background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px;
	box-shadow: var(--shadow); transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ats-feature-card-v2:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ats-feature-icon-v2 { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.ats-feature-title-v2 { font-weight: 700; font-size: 15.5px; margin-bottom: 8px; }
.ats-feature-desc-v2 { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ---- Steps v2 with connectors ---- */
.ats-steps-row-v2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
@media (max-width: 900px) { .ats-steps-row-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ats-steps-row-v2 { grid-template-columns: 1fr; } }
.ats-steps-row-v2::before {
	content: ''; position: absolute; top: 24px; left: 12.5%; right: 12.5%; height: 2px;
	background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px); z-index: 0;
}
@media (max-width: 900px) { .ats-steps-row-v2::before { display: none; } }
.ats-step-v2 { text-align: center; position: relative; z-index: 1; background: var(--bg); }
.ats-step-number-v2 {
	width: 48px; height: 48px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center;
	font-weight: 800; font-size: 18px; margin: 0 auto 12px; box-shadow: var(--shadow);
}
.ats-step-icon-v2 { font-size: 22px; margin-bottom: 8px; }
.ats-step-title-v2 { font-weight: 700; font-size: 14.5px; margin-bottom: 6px; }
.ats-step-desc-v2 { color: var(--muted); font-size: 12.5px; line-height: 1.5; padding: 0 6px; }

/* ---- Pricing v2 + wallet card ---- */
.ats-pricing-region-tabs {
	display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; flex-wrap: wrap;
}
.ats-region-tab {
	background: #fff; border: 1.5px solid var(--border); border-radius: 999px;
	padding: 10px 22px; font-size: 13.5px; font-weight: 700; color: var(--text);
	cursor: pointer; transition: all 0.15s ease;
}
.ats-region-tab:hover { border-color: var(--blue); }
.ats-region-tab.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.ats-pricing-gateway-tag { text-align: center; font-size: 11.5px; color: var(--muted); font-weight: 600; margin-top: 12px; }
.ats-pricing-grid-v2 { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 20px; align-items: stretch; }

/* ---- LinkedIn optimizer add-on banner (within Pricing) ---- */
.ats-addon-banner {
	margin-top: 24px; background: #fff; border: 1.5px dashed var(--blue); border-radius: 16px;
	padding: 22px 26px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
	box-shadow: var(--shadow);
}
.ats-addon-icon { font-size: 32px; flex-shrink: 0; }
.ats-addon-info { flex: 1; min-width: 220px; }
.ats-addon-title { font-weight: 800; font-size: 16px; margin-bottom: 4px; }
.ats-addon-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.ats-addon-price-block { display: flex; align-items: center; gap: 16px; }
.ats-addon-price { font-size: 24px; font-weight: 800; color: var(--blue-darker); }
@media (max-width: 600px) { .ats-addon-banner { flex-direction: column; text-align: center; } .ats-addon-price-block { flex-direction: column; gap: 10px; } }
@media (max-width: 900px) { .ats-pricing-grid-v2 { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.ats-wallet-card {
	background: linear-gradient(160deg, var(--blue-lighter), #fff); border: 1px solid var(--border);
	border-radius: 18px; padding: 28px 26px; box-shadow: var(--shadow);
}
.ats-wallet-illustration { text-align: center; position: relative; margin-bottom: 18px; }
.ats-wallet-icon { font-size: 56px; }
.ats-wallet-coin { position: absolute; font-size: 26px; top: -6px; right: 38%; }
.ats-wallet-title { font-weight: 800; font-size: 17px; margin-bottom: 8px; }
.ats-wallet-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.ats-wallet-feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ats-wallet-feature-list li { font-size: 13px; font-weight: 600; color: var(--text); }

/* ---- Testimonials ---- */
.ats-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .ats-testimonial-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.ats-testimonial-card {
	background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px;
	box-shadow: var(--shadow); position: relative;
}
.ats-testimonial-quote { font-size: 40px; color: var(--blue-light); font-weight: 800; line-height: 1; position: absolute; top: 14px; right: 20px; }
.ats-testimonial-text { font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 18px; min-height: 90px; }
.ats-testimonial-author { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ats-testimonial-name { font-weight: 700; font-size: 13.5px; }
.ats-testimonial-role { font-size: 12px; color: var(--muted); }

/* ---- Final CTA banner v2 ---- */
.ats-cta-banner-v2 { background: var(--navy-dark); padding: 56px 24px; position: relative; overflow: hidden; }
.ats-cta-banner-v2::before {
	content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%;
	background: rgba(47,111,237,0.15); top: -160px; right: -100px;
}
.ats-cta-banner-v2-inner {
	position: relative; z-index: 1; max-width: 1000px; margin: 0 auto;
	display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: space-between;
}
.ats-cta-rocket { font-size: 40px; flex-shrink: 0; }
.ats-cta-banner-v2-inner h2 { color: #fff; font-size: 24px; font-weight: 800; margin: 0 0 6px; }
.ats-cta-banner-v2-inner p { color: rgba(255,255,255,0.75); font-size: 14px; margin: 0; }
@media (max-width: 700px) { .ats-cta-banner-v2-inner { flex-direction: column; text-align: center; } }

/* ---- Footer v2 ---- */
.ats-footer-v2 { background: #fff; border-top: 1px solid var(--border); padding: 50px 0 0; }
.ats-footer-v2-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 36px; }
@media (max-width: 780px) { .ats-footer-v2-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ats-footer-v2-grid { grid-template-columns: 1fr; } }
.ats-footer-v2-brand p { font-size: 13px; color: var(--muted); margin: 12px 0 16px; }
.ats-footer-logo { height: 30px; }
.ats-footer-social { display: flex; gap: 10px; }
.ats-footer-social span {
	width: 32px; height: 32px; border-radius: 50%; background: var(--blue-light); color: var(--blue-darker);
	display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700;
}
.ats-footer-v2-heading { font-weight: 800; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; color: var(--text); }
.ats-footer-v2-col { display: flex; flex-direction: column; gap: 10px; }
.ats-footer-v2-col a { font-size: 13.5px; color: var(--muted); }
.ats-footer-v2-col a:hover { color: var(--blue); text-decoration: none; }
.ats-footer-v2-bottom { border-top: 1px solid var(--border); padding: 18px 0; text-align: center; font-size: 12.5px; color: var(--muted); }

/* ---- LinkedIn Optimizer page ---- */
.ats-linkedin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
@media (max-width: 900px) { .ats-linkedin-grid { grid-template-columns: 1fr; } }
.ats-linkedin-note {
	font-size: 12.5px; color: var(--muted); background: var(--blue-lighter); border: 1px solid var(--border);
	border-radius: 10px; padding: 12px 14px; margin-top: 10px; line-height: 1.6;
}
.ats-linkedin-status { font-size: 13px; color: var(--danger); margin-top: 10px; min-height: 18px; }
.ats-linkedin-output-box {
	background: var(--blue-lighter); border: 1px solid var(--border); border-radius: 10px;
	padding: 14px; font-size: 14px; line-height: 1.65; white-space: pre-wrap; margin-bottom: 10px;
}
.ats-linkedin-recs { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ats-linkedin-recs li {
	font-size: 13.5px; color: var(--text); padding-left: 22px; position: relative; line-height: 1.5;
}
.ats-linkedin-recs li::before { content: '💡'; position: absolute; left: 0; top: 0; font-size: 13px; }

@media (max-width: 600px) {
	.ats-page { padding: 20px 0 40px; }
	.ats-wrap { padding: 0 16px; }
	.ats-auth-card { padding: 28px 20px; }
	.ats-hero { padding: 60px 16px 40px; }
	.ats-hero-title { font-size: 27px; }
	.ats-hero-subtitle { font-size: 15.5px; }
	.ats-hero-cta-row { flex-direction: column; align-items: stretch; }
	.ats-hero-cta-row .ats-btn { width: 100%; text-align: center; }
	.ats-section-public { padding: 50px 16px; }
	.ats-section-title { font-size: 24px; }
	.ats-cta-banner { padding: 50px 16px; }
	.ats-cta-banner h2 { font-size: 24px; }
	.ats-pricing-price { font-size: 24px; }
}
