/* SPORTS TEMPLATE - Normalized to site visual standards */
:root {
	--gap: 30px;
}

/* HERO */
.hero {
	text-align: center;
	margin: var(--space-between-sections) auto;
}

.hero .subtitle {
	font-size: 20px;
	margin-bottom: 24px;
	opacity: 0.95;
}

.promo-code {
	background: var(--primary-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 36px;
	border-radius: 0;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 2px;
	margin: 16px 0;
	color: #fff;
}

.hero-note {
	margin-top: 10px;
	font-size: 16px;
	opacity: 0.95;
}

.hero-note p:last-child {
	margin-bottom: 0;
}

/* FLEX GRID */
.flex-grid {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
	justify-content: center;
}

.flex-col-3>* {
	flex: 0 0 calc(33.333% - var(--gap));
}

.flex-col-4>* {
	flex: 0 0 calc(25% - var(--gap));
}

.flex-col-2>* {
	flex: 0 0 calc(50% - var(--gap));
}

@media (max-width: 1024px) {
	.flex-col-4>* {
		flex-basis: calc(33.333% - var(--gap));
	}
}

@media (max-width: 768px) {

	.flex-col-4>*,
	.flex-col-3>*,
	.flex-col-2>* {
		flex-basis: 100%;
	}
}

/* BENEFITS */
.benefits {
	padding: var(--space-between-sections) 0;
}

.benefit-card {
	background: #fff;
	padding: 30px;
	border-radius: 0;
	text-align: center;
	transition: all 0.3s;
}

.benefit-card:hover {
	background: #f9f9f9;
}

.benefit-icon {
	width: fit-content;
	margin: 0 auto 10px;
}

.benefit-icon img {
	width: 32px;
	filter: var(--icons-filter);
}


.benefit-title {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 8px;
	color: var(--secondary-color);
}

.benefit-desc {
	color: #666;
	font-size: 16px;
}

.benefit-card p:last-child {
	margin-bottom: 0;
}

/* MATERIAL */
.material-section {
	margin: var(--space-between-sections) auto;
}

.material-section .section-title {
	text-align: center;
}

.material-card {
	background: #fff;
	border-radius: 0;
	overflow: hidden;
	border: 1px solid #ddd;
	transition: border-color 0.3s;
}

.material-card:hover {
	border-color: var(--primary-color);
}

.material-header {
	padding: 20px;
	text-align: center;
	color: #fff;
}


.material-header p {
	margin-bottom: 0;
}

.bronze {
	background: linear-gradient(135deg, #cd7f32 0%, #b8732d 100%);
}

.silver {
	background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
}

.gold {
	background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
}

.experience {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.exclusive {
	background: linear-gradient(135deg, #1a365d 0%, #c53030 100%);
}

.experience h3,
.exclusive h3 {
	color: #fff;
}

.experience p,
.exclusive p {
	color: #adadad;
}

.material-card h3 {
	font-size: 22px;
	margin-bottom: 4px;
}

.material-body {
	padding: 22px;
}

.material-body ul {
	list-style: none;
}

.material-body ul li {
	padding: 8px 0 8px 24px;
	position: relative;
	font-size: 16px;
}

.material-body ul li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: bold;
}

/* FAQ */
.faq-section {
	background: #f9f9f9;
	padding: var(--space-between-sections) 0;
}

.faq-section .section-title {
	text-align: center;
}

.faq-list {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background: #fff;
	margin-bottom: 14px;
	border-radius: 0;
	overflow: hidden;
	border: 1px solid #ddd;
}

.faq-question {
	padding: 18px 20px;
	cursor: pointer;
	font-weight: 600;
	color: var(--secondary-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question:hover {
	background: #f9f9f9;
}

.faq-answer {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 560px;
	padding: 0 20px 18px 20px;
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

.faq-item.active .faq-question::after {
	transform: rotate(180deg);
}

.faq-question::after {
	content: "▼";
	transition: transform 0.3s;
}

/* reviews */
.reviews {
	margin: var(--space-between-sections) auto;
}

.reviews .section-title {
	text-align: center;
}

.review-card {
	background: #fff;
	padding: 30px;
	border-radius: 0;
	border: 1px solid #ddd;
	position: relative;
	transition: border-color 0.3s;
}

.review-card:hover {
	border-color: var(--primary-color);
}

.review-quote {
	font-size: 44px;
	color: #e2e8f0;
	position: absolute;
	top: 6px;
	left: 16px;
}

.review-card p {
	font-style: italic;
	color: #666;
	position: relative;
	z-index: 1;
}

.review-author {
	font-weight: 600;
	color: var(--secondary-color);
}

.review-meta {
	color: #999;
	font-size: 14px;
}

/* CTA */
.cta-section {
	background: var(--primary-color);
	color: #fff;
	padding: 80px 20px;
	text-align: center;
	margin: 60px 0 0 0;
}

.cta-section .section-title {
	text-align: center;
	color: #fff;
}

.cta-section p {
	color: #fff
}

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

.cta-button {
	background-color: #fff;
	display: inline-block;
	font-family: 'Barlow Condensed', sans-serif;
	text-transform: uppercase;
	color: var(--primary-color);
	padding: 13px 22px;
	letter-spacing: 3px;
	border: 1px solid #fff;
	margin-block: 24px;
	transition: background-color .4s ease-out, color .4s ease-out;
}

.cta-button:hover {
	background-color: var(--primary-color);
}

.cta-subtitle {
	font-size: 18px;
	margin-bottom: 8px;
	color: #fff;
}

.cta-description p:last-child {
	border-bottom: 0;
}

/* RESPONSIVE TYPOGRAPHY TWEAKS */
@media (max-width: 768px) {
	.promo-code {
		font-size: 18px;
		padding: 12px 28px;
	}
}
