﻿/* ============================================
   TextBuilder.ai PDF website CSS
   ============================================ */
.promo-topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: #000000;
	padding: 10px 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.promo-topbar-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.promo-timer-text {
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 600;
	white-space: nowrap;
}

.promo-timer-text #countdown-timer {
	font-family: 'Courier New', monospace;
	font-weight: 700;
	letter-spacing: 1px;
}

.promo-topbar-btn {
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	color: #ffffff;
	padding: 10px 24px;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.2s ease;
	box-shadow: 0 4px 15px rgba(223, 16, 140, 0.4);
}

.promo-topbar-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(223, 16, 140, 0.5);
	color: #ffffff;
}

/* Mobile responsive for topbar */
@media (max-width: 768px) {
	.promo-topbar {
		padding: 8px 15px;
	}

	.promo-topbar-content {
		gap: 12px;
	}

	.promo-timer-text {
		font-size: 0.85rem;
	}

	.promo-topbar-btn {
		padding: 8px 16px;
		font-size: 0.8rem;
	}
}

@media (max-width: 480px) {
	.promo-topbar {
		padding: 6px 10px;
	}

	.promo-topbar-content {
		gap: 8px;
	}

	.promo-timer-text {
		font-size: 0.8rem;
	}

	.promo-topbar-btn {
		padding: 6px 12px;
		font-size: 0.75rem;
	}
}

:root {
	--dark-primary: #161515;
	--dark-secondary: #1a1a1a;
	--dark-elevated: #2d2d2d;
	--accent-primary: #df108c;
	--accent-light: #ff730f;
	--accent-dark: #b70d73;
	--text-primary: #ffffff;
	--text-secondary: #e5e5e5;
	--text-tertiary: #b0b0b0;
	--border-primary: #404040;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', 'Inter Fallback', sans-serif;
	background-color: var(--dark-primary);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Navigation */
.top-bar {
	background-color: var(--dark-secondary);
	border-bottom: 1px solid var(--border-primary);
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
	background-color: rgba(26, 26, 26, 0.95);
}

.logo {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-primary);
	text-decoration: none;
	letter-spacing: -0.02em;
}

.logo-accent {
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.btn-members {
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	color: var(--text-primary);
	border: none;
	padding: 0.75rem 2rem;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.9rem;
}

.btn-members:hover {
	background: linear-gradient(135deg, var(--accent-light), var(--accent-primary));
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	color: var(--text-primary);
}

/* Hero Section */
.hero-section {
	margin-top: 0;
	padding: 120px 0 100px;
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background-color: var(--dark-primary);
}

.hero-grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
}

.hero-title {
	font-size: 4.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 2rem;
	letter-spacing: -0.03em;
	position: relative;
	display: block;
	width: 100%;
	color: #fff;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 810px;
    height: 50px;
    background: linear-gradient(129deg, #ffffff, #ffffff);
    filter: blur(50px);
    opacity: 0.3;
    z-index: -1;
}

.hero-subtitle {
	font-size: 1.5rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	line-height: 1.6;
	max-width: 700px;
}

.btn-hero {
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	color: var(--text-primary);
	border: none;
	padding: 1.25rem 3rem;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1.2rem;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	position: relative;
}

.btn-hero:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	background: linear-gradient(135deg, var(--accent-light), var(--accent-primary));
	color: var(--text-primary);
}

.pricing-link {
	color: var(--text-tertiary);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: inline-block;
}

.pricing-link:hover {
	color: var(--accent-primary);
	transform: translateX(5px);
}

.hero-stats {
	margin-top: 4rem;
	display: flex;
	gap: 4rem;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	color: var(--accent-primary);
	line-height: 1;
}

.stat-label {
	color: var(--text-tertiary);
	font-size: 1rem;
	margin-top: 0.5rem;
}

/* Hero Benefits */
.hero-benefits {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
	gap: 2.5rem;
	flex-wrap: wrap;
}

.hero-benefit-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.hero-benefit-check {
	width: 28px;
	height: 28px;
	background-color: #dc2626;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hero-benefit-check .material-icons {
	font-size: 18px;
	color: #ffffff;
}

.hero-benefit-text {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--text-secondary);
}

/* Hero Trust / Social Proof */
.hero-trust {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.hero-trust-stars {
	display: flex;
	gap: 2px;
}

.hero-trust-star {
	font-size: 36px;
	color: #facc15;
}

.hero-trust-row {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.hero-trust-avatars {
	display: flex;
}

.hero-trust-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid #ffffff;
	object-fit: cover;
	margin-left: -10px;
}

.hero-trust-avatar:first-child {
	margin-left: 0;
}

.hero-trust-text {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.hero-trust-label {
	font-size: 0.85rem;
	color: var(--text-tertiary);
	font-weight: 400;
}

.hero-trust-count {
	font-size: 1rem;
	color: var(--text-primary);
	font-weight: 700;
}

/* Speed & Dominance Section (Grant Cardone) */
.speed-section {
	padding: 80px 0;
	background-color: #fafafa;
}

.speed-content {
	max-width: 900px;
	margin: 0 auto;
}

.speed-title {
	font-size: 3rem;
	font-weight: 800;
	color: #0a0a0a;
	margin-bottom: 2rem;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.speed-title strong {
	color: #dc2626;
}

.speed-highlight {
	color: #dc2626;
}

.speed-quote {
	font-size: 1.35rem;
	color: #444444;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto 1rem auto;
}

.speed-quote:last-child {
	margin-bottom: 0;
}

.speed-quote strong {
	color: #dc2626;
	font-weight: 700;
}

.speed-image {
	margin-top: 3rem;
}

.speed-image img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

/* Speed Section Responsive */
@media (max-width: 768px) {
	.speed-section {
		padding: 60px 0;
	}

	.speed-title {
		font-size: 2rem;
		line-height: 1.3;
	}

	.speed-quote {
		font-size: 1.125rem;
		line-height: 1.7;
		padding: 0 1rem;
	}
}

@media (max-width: 480px) {
	.speed-section {
		padding: 50px 0;
	}

	.speed-title {
		font-size: 1.75rem;
	}

	.speed-quote {
		font-size: 1.0625rem;
	}
}

/* Idea to Book Section */
.idea-section {
	padding: 80px 0;
	background-color: #ffffff;
}

.idea-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.idea-title {
	font-size: 3rem;
	font-weight: 800;
	color: #0a0a0a;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.idea-highlight {
	color: #dc2626;
}

.idea-subtitle {
	font-size: 1.75rem;
	color: #333333;
	margin-bottom: 3rem;
	line-height: 1.7;
	font-weight: 600;
}

.idea-keyword {
	font-weight: 800;
	color: #0a0a0a;
	background-image: linear-gradient(120deg, rgba(220, 38, 38, 0.25) 0%, rgba(220, 38, 38, 0.25) 100%);
	background-repeat: no-repeat;
	background-size: 100% 40%;
	background-position: 0 85%;
	padding: 0 2px;
}

.idea-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 3.5rem;
	text-align: left;
}

.idea-item {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.idea-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.idea-icon {
	width: 26px;
	height: 26px;
	color: #dc2626;
}

.idea-item span {
	font-size: 1.3rem;
	color: #1a1a1a;
	font-weight: 500;
	line-height: 1.5;
}

.idea-item span strong {
	color: #0a0a0a;
	font-weight: 700;
}

/* Idea Export Area */
.idea-export {
	margin-top: 2rem;
	text-align: center;
}

.idea-export-text {
	font-size: 1.3rem;
	color: #444444;
	margin-bottom: 1.5rem;
}

.idea-export-text strong {
	color: #0a0a0a;
	font-weight: 700;
}

.idea-export-btn-wrapper {
	display: inline-flex;
	align-items: center;
	position: relative;
}

.idea-export-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: #dc2626;
	color: #ffffff;
	border: none;
	padding: 1rem 2.5rem;
	border-radius: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	font-family: 'Inter', 'Inter Fallback', sans-serif;
	cursor: pointer;
	box-shadow: 0 6px 24px rgba(220, 38, 38, 0.35);
	position: relative;
	z-index: 1;
}

.idea-export-btn::before,
.idea-export-btn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	border-radius: 12px;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: -1;
}

.idea-export-btn::before {
	border: 2px solid rgba(220, 38, 38, 0.6);
	animation: idea-pulsar 2s ease-out infinite;
}

.idea-export-btn::after {
	border: 2px solid rgba(220, 38, 38, 0.4);
	animation: idea-pulsar 2s ease-out infinite 0.6s;
}

.idea-export-btn-icon {
	width: 22px;
	height: 22px;
}

.idea-cursor {
	position: absolute;
	bottom: -8px;
	right: -20px;
	animation: idea-cursor-hover 2s ease-in-out infinite;
}

.idea-cursor-icon {
	width: 28px;
	height: 28px;
	color: #0a0a0a;
	filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, 0.3));
}

