/* ================================
   TheraPays - Main Stylesheet
   ================================ */

/* CSS Variables */
:root {
	/* Primary Colors - Blue/Purple */
	--primary-900: #1e1b4b;
	--primary-800: #2e2a5e;
	--primary-700: #3730a3;
	--primary-600: #4f46e5;
	--primary-500: #6366f1;
	--primary-400: #818cf8;
	--primary-300: #a5b4fc;
	--primary-200: #c7d2fe;
	--primary-100: #e0e7ff;

	/* Accent - Orange */
	--accent-600: #ea580c;
	--accent-500: #f97316;
	--accent-400: #fb923c;
	--accent-300: #fdba74;

	/* Backgrounds */
	--slate-900: #0f172a;
	--slate-800: #1e293b;
	--slate-700: #334155;
	--slate-600: #475569;
	--slate-500: #64748b;
	--slate-400: #94a3b8;
	--slate-300: #cbd5e1;
	--slate-200: #e2e8f0;
	--slate-100: #f1f5f9;
	--bone: #f8f6f3;
	--bone-dark: #efe9e1;
	--eggshell: #fdfcfa;

	/* Text */
	--text-dark: #1e293b;
	--text-medium: #475569;
	--text-light: #94a3b8;
	--text-white: #ffffff;

	/* Spacing */
	--space-xs: 0.25rem;
	--space-sm: 0.5rem;
	--space-md: 1rem;
	--space-lg: 1.5rem;
	--space-xl: 2rem;
	--space-2xl: 3rem;
	--space-3xl: 4rem;
	--space-4xl: 6rem;

	/* Typography */
	--font-display: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
	--font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;

	/* Borders & Shadows */
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--shadow-card: 0 4px 24px rgba(30, 27, 75, 0.08);

	/* Transitions */
	--transition-fast: 150ms ease;
	--transition-base: 250ms ease;
	--transition-slow: 400ms ease;
}

/* ================================
   Reset & Base
   ================================ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--eggshell);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

input,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
}

/* ================================
   Typography
   ================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-dark);
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
h3 {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.text-gradient {
	background: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-500) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ================================
   Layout
   ================================ */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--space-lg);
}

.container-narrow {
	max-width: 800px;
}

.section {
	padding: var(--space-4xl) 0;
}

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

.section-slate {
	background-color: var(--slate-800);
}

.section-gradient {
	background: linear-gradient(135deg, var(--primary-900) 0%, var(--slate-800) 100%);
}

.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto var(--space-3xl);
}

.section-eyebrow {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--accent-500);
	margin-bottom: var(--space-md);
}

.section-eyebrow.light {
	color: var(--accent-400);
}

.section-title {
	margin-bottom: var(--space-lg);
}

.section-title.light {
	color: var(--text-white);
}

.section-intro {
	font-size: 1.125rem;
	color: var(--text-medium);
	line-height: 1.7;
}

.section-intro.light {
	color: var(--slate-300);
}

.section-text {
	font-size: 1.0625rem;
	color: var(--text-medium);
	margin-bottom: var(--space-lg);
}

.section-text.light {
	color: var(--slate-300);
}

.section-photo {
	width: 100%;
	display: block;
	object-fit: cover;
	box-shadow: var(--shadow-xl);
}

/* ================================
   Buttons
   ================================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	padding: 0.875rem 1.75rem;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 600;
	border-radius: var(--radius-md);
	transition: all var(--transition-base);
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
	color: var(--text-white);
	box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
}

.btn-secondary {
	background: var(--text-white);
	color: var(--primary-700);
	border: 2px solid var(--primary-200);
}

.btn-secondary:hover {
	background: var(--primary-100);
	border-color: var(--primary-300);
}

.btn-full {
	width: 100%;
}

/* ================================
   Navigation
   ================================ */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(253, 252, 250, 0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	transition: all var(--transition-base);
}

.nav.scrolled {
	background: rgba(253, 252, 250, 0.98);
	box-shadow: var(--shadow-md);
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: var(--space-md) var(--space-lg);
}

.nav-logo {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 800;
	display: flex;
}

.logo-thera {
	color: var(--primary-700);
}

.logo-pays {
	color: var(--accent-500);
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: var(--space-xl);
	list-style: none;
}

.nav-link {
	font-family: var(--font-display);
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--text-medium);
	transition: color var(--transition-fast);
	position: relative;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-600);
	transition: width var(--transition-base);
}

.nav-link:hover {
	color: var(--primary-700);
}

.nav-link:hover::after {
	width: 100%;
}

.nav-link-cta {
	background: var(--primary-600);
	color: var(--text-white) !important;
	padding: 0.5rem 1rem;
	border-radius: var(--radius-sm);
}

