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

:root {
	--blue: #2f6fed;
	--blue-dark: #1d4ed8;
	--blue-darker: #1e3a8a;
	--blue-light: #eaf1ff;
	--blue-lighter: #f5f8ff;
	--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);
}

* { 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;
}

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-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; }

@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: 560px; 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; }
@media (max-width: 560px) { .ats-choice-grid { 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: 24px 0; text-align: center; color: var(--muted); font-size: 13px; }

/* ================================================================
   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: 0 auto; padding: 0 24px 10px;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
	position: relative; z-index: 1;
}
@media (max-width: 780px) { .ats-trust-strip { grid-template-columns: repeat(2, 1fr); } }
.ats-trust-item {
	display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--blue-darker);
	background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px 16px;
	box-shadow: var(--shadow);
}
.ats-trust-item span.ats-trust-icon { font-size: 18px; }

/* 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-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-mockup-floating-badge {
	position: absolute; z-index: 2; top: -14px; right: -14px;
	background: linear-gradient(135deg, #16a34a, #22c55e); color: #fff;
	font-weight: 800; font-size: 12.5px; padding: 10px 16px; border-radius: 12px;
	box-shadow: 0 10px 24px rgba(22,163,74,0.35); transform: rotate(4deg);
}
.ats-mockup-floating-badge-2 {
	position: absolute; z-index: 2; bottom: 18px; left: -24px;
	background: #fff; border: 1px solid var(--border); color: var(--blue-darker);
	font-weight: 700; font-size: 12px; padding: 8px 14px; border-radius: 10px;
	box-shadow: var(--shadow-lg);
}

@media (max-width: 860px) {
	.ats-hero-inner { grid-template-columns: 1fr; }
	.ats-hero-title { font-size: 32px; }
	.ats-mockup { transform: none; }
	.ats-mockup-floating-badge-2 { display: none; }
}

.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); } }
.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-name { font-weight: 700; font-size: 13.5px; text-align: center; }

.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; }


@media (max-width: 600px) {
	.ats-page { padding: 20px 0 40px; }
	.ats-wrap { padding: 0 16px; }
	.ats-auth-card { padding: 28px 20px; }
}
