/* ========================================
   HOME PAGE STYLES
   Program Changers Homepage
   ======================================== */

/* Root Color Scheme */
:root {
	--main-color: #ff7426;
	--title-color: #222429;
	--paragraph-color: #696969;
	--light-bg: #f8f8f8;
	--border-color: #e0e0e0;
	--white: #ffffff;
	--black: #000000;
	--transition: 0.3s ease;
}

/* ========================================
   GENERAL SECTION STYLING
   ======================================== */

.home-page {
	position: relative;
	z-index: 1;
}

.section {
	padding: 80px 0;
	position: relative;
}

.section:nth-child(even) {
	background-color: var(--light-bg);
}

.section-header {
	font-size: 42px;
	font-weight: 700;
	color: var(--title-color);
	margin: 0 0 40px 0;
	text-align: center;
}

.section-content {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}

.section-content p {
	color: var(--paragraph-color);
	font-size: 16px;
	margin-bottom: 20px;
}

.section-content p:last-child {
	margin-bottom: 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
	display: inline-block;
	padding: 14px 40px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 4px;
	text-decoration: none;
	transition: all var(--transition);
	cursor: pointer;
	border: 2px solid transparent;
	text-align: center;
}

.btn-primary {
	background-color: var(--main-color);
	color: var(--white);
	border-color: var(--main-color);
}

.btn-primary:hover {
	background-color: transparent;
	color: var(--main-color);
	border-color: var(--main-color);
}

.btn-secondary {
	background-color: var(--white);
	color: var(--title-color);
	border-color: var(--title-color);
}

.btn-secondary:hover {
	background-color: var(--title-color);
	color: var(--white);
	border-color: var(--title-color);
}

/* ========================================
   SECTION 1: HERO
   ======================================== */

.hero-section {
	background: linear-gradient(135deg, var(--title-color) 0%, #1a1a1f 100%);
	color: var(--white);
	padding: 120px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 500px;
	height: 100%;
	background: radial-gradient(circle, var(--main-color) 0%, transparent 70%);
	opacity: 0.1;
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: 0 auto;
}

.hero-headline {
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 30px 0;
	color: var(--white);
}

.hero-subheadline {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 30px 0;
	line-height: 1.6;
}

.hero-proof-line {
	font-size: 18px;
	color: var(--main-color);
	font-weight: 600;
	margin-bottom: 50px;
	letter-spacing: 0.5px;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-buttons .btn {
	padding: 16px 48px;
	font-size: 17px;
}

/* ========================================
   SECTION 2: WHAT IS PROGRAM CHANGERS
   ======================================== */

.what-is-section {
	background-color: var(--white);
}

/* ========================================
   SECTION 3: CREDIBILITY
   ======================================== */

.credibility-section {
	background-color: var(--light-bg);
}

.credibility-content {
	max-width: 800px;
	margin: 0 auto;
}

.credibility-content p {
	font-size: 16px;
	color: var(--paragraph-color);
	line-height: 1.8;
	margin-bottom: 25px;
}

.credibility-list {
	list-style: none;
	padding: 0;
	margin: 30px 0 30px 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.credibility-list li {
	padding: 12px 0;
	padding-left: 30px;
	position: relative;
	color: var(--paragraph-color);
	font-size: 16px;
}

.credibility-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--main-color);
	font-weight: bold;
	font-size: 20px;
}

.credibility-highlight {
	background-color: var(--white);
	padding: 25px;
	border-left: 4px solid var(--main-color);
	font-weight: 500;
	color: var(--title-color);
	margin-top: 30px;
}

/* ========================================
   SECTION 4: BUILT FOR COACHES
   ======================================== */

.coaches-section {
	background-color: var(--white);
}

.coaches-content {
	max-width: 800px;
	margin: 0 auto;
}

.coaches-intro {
	font-size: 18px;
	color: var(--title-color);
	font-weight: 600;
	margin-bottom: 20px;
}

.coaches-content p {
	font-size: 16px;
	color: var(--paragraph-color);
	line-height: 1.8;
	margin-bottom: 20px;
}

.coaches-benefits {
	list-style: none;
	padding: 0;
	margin: 20px 0 30px 0;
	background-color: var(--light-bg);
	padding: 30px;
	border-radius: 8px;
}

.coaches-benefits li {
	padding: 10px 0;
	padding-left: 30px;
	position: relative;
	color: var(--paragraph-color);
	font-size: 16px;
}

.coaches-benefits li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--main-color);
	font-weight: bold;
	font-size: 18px;
}

.coaches-mission {
	font-weight: 600;
	color: var(--title-color);
	font-size: 17px;
	margin-top: 25px;
}