.nav-link-cta::after {
	display: none;
}

.nav-link-cta:hover {
	background: var(--primary-700);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: var(--space-sm);
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text-dark);
	transition: all var(--transition-fast);
}

/* ================================
   Hero Section
   ================================ */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(253, 252, 250, 0.98) 0%, rgba(253, 252, 250, 0.9) 36%, rgba(253, 252, 250, 0.18) 70%),
		url("PIC5.png") right center / cover no-repeat;
}

.hero-bg-shapes {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.5;
}

.shape-1 {
	width: 600px;
	height: 600px;
	top: -200px;
	right: -100px;
	background: radial-gradient(circle, var(--primary-200) 0%, transparent 70%);
}

.shape-2 {
	width: 400px;
	height: 400px;
	bottom: -100px;
	left: -100px;
	background: radial-gradient(circle, var(--accent-300) 0%, transparent 70%);
	opacity: 0.3;
}

.shape-3 {
	width: 300px;
	height: 300px;
	top: 50%;
	left: 40%;
	background: radial-gradient(circle, var(--primary-300) 0%, transparent 70%);
	opacity: 0.2;
}

.hero-container {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
	gap: var(--space-4xl);
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-content {
	animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-title {
	margin-bottom: var(--space-lg);
}

.hero-subtitle {
	font-size: 1.25rem;
	color: var(--text-medium);
	margin-bottom: var(--space-2xl);
	max-width: 480px;
	text-shadow: 0 1px 20px rgba(253, 252, 250, 0.78);
}

.hero-ctas {
	display: flex;
	gap: var(--space-md);
	flex-wrap: wrap;
}

.hero-visual {
	display: flex;
	justify-content: center;
	animation: fadeInUp 0.8s ease 0.2s forwards;
	opacity: 0;
}

/* Dashboard Card */
.dashboard-card {
	background: var(--text-white);
	border-radius: var(--radius-xl);
	box-shadow:
		var(--shadow-xl),
		0 0 60px rgba(79, 70, 229, 0.1);
	overflow: hidden;
	width: 100%;
	max-width: 380px;
	transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
	transition: transform var(--transition-slow);
}

.dashboard-card:hover {
	transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
	display: flex;
	gap: 6px;
	padding: var(--space-md) var(--space-lg);
	background: var(--slate-100);
}

.dashboard-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--slate-300);
}

.dashboard-dot:first-child {
	background: #ff6b6b;
}
.dashboard-dot:nth-child(2) {
	background: #feca57;
}
.dashboard-dot:nth-child(3) {
	background: #48dbfb;
}

.dashboard-content {
	padding: var(--space-xl);
}

.dashboard-stat {
	text-align: center;
}

.stat-label {
	display: block;
	font-size: 0.8125rem;
	color: var(--text-light);
	margin-bottom: var(--space-xs);
}

.stat-value {
	font-family: var(--font-display);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-700);
}

.stat-value.secondary {
	color: var(--accent-500);
}

.stat-cents {
	font-size: 1.25rem;
	color: var(--text-light);
}

.stat-badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	margin-top: var(--space-sm);
}

.stat-badge.available {
	background: rgba(16, 185, 129, 0.1);
	color: #059669;
}

.stat-meta {
	display: block;
	font-size: 0.75rem;
	color: var(--text-light);
	margin-top: var(--space-xs);
}

.dashboard-divider {
	height: 1px;
	background: var(--slate-200);
	margin: var(--space-lg) 0;
}

.dashboard-program-label {
	font-family: var(--font-display);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.25rem 0.625rem;
	border-radius: 4px;
	margin-bottom: var(--space-sm);
	display: inline-block;
}

.dashboard-program-label.instant-label {
	background: rgba(20, 184, 166, 0.15);
	color: #0d9488;
}

.dashboard-program-label.referral-label {
	background: rgba(168, 85, 247, 0.15);
	color: #9333ea;
}

.dashboard-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-md);
}

.dashboard-mini-stat {
	text-align: center;
	padding: var(--space-md);
	background: var(--slate-100);
	border-radius: var(--radius-md);
}

.mini-label {
	display: block;
	font-size: 0.75rem;
	color: var(--text-light);
	margin-bottom: var(--space-xs);
}

.mini-value {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-dark);
}

/* ================================
   How It Works - Steps
   ================================ */
.steps-grid {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: var(--space-md);
}

.step-card {
	flex: 1;
	max-width: 320px;
	background: var(--text-white);
	border-radius: var(--radius-lg);
	padding: var(--space-2xl);
	box-shadow: var(--shadow-card);
	text-align: center;
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base);
}