@keyframes idea-pulsar {
	0% {
		width: 100%;
		height: 100%;
		opacity: 0.8;
	}
	100% {
		width: calc(100% + 40px);
		height: calc(100% + 40px);
		opacity: 0;
	}
}

@keyframes idea-cursor-hover {
	0%, 100% {
		transform: translate(0, 0);
	}
	50% {
		transform: translate(-4px, -5px);
	}
}

/* Idea Section Responsive */
@media (max-width: 768px) {
	.idea-section {
		padding: 60px 0;
	}

	.idea-title {
		font-size: 2rem;
		line-height: 1.3;
	}

	.idea-subtitle {
		font-size: 1.35rem;
		margin-bottom: 2rem;
	}

	.idea-item span {
		font-size: 1.125rem;
	}

	.idea-icon {
		width: 22px;
		height: 22px;
	}

	.idea-export-text {
		font-size: 1.125rem;
	}

	.idea-export-btn {
		padding: 0.875rem 2rem;
		font-size: 1.1rem;
	}
}

@media (max-width: 480px) {
	.idea-section {
		padding: 50px 0;
	}

	.idea-title {
		font-size: 1.75rem;
	}

	.idea-subtitle {
		font-size: 1.25rem;
	}

	.idea-list {
		gap: 1.25rem;
		margin-bottom: 2.5rem;
	}

	.idea-item {
		gap: 1rem;
	}

	.idea-item span {
		font-size: 1.0625rem;
	}

	.idea-icon {
		width: 20px;
		height: 20px;
	}

	.idea-export-text {
		font-size: 1.0625rem;
	}

	.idea-export-btn {
		padding: 0.875rem 1.75rem;
		font-size: 1rem;
	}

	.idea-cursor-icon {
		width: 24px;
		height: 24px;
	}
}

/* Pain Points Section */
.pain-section {
	padding: 80px 0;
	background-color: #0a0a0a;
}