.coaches-support {
	color: var(--paragraph-color);
	margin-top: 15px;
	line-height: 1.8;
}

.coaches-cta {
	text-align: center;
	margin-top: 40px;
}

.coaches-cta-dual .cta-buttons-row,
.cta-card .cta-buttons-row {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.coaches-cta-dual .cta-buttons-row .btn,
.cta-card .cta-buttons-row .btn {
	flex: 1;
	min-width: 150px;
	max-width: 220px;
}

/* ========================================
   SECTION 5: FOR ATHLETES & FAMILIES
   ======================================== */

.athletes-section {
	background-color: var(--light-bg);
}

.athletes-content {
	max-width: 800px;
	margin: 0 auto;
}

.athletes-intro {
	font-size: 18px;
	color: var(--title-color);
	font-weight: 600;
	margin-bottom: 25px;
}

.athletes-benefits {
	list-style: none;
	padding: 0;
	margin: 25px 0 30px 0;
	background-color: var(--white);
	padding: 30px;
	border-radius: 8px;
	border: 2px solid var(--border-color);
}

.athletes-benefits li {
	padding: 12px 0;
	padding-left: 30px;
	position: relative;
	color: var(--paragraph-color);
	font-size: 16px;
	line-height: 1.6;
}

.athletes-benefits li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--main-color);
	font-weight: bold;
	font-size: 18px;
}

.athletes-trust {
	background-color: var(--white);
	padding: 25px;
	border-radius: 8px;
	color: var(--title-color);
	font-weight: 500;
	line-height: 1.8;
	margin-top: 25px;
}

.athletes-cta {
	text-align: center;
	margin-top: 40px;
}

/* ========================================
   SECTION 6: HOW IT WORKS
   ======================================== */

.how-it-works-section {
	background-color: var(--white);
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin: 50px 0;
}

.step {
	background-color: var(--light-bg);
	padding: 40px 25px;
	border-radius: 8px;
	text-align: center;
	transition: transform var(--transition), box-shadow var(--transition);
}

.step:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(255, 116, 38, 0.1);
}