.step-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.step-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto var(--space-lg);
	color: var(--primary-600);
}

.step-icon svg {
	width: 100%;
	height: 100%;
}

.step-number {
	font-family: var(--font-display);
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--accent-500);
	margin-bottom: var(--space-sm);
}

.step-title {
	margin-bottom: var(--space-sm);
}

.step-desc {
	font-size: 0.9375rem;
	color: var(--text-medium);
}

.step-connector {
	display: flex;
	align-items: center;
	padding-top: 80px;
	color: var(--slate-300);
}

.step-connector svg {
	width: 60px;
	height: 20px;
}

/* ================================
   Two Programs Section
   ================================ */
.section-two-programs {
	background: linear-gradient(180deg, var(--bone) 0%, var(--eggshell) 100%);
	padding: var(--space-4xl) 0;
}

.programs-grid {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: var(--space-xl);
}

.program-card {
	flex: 1;
	max-width: 420px;
	background: var(--text-white);
	border-radius: var(--radius-xl);
	padding: var(--space-2xl);
	box-shadow: var(--shadow-card);
	border: 3px solid transparent;
	transition: all var(--transition-base);
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.program-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.program-instant {
	border-color: var(--teal-400, #2dd4bf);
}

.program-instant:hover {
	border-color: var(--teal-500, #14b8a6);
}

.program-referral {
	border-color: var(--purple-400, #c084fc);
}

.program-referral:hover {
	border-color: var(--purple-500, #a855f7);
}

.program-badge {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.375rem 0.75rem;
	border-radius: 20px;
	margin-bottom: var(--space-lg);
	width: fit-content;
}

.program-instant .program-badge {
	background: rgba(45, 212, 191, 0.15);
	color: #0d9488;
}

.program-referral .program-badge {
	background: rgba(168, 85, 247, 0.15);
	color: #9333ea;
}

.program-icon {
	width: 80px;
	height: 80px;
	margin-bottom: var(--space-lg);
}

.program-instant .program-icon {
	color: #14b8a6;
}

.program-referral .program-icon {
	color: #a855f7;
}

.program-icon svg {
	width: 100%;
	height: 100%;
}

.program-title {
	font-size: 1.5rem;
	margin-bottom: var(--space-sm);
	color: var(--text-dark);
}

.program-desc {
	font-size: 1rem;
	color: var(--text-medium);
	margin-bottom: var(--space-lg);
}

.program-highlights {
	list-style: none;
	margin-bottom: var(--space-xl);
	flex-grow: 1;
}

.program-highlights li {
	position: relative;
	padding-left: var(--space-lg);
	margin-bottom: var(--space-sm);
	font-size: 0.9375rem;
	color: var(--text-medium);
}

.program-highlights li::before {
	content: "✓";
	position: absolute;
	left: 0;
	font-weight: 700;
}

.program-instant .program-highlights li::before {
	color: #14b8a6;
}

.program-referral .program-highlights li::before {
	color: #a855f7;
}

.program-cta {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.9375rem;
	transition: gap var(--transition-fast);
}

.program-instant .program-cta {
	color: #0d9488;
}

.program-referral .program-cta {
	color: #9333ea;
}

.program-card:hover .program-cta {
	gap: var(--space-md);
}

.program-cta svg {
	width: 20px;
	height: 20px;
}

.programs-divider {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-xs);
	padding: 0 var(--space-md);
}

.divider-text {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--slate-400);
	background: var(--bone);
	padding: var(--space-sm) var(--space-md);
	border-radius: 50%;
	border: 2px solid var(--slate-200);
}

.divider-subtext {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* ================================
   Program Section Wrappers
   ================================ */
.program-section-wrapper {
	position: relative;
}

.program-section-header {
	padding: var(--space-md) 0;
	position: sticky;
	top: 60px;
	z-index: 100;
}

.program-instant-wrapper .program-section-header {
	background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

.program-referral-wrapper .program-section-header {
	background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.program-section-header .container {
	display: flex;
	align-items: center;
	gap: var(--space-lg);
}

.program-label {
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.15);
	padding: 0.375rem 0.75rem;
	border-radius: 20px;
}

.program-label-title {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text-white);
}

/* ================================
   Instant Pay Section (Updated)
   ================================ */
.section-instant-pay {
	background: linear-gradient(180deg, #f0fdfa 0%, #ccfbf1 50%, #99f6e4 100%);
}
.instant-pay-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-4xl);
	align-items: center;
}

.instant-pay-content {
	color: var(--text-dark);
}

.instant-pay-content .section-title {
	color: #0d9488;
}

.instant-pay-content .section-text {
	color: var(--text-medium);
}

.feature-list {
	list-style: none;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: var(--space-md);
	margin-bottom: var(--space-md);
	color: var(--text-medium);
}

.feature-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: #14b8a6;
}

.feature-icon svg {
	width: 100%;
	height: 100%;
}

/* Program Standalone Note */
.program-standalone-note {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	margin-top: var(--space-xl);
	padding: var(--space-md) var(--space-lg);
	background: rgba(13, 148, 136, 0.1);
	border-radius: var(--radius-md);
	border-left: 4px solid #14b8a6;
}

.program-standalone-note svg {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: #14b8a6;
}

.program-standalone-note span {
	font-size: 0.875rem;
	font-weight: 500;
	color: #0d9488;
}

.program-standalone-note.referral-note {
	background: rgba(168, 85, 247, 0.1);
	border-left-color: #a855f7;
}

.program-standalone-note.referral-note svg {
	color: #a855f7;
}

.program-standalone-note.referral-note span {
	color: #7c3aed;
}

/* Payout Card */
.payout-card {
	background: var(--text-white);
	border-radius: var(--radius-xl);
	padding: var(--space-2xl);
	box-shadow: var(--shadow-xl);
	border: 2px solid rgba(20, 184, 166, 0.2);
}

.payout-card-header {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	margin-bottom: var(--space-xl);
	padding-bottom: var(--space-lg);
	border-bottom: 1px solid var(--slate-200);
}

.payout-icon {
	width: 40px;
	height: 40px;
	color: #14b8a6;
}

.payout-icon svg {
	width: 100%;
	height: 100%;
}

.payout-title {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-dark);
}

.payout-row {
	margin-bottom: var(--space-lg);
}

.payout-stat {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.payout-label {
	font-size: 0.9375rem;
	color: var(--text-medium);
}

.payout-value {
	font-family: var(--font-display);
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--text-dark);
}

.payout-value.highlight {
	color: #0d9488;
}

.payout-progress {
	padding-top: var(--space-lg);
	border-top: 1px solid var(--slate-200);
}

.progress-bar {
	height: 8px;
	background: var(--slate-200);
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: var(--space-sm);
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #14b8a6 0%, #0d9488 100%);
	border-radius: 4px;
	transition: width var(--transition-slow);
}

.progress-label {
	font-size: 0.8125rem;
	color: var(--text-light);
}

/* ================================
   Referral Tree Section (Updated)
   ================================ */
.section-referral-tree {
	background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 50%, #e9d5ff 100%);
}
.referral-tiers {
	display: flex;
	justify-content: center;
	gap: var(--space-xl);
	margin-bottom: var(--space-4xl);
}

.tier-card {
	background: var(--text-white);
	border-radius: var(--radius-lg);
	padding: var(--space-xl) var(--space-2xl);
	text-align: center;
	box-shadow: var(--shadow-card);
	border: 2px solid transparent;
	transition: all var(--transition-base);
}

.tier-card:hover {
	transform: translateY(-4px);
}

.tier-1 {
	border-color: #a855f7;
}
.tier-2 {
	border-color: #c084fc;
}
.tier-3 {
	border-color: #d8b4fe;
}

.tier-badge {
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #9333ea;
	margin-bottom: var(--space-sm);
}

.tier-rate {
	font-family: var(--font-display);
	font-size: 2.5rem;
	font-weight: 800;
	color: #7c3aed;
}

.tier-label {
	font-size: 0.875rem;
	color: var(--text-light);
	margin-bottom: var(--space-sm);
}

.tier-desc {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--text-dark);
}

