/* ============================================================
   PDF DOWNLOAD — PAGE STYLES
   ============================================================ */

/* ============================================================
   PAGE HERO
   ============================================================ */

.pdf-hero {
	background: var(--white);
	border-bottom: 1px solid var(--border-light);
	padding: 52px 20px 44px;
}

.pdf-hero-inner {
	max-width: 1320px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 480px;
	gap: 60px;
	align-items: center;
}

.pdf-hero-image {
	width: 100%;
}

.pdf-hero-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}

.pdf-hero-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--dark);
	line-height: 1.3;
	margin-bottom: 20px;
	letter-spacing: -0.01em;
	max-width: 860px;
}

.pdf-hero-intro {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 14px;
	max-width: 860px;
}

.pdf-hero-cta {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--light-gray);
	border: 1px solid var(--border-light);
	border-radius: 8px;
	padding: 16px 20px;
	margin-top: 8px;
	max-width: 860px;
}

.pdf-cta-icon {
	color: var(--brand-blue);
	font-size: 0.9rem;
	flex-shrink: 0;
}

.pdf-hero-cta p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.5;
}

.pdf-hero-cta a {
	color: var(--brand-blue);
	font-weight: 600;
	text-decoration: none;
}

.pdf-hero-cta a:hover {
	text-decoration: underline;
}

@media (max-width: 991px) {
	.pdf-hero-inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.pdf-hero-image {
		max-width: 520px;
		margin: 0 auto;
	}
}

@media (max-width: 575px) {
	.pdf-hero {
		padding: 32px 16px 28px;
	}

	.pdf-hero-title {
		font-size: 1.35rem;
	}
}

/* ============================================================
   WHY PDF IS THE RIGHT FORMAT FOR YOUR CV
   ============================================================ */

.pdf-include {
	background: var(--light-gray);
	padding: 56px 20px;
}

.pdf-include-inner {
	max-width: 1320px;
	margin: 0 auto;
}

.pdf-include-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 14px;
	max-width: 720px;
}

.pdf-include-intro {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 36px;
	max-width: 720px;
}

.pdf-include-sections {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 36px 52px;
}

.pdf-factor-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}

.pdf-factor-badge {
	width: 38px;
	height: 38px;
	background: var(--brand-blue);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.pdf-factor-badge i {
	color: var(--white);
	font-size: 0.9rem;
}

.pdf-factor-title {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0;
	line-height: 1.3;
}

.pdf-factor-body > p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 12px;
}

.pdf-factor-body > p:last-child {
	margin-bottom: 0;
}

.pdf-factor-body a {
	color: var(--brand-blue);
	font-weight: 600;
	text-decoration: none;
}

.pdf-factor-body a:hover {
	text-decoration: underline;
}

@media (max-width: 991px) {
	.pdf-include-sections {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 575px) {
	.pdf-include {
		padding: 36px 16px;
	}

	.pdf-include-title {
		font-size: 1.3rem;
	}
}

/* ============================================================
   THE PROBLEM WITH MOST FREE CV PDF DOWNLOADS
   ============================================================ */

.pdf-problem {
	background: var(--white);
	padding: 56px 20px;
}

.pdf-problem-inner {
	max-width: 1320px;
	margin: 0 auto;
}

.pdf-problem-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 14px;
	line-height: 1.3;
	max-width: 860px;
}

.pdf-problem-intro {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 36px;
	max-width: 860px;
}

.pdf-problem-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.pdf-problem-row {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 28px;
	align-items: start;
	padding: 28px 0;
	border-bottom: 1px solid var(--border-color);
}

.pdf-problem-row:first-child {
	border-top: 1px solid var(--border-color);
}

.pdf-problem-num {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--brand-yellow);
	line-height: 1;
	letter-spacing: -0.02em;
	padding-top: 4px;
}

.pdf-problem-label {
	font-size: 1rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 8px;
	line-height: 1.35;
}

.pdf-problem-content > p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin: 0;
}

.pdf-problem-content > p a {
	color: var(--brand-blue);
	font-weight: 600;
	text-decoration: none;
}

.pdf-problem-content > p a:hover {
	text-decoration: underline;
}

.pdf-problem-check {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: var(--light-gray);
	border: 1px solid var(--border-light);
	border-radius: 8px;
	padding: 22px 24px;
	margin-top: 36px;
}

.pdf-problem-check-icon {
	color: var(--brand-blue);
	font-size: 1.1rem;
	flex-shrink: 0;
	margin-top: 3px;
}

.pdf-problem-check p {
	font-size: 0.95rem;
	color: var(--dark);
	line-height: 1.75;
	margin: 0;
}

@media (max-width: 575px) {
	.pdf-problem {
		padding: 36px 16px;
	}

	.pdf-problem-title {
		font-size: 1.3rem;
	}

	.pdf-problem-row {
		grid-template-columns: 56px 1fr;
		gap: 16px;
	}

	.pdf-problem-num {
		font-size: 1.8rem;
	}
}

/* ============================================================
   WHAT MAKES OUR PDF DOWNLOAD DIFFERENT
   ============================================================ */