.step-number {
	width: 50px;
	height: 50px;
	background-color: var(--main-color);
	color: var(--white);
	font-size: 24px;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.step p {
	color: var(--paragraph-color);
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

.how-it-works-footer {
	text-align: center;
	font-size: 18px;
	color: var(--title-color);
	font-weight: 600;
	margin-top: 50px;
	font-style: italic;
}

/* ========================================
   SECTION 7: CTA SECTION
   ======================================== */

.cta-section {
	background-color: var(--light-bg);
}

.cta-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	max-width: 1000px;
	margin: 0 auto;
}

.cta-card {
	background-color: var(--white);
	padding: 50px 40px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: all var(--transition);
}

.cta-card:hover {
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}

.cta-card h3 {
	font-size: 28px;
	font-weight: 700;
	color: var(--title-color);
	margin-bottom: 15px;
}

.cta-card p {
	color: var(--paragraph-color);
	font-size: 16px;
	margin-bottom: 30px;
	line-height: 1.6;
}

.cta-coaches {
	border-top: 4px solid var(--main-color);
}

.cta-athletes {
	border-top: 4px solid var(--title-color);
}

/* ========================================
   FOOTER TRUST STATEMENT
   ======================================== */

footer .trust-statement {
	background-color: var(--light-bg);
	padding: 40px;
	border-radius: 8px;
	text-align: center;
	margin-top: 60px;
	border-left: 4px solid var(--main-color);
}

footer .trust-statement p {
	margin: 0;
	color: var(--title-color);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.8;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
	.section {
		padding: 60px 0;
	}

	.section-header {
		font-size: 32px;
		margin-bottom: 30px;
	}

	.hero-headline {
		font-size: 36px;
		margin-bottom: 20px;
	}

	.hero-subheadline {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-buttons .btn {
		width: 100%;
	}

	.credibility-list {
		grid-template-columns: 1fr;
	}

	.process-steps {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.step {
		padding: 30px 20px;
	}

	.cta-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.cta-card {
		padding: 40px 30px;
	}

	.cta-buttons-row {
		flex-wrap: wrap;
	}

	.cta-buttons-row .btn {
		min-width: 120px;
	}

	.hero-section {
		padding: 80px 0;
	}

	.hero-content {
		padding: 0 20px;
	}
}

@media (max-width: 480px) {
	.section {
		padding: 40px 0;
	}

	.section-header {
		font-size: 24px;
		margin-bottom: 25px;
	}

	.hero-headline {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.hero-subheadline {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.hero-proof-line {
		font-size: 14px;
		margin-bottom: 30px;
	}

	.hero-buttons {
		flex-direction: column;
		gap: 15px;
	}

	.btn {
		padding: 12px 30px;
		font-size: 15px;
	}

	.heroes-buttons .btn {
		width: 100%;
	}

	.coaches-benefits,
	.athletes-benefits {
		padding: 20px;
	}

	.cta-card {
		padding: 30px 20px;
	}

	.cta-card h3 {
		font-size: 24px;
	}

	.cta-buttons-row {
		flex-direction: column;
		gap: 10px;
	}

	.cta-buttons-row .btn {
		width: 100%;
		min-width: auto;
		max-width: none;
	}
}

/* ========================================
   SMOOTH SCROLLING
   ======================================== */

html {
	scroll-behavior: smooth;
}

/* ========================================
   PRIVACY POLICY PAGE STYLES
   Uses home page structure and styling
   ======================================== */

.privacy-policy-page {
	position: relative;
	z-index: 1;
}

/* Privacy Hero Section (Black header with white text like home page) */
.privacy-hero-section {
	background: linear-gradient(135deg, #000000 0%, #1a1a1f 100%);
	color: #ffffff !important;
	padding: 180px 0 80px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-top: 0;
}

.privacy-hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 500px;
	height: 100%;
	background: radial-gradient(circle, var(--main-color) 0%, transparent 70%);
	opacity: 0.1;
	z-index: 0;
}

.privacy-hero-content {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: 0 auto;
}

.privacy-hero-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	color: #ffffff !important;
}

.privacy-policy-section {
	background-color: var(--light-bg);
}

.privacy-content {
	max-width: 900px;
	margin: 0 auto;
	line-height: 1.8;
}

.privacy-content h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--title-color);
	margin: 50px 0 20px 0;
	padding-top: 20px;
	border-top: 2px solid var(--border-color);
}

.privacy-content h2:first-of-type {
	margin-top: 20px;
	border-top: none;
	padding-top: 0;
}

.privacy-content h3 {
	font-size: 24px;
	font-weight: 600;
	color: var(--title-color);
	margin: 35px 0 15px 0;
}

.privacy-content h4 {
	font-size: 20px;
	font-weight: 600;
	color: var(--title-color);
	margin: 25px 0 12px 0;
}

.privacy-content p {
	color: var(--paragraph-color);
	font-size: 16px;
	margin-bottom: 20px;
}

.privacy-content ul,
.privacy-content ol {
	margin: 20px 0 30px 0;
	padding-left: 30px;
}

.privacy-content ul li,
.privacy-content ol li {
	color: var(--paragraph-color);
	font-size: 16px;
	margin-bottom: 12px;
	line-height: 1.8;
}

.privacy-content ul {
	list-style-type: none;
	padding-left: 0;
}

.privacy-content ul li {
	padding-left: 30px;
	position: relative;
}

.privacy-content ul li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--main-color);
	font-weight: bold;
	font-size: 20px;
}

.privacy-content a {
	color: var(--main-color);
	text-decoration: underline;
	transition: all var(--transition);
}

.privacy-content a:hover {
	color: var(--title-color);
}

.privacy-content strong {
	color: var(--title-color);
	font-weight: 600;
}

.privacy-content em {
	font-style: italic;
}

/* Contact information box */
.privacy-content .contact-box {
	background-color: var(--white);
	padding: 25px 30px;
	border-radius: 8px;
	border-left: 4px solid var(--main-color);
	margin: 30px 0;
}

.privacy-content .contact-box p {
	margin-bottom: 10px;
}

.privacy-content .contact-box p:last-child {
	margin-bottom: 0;
}

/* Responsive adjustments for privacy page */
@media (max-width: 768px) {
	.privacy-hero-section {
		padding: 140px 0 60px 0;
	}

	.privacy-hero-title {
		font-size: 36px;
	}

	.privacy-content h2 {
		font-size: 26px;
		margin: 40px 0 15px 0;
	}

	.privacy-content h3 {
		font-size: 20px;
		margin: 30px 0 12px 0;
	}

	.privacy-content h4 {
		font-size: 18px;
	}

	.privacy-content ul,
	.privacy-content ol {
		margin: 15px 0 20px 0;
	}
}

@media (max-width: 480px) {
	.privacy-hero-section {
		padding: 120px 0 40px 0;
	}

	.privacy-hero-title {
		font-size: 28px;
	}

	.privacy-content h2 {
		font-size: 22px;
	}

	.privacy-content h3 {
		font-size: 18px;
	}

	.privacy-content .contact-box {
		padding: 20px;
	}
}