.referral-main-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-3xl);
}

/* Tree Diagram */
.tree-container {
	background: var(--text-white);
	border-radius: var(--radius-xl);
	padding: var(--space-2xl);
	box-shadow: var(--shadow-card);
}

.tree-title {
	text-align: center;
	margin-bottom: var(--space-xl);
	color: var(--text-dark);
}

.tree-diagram {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.tree-level {
	display: flex;
	justify-content: center;
	gap: var(--space-lg);
	position: relative;
}

.level-1 {
	gap: calc(var(--space-3xl) + var(--space-xl));
}

.level-2 {
	gap: var(--space-lg);
}

.level-3 {
	gap: var(--space-md);
}

.tree-node {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #9333ea;
	color: var(--text-white);
	box-shadow: var(--shadow-md);
}

.node-you {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
}

.node-tier1 {
	background: #a855f7;
}

.node-tier2 {
	background: #c084fc;
}

.node-tier3 {
	background: #d8b4fe;
}

.node-small {
	width: 45px;
	height: 45px;
}

.node-tiny {
	width: 35px;
	height: 35px;
}

.node-label {
	font-family: var(--font-display);
	font-size: 0.875rem;
	font-weight: 700;
}

.node-amount {
	font-size: 0.75rem;
	opacity: 0.9;
}

.node-amount-small {
	font-size: 0.625rem;
	font-weight: 600;
}

.node-amount-tiny {
	font-size: 0.5rem;
	font-weight: 600;
}

.tree-connectors {
	height: 40px;
	width: 300px;
	color: var(--slate-300);
}

.connectors-3 {
	height: 30px;
}

.connector-svg {
	width: 100%;
	height: 100%;
}

/* Calculator */
.calculator-container {
	background: var(--text-white);
	border-radius: var(--radius-xl);
	padding: var(--space-2xl);
	box-shadow: var(--shadow-card);
}

.calculator-title {
	text-align: center;
	margin-bottom: var(--space-xl);
	color: var(--text-dark);
}

.calculator-card {
	max-width: 400px;
	margin: 0 auto;
}

.calc-input-group {
	margin-bottom: var(--space-lg);
}

.calc-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: var(--space-sm);
}