.pdf-different {
	background: var(--light-gray);
	padding: 56px 20px;
}

.pdf-different-inner {
	max-width: 1320px;
	margin: 0 auto;
}

.pdf-different-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 14px;
	max-width: 720px;
}

.pdf-different-intro {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 36px;
	max-width: 720px;
}

.pdf-different-sections {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 36px 52px;
}

.pdf-different-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}

.pdf-different-badge {
	width: 38px;
	height: 38px;
	background: var(--brand-blue);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.pdf-different-badge i {
	color: var(--white);
	font-size: 0.9rem;
}

.pdf-different-item-title {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0;
	line-height: 1.3;
}

.pdf-different-body > p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 12px;
}

.pdf-different-body > p:last-child {
	margin-bottom: 0;
}

.pdf-different-body a {
	color: var(--brand-blue);
	font-weight: 600;
	text-decoration: none;
}

.pdf-different-body a:hover {
	text-decoration: underline;
}

@media (max-width: 991px) {
	.pdf-different-sections {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 575px) {
	.pdf-different {
		padding: 36px 16px;
	}

	.pdf-different-title {
		font-size: 1.3rem;
	}
}

/* ============================================================
   HOW TO DOWNLOAD YOUR CV AS PDF — STEP BY STEP
   ============================================================ */

.pdf-steps {
	background: var(--white);
	padding: 56px 20px;
}

.pdf-steps-inner {
	max-width: 960px;
	margin: 0 auto;
}

.pdf-steps-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 14px;
}

.pdf-steps-intro {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin: 0 0 32px;
}

.pdf-steps-list {
	display: grid;
	gap: 18px;
}

.pdf-step {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 18px;
	padding: 24px;
	background: var(--light-gray);
	border: 1px solid var(--border-light);
	border-radius: 8px;
}

.pdf-step-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: var(--brand-blue);
	color: var(--white);
	font-size: 1.1rem;
}

.pdf-step-copy h3 {
	margin: 0 0 10px;
	color: var(--dark);
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.35;
}

.pdf-step-copy p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.75;
}

.pdf-step-copy a {
	color: var(--brand-blue);
	font-weight: 600;
	text-decoration: none;
}

.pdf-step-copy a:hover {
	text-decoration: underline;
}

.pdf-steps-outro {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin: 24px 0 0;
}

.pdf-steps-outro a {
	color: var(--brand-blue);
	font-weight: 600;
	text-decoration: none;
}

.pdf-steps-outro a:hover {
	text-decoration: underline;
}

@media (max-width: 575px) {
	.pdf-steps {
		padding: 36px 16px;
	}

	.pdf-steps-title {
		font-size: 1.3rem;
	}

	.pdf-step {
		grid-template-columns: 42px minmax(0, 1fr);
		gap: 14px;
		padding: 20px;
	}

	.pdf-step-icon {
		width: 42px;
		height: 42px;
		font-size: 1rem;
	}
}

/* ============================================================
   PDF DOWNLOAD FOR EVERY TYPE OF CV
   ============================================================ */

.pdf-markets {
	background: var(--light-gray);
	padding: 56px 20px;
}

.pdf-markets-inner {
	max-width: 960px;
	margin: 0 auto;
}

.pdf-markets-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 18px;
}

.pdf-markets-intro {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin: 0 0 24px;
}

.pdf-market {
	padding: 24px 0;
	border-bottom: 1px solid var(--border-color);
}

.pdf-market:first-of-type {
	padding-top: 0;
}

.pdf-market--last {
	padding-bottom: 0;
	border-bottom: none;
}

.pdf-market-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 12px;
}

.pdf-market p {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin: 0;
}

.pdf-market a {
	color: var(--brand-blue);
	font-weight: 600;
	text-decoration: none;
}

.pdf-market a:hover {
	text-decoration: underline;
}

@media (max-width: 575px) {
	.pdf-markets {
		padding: 36px 16px;
	}

	.pdf-markets-title {
		font-size: 1.3rem;
	}

	.pdf-market-title {
		font-size: 1rem;
	}
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.pdf-final-cta {
	background: var(--white);
	border-top: 1px solid var(--border-light);
	padding: 60px 20px;
}

.pdf-final-cta-inner {
	max-width: 680px;
	margin: 0 auto;
	text-align: center;
}

.pdf-final-cta-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 18px;
	line-height: 1.3;
}

.pdf-final-cta-body {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 32px;
}

.pdf-final-cta-body a {
	color: var(--brand-blue);
	font-weight: 600;
	text-decoration: none;
}

.pdf-final-cta-body a:hover {
	text-decoration: underline;
}

.pdf-final-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--brand-blue);
	color: var(--white);
	font-size: 0.925rem;
	font-weight: 600;
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 7px;
	transition: opacity 0.15s;
}

.pdf-final-cta-btn:hover {
	opacity: 0.88;
}

.pdf-final-cta-btn i {
	font-size: 0.8rem;
}

@media (max-width: 575px) {
	.pdf-final-cta {
		padding: 44px 16px;
	}

	.pdf-final-cta-title {
		font-size: 1.3rem;
	}
}