.pain-content {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.pain-title {
	font-size: 3.5rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.pain-highlight {
	color: #dc2626;
}

.pain-subtitle {
	font-size: 1.5rem;
	color: #b0b0b0;
	margin-bottom: 3rem;
	line-height: 1.7;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.pain-list {
	margin-bottom: 0;
}

.pain-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	background-color: #1a1a1a;
	border: 1px solid #404040;
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	height: 100%;
}

.pain-icon-wrapper {
	width: 70px;
	height: 70px;
	background-color: #2d2d2d;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.pain-icon {
	width: 36px;
	height: 36px;
	color: #ffffff;
}

.pain-item span {
	font-size: 1.35rem;
	color: #ffffff;
	font-weight: 500;
	line-height: 1.5;
}

/* Solution Section */
.solution-section {
	padding: 80px 0;
	background-color: #0a0a0a;
}

.solution-content {
	text-align: center;
}

.solution-title {
	font-size: 3.5rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.solution-highlight {
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.solution-subtitle {
	font-size: 1.5rem;
	color: #b0b0b0;
	margin-bottom: 3rem;
	line-height: 1.7;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.slider-wrapper {
    background-color: #060606;
    border: 1px solid #404040;
    border-radius: 16px;
    padding: 1.5rem;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: inset 2px 4px 20px rgba(0, 0, 0, 0.5);
}

.slider-track {
	display: flex;
	width: fit-content;
	animation: slide 60s linear infinite;
}

.slider-track img {
	width: 1000px;
	height: auto;
	flex-shrink: 0;
}

@keyframes slide {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-1000px);
	}
}

/* Solution Light Section */
.solution-section-light {
	padding: 80px 0;
	background-color: #ffffff;
}

.solution-content-light {
	text-align: center;
}

.solution-title-light {
	font-size: 3.5rem;
	font-weight: 800;
	color: #0a0a0a;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.solution-highlight-light {
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.solution-subtitle-light {
	font-size: 1.5rem;
	color: #555555;
	margin-bottom: 3rem;
	line-height: 1.7;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.slider-wrapper-light {
background-color: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 16px;
    padding: 1.5rem;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: inset 1px 4px 20px rgb(0 0 0 / 22%);
}

.slider-track-reverse {
	animation: slide-reverse 60s linear infinite;
}

@keyframes slide-reverse {
	0% {
		transform: translateX(-1000px);
	}
	100% {
		transform: translateX(0);
	}
}

/* Book Types Section */
.booktypes-section {
	padding: 100px 0;
	background: linear-gradient(180deg, #f0f0f0 0%, #e0e0e0 100%);
}

.booktypes-title {
	font-size: 3rem;
	font-weight: 800;
	color: #0a0a0a;
	text-align: center;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.booktypes-highlight {
	color: #dc2626;
}

.booktypes-subtitle {
	font-size: 1.25rem;
	color: #555555;
	text-align: center;
	margin-bottom: 4rem;
}

.booktypes-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 1100px;
	margin: 0 auto;
}

.booktype-card {
	background: #ffffff;
	border-radius: 14px;
	padding: 1.75rem;
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

.booktype-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
	border-color: #ccc;
}

.booktype-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.booktype-icon {
	width: 22px;
	height: 22px;
	color: #dc2626;
	flex-shrink: 0;
}

.booktype-header h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #0a0a0a;
	margin: 0;
	line-height: 1.3;
}

.booktype-desc {
	font-size: 0.95rem;
	color: #555555;
	line-height: 1.55;
	margin: 0 0 0.75rem 0;
}

.booktype-pages {
	font-size: 0.8rem;
	font-weight: 600;
	color: #999999;
	letter-spacing: 0.3px;
}

/* Book Types Responsive */
@media (max-width: 992px) {
	.booktypes-section {
		padding: 80px 0;
	}

	.booktypes-title {
		font-size: 2.5rem;
	}

	.booktypes-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.booktypes-section {
		padding: 60px 0;
	}

	.booktypes-title {
		font-size: 2rem;
		line-height: 1.3;
	}

	.booktypes-subtitle {
		font-size: 1.125rem;
		margin-bottom: 3rem;
	}

	.booktypes-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.booktype-card {
		padding: 1.5rem;
	}

	.booktype-header h3 {
		font-size: 1.05rem;
	}

	.booktype-desc {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.booktypes-section {
		padding: 50px 0;
	}

	.booktypes-title {
		font-size: 1.75rem;
	}

	.booktypes-subtitle {
		font-size: 1.0625rem;
		margin-bottom: 2.5rem;
	}

	.booktypes-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.booktype-card {
		padding: 1.25rem;
	}

	.booktype-header h3 {
		font-size: 1rem;
	}
}

/* Features Section */
.features-section {
	padding: 120px 0;
	background-color: var(--dark-primary);
}

.section-title {
	font-size: 3rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
	position: relative;
	display: inline-block;
	width: 100%;
	color: #fff;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 30px;
	background: linear-gradient(90deg, var(--accent-primary), var(--accent-light));
	filter: blur(35px);
	opacity: 0.5;
	z-index: -1;
}

.section-subtitle {
	text-align: center;
	color: var(--text-tertiary);
	font-size: 1.25rem;
	margin-bottom: 5rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.text-loud {
	font-weight: 700;
	color: var(--text-primary);
	text-transform: uppercase;
}

.text-highlight {
	font-weight: 800;
	color: var(--text-primary);
	text-transform: uppercase;
	text-decoration: underline;
	text-decoration-color: #facc15;
	text-decoration-thickness: 3px;
	text-underline-offset: 3px;
}

.feature-card {
	background-color: var(--dark-secondary);
	border: 1px solid var(--border-primary);
	border-radius: 16px;
	padding: 3rem 2.5rem;
	height: 100%;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-primary), var(--accent-light));
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	border-color: var(--accent-primary);
	box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
}

.feature-icon .material-icons {
	font-size: 36px;
	color: var(--text-primary);
}

/* Individual icon colors */
.feature-icon-1 {
	background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.feature-icon-2 {
	background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.feature-icon-3 {
	background: linear-gradient(135deg, #2196F3, #42A5F5);
}

.feature-icon-4 {
	background: linear-gradient(135deg, #9C27B0, #BA68C8);
}

.feature-icon-5 {
	background: linear-gradient(135deg, #FF5722, #FF7043);
}

.feature-icon-6 {
	background: linear-gradient(135deg, #00BCD4, #26C6DA);
}

.feature-icon-7 {
	background: linear-gradient(135deg, #FFC107, #FFD54F);
}

.feature-icon-8 {
	background: linear-gradient(135deg, #E91E63, #F06292);
}

.feature-icon-9 {
	background: linear-gradient(135deg, #3F51B5, #5C6BC0);
}

.feature-icon-10 {
	background: linear-gradient(135deg, #0D9488, #2DD4BF);
}

.feature-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.feature-description {
	color: var(--text-tertiary);
	font-size: 1rem;
	line-height: 1.7;
}

/* How It Works Section */
.how-it-works-section {
	padding: 120px 0;
	background-color: var(--dark-secondary);
}

.steps-grid {
	display: flex;
	flex-direction: column;
	gap: 6rem;
	max-width: 900px;
	margin: 0 auto;
	position: relative;
}

.steps-grid::before {
	content: '';
	position: absolute;
	left: 45px;
	top: 90px;
	bottom: 90px;
	width: 2px;
	background: linear-gradient(180deg,
		var(--accent-primary) 0%,
		rgba(255, 107, 53, 0.3) 50%,
		var(--accent-primary) 100%);
	opacity: 0.5;
}

.step-item {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 3rem;
	align-items: center;
	position: relative;
}

.step-number {
	width: 90px;
	height: 90px;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 800;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
}

.step-item:hover .step-number {
	transform: scale(1.1);
	box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.step-content {
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 16px;
	padding: 3rem;
	transition: all 0.3s ease;
}

.step-content:hover {
	border-color: var(--accent-primary);
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.step-content h3 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.step-content p {
	color: var(--text-tertiary);
	line-height: 1.7;
	font-size: 1.1rem;
	margin: 0;
}

/* Responsive adjustments for steps */
@media (max-width: 768px) {
	.steps-grid {
		gap: 4rem;
	}

	.steps-grid::before {
		left: 35px;
		top: 70px;
		bottom: 70px;
	}

	.step-item {
		grid-template-columns: 70px 1fr;
		gap: 1.5rem;
	}

	.step-number {
		width: 70px;
		height: 70px;
		font-size: 1.5rem;
	}

	.step-content {
		padding: 2rem;
	}

	.step-content h3 {
		font-size: 1.4rem;
	}

	.step-content p {
		font-size: 1rem;
	}
}

/* Legacy styles for backwards compatibility */
.step-card {
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 16px;
	padding: 3rem 2.5rem;
	height: 100%;
	position: relative;
	transition: all 0.3s ease;
}

.step-card:hover {
	border-color: var(--accent-primary);
	transform: translateY(-3px);
}

.step-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	margin-top: 1.5rem;
}

.step-description {
	color: var(--text-tertiary);
	line-height: 1.7;
}

/* CTA Section */
.cta-section {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-secondary) 100%);
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
	pointer-events: none;
}

.cta-content {
	text-align: center;
	position: relative;
	z-index: 1;
}

.cta-title {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
}

.cta-subtitle {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Pricing Section */
.pricing-section {
	padding: 100px 0;
	background: #f5f5f7;
	position: relative;
	overflow: hidden;

	/* Light theme variable overrides */
	--dark-primary: #f5f5f7;
	--dark-secondary: #eeeef2;
	--dark-elevated: #ffffff;
	--border-primary: #d8d8e0;
	--text-primary: #1a1a2e;
	--text-secondary: #555566;
	--text-tertiary: #888899;

	/* Sapphire blue accent */
	--accent-primary: #4169E1;
	--accent-light: #5B82E8;
	--accent-dark: #3457C9;
	--accent-pink: #4169E1;
	--accent-pink-light: #5B82E8;
}

.pricing-section .container {
	max-width: 500px;
	margin: 0 auto;
}

/* === Subscription Plans === */
.plans-heading {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-top: 2.5rem;
	margin-bottom: 0.5rem;
}

.plans-container {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0 auto 24px auto;
}

.plan-option {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	background: var(--dark-elevated);
	border: 2px solid var(--border-primary);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
}

.plan-option:hover {
	border-color: var(--border-primary);
}

.plan-option.plan-selected {
	border-color: #4169E1;
	background: rgba(37, 99, 235, 0.06);
	box-shadow: 0 2px 12px rgba(37, 99, 235, 0.15);
}

.plan-option input[type="radio"] {
	display: none;
}

.plan-radio {
	width: 24px;
	height: 24px;
	border: 2px solid var(--border-primary);
	border-radius: 50%;
	flex-shrink: 0;
	position: relative;
	transition: all 0.2s ease;
}

.plan-option:hover .plan-radio {
	border-color: var(--border-primary);
}

.plan-option.plan-selected .plan-radio {
	border-color: #4169E1;
}

.plan-option.plan-selected .plan-radio::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	background: #4169E1;
	border-radius: 50%;
}

.plan-details {
	flex: 1;
	min-width: 0;
}

.plan-name {
	font-size: 17px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 3px;
	letter-spacing: 0.02em;
	line-height: 1.2;
}

.plan-prices {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 2px;
	line-height: 1.3;
}

.plan-price-old {
	font-size: 15px;
	color: #777;
	text-decoration: line-through;
}

.plan-price-new {
	font-size: 18px;
	font-weight: 700;
	color: #4169E1;
}

.plan-billing {
	font-size: 12px;
	color: #3a3a4a;
	line-height: 1.3;
}

/* Right side: price + discount */
.plan-right {
	text-align: right;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
}

.plan-right .plan-price-old {
	font-size: 15px;
	color: #666;
	text-decoration: line-through;
	line-height: 1.2;
}

.plan-right .plan-price-new {
	font-size: 22px;
	font-weight: 800;
	color: #1a1a2e;
	line-height: 1.1;
}

.plan-popular .plan-right .plan-price-new {
	color: #4169E1;
	font-size: 26px;
}

.plan-daily {
	text-align: right;
	flex-shrink: 0;
}

.plan-daily-price {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	color: #1a1a2e;
	line-height: 1;
}

.plan-daily-currency {
	font-size: 16px;
	font-weight: 600;
	margin-top: 4px;
}

.plan-daily-amount {
	font-size: 36px;
	font-weight: 800;
	line-height: 1;
}

.plan-daily-cents {
	font-size: 18px;
	font-weight: 700;
	margin-top: 4px;
}

.plan-daily-label {
	font-size: 11px;
	font-weight: 500;
	color: #3a3a4a;
	margin-left: 4px;
	margin-top: 6px;
}

.plan-daily-highlight {
	color: #4169E1;
}

.plan-daily-total {
	font-size: 13px;
	color: #3a3a4a;
	margin-top: 4px;
}

.plan-daily-total.plan-savings {
	color: #4169E1;
	font-weight: 600;
}

/* Discount badge */
.plan-discount-badge {
	display: inline-block;
	background: #dc2626;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 4px;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.plan-discount-best {
	background: linear-gradient(135deg, #dc2626, #ef4444);
	font-size: 12px;
	padding: 3px 8px;
}

/* Plan bonus text */
.plan-bonus {
	font-size: 14px;
	color: #4169E1;
	font-weight: 600;
	margin-top: 4px;
}

/* Visual hierarchy: muted non-popular plans */
.plan-option:not(.plan-popular):not(.plan-selected) {
	opacity: 0.85;
}

.plan-option:not(.plan-popular):not(.plan-selected):hover {
	opacity: 1;
}

.plan-popular {
	padding-top: 32px;
	margin-top: 8px;
	border-width: 2px;
	border-color: #4169E1;
	background: rgba(37, 99, 235, 0.04);
	box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.plan-popular-badge {
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	background: linear-gradient(135deg, #4169E1, #5B82E8);
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	padding: 4px 16px;
	border-radius: 10px 10px 0 0;
	letter-spacing: 0.05em;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	line-height: 1;
}
/* === End Subscription Plans === */

/* Credits Rollover Banner */
.rollover-banner {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
	border: 2px solid #10b981;
	border-radius: 16px;
	padding: 24px 28px;
	margin-top: 2.5rem;
	margin-bottom: 0.5rem;
	position: relative;
	overflow: hidden;
}

.rollover-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #10b981, #059669);
}

.rollover-banner-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #10b981, #059669);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.rollover-banner-icon .material-icons {
	font-size: 26px;
	color: #ffffff;
}

.rollover-banner-content {
	flex: 1;
}

.rollover-banner-title {
	font-size: 1.15rem;
	font-weight: 800;
	color: #065f46;
	margin-bottom: 6px;
	line-height: 1.3;
}

.rollover-banner-text {
	font-size: 0.95rem;
	color: #374151;
	line-height: 1.6;
	margin: 0;
}

.rollover-banner-text strong {
	color: #059669;
	font-weight: 700;
}

/* Rollover banner responsive */
@media (max-width: 768px) {
	.rollover-banner {
		padding: 20px 20px;
		gap: 14px;
	}

	.rollover-banner-icon {
		width: 42px;
		height: 42px;
	}

	.rollover-banner-icon .material-icons {
		font-size: 22px;
	}

	.rollover-banner-title {
		font-size: 1.05rem;
	}

	.rollover-banner-text {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.rollover-banner {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 20px 16px;
		gap: 12px;
	}

	.rollover-banner-title {
		font-size: 1rem;
	}

	.rollover-banner-text {
		font-size: 0.85rem;
	}
}

/* Pricing Intro */
.pricing-intro {
	text-align: center;
	margin-bottom: 2.5rem;
}

.pricing-intro-icon {
	margin-bottom: 1rem;
	position: relative;
	width: 40px;
	height: 40px;
	margin-left: auto;
	margin-right: auto;
}

.pricing-intro-lucide {
	width: 40px;
	height: 40px;
	color: var(--accent-primary);
}

.pricing-clock {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.pricing-clock.active {
	opacity: 1;
}

.pricing-intro-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.pricing-intro-highlight {
	color: var(--accent-primary);
}

.pricing-intro-text {
	font-size: 1.2rem;
	color: var(--text-secondary);
	line-height: 1.7;
	max-width: 460px;
	margin: 0 auto;
}

.pricing-intro-text strong {
	color: var(--text-primary);
	font-weight: 700;
}

.pricing-intro-urgent {
	font-weight: 800;
	color: #dc2626;
	background-image: linear-gradient(120deg, rgba(220, 38, 38, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
	background-repeat: no-repeat;
	background-size: 100% 40%;
	background-position: 0 85%;
	padding: 0 3px;
}

.early-bird-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
	color: #ffffff;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 2rem;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: center;
}

.early-bird-badge .material-icons {
	font-size: 20px;
}

.pricing-card {
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 20px;
	padding: 3rem 2.5rem;
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
	border-color: var(--accent-pink);
}

.card-tag {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
	color: #ffffff;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 1px;
}

.lifetime-label {
	display: inline-block;
	background: linear-gradient(135deg, #4CAF50, #66BB6A);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.pricing-header {
	text-align: center;
	margin-bottom: 2rem;
}

.pricing-header h3 {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.price-sub {
	color: var(--text-tertiary);
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

.price-before {
	text-align: center;
	margin-bottom: 0.5rem;
}

.price-before-text {
	font-size: 1.5rem;
	font-weight: 600;
	color: #dc2626;
}

.price-display {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.currency {
	font-size: 2rem;
	font-weight: 700;
	color: var(--accent-primary);
	margin-top: 0.5rem;
}

.amount {
	font-size: 4rem;
	font-weight: 800;
	color: var(--text-primary);
	line-height: 1;
}

.old-price {
	font-size: 1.5rem;
	color: var(--text-tertiary);
	text-decoration: line-through;
	margin-top: 0.5rem;
	opacity: 0.6;
}

.payment-note {
	color: var(--text-tertiary);
	font-size: 0.9rem;
}

.divider {
	border: none;
	border-top: 1px solid var(--border-primary);
	margin: 2rem 0;
}

.pricing-features {
	list-style: none;
	padding: 0;
	margin-bottom: 2rem;
}

.pricing-features li {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0;
	color: var(--text-secondary);
	font-size: 1rem;
}

.check-icon {
	color: var(--accent-pink);
	font-size: 24px;
	flex-shrink: 0;
}

.checkout-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	width: 100%;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	color: #ffffff;
	border: none;
	padding: 1.25rem 2rem;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
	position: relative;
	margin-top: 1rem;
}

.checkout-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
	background: linear-gradient(135deg, var(--accent-light), var(--accent-primary));
	color: #ffffff;
}

.checkout-btn .material-icons {
	font-size: 24px;
}

/* Checkout info text */
.cancel-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	background-color: #ffffff;
	border: 1px solid var(--border-primary);
	border-radius: 12px;
	padding: 1.5rem 2rem;
	margin-top: 2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	text-align: center;
}

.cancel-badge-content h4 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.cancel-badge-content p {
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin: 0;
}

.cancel-badge .cancel-plan-img {
	max-width: 100%;
	border-radius: 8px;
}

.trial-fee-info {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	flex-wrap: wrap;
}

.info-icon-wrapper {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.info-icon {
	font-size: 16px !important;
	color: var(--text-tertiary);
	opacity: 0.7;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.info-icon-wrapper:hover .info-icon {
	opacity: 1;
	color: var(--accent-primary);
}

.info-tooltip {
	position: absolute;
	bottom: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	width: 280px;
	padding: 12px 16px;
	background: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 8px;
	font-size: 0.85rem;
	line-height: 1.5;
	color: var(--text-secondary);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 100;
	pointer-events: none;
}

.info-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 8px solid transparent;
	border-top-color: var(--border-primary);
}

.info-icon-wrapper:hover .info-tooltip,
.info-icon-wrapper:focus .info-tooltip,
.info-icon-wrapper:active .info-tooltip {
	opacity: 1;
	visibility: visible;
}

/* Mobile touch support */
@media (max-width: 768px) {
	.info-tooltip {
		width: 250px;
		left: auto;
		right: -20px;
		transform: none;
	}

	.info-tooltip::after {
		left: auto;
		right: 28px;
		transform: none;
	}
}

/* AI Models Header in Pricing */
.ai-models-header {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-tertiary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border-primary);
}

.pricing-features-ai li {
	padding: 0.75rem 0;
}

.ai-check-icon {
	width: 22px;
	height: 22px;
	color: var(--accent-primary);
	flex-shrink: 0;
}

.guarantee-badge {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 12px;
	padding: 1.5rem 2rem;
	margin-top: 2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.shield-icon-box {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shield-icon-box .material-icons {
	font-size: 32px;
	color: #ffffff;
}

.guarantee-text h4 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.guarantee-text p {
	color: var(--text-tertiary);
	font-size: 0.95rem;
	margin: 0;
}


/* Footer */
.footer {
	background-color: var(--dark-secondary);
	border-top: 1px solid var(--border-primary);
	padding: 2rem 0;
}

.footer-bottom {
	text-align: center;
	color: var(--text-tertiary);
	font-size: 0.9rem;
}

.footer-bottom p:not(.footer-disclaimer) {
	margin: 0;
}

.footer-bottom a {
	color: var(--text-tertiary);
	text-decoration: none;
	transition: color 0.3s ease;
	margin: 0 0.5rem;
}

.footer-bottom a:hover {
	color: var(--accent-primary);
}

.footer-copyright {
	margin-top: 3rem;
	margin-bottom: 0.5rem;
}

.footer-merchant {
	margin: 0;
	font-size: 0.85rem;
	opacity: 0.8;
}

.footer-disclaimer {
	margin-top: 1.5rem;
	font-size: 0.75rem;
	opacity: 0.6;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
	text-align: center;
}

/* Legal Pages (Terms, Privacy, Refund) */
.legal-content {
	background-color: var(--dark-primary);
	padding: 100px 0 80px;
	min-height: 100vh;
}

.legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 2rem;
}

.legal-header {
	text-align: center;
	margin-bottom: 4rem;
	padding-top: 2rem;
}

.legal-header h1 {
	font-size: 3rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.legal-header .update-date {
	color: var(--text-tertiary);
	font-size: 1rem;
}

.legal-section {
	margin-bottom: 3rem;
}

.legal-section h2 {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
	margin-top: 2rem;
}

.legal-section h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 0.75rem;
	margin-top: 1.5rem;
}

.legal-section p {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.legal-section ul, .legal-section ol {
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 1rem;
	padding-left: 2rem;
}

.legal-section ul li, .legal-section ol li {
	margin-bottom: 0.5rem;
}

.legal-section strong {
	color: var(--text-primary);
	font-weight: 600;
}

.company-info {
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 12px;
	padding: 2rem;
	margin: 2rem 0;
}

.company-info p {
	margin-bottom: 0.5rem;
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--accent-primary);
	text-decoration: none;
	font-weight: 600;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
}

.back-link:hover {
	color: var(--accent-light);
	transform: translateX(-5px);
}

.highlight-box {
	background-color: var(--dark-elevated);
	border-left: 4px solid var(--accent-primary);
	padding: 1.5rem;
	margin: 1.5rem 0;
	border-radius: 8px;
}

.highlight-box p {
	margin-bottom: 0;
}

.success-box {
	background-color: rgba(76, 175, 80, 0.1);
	border-left: 4px solid #4caf50;
	padding: 1.5rem;
	margin: 1.5rem 0;
	border-radius: 8px;
}

.success-box p {
	margin-bottom: 0;
	color: var(--text-secondary);
}

.process-steps {
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 12px;
	padding: 2rem;
	margin: 2rem 0;
}

.process-steps ol {
	counter-reset: step-counter;
	list-style: none;
	padding-left: 0;
}

.process-steps ol li {
	counter-increment: step-counter;
	position: relative;
	padding-left: 3rem;
	margin-bottom: 1.5rem;
}

.process-steps ol li::before {
	content: counter(step-counter);
	position: absolute;
	left: 0;
	top: 0;
	width: 2rem;
	height: 2rem;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1rem;
	color: var(--text-primary);
}

.legal-section table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
}

.legal-section table th,
.legal-section table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid var(--border-primary);
	color: var(--text-secondary);
}

.legal-section table th {
	color: var(--text-primary);
	font-weight: 600;
	background-color: var(--dark-elevated);
}

/* Contact Page */
.contact-content {
	background-color: var(--dark-primary);
	padding: 100px 0 80px;
	min-height: 100vh;
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.contact-header {
	text-align: center;
	margin-bottom: 4rem;
	padding-top: 2rem;
}

.contact-header h1 {
	font-size: 3rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.contact-header p {
	color: var(--text-tertiary);
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-bottom: 4rem;
}

.contact-info-section {
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 16px;
	padding: 3rem;
}

.contact-info-section h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 2rem;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--border-primary);
}

.contact-method:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.contact-icon {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-icon .material-icons {
	font-size: 24px;
	color: var(--text-primary);
}

.contact-details h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.contact-details p {
	color: var(--text-secondary);
	margin-bottom: 0.25rem;
	line-height: 1.6;
}

.contact-details a {
	color: var(--accent-primary);
	text-decoration: none;
	font-weight: 500;
}

.contact-details a:hover {
	color: var(--accent-light);
}

.contact-form-section {
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 16px;
	padding: 3rem;
}

.contact-form-section h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	color: var(--text-primary);
	font-weight: 600;
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.form-control {
	width: 100%;
	padding: 0.875rem 1rem;
	background-color: var(--dark-primary);
	border: 1px solid var(--border-primary);
	border-radius: 8px;
	color: var(--text-primary);
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: 'Inter', 'Inter Fallback', sans-serif;
}

.form-control:focus {
	outline: none;
	border-color: var(--accent-primary);
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-control::placeholder {
	color: var(--text-tertiary);
}

textarea.form-control {
	resize: vertical;
	min-height: 150px;
}

.submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	width: 100%;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	color: var(--text-primary);
	border: none;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.submit-btn .material-icons {
	font-size: 20px;
}

.response-time {
	background-color: var(--dark-primary);
	border-left: 4px solid var(--accent-primary);
	padding: 1.5rem;
	margin-top: 2rem;
	border-radius: 8px;
}

.response-time p {
	color: var(--text-secondary);
	margin: 0;
}

.response-time strong {
	color: var(--text-primary);
}

/* Who Is This For Section */
.who-section {
	padding: 120px 0;
	background-color: var(--dark-primary);
}

.who-card {
	background-color: var(--dark-secondary);
	border: 1px solid var(--border-primary);
	border-radius: 16px;
	padding: 2rem;
	height: 100%;
}

.who-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--border-primary);
}

.who-icon {
	width: 28px;
	height: 28px;
	color: var(--accent-primary);
	flex-shrink: 0;
}

.who-header h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
}

.who-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.who-list li {
	color: var(--text-secondary);
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
	font-size: 0.95rem;
}

.who-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background: var(--accent-primary);
	border-radius: 50%;
}

.who-list li.who-more {
	color: var(--text-tertiary);
	font-style: italic;
}

.who-list li.who-more::before {
	background: var(--text-tertiary);
}

/* FAQ Section */
.faq-section {
	padding: 120px 0;
	background-color: #eeeef2;

	/* Light theme variable overrides */
	--dark-primary: #f5f5f7;
	--dark-secondary: #eeeef2;
	--dark-elevated: #ffffff;
	--border-primary: #d8d8e0;
	--text-primary: #1a1a2e;
	--text-secondary: #555566;
	--text-tertiary: #888899;

	/* Sapphire blue accent */
	--accent-primary: #4169E1;
	--accent-light: #5B82E8;
}

.faq-section .section-title {
	color: var(--text-primary);
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: rgba(37, 99, 235, 0.4);
}

.faq-item.active {
	border-color: var(--accent-primary);
	box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 2rem;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	color: var(--text-primary);
	font-size: 1.1rem;
	font-weight: 600;
	font-family: 'Inter', 'Inter Fallback', sans-serif;
	transition: all 0.3s ease;
	gap: 1rem;
}

.faq-question:hover {
	color: var(--accent-primary);
}

.faq-question span:first-child {
	flex: 1;
}

.faq-icon {
	flex-shrink: 0;
	font-size: 28px;
	color: var(--accent-primary);
	transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.faq-answer p {
	padding: 0 2rem 1.5rem 2rem;
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.8;
	margin: 0;
}

/* ============================================
   RESPONSIVE - MOBILE STYLES
   ============================================ */

/* Large tablets and small desktops */
@media (max-width: 992px) {
	.hero-section {
		padding: 80px 0 60px;
		min-height: auto;
	}

	.hero-title {
		font-size: 3rem;
	}

	.hero-subtitle {
		font-size: 1.25rem;
	}

	.pain-title,
	.solution-title {
		font-size: 2.5rem;
	}

	.pain-subtitle,
	.solution-subtitle {
		font-size: 1.25rem;
	}

	.features-section,
	.how-it-works-section,
	.who-section,
	.faq-section {
		padding: 80px 0;
	}

	.section-title {
		font-size: 2.5rem;
	}

	.section-subtitle {
		font-size: 1.1rem;
		margin-bottom: 3rem;
	}
}

/* Tablets */
@media (max-width: 768px) {
	/* Hero Section */
	.hero-section {
		padding: 60px 0 50px;
	}

	.hero-title {
		font-size: 2.25rem;
		line-height: 1.2;
		margin-bottom: 1.5rem;
	}

	.hero-title::after {
        height: 65px;
        filter: blur(60px);
	}

	.hero-subtitle {
		font-size: 1.125rem;
		line-height: 1.7;
		margin-bottom: 2rem;
		padding: 0 0.5rem;
	}

	.btn-hero {
		padding: 1rem 2rem;
		font-size: 1.1rem;
		width: 100%;
		justify-content: center;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
		margin-top: 3rem;
	}

	.stat-number {
		font-size: 2.5rem;
	}

	.stat-label {
		font-size: 1rem;
	}

	.hero-benefits {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		margin-top: 2rem;
	}

	.hero-benefit-text {
		font-size: 1rem;
	}

	.hero-trust {
		margin-top: 2rem;
	}

	.hero-trust-star {
		font-size: 30px;
	}

	.hero-trust-avatar {
		width: 32px;
		height: 32px;
	}

	/* Pain Section */
	.pain-section {
		padding: 60px 0;
	}

	.pain-title {
		font-size: 2rem;
		line-height: 1.2;
	}

	.pain-subtitle {
		font-size: 1.125rem;
		line-height: 1.6;
		margin-bottom: 2rem;
	}

	.pain-item {
		padding: 1.5rem 1.25rem;
	}

	.pain-icon-wrapper {
		width: 60px;
		height: 60px;
	}

	.pain-icon {
		width: 30px;
		height: 30px;
	}

	.pain-item span {
		font-size: 1.125rem;
	}

	/* Solution Section */
	.solution-section {
		padding: 60px 0;
	}

	.solution-title {
		font-size: 2rem;
		line-height: 1.2;
	}

	.solution-subtitle {
		font-size: 1.125rem;
		margin-bottom: 2rem;
	}

	.slider-wrapper {
		padding: 1rem;
		border-radius: 12px;
	}

	.slider-track img {
		width: 600px;
	}

	@keyframes slide {
		0% { transform: translateX(0); }
		100% { transform: translateX(-600px); }
	}

	/* Features Section */
	.features-section {
		padding: 60px 0;
	}

	.section-title {
		font-size: 1.875rem;
		line-height: 1.2;
		margin-bottom: 1rem;
	}

	.section-title::after {
		height: 20px;
		filter: blur(25px);
	}

	.section-subtitle {
		font-size: 1.125rem;
		margin-bottom: 2.5rem;
		padding: 0 0.5rem;
	}

	.feature-card {
		padding: 1.5rem;
		display: grid;
		grid-template-columns: 50px 1fr;
		grid-template-rows: auto auto;
		gap: 0 1rem;
		align-items: center;
	}

	.feature-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 0;
		grid-row: 1;
		grid-column: 1;
	}

	.feature-icon .material-icons {
		font-size: 26px;
	}

	.feature-title {
		font-size: 1.2rem;
		margin-bottom: 0;
		grid-row: 1;
		grid-column: 2;
	}

	.feature-description {
		font-size: 0.95rem;
		line-height: 1.6;
		grid-row: 2;
		grid-column: 1 / -1;
		margin-top: 1rem;
	}

	/* How It Works Section */
	.how-it-works-section {
		padding: 60px 0;
	}

	.steps-grid {
		gap: 3rem;
	}

	.steps-grid::before {
		left: 30px;
		top: 60px;
		bottom: 60px;
	}

	.step-item {
		grid-template-columns: 60px 1fr;
		gap: 1.25rem;
	}

	.step-number {
		width: 60px;
		height: 60px;
		font-size: 1.25rem;
	}

	.step-content {
		padding: 1.5rem;
	}

	.step-content h3 {
		font-size: 1.25rem;
	}

	.step-content p {
		font-size: 1rem;
	}

	/* Who Section */
	.who-section {
		padding: 60px 0;
	}

	.who-card {
		padding: 1.5rem;
	}

	.who-header h3 {
		font-size: 1.125rem;
	}

	.who-list li {
		font-size: 1rem;
		padding: 0.625rem 0;
		padding-left: 1.25rem;
	}

	/* FAQ Section */
	.faq-section {
		padding: 60px 0;
	}

	.faq-question {
		padding: 1.25rem 1.5rem;
		font-size: 1rem;
	}

	.faq-icon {
		font-size: 24px;
	}

	.faq-answer p {
		padding: 0 1.5rem 1.25rem 1.5rem;
		font-size: 0.9375rem;
		line-height: 1.7;
	}

	/* Pricing Section */
	.pricing-intro-title {
		font-size: 1.65rem;
	}

	.pricing-intro-text {
		font-size: 1.1rem;
	}

	.pricing-section {
		padding: 60px 0;
	}

	.pricing-card {
		padding: 2rem 1.5rem;
	}

	.plan-option {
		padding: 16px 12px;
		gap: 12px;
	}

	.plan-name {
		font-size: 14px;
	}

	.plan-prices {
		flex-wrap: wrap;
		gap: 4px;
	}

	.plan-price-old,
	.plan-price-new {
		font-size: 13px;
	}

	.plan-right .plan-price-new {
		font-size: 18px;
	}

	.plan-popular .plan-right .plan-price-new {
		font-size: 20px;
	}

	.plan-discount-badge {
		font-size: 10px;
		padding: 2px 5px;
	}

	.plan-bonus {
		font-size: 13px;
	}

	.plan-daily-amount {
		font-size: 28px;
	}

	.plan-daily-currency {
		font-size: 14px;
	}

	.plan-daily-cents {
		font-size: 14px;
	}

	.plan-popular {
		padding-top: 36px;
	}

	.plan-popular-badge {
		font-size: 11px;
		padding: 6px 12px;
	}

	.pricing-header h3 {
		font-size: 1.75rem;
	}

	.price-sub {
		font-size: 1rem;
	}

	.amount {
		font-size: 3.5rem;
	}

	.currency {
		font-size: 1.75rem;
	}

	.pricing-features li {
		font-size: 1rem;
		padding: 0.875rem 0;
	}

	.checkout-btn {
		padding: 1.125rem 1.5rem;
		font-size: 1.05rem;
	}

	.guarantee-badge {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
		padding: 1.5rem;
	}

	.guarantee-text h4 {
		font-size: 1.125rem;
	}

	.guarantee-text p {
		font-size: 1rem;
	}

	/* Footer */
	.footer {
		padding: 1.5rem 0;
	}

	.footer-bottom {
		font-size: 0.95rem;
	}

	.footer-bottom a {
		display: inline-block;
		margin: 0.25rem 0.5rem;
	}

	/* Legal & Contact Pages */
	.legal-header h1,
	.contact-header h1 {
		font-size: 2rem;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.cta-title {
		font-size: 2rem;
	}
}

/* Small phones */
@media (max-width: 480px) {
	/* Hero Section */
	.hero-section {
		padding: 50px 0 40px;
	}

	.hero-title {
		font-size: 1.875rem;
        line-height: 1.25;
        padding: 0px 25px;
	}

	.hero-subtitle {
		font-size: 1.1rem;
		line-height: 1.65;
		padding: 0px 50px;
		opacity: 0.8;
		font-weight: 200;
	}

	.btn-hero {
		padding: 1rem 1.5rem;
		font-size: 1rem;
		gap: 0.5rem;
	}

	.btn-hero .material-icons {
		font-size: 22px;
	}

	.hero-stats {
		gap: 1.25rem;
	}

	.stat-number {
		font-size: 2.25rem;
	}

	.stat-label {
		font-size: 0.9375rem;
	}

	/* Pain Section */
	.pain-section {
		padding: 50px 0;
	}

	.pain-title {
		font-size: 1.75rem;
	}

	.pain-subtitle {
		font-size: 1.0625rem;
	}

	.pain-item {
		padding: 1.25rem 1rem;
	}

	.pain-icon-wrapper {
		width: 55px;
		height: 55px;
	}

	.pain-icon {
		width: 28px;
		height: 28px;
	}

	.pain-item span {
		font-size: 1.0625rem;
	}

	/* Solution Section */
	.solution-section {
		padding: 50px 0;
	}

	.solution-title {
		font-size: 1.75rem;
	}

	.solution-subtitle {
		font-size: 1.0625rem;
	}

	.slider-wrapper {
		padding: 0.75rem;
	}

	.slider-track img {
		width: 400px;
	}

	@keyframes slide {
		0% { transform: translateX(0); }
		100% { transform: translateX(-400px); }
	}

	/* Features Section */
	.features-section {
		padding: 50px 0;
	}

	.section-title {
		font-size: 1.625rem;
		padding: 0 0.5rem;
	}

	.section-subtitle {
		font-size: 1.0625rem;
		margin-bottom: 2rem;
	}

	.feature-card {
		padding: 1.25rem;
		grid-template-columns: 44px 1fr;
	}

	.feature-icon {
		width: 44px;
		height: 44px;
	}

	.feature-icon .material-icons {
		font-size: 22px;
	}

	.feature-title {
		font-size: 1.05rem;
	}

	.feature-description {
		font-size: 0.9rem;
		margin-top: 0.75rem;
	}

	/* How It Works Section */
	.how-it-works-section {
		padding: 50px 0;
	}

	.steps-grid {
		gap: 2.5rem;
	}

	.steps-grid::before {
		left: 25px;
		top: 50px;
		bottom: 50px;
	}

	.step-item {
		grid-template-columns: 50px 1fr;
		gap: 1rem;
	}

	.step-number {
		width: 50px;
		height: 50px;
		font-size: 1.125rem;
	}

	.step-content {
		padding: 1.25rem;
	}

	.step-content h3 {
		font-size: 1.125rem;
		margin-bottom: 0.75rem;
	}

	.step-content p {
		font-size: 0.9375rem;
		line-height: 1.6;
	}

	/* Who Section */
	.who-section {
		padding: 50px 0;
	}

	.who-card {
		padding: 1.25rem;
	}

	.who-header {
		padding-bottom: 1.25rem;
		margin-bottom: 1.25rem;
	}

	.who-icon {
		width: 24px;
		height: 24px;
	}

	.who-header h3 {
		font-size: 1.0625rem;
	}

	.who-list li {
		font-size: 0.9375rem;
		padding: 0.6rem 0;
		padding-left: 1.25rem;
	}

	/* FAQ Section */
	.faq-section {
		padding: 50px 0;
	}

	.faq-item {
		border-radius: 10px;
	}

	.faq-question {
		padding: 1.125rem 1.25rem;
		font-size: 0.9375rem;
		gap: 0.75rem;
	}

	.faq-icon {
		font-size: 22px;
	}

	.faq-answer p {
		padding: 0 1.25rem 1.125rem 1.25rem;
		font-size: 0.9rem;
		line-height: 1.65;
	}

	/* Pricing Section */
	.pricing-intro {
		margin-bottom: 2rem;
	}

	.pricing-intro-title {
		font-size: 1.45rem;
	}

	.pricing-intro-text {
		font-size: 1.05rem;
	}

	.pricing-intro-lucide {
		width: 32px;
		height: 32px;
	}

	.pricing-intro-icon {
		width: 32px;
		height: 32px;
	}

	.pricing-section {
		padding: 50px 0;
	}

	.pricing-card {
		padding: 1.75rem 1.25rem;
		border-radius: 16px;
	}

	.pricing-header h3 {
		font-size: 1.5rem;
	}

	.price-sub {
		font-size: 0.9375rem;
	}

	.amount {
		font-size: 3rem;
	}

	.currency {
		font-size: 1.5rem;
	}

	.period {
		font-size: 1rem;
	}

	.payment-note {
		font-size: 0.875rem;
	}

	.pricing-features li {
		font-size: 0.9375rem;
		gap: 0.75rem;
	}

	.check-icon {
		font-size: 20px;
	}

	.plan-right .plan-price-new {
		font-size: 16px;
	}

	.plan-popular .plan-right .plan-price-new {
		font-size: 18px;
	}

	.plan-right .plan-price-old {
		font-size: 14px;
	}

	.plan-bonus {
		font-size: 13px;
	}

	.checkout-btn {
		padding: 1rem 1.25rem;
		font-size: 1rem;
		border-radius: 10px;
	}

	.cancel-badge {
		padding: 1.25rem;
		border-radius: 10px;
	}

	.cancel-badge-content h4 {
		font-size: 1.0625rem;
	}

	.cancel-badge-content p {
		font-size: 1rem;
	}

	.info-tooltip {
		width: 240px;
		font-size: 0.8rem;
		right: -10px;
	}

	.guarantee-badge {
		padding: 1.25rem;
		border-radius: 10px;
	}

	.shield-icon-box {
		width: 50px;
		height: 50px;
	}

	.shield-icon-box .material-icons {
		font-size: 26px;
	}

	.guarantee-text h4 {
		font-size: 1.0625rem;
	}

	.guarantee-text p {
		font-size: 0.9375rem;
	}

	/* Footer */
	.footer {
		padding: 1.25rem 0;
	}

	.footer-bottom {
		font-size: 0.875rem;
	}

	.footer-bottom a {
		margin: 0.375rem 0.375rem;
	}

	.footer-copyright {
		margin-top: 2rem;
	}

	.footer-merchant {
		font-size: 0.8rem;
	}

	/* Legal Pages */
	.legal-content,
	.contact-content {
		padding: 60px 0;
	}

	.legal-container,
	.contact-container {
		padding: 0 1rem;
	}

	.legal-header,
	.contact-header {
		margin-bottom: 2.5rem;
	}

	.legal-header h1,
	.contact-header h1 {
		font-size: 1.75rem;
	}

	.legal-section h2 {
		font-size: 1.375rem;
	}

	.legal-section h3 {
		font-size: 1.125rem;
	}

	.legal-section p,
	.legal-section ul,
	.legal-section ol {
		font-size: 0.9375rem;
	}

	.contact-info-section,
	.contact-form-section {
		padding: 1.5rem;
	}

	.contact-info-section h2,
	.contact-form-section h2 {
		font-size: 1.5rem;
	}
}

/* ============================================
   SCREENSHOTS CAROUSEL SECTION
   ============================================ */

.screenshots-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px 0;
    overflow: hidden;
}

.screenshots-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.screenshots-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.screenshots-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin: 0 0 20px 0;
}

/* Screenshots Checklist */
.screenshots-checklist {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.screenshots-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.screenshots-checkbox {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.screenshots-check-text {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
}

/* Screenshots Tagline */
.screenshots-tagline {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    margin: 30px 0 0 0;
    opacity: 0.9;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

/* Navigation Buttons */
.carousel-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Track Container - Desktop */
.carousel-track-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Individual Slides - Desktop */
.carousel-slide {
    position: absolute;
    width: 520px;
    height: auto;
    max-height: 650px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.6) translateX(0);
    pointer-events: none;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Active (Center) Slide */
.carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 5;
    pointer-events: auto;
}

/* Previous Slide (Left) */
.carousel-slide.prev {
    opacity: 0.6;
    transform: scale(0.75) translateX(-500px);
    z-index: 3;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 40%, black 100%);
}

/* Next Slide (Right) */
.carousel-slide.next {
    opacity: 0.6;
    transform: scale(0.75) translateX(500px);
    z-index: 3;
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 40%, black 100%);
    mask-image: linear-gradient(to left, transparent 0%, black 40%, black 100%);
}

/* Far Previous (Hidden Left) */
.carousel-slide.far-prev {
    opacity: 0;
    transform: scale(0.5) translateX(-700px);
    z-index: 1;
}

/* Far Next (Hidden Right) */
.carousel-slide.far-next {
    opacity: 0;
    transform: scale(0.5) translateX(700px);
    z-index: 1;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

/* ============================================
   GRAPH DONUT SECTION STYLES
   ============================================ */

.graph-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #161515 100%);
}

.graph-container {
    padding: 0px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.graph-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.graph-subtitle {
    font-size: 1.25rem;
    color: var(--text-tertiary);
    margin-bottom: 40px;
}

.graph-donut-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 40px;
}

.graph-donut {
    width: 100%;
    height: auto;
}

.graph-donut-track {
    fill: none;
    stroke: #2d2d2d;
}

.graph-donut-fill {
    fill: none;
    stroke-linecap: round;
}

.graph-donut-fill-outer { stroke: #df108c; }
.graph-donut-fill-middle { stroke: #ff730f; }
.graph-donut-fill-inner { stroke: #f43f5e; }

.graph-label-line {
    stroke-width: 1.5;
    fill: none;
}

.graph-label-line-outer { stroke: #df108c; }
.graph-label-line-middle { stroke: #ff730f; }
.graph-label-line-inner { stroke: #f43f5e; }

.graph-label-dot {
    fill: #1a1a1a;
    stroke-width: 3;
}

.graph-label-dot-outer { stroke: #df108c; }
.graph-label-dot-middle { stroke: #ff730f; }
.graph-label-dot-inner { stroke: #f43f5e; }

.graph-label-badge {
    fill: #1a1a1a;
    stroke-width: 2;
}

.graph-label-badge-outer { stroke: #df108c; }
.graph-label-badge-middle { stroke: #ff730f; }
.graph-label-badge-inner { stroke: #f43f5e; }

.graph-label-text {
    font-size: 16px;
    font-weight: 700;
    text-anchor: middle;
    dominant-baseline: middle;
}

.graph-label-text-outer { fill: #df108c; }
.graph-label-text-middle { fill: #ff730f; }
.graph-label-text-inner { fill: #f43f5e; }

.graph-center-icon {
    font-size: 32px;
}

.graph-center-text {
    font-size: 12px;
    fill: #b0b0b0;
    text-anchor: middle;
}

/* Graph Stats section */
.graph-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.graph-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    padding: 18px 22px;
    background: var(--dark-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
}

.graph-stat-indicator {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.graph-stat-indicator-outer { background: #df108c; }
.graph-stat-indicator-middle { background: #ff730f; }
.graph-stat-indicator-inner { background: #f43f5e; }

.graph-stat-indicator-value {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.graph-stat-content {
    flex: 1;
}

.graph-stat-text {
    font-size: 18px;
    color: var(--text-tertiary);
    line-height: 1.5;
}

.graph-stat-text strong {
    color: #ffffff;
}

/* Graph Section Responsive */
@media (max-width: 768px) {
    .graph-section {
        padding: 60px 0;
    }

    .graph-title {
        font-size: 1.875rem;
        line-height: 1.2;
    }

    .graph-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .graph-stat-text {
        font-size: 17px;
    }

    .graph-stat-indicator {
        width: 52px;
        height: 52px;
    }

    .graph-stat-indicator-value {
        font-size: 15px;
    }

    .graph-stat-item {
        padding: 14px 18px;
    }
}

@media (max-width: 480px) {
    .graph-section {
        padding: 50px 0;
    }

    .graph-title {
        font-size: 1.5rem;
    }

    .graph-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .graph-stat-text {
        font-size: 16px;
    }

    .graph-stat-indicator {
        width: 48px;
        height: 48px;
    }

    .graph-stat-indicator-value {
        font-size: 14px;
    }
}

/* Extra small phones (iPhone SE, etc.) */
@media (max-width: 375px) {
	.hero-title {
		font-size: 1.625rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.pain-title,
	.solution-title {
		font-size: 1.5rem;
	}

	.section-title {
		font-size: 1.5rem;
	}

	.pain-subtitle,
	.solution-subtitle,
	.section-subtitle {
		font-size: 1rem;
	}

	.btn-hero {
		font-size: 0.9375rem;
		padding: 0.875rem 1.25rem;
	}

	.pain-item span {
		font-size: 1rem;
	}

	.feature-title {
		font-size: 1.125rem;
	}

	.feature-description {
		font-size: 0.9rem;
	}

	.step-content h3 {
		font-size: 1.0625rem;
	}

	.step-content p {
		font-size: 0.9rem;
	}

	.pricing-header h3 {
		font-size: 1.375rem;
	}

	.amount {
		font-size: 2.75rem;
	}

	.checkout-btn {
		font-size: 0.9375rem;
	}
}

/* ============================================
   SCREENSHOTS CAROUSEL - RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .screenshots-section {
        padding: 30px 0;
    }

    .screenshots-title {
        font-size: 28px;
    }

    .screenshots-subtitle {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .screenshots-checklist {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        margin-bottom: 20px;
    }

    .screenshots-checkbox {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .screenshots-check-text {
        font-size: 15px;
    }

    .screenshots-tagline {
        font-size: 20px;
        margin-top: 20px;
    }

    .carousel-container {
        gap: 10px;
    }

    .carousel-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .carousel-track-container {
        height: 360px;
        max-width: 100%;
    }

    .carousel-slide {
        width: 340px;
        max-height: 520px;
        border-radius: 20px;
    }

    .carousel-slide.prev {
        transform: scale(0.75) translateX(-280px);
    }

    .carousel-slide.next {
        transform: scale(0.75) translateX(280px);
    }

    .carousel-slide.far-prev {
        transform: scale(0.5) translateX(-400px);
    }

    .carousel-slide.far-next {
        transform: scale(0.5) translateX(400px);
    }
}

@media (max-width: 480px) {
    .screenshots-section {
        padding: 25px 0;
    }

    .screenshots-title {
        font-size: 24px;
    }

    .screenshots-subtitle {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .screenshots-checklist {
        gap: 14px;
        margin-bottom: 16px;
    }

    .screenshots-check-text {
        font-size: 14px;
    }

    .screenshots-tagline {
        font-size: 18px;
        margin-top: 16px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .carousel-track-container {
        height: 230px;
    }

    .carousel-slide {
        width: 300px;
        max-height: 480px;
        border-radius: 16px;
    }

    .carousel-slide.prev {
        transform: scale(0.7) translateX(-240px);
        opacity: 0.6;
    }

    .carousel-slide.next {
        transform: scale(0.7) translateX(240px);
        opacity: 0.6;
    }

    .carousel-slide.far-prev {
        transform: scale(0.5) translateX(-350px);
    }

    .carousel-slide.far-next {
        transform: scale(0.5) translateX(350px);
    }

    .carousel-dots {
        gap: 10px;
        margin-top: 30px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

/* ===================================
   SOCIAL PROOF POPUP
   =================================== */
.sp-popup {
	position: fixed;
	bottom: 24px;
	left: 24px;
	z-index: 9998;
	pointer-events: none;
	opacity: 0;
	transform: translateY(16px) scale(0.96);
	transition: opacity 0.45s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sp-popup.sp-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.sp-popup.sp-hiding {
	opacity: 0;
	transform: translateY(10px) scale(0.97);
	transition: opacity 0.3s ease, transform 0.35s ease;
}

.sp-popup-inner {
	width: 342px;
	background: #ffffff;
	border: 1px solid #000000;
	border-radius: 14px;
	padding: 14px 16px 10px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
	position: relative;
}

.sp-close {
	position: absolute;
	top: 8px;
	right: 8px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 2px;
	line-height: 1;
	color: #ccc;
	transition: color 0.2s ease;
}

.sp-close:hover {
	color: #888;
}

.sp-close .material-icons {
	font-size: 15px;
}

.sp-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.sp-icon {
	width: 34px;
	height: 34px;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.sp-icon .material-icons {
	font-size: 18px;
	color: #ffffff;
}

.sp-body {
	flex: 1;
	min-width: 0;
}

.sp-text {
	font-size: 13px;
	color: #1a1a2e;
	margin: 0 0 2px 0;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sp-text strong {
	font-weight: 700;
	color: #0a0a0a;
}

.sp-from {
	color: #999;
	font-weight: 400;
}

.sp-topic {
	font-size: 12px;
	color: #666;
	margin: 0;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sp-topic em {
	font-style: normal;
	font-weight: 600;
	color: var(--accent-primary);
}

.sp-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid #f0f0f0;
}

.sp-live {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	font-weight: 600;
	color: #16a34a;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.sp-live-dot {
	width: 6px;
	height: 6px;
	background: #22c55e;
	border-radius: 50%;
	animation: sp-pulse 1.5s ease-in-out infinite;
}

@keyframes sp-pulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
	50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

.sp-time {
	font-size: 10px;
	color: #bbb;
	margin: 0;
}

/* Social proof mobile */
@media (max-width: 768px) {
	.sp-popup {
		left: 12px;
		bottom: 14px;
	}

	.sp-popup-inner {
		width: 341px;
		padding: 12px 14px 8px;
	}

	.sp-icon {
		width: 30px;
		height: 30px;
		border-radius: 8px;
	}

	.sp-icon .material-icons {
		font-size: 16px;
	}

	.sp-text {
		font-size: 11.5px;
	}

	.sp-topic {
		font-size: 11px;
	}
}

@media (max-width: 480px) {
	.sp-popup {
		left: 10px;
		bottom: 10px;
	}

	.sp-popup-inner {
		width: 308px;
		padding: 10px 12px 7px;
		border-radius: 12px;
	}

	.sp-icon {
		width: 28px;
		height: 28px;
		border-radius: 7px;
	}

	.sp-icon .material-icons {
		font-size: 15px;
	}

	.sp-row {
		gap: 8px;
	}

	.sp-text {
		font-size: 11px;
	}

	.sp-topic {
		font-size: 10.5px;
	}

	.sp-footer {
		margin-top: 6px;
		padding-top: 6px;
	}

	.sp-live {
		font-size: 9px;
	}

	.sp-time {
		font-size: 9px;
	}
}

/* ===================================
   TRIAL CART (A/B Test)
   =================================== */
.trial-cart {
	background: var(--dark-elevated);
	border: 2px solid var(--accent-primary);
	border-radius: 16px;
	overflow: hidden;
	margin: 0 auto 24px auto;
	position: relative;
	box-shadow: 0 4px 20px rgba(65, 105, 225, 0.15);
}

.trial-cart-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.08em;
	padding: 10px 20px;
}

.trial-cart-badge .material-icons {
	font-size: 18px;
}

.trial-cart-content {
	padding: 28px 24px;
	text-align: center;
}

.trial-cart-tagline {
	color: var(--text-secondary);
	font-size: 15px;
	margin: 0 0 20px 0;
	line-height: 1.5;
}

.trial-cart-price {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 16px;
}

.trial-cart-amount {
	font-size: 56px;
	font-weight: 800;
	color: var(--accent-primary);
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.trial-cart-label {
	font-size: 14px;
	color: var(--text-tertiary);
	font-weight: 500;
	margin-top: 4px;
}

.trial-cart-after {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(65, 105, 225, 0.08);
	border: 1px solid rgba(65, 105, 225, 0.15);
	border-radius: 8px;
	padding: 10px 16px;
	font-size: 15px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 20px;
}

.trial-cart-after .material-icons {
	font-size: 20px;
	color: var(--accent-primary);
}

.trial-cart-perks {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

.trial-cart-perks li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	font-size: 14px;
	color: var(--text-secondary);
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.trial-cart-perks li:first-child {
	border-top: none;
}

.trial-cart-perks .material-icons {
	font-size: 20px;
	color: #22c55e;
	flex-shrink: 0;
}

.trial-cart-content .checkout-btn {
	margin-top: 20px;
	border-radius: 50px;
	background: linear-gradient(135deg, #ff6b6b, #ee5a24, #f0932b);
	box-shadow: 0 6px 20px rgba(238, 90, 36, 0.35);
}

.trial-cart-content .checkout-btn:hover {
	background: linear-gradient(135deg, #f0932b, #ee5a24, #ff6b6b);
	box-shadow: 0 10px 30px rgba(238, 90, 36, 0.45);
}

/* Trial cart mobile */
@media (max-width: 576px) {
	.trial-cart-amount {
		font-size: 44px;
	}

	.trial-cart-content {
		padding: 20px 16px;
	}

	.trial-cart-after {
		font-size: 14px;
		padding: 8px 12px;
	}
}

/* === TRIAL COUNTDOWN INLINE (below trial cart button) === */
.trial-countdown-inline {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 12px;
	color: #000000;
	font-size: 13px;
	font-weight: 500;
}

.trial-countdown-inline .material-icons {
	font-size: 16px;
	color: #e53935;
}

.trial-countdown-inline strong {
	font-family: 'Courier New', monospace;
	font-weight: 700;
	font-size: 14px;
	color: #000000;
	letter-spacing: 0.5px;
}

/* ============================================
   Bootstrap utility replacements
   Only the classes actually used on the site
   ============================================ */
.text-center{text-align:center!important}
.mx-auto{margin-right:auto!important;margin-left:auto!important}
.d-flex{display:flex!important}
.d-none{display:none!important}
.flex-row-reverse{flex-direction:row-reverse!important}
.align-items-center{align-items:center!important}
.align-items-start{align-items:flex-start!important}
.justify-content-center{justify-content:center!important}
.position-fixed{position:fixed!important}
.position-absolute{position:absolute!important}
.bottom-0{bottom:0!important}
.bottom-100{bottom:100%!important}
.end-0{right:0!important}
.mb-0{margin-bottom:0!important}
.mb-1{margin-bottom:.25rem!important}
.mb-3{margin-bottom:1rem!important}
.mb-5{margin-bottom:3rem!important}
.me-4{margin-right:1.5rem!important}
.p-2{padding:.5rem!important}
.p-3{padding:1rem!important}
.px-3{padding-right:1rem!important;padding-left:1rem!important}
.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}
.gap-2{gap:.5rem!important}
.gap-3{gap:1rem!important}
.text-white{color:#fff!important}
.text-secondary{color:#6c757d!important}
.bg-primary{background-color:#0d6efd!important}
.bg-white{background-color:#fff!important}
.bg-light{background-color:#f8f9fa!important}
.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}
.rounded{border-radius:.375rem!important}
.rounded-circle{border-radius:50%!important}
.border-top{border-top:1px solid #dee2e6!important}
.overflow-auto{overflow:auto!important}
.small,small{font-size:.875em}
.show{display:block!important}
.btn{display:inline-block;font-weight:400;line-height:1.5;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;user-select:none;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.375rem;transition:color .15s,background-color .15s,border-color .15s,box-shadow .15s}
.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}
.btn-primary:hover{background-color:#0b5ed7;border-color:#0a58ca}
.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;color:#212529;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.375rem}
.card-header{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}
.card-header:first-child{border-radius:calc(.375rem - 1px) calc(.375rem - 1px) 0 0}
.card-body{flex:1 1 auto;padding:1rem}
.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}
.card-footer:last-child{border-radius:0 0 calc(.375rem - 1px) calc(.375rem - 1px)}
.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #dee2e6;appearance:none;border-radius:.375rem;transition:border-color .15s,box-shadow .15s}
.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}
.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentcolor;border-radius:50%;opacity:0;animation:spinner-grow .75s linear infinite}
.spinner-grow-sm{width:1rem;height:1rem}
@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}