.calc-input {
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	border: 2px solid var(--slate-200);
	border-radius: var(--radius-md);
	transition: border-color var(--transition-fast);
}

.calc-input:focus {
	outline: none;
	border-color: #a855f7;
}

.calc-btn {
	width: 100%;
	margin-bottom: var(--space-xl);
	background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
	box-shadow: 0 4px 14px rgba(147, 51, 234, 0.4);
}

.calc-btn:hover {
	box-shadow: 0 6px 20px rgba(147, 51, 234, 0.5);
}

.calc-results {
	background: var(--slate-100);
	border-radius: var(--radius-md);
	padding: var(--space-lg);
}

.calc-result-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--space-sm) 0;
}

.calc-result-row:not(:last-child) {
	border-bottom: 1px solid var(--slate-200);
}

.calc-result-row.total {
	padding-top: var(--space-md);
	margin-top: var(--space-sm);
	border-top: 2px solid #c084fc;
	border-bottom: none;
}

.result-label {
	font-size: 0.875rem;
	color: var(--text-medium);
}

.result-value {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text-dark);
}

.calc-result-row.total .result-label {
	font-weight: 600;
	color: var(--text-dark);
}

.calc-result-row.total .result-value {
	font-size: 1.375rem;
	color: #7c3aed;
}

.calc-disclaimer {
	margin-top: var(--space-md);
	font-size: 0.75rem;
	color: var(--text-light);
	line-height: 1.5;
}

/* ================================
   On-Chain Trust Section (Part of Referral Tree)
   ================================ */
.section-on-chain {
	background: linear-gradient(135deg, #581c87 0%, #7c3aed 100%);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-xl);
}

.trust-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-lg);
	padding: var(--space-2xl);
	text-align: center;
	transition: all var(--transition-base);
}

.trust-card:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-4px);
}

.trust-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto var(--space-lg);
	color: #e9d5ff;
}

.trust-icon svg {
	width: 100%;
	height: 100%;
}

.trust-title {
	color: var(--text-white);
	margin-bottom: var(--space-sm);
}

.trust-desc {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.75);
}

/* ================================
   ATS Integration Section
   ================================ */
.integration-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-4xl);
	align-items: center;
}

.integration-list {
	list-style: none;
	margin-top: var(--space-lg);
}

.integration-list li {
	position: relative;
	padding-left: var(--space-xl);
	margin-bottom: var(--space-md);
	color: var(--text-medium);
}

.integration-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	background: var(--accent-500);
	border-radius: 50%;
}

/* Flow Diagram */
.flow-diagram {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-md);
}

.flow-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 200px;
	padding: var(--space-xl);
	border-radius: var(--radius-lg);
	text-align: center;
}

.flow-ats {
	background: var(--slate-800);
	color: var(--text-white);
}

.flow-therapays {
	background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
	color: var(--text-white);
}

.flow-label {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
}

.flow-sublabel {
	font-size: 0.75rem;
	opacity: 0.8;
	margin-top: var(--space-xs);
}

.flow-arrow {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-sm);
	color: var(--slate-400);
}

.flow-arrow svg {
	width: 60px;
	height: 24px;
	transform: rotate(90deg);
}

.flow-arrow-label {
	font-size: 0.75rem;
	text-align: center;
	color: var(--text-light);
}

.flow-outputs {
	display: flex;
	gap: var(--space-lg);
	margin-top: var(--space-md);
}

.flow-output {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	padding: var(--space-md) var(--space-lg);
	background: var(--text-white);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-dark);
}

.flow-output svg {
	width: 16px;
	height: 16px;
	color: var(--accent-500);
}

/* ================================
   FAQ Section
   ================================ */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}

.faq-item {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: all var(--transition-fast);
}

.faq-item.active {
	background: rgba(255, 255, 255, 0.08);
}

.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--space-lg) var(--space-xl);
	text-align: left;
	font-family: var(--font-display);
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--text-white);
	cursor: pointer;
	transition: background var(--transition-fast);
}

.faq-question:hover {
	background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: var(--slate-400);
	transition: transform var(--transition-base);
}

.faq-icon svg {
	width: 100%;
	height: 100%;
}

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

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
	max-height: 500px;
}

.faq-answer p {
	padding: 0 var(--space-xl) var(--space-xl);
	color: var(--slate-300);
	line-height: 1.7;
}

/* ================================
   Contact Section
   ================================ */
.contact-container {
	max-width: 1120px;
}

.contact-header-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
	gap: var(--space-3xl);
	align-items: center;
	margin-bottom: var(--space-3xl);
}

.contact-section-header {
	text-align: left;
	max-width: 600px;
	margin: 0;
}

.contact-image-wrap {
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
	background: var(--slate-100);
}

.contact-photo {
	aspect-ratio: 1 / 1;
	border-radius: var(--radius-lg);
	box-shadow: none;
}

.contact-form {
	background: var(--text-white);
	border-radius: var(--radius-xl);
	padding: var(--space-2xl);
	box-shadow: var(--shadow-card);
	max-width: 800px;
	margin: 0 auto;
}

.form-group {
	margin-bottom: var(--space-lg);
}

.form-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: var(--space-sm);
}

.form-input {
	width: 100%;
	padding: 0.875rem 1rem;
	font-size: 1rem;
	border: 2px solid var(--slate-200);
	border-radius: var(--radius-md);
	background: var(--text-white);
	transition: all var(--transition-fast);
}

.form-input:focus {
	outline: none;
	border-color: var(--primary-500);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-input.error {
	border-color: #ef4444;
}

.form-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1.25rem;
	padding-right: 3rem;
}

.form-textarea {
	min-height: 120px;
	resize: vertical;
}

.form-error {
	display: block;
	font-size: 0.8125rem;
	color: #ef4444;
	margin-top: var(--space-xs);
	min-height: 20px;
}

.form-success {
	display: none;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	padding: var(--space-lg);
	background: rgba(16, 185, 129, 0.1);
	border-radius: var(--radius-md);
	color: #059669;
	margin-top: var(--space-lg);
}

.form-success.show {
	display: flex;
}

.form-success svg {
	width: 24px;
	height: 24px;
}

.contact-note {
	text-align: center;
	font-size: 0.875rem;
	color: var(--text-light);
	margin-top: var(--space-xl);
}

/* ================================
   Footer
   ================================ */
/* ================================
   Footer
   ================================ */
.footer {
	background: var(--slate-900);
	color: var(--text-white);
	padding: var(--space-4xl) 0 var(--space-xl);
	position: relative;
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.4), transparent);
}

/* Top grid */
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
	gap: var(--space-2xl);
	padding-bottom: var(--space-3xl);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-brand {
	padding-right: var(--space-xl);
}

.footer-logo {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 800;
	display: inline-flex;
	margin-bottom: var(--space-md);
}

.footer-tagline {
	font-size: 0.9375rem;
	color: var(--slate-400);
	line-height: 1.6;
	margin-bottom: var(--space-lg);
	max-width: 320px;
}

.footer-address {
	font-size: 0.8125rem;
	color: var(--slate-500);
	line-height: 1.7;
}

.footer-address p {
	margin: 0;
}

.footer-address p:first-child {
	color: var(--slate-300);
	font-weight: 600;
	font-family: var(--font-display);
}

.footer-col-title {
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--slate-300);
	margin-bottom: var(--space-md);
}

.footer-col-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.footer-link {
	font-size: 0.875rem;
	color: var(--slate-400);
	transition: color var(--transition-fast);
	text-decoration: none;
}

.footer-link:hover {
	color: var(--text-white);
}

/* Trust row */
.footer-trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-xl);
	padding: var(--space-xl) 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-trust-item {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--slate-300);
	font-family: var(--font-display);
	letter-spacing: 0.01em;
}

.footer-trust-item svg {
	width: 18px;
	height: 18px;
	color: var(--primary-400);
	flex-shrink: 0;
}

/* Disclaimer */
.footer-disclaimer {
	padding: var(--space-xl) 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimer p {
	font-size: 0.75rem;
	line-height: 1.7;
	color: var(--slate-500);
	margin-bottom: var(--space-md);
	max-width: 100%;
}

.footer-disclaimer p:last-child {
	margin-bottom: 0;
}

/* Bottom row */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: var(--space-xl);
	gap: var(--space-lg);
}

.footer-copy {
	font-size: 0.8125rem;
	color: var(--slate-500);
	margin: 0;
}

.footer-social {
	display: flex;
	gap: var(--space-sm);
}

.footer-social-link {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--slate-400);
	transition: all var(--transition-fast);
	text-decoration: none;
}

.footer-social-link svg {
	width: 16px;
	height: 16px;
}

.footer-social-link:hover {
	background: rgba(99, 102, 241, 0.15);
	border-color: rgba(99, 102, 241, 0.4);
	color: var(--text-white);
	transform: translateY(-1px);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
	.hero {
		background:
			linear-gradient(90deg, rgba(253, 252, 250, 0.98) 0%, rgba(253, 252, 250, 0.86) 46%, rgba(253, 252, 250, 0.22) 100%),
			url("PIC5.png") 68% center / cover no-repeat;
	}

	.hero-container {
		grid-template-columns: 1fr;
		gap: var(--space-3xl);
		text-align: left;
	}

	.hero-subtitle {
		margin-left: 0;
		margin-right: 0;
	}

	.hero-ctas {
		justify-content: flex-start;
	}

	.hero-visual {
		justify-content: center;
	}

	.dashboard-card {
		transform: none;
	}

	.programs-grid {
		flex-direction: column;
		align-items: center;
	}

	.program-card {
		max-width: 100%;
	}

	.programs-divider {
		flex-direction: row;
		gap: var(--space-md);
		padding: var(--space-md) 0;
	}

	.instant-pay-grid,
	.integration-grid {
		grid-template-columns: 1fr;
		gap: var(--space-3xl);
	}

	.notes-header-layout,
	.contact-header-layout {
		grid-template-columns: 1fr;
		gap: var(--space-2xl);
	}

	.notes-section-header,
	.contact-section-header {
		max-width: 720px;
	}

	.notes-image-wrap {
		max-width: 760px;
	}

	.contact-image-wrap {
		max-width: 520px;
	}

	.referral-main-grid {
		grid-template-columns: 1fr;
	}

	.trust-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.hero {
		min-height: 760px;
		align-items: flex-start;
		padding-top: 120px;
		background:
			linear-gradient(180deg, rgba(253, 252, 250, 0.98) 0%, rgba(253, 252, 250, 0.92) 44%, rgba(253, 252, 250, 0.2) 100%),
			url("PIC5.png") 66% bottom / cover no-repeat;
	}

	.nav-menu {
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		flex-direction: column;
		gap: 0;
		background: var(--eggshell);
		padding: var(--space-lg);
		box-shadow: var(--shadow-lg);
		transform: translateY(-100%);
		opacity: 0;
		pointer-events: none;
		transition: all var(--transition-base);
	}

	.nav-menu.active {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.nav-menu li {
		width: 100%;
	}

	.nav-link {
		display: block;
		padding: var(--space-md);
		border-bottom: 1px solid var(--slate-200);
	}

	.nav-link::after {
		display: none;
	}

	.nav-link-cta {
		margin-top: var(--space-md);
		text-align: center;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}

	.section {
		padding: var(--space-3xl) 0;
	}

	.steps-grid {
		flex-direction: column;
		align-items: center;
	}

	.step-connector {
		transform: rotate(90deg);
		padding: 0;
	}

	.referral-tiers {
		flex-direction: column;
		align-items: center;
	}

	.tier-card {
		width: 100%;
		max-width: 280px;
	}

	.tree-container {
		overflow-x: auto;
	}

	.tree-diagram {
		min-width: 300px;
	}

	.flow-outputs {
		flex-direction: column;
		width: 100%;
	}

	.flow-output {
		justify-content: center;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-xl);
	}

	.footer-col-brand {
		grid-column: 1 / -1;
		padding-right: 0;
	}

	.footer-bottom {
		flex-direction: column-reverse;
		align-items: center;
		text-align: center;
		gap: var(--space-md);
	}

	.footer-trust {
		gap: var(--space-md) var(--space-lg);
	}

	.notes-section-header,
	.contact-section-header {
		text-align: center;
		margin: 0 auto;
	}

	.notes-image-wrap,
	.contact-image-wrap {
		margin: 0 auto;
		width: 100%;
	}
}

@media (max-width: 480px) {
	:root {
		--space-4xl: 4rem;
	}

	.container {
		padding: 0 var(--space-md);
	}

	.btn {
		padding: 0.75rem 1.25rem;
		font-size: 0.9375rem;
	}

	.hero-ctas {
		flex-direction: column;
		width: 100%;
	}

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

	.dashboard-card {
		max-width: 100%;
	}

	.step-card {
		padding: var(--space-xl);
	}

	.tree-level {
		gap: var(--space-md);
	}

	.level-1 {
		gap: var(--space-xl);
	}

	.tree-node {
		width: 55px;
		height: 55px;
	}

	.node-you {
		width: 65px;
		height: 65px;
	}

	.node-small {
		width: 35px;
		height: 35px;
	}

	.node-tiny {
		width: 28px;
		height: 28px;
	}
}

/* ================================
   Hero Dashboard - Notes Block
   ================================ */
.dashboard-notes-block {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}

.dashboard-notes-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.dashboard-notes-list li {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-family: var(--font-display);
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--text-dark);
}

.notes-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
	display: inline-block;
}

.notes-dot-green {
	background: #10b981;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.notes-dot-amber {
	background: #f59e0b;
	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.notes-dot-red {
	background: #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}

/* ================================
   Notes & Visits Tracker Section
   ================================ */
.section-notes-tracker {
	background: linear-gradient(135deg, #1e1b4b 0%, #312e81 55%, #3730a3 100%);
	position: relative;
	overflow: hidden;
}

.section-notes-tracker::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(129, 140, 248, 0.25) 0%, transparent 70%);
	pointer-events: none;
}

.section-notes-tracker::after {
	content: "";
	position: absolute;
	bottom: -100px;
	left: -100px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(249, 115, 22, 0.18) 0%, transparent 70%);
	pointer-events: none;
}

.section-notes-tracker .container {
	position: relative;
	z-index: 1;
}

.notes-header-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
	gap: var(--space-3xl);
	align-items: center;
	margin-bottom: var(--space-3xl);
}

.notes-section-header {
	text-align: left;
	max-width: 620px;
	margin: 0;
}

.notes-image-wrap {
	position: relative;
}

.notes-image-wrap::before {
	content: "";
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: var(--radius-lg);
	pointer-events: none;
	z-index: 1;
}

.notes-photo {
	aspect-ratio: 3 / 2;
	border-radius: var(--radius-lg);
}

.notes-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-xl);
	margin-bottom: var(--space-3xl);
}

.notes-feature-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-lg);
	padding: var(--space-2xl);
	text-align: center;
	transition: all var(--transition-base);
	backdrop-filter: blur(6px);
}

.notes-feature-card:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.22);
	transform: translateY(-4px);
}

.notes-feature-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto var(--space-lg);
	color: #c7d2fe;
}

.notes-feature-icon svg {
	width: 100%;
	height: 100%;
}

.notes-feature-title {
	color: var(--text-white);
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: var(--space-sm);
}

.notes-feature-desc {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.6;
}

/* Notification mockup */
.notes-notif-wrap {
	max-width: 640px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}

.notes-notif-card {
	background: rgba(255, 255, 255, 0.96);
	border-radius: var(--radius-md);
	padding: var(--space-md) var(--space-lg);
	display: flex;
	align-items: flex-start;
	gap: var(--space-md);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
	border-left: 4px solid;
	color: var(--text-dark);
}

.notes-notif-amber {
	border-left-color: #f59e0b;
}

.notes-notif-amber .notes-notif-icon {
	color: #d97706;
}

.notes-notif-red {
	border-left-color: #ef4444;
}

.notes-notif-red .notes-notif-icon {
	color: #dc2626;
}

.notes-notif-green {
	border-left-color: #10b981;
}

.notes-notif-green .notes-notif-icon {
	color: #059669;
}

.notes-notif-icon {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	margin-top: 2px;
}

.notes-notif-icon svg {
	width: 100%;
	height: 100%;
}

.notes-notif-body {
	flex: 1;
	min-width: 0;
}

.notes-notif-meta {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	margin-bottom: 0.25rem;
}

.notes-notif-channel {
	font-family: var(--font-display);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--primary-700);
	background: var(--primary-100);
	padding: 0.125rem 0.5rem;
	border-radius: 999px;
}

.notes-notif-time {
	font-size: 0.75rem;
	color: var(--text-light);
	font-weight: 500;
}

.notes-notif-text {
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--text-dark);
	margin: 0;
}

.notes-notif-text strong {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--text-dark);
}

/* Notes section mobile */
@media (max-width: 900px) {
	.notes-header-layout {
		grid-template-columns: 1fr;
		gap: var(--space-2xl);
	}

	.notes-section-header {
		text-align: center;
		max-width: 720px;
		margin: 0 auto;
	}

	.notes-image-wrap {
		margin: 0 auto;
		width: 100%;
		max-width: 760px;
	}

	.notes-feature-grid {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}

	.notes-notif-card {
		padding: var(--space-md);
	}
}
