/**
 * Kre8tive Waitlist Engine - Scoped Frontend CSS
 * Text Domain: kre8tive-waitlist
 */

:root {
	--kre8tive-bg: #090C10;
	--kre8tive-surface: #0E131A;
	--kre8tive-surface-hover: #141A24;
	--kre8tive-input-bg: #080B0F;
	--kre8tive-primary: #6366F1;
	--kre8tive-primary-hover: #4F46E5;
	--kre8tive-secondary: #818CF8;
	--kre8tive-text: #FFFFFF;
	--kre8tive-text-muted: #94A3B8;
	--kre8tive-border: rgba(255, 255, 255, 0.08);
	--kre8tive-border-focus: rgba(99, 102, 241, 0.5);
	--kre8tive-radius: 12px;
	--kre8tive-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	--kre8tive-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Global Container */
.kre8tive-waitlist-container {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	font-family: var(--kre8tive-font-sans);
	color: var(--kre8tive-text);
	box-sizing: border-box;
}

.kre8tive-waitlist-container * {
	box-sizing: border-box;
}

/* Section Header Shared Styles */
.kre8tive-waitlist-section-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 3rem auto;
}

.kre8tive-section-tag {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--kre8tive-secondary);
	background-color: rgba(99, 102, 241, 0.08);
	border: 1px solid rgba(99, 102, 241, 0.2);
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	margin-bottom: 0.75rem;
}

.kre8tive-section-title {
	font-size: 2.25rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--kre8tive-text);
	line-height: 1.2;
	margin: 0 0 1rem 0;
}

.kre8tive-section-desc {
	font-size: 1rem;
	color: var(--kre8tive-text-muted);
	line-height: 1.6;
	margin: 0;
}

/* Buttons */
.kre8tive-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	border-radius: 8px;
	padding: 0.625rem 1.25rem;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.15s ease-in-out;
	border: none;
}

.kre8tive-btn-primary {
	background-color: var(--kre8tive-primary);
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.kre8tive-btn-primary:hover {
	background-color: var(--kre8tive-primary-hover);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
	color: #ffffff;
}

.kre8tive-btn-secondary {
	background-color: var(--kre8tive-surface);
	color: var(--kre8tive-text);
	border: 1px solid var(--kre8tive-border);
}

.kre8tive-btn-secondary:hover {
	background-color: var(--kre8tive-surface-hover);
	border-color: rgba(255, 255, 255, 0.2);
	color: #ffffff;
}

/* 1. Navigation Widget */
.kre8tive-waitlist-nav-wrapper {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background-color: rgba(9, 12, 16, 0.85);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--kre8tive-border);
	padding: 0.875rem 0;
}

.kre8tive-waitlist-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.kre8tive-waitlist-brand {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	text-decoration: none;
	color: #ffffff;
}

.kre8tive-waitlist-brand-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background-color: var(--kre8tive-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
}

.kre8tive-waitlist-brand-img {
	height: 32px;
	width: auto;
}

.kre8tive-waitlist-brand-title {
	font-weight: 700;
	font-size: 1.0625rem;
	letter-spacing: -0.02em;
}

.kre8tive-waitlist-nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.kre8tive-waitlist-nav-link {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--kre8tive-text-muted);
	text-decoration: none;
	transition: color 0.15s ease;
}

.kre8tive-waitlist-nav-link:hover {
	color: #ffffff;
}

.kre8tive-waitlist-nav-btn {
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
}

/* 2. Hero Widget */
.kre8tive-waitlist-hero-section {
	padding: 4rem 0 3rem 0;
	background-color: var(--kre8tive-bg);
}

.kre8tive-waitlist-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 3.5rem;
	align-items: center;
}

.kre8tive-waitlist-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.3125rem 0.875rem;
	border-radius: 9999px;
	background-color: var(--kre8tive-surface);
	border: 1px solid var(--kre8tive-border);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--kre8tive-secondary);
	margin-bottom: 1.5rem;
}

.kre8tive-waitlist-badge-pulse {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #10B981;
	box-shadow: 0 0 8px #10B981;
}

.kre8tive-waitlist-hero-heading {
	font-size: 3rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.12;
	color: #ffffff;
	margin: 0 0 1.25rem 0;
}

.kre8tive-waitlist-hero-desc {
	font-size: 1.0625rem;
	color: var(--kre8tive-text-muted);
	line-height: 1.65;
	margin: 0 0 2rem 0;
}

.kre8tive-waitlist-hero-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.kre8tive-waitlist-hero-trust {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	font-size: 0.75rem;
	color: var(--kre8tive-text-muted);
}

.kre8tive-waitlist-trust-item {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	color: #94A3B8;
}

.kre8tive-waitlist-trust-item svg {
	color: #10B981;
}

/* Workstation Window Mockup */
.kre8tive-waitlist-workstation-window {
	background-color: var(--kre8tive-surface);
	border: 1px solid var(--kre8tive-border);
	border-radius: var(--kre8tive-radius);
	overflow: hidden;
	box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.kre8tive-waitlist-window-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.625rem 1rem;
	background-color: #0B0E14;
	border-bottom: 1px solid var(--kre8tive-border);
}

.kre8tive-waitlist-window-dots {
	display: flex;
	gap: 6px;
}

.kre8tive-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.dot-red { background-color: #EF4444; }
.dot-yellow { background-color: #F59E0B; }
.dot-green { background-color: #10B981; }

.kre8tive-waitlist-window-docname {
	font-family: var(--kre8tive-font-mono);
	font-size: 0.6875rem;
	color: #64748B;
}

.kre8tive-status-badge {
	font-family: var(--kre8tive-font-mono);
	font-size: 0.625rem;
	color: #10B981;
	background: rgba(16, 185, 129, 0.1);
	padding: 0.125rem 0.375rem;
	border-radius: 4px;
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.kre8tive-waitlist-window-tabs {
	display: flex;
	background-color: #07090D;
	border-bottom: 1px solid var(--kre8tive-border);
	overflow-x: auto;
}

.kre8tive-window-tab {
	flex: 1;
	padding: 0.5rem 0.75rem;
	background: transparent;
	border: none;
	border-bottom: 2px solid transparent;
	color: var(--kre8tive-text-muted);
	font-size: 0.6875rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.15s ease;
}

.kre8tive-window-tab:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.02);
}

.kre8tive-window-tab.active {
	color: #ffffff;
	background: var(--kre8tive-surface);
	border-bottom-color: var(--kre8tive-primary);
}

.kre8tive-waitlist-window-stage {
	position: relative;
	background: #000000;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.kre8tive-screen-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.kre8tive-screen-img.active {
	opacity: 1;
}

/* 3. App Preview Widget */
.kre8tive-waitlist-preview-section {
	padding: 5rem 0;
	background-color: var(--kre8tive-bg);
}

.kre8tive-preview-frame {
	background-color: var(--kre8tive-surface);
	border: 1px solid var(--kre8tive-border);
	border-radius: var(--kre8tive-radius);
	overflow: hidden;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
	margin-bottom: 3.5rem;
}

.kre8tive-preview-tabbar {
	display: flex;
	background-color: #07090D;
	border-bottom: 1px solid var(--kre8tive-border);
}

.kre8tive-preview-tab {
	flex: 1;
	padding: 0.75rem 1rem;
	background: transparent;
	border: none;
	border-bottom: 2px solid transparent;
	color: var(--kre8tive-text-muted);
	font-size: 0.8125rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s ease;
}

.kre8tive-preview-tab:hover {
	color: #ffffff;
}

.kre8tive-preview-tab.active {
	color: #ffffff;
	background: var(--kre8tive-surface);
	border-bottom-color: var(--kre8tive-primary);
}

.kre8tive-preview-stage {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #000000;
	overflow: hidden;
}

.kre8tive-preview-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.kre8tive-preview-img.active {
	opacity: 1;
}

.kre8tive-preview-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.kre8tive-preview-feature-card {
	background-color: var(--kre8tive-surface);
	border: 1px solid var(--kre8tive-border);
	border-radius: var(--kre8tive-radius);
	padding: 1.5rem;
}

.kre8tive-pf-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background-color: rgba(99, 102, 241, 0.1);
	color: var(--kre8tive-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.kre8tive-preview-feature-card h3 {
	font-size: 1.125rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 0.5rem 0;
}

.kre8tive-preview-feature-card p {
	font-size: 0.875rem;
	color: var(--kre8tive-text-muted);
	line-height: 1.5;
	margin: 0;
}

/* 4. Social Proof Widget */
.kre8tive-waitlist-proof-section {
	padding: 1rem 0 3rem 0;
}

.kre8tive-proof-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--kre8tive-surface);
	border: 1px solid var(--kre8tive-border);
	border-radius: 16px;
	padding: 1.25rem 2rem;
	gap: 2rem;
	flex-wrap: wrap;
}

.kre8tive-proof-avatars {
	display: flex;
	align-items: center;
}

.kre8tive-avatar-circle {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 2px solid var(--kre8tive-surface);
	margin-left: -8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.kre8tive-avatar-circle:first-child {
	margin-left: 0;
}

.kre8tive-proof-text {
	font-size: 0.9375rem;
	color: var(--kre8tive-text-muted);
}

.kre8tive-proof-number {
	color: #ffffff;
	font-weight: 800;
	margin: 0 0.25rem;
}

.kre8tive-proof-disciplines {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.kre8tive-discipline-pill {
	font-size: 0.6875rem;
	font-weight: 600;
	color: #94A3B8;
	background: #090C10;
	padding: 0.25rem 0.625rem;
	border-radius: 6px;
	border: 1px solid var(--kre8tive-border);
}

/* 5. Features Grid Widget */
.kre8tive-waitlist-features-section {
	padding: 5rem 0;
}

.kre8tive-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.kre8tive-feature-card {
	background-color: var(--kre8tive-surface);
	border: 1px solid var(--kre8tive-border);
	border-radius: var(--kre8tive-radius);
	padding: 1.75rem;
	transition: transform 0.15s ease, border-color 0.15s ease;
}

.kre8tive-feature-card:hover {
	border-color: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

.kre8tive-fc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.25rem;
}

.kre8tive-fc-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background-color: rgba(99, 102, 241, 0.12);
	color: var(--kre8tive-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.kre8tive-fc-tag {
	font-family: var(--kre8tive-font-mono);
	font-size: 0.6875rem;
	color: #818CF8;
	background: rgba(99, 102, 241, 0.08);
	padding: 0.125rem 0.5rem;
	border-radius: 4px;
	border: 1px solid rgba(99, 102, 241, 0.15);
}

.kre8tive-fc-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 0.5rem 0;
}

.kre8tive-fc-desc {
	font-size: 0.875rem;
	color: var(--kre8tive-text-muted);
	line-height: 1.55;
	margin: 0;
}

/* 6. Benefits Widget */
.kre8tive-waitlist-benefits-section {
	padding: 5rem 0;
}

.kre8tive-benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.kre8tive-benefit-card {
	background-color: var(--kre8tive-surface);
	border: 1px solid var(--kre8tive-border);
	border-radius: var(--kre8tive-radius);
	padding: 1.75rem;
}

.kre8tive-bc-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.kre8tive-bc-check {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background-color: rgba(16, 185, 129, 0.12);
	color: #10B981;
	display: flex;
	align-items: center;
	justify-content: center;
}

.kre8tive-bc-perk {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #10B981;
	background: rgba(16, 185, 129, 0.08);
	padding: 0.25rem 0.625rem;
	border-radius: 9999px;
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.kre8tive-bc-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 0.5rem 0;
}

.kre8tive-bc-desc {
	font-size: 0.9375rem;
	color: var(--kre8tive-text-muted);
	line-height: 1.55;
	margin: 0;
}

/* 7. Waitlist Form Widget */
.kre8tive-waitlist-form-section {
	padding: 5rem 0;
}

.kre8tive-waitlist-form-card {
	max-width: 640px;
	margin: 0 auto;
	background-color: var(--kre8tive-surface);
	border: 1px solid var(--kre8tive-border);
	border-radius: 20px;
	padding: 3rem 2.5rem;
	box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.8);
}

.kre8tive-form-header {
	text-align: center;
	margin-bottom: 2rem;
}

.kre8tive-form-badge {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--kre8tive-secondary);
	background: rgba(99, 102, 241, 0.08);
	border: 1px solid rgba(99, 102, 241, 0.2);
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	margin-bottom: 0.75rem;
}

.kre8tive-form-title {
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #ffffff;
	margin: 0 0 0.5rem 0;
}

.kre8tive-form-subtitle {
	font-size: 0.9375rem;
	color: var(--kre8tive-text-muted);
	line-height: 1.5;
	margin: 0;
}

.kre8tive-form-group {
	margin-bottom: 1.25rem;
}

.kre8tive-form-label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #94A3B8;
	margin-bottom: 0.5rem;
}

.kre8tive-required {
	color: #EF4444;
}

.kre8tive-form-input {
	width: 100%;
	background-color: var(--kre8tive-input-bg);
	border: 1px solid var(--kre8tive-border);
	border-radius: 8px;
	padding: 0.75rem 1rem;
	font-size: 0.9375rem;
	color: #ffffff;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	font-family: inherit;
}

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

.kre8tive-form-select {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1em;
	cursor: pointer;
}

.kre8tive-form-checkbox-group {
	margin-bottom: 1.5rem;
}

.kre8tive-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	cursor: pointer;
}

.kre8tive-checkbox-input {
	margin-top: 0.2rem;
	accent-color: var(--kre8tive-primary);
	cursor: pointer;
}

.kre8tive-checkbox-text {
	font-size: 0.8125rem;
	color: var(--kre8tive-text-muted);
	line-height: 1.4;
}

.kre8tive-form-submit-btn {
	width: 100%;
	padding: 0.875rem 1.5rem;
	font-size: 0.875rem;
	background-color: var(--kre8tive-primary);
	color: #ffffff;
}

.kre8tive-form-alert {
	padding: 0.75rem 1rem;
	border-radius: 8px;
	font-size: 0.875rem;
	margin-bottom: 1.25rem;
	background-color: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.3);
	color: #FCA5A5;
}

/* Success Card Screen */
.kre8tive-form-success-card {
	text-align: center;
	padding: 1rem 0;
}

.kre8tive-success-icon-wrap {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(16, 185, 129, 0.12);
	border: 1px solid rgba(16, 185, 129, 0.3);
	color: #10B981;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem auto;
}

.kre8tive-success-title {
	font-size: 1.75rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 0.5rem 0;
}

.kre8tive-success-lead {
	font-size: 0.9375rem;
	color: var(--kre8tive-text-muted);
	margin: 0 0 1.75rem 0;
}

.kre8tive-position-badge {
	background: #080B0F;
	border: 1px solid var(--kre8tive-border);
	border-radius: 12px;
	padding: 1.25rem;
	margin-bottom: 2rem;
}

.kre8tive-pos-label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--kre8tive-secondary);
	margin-bottom: 0.25rem;
}

.kre8tive-pos-number {
	display: block;
	font-size: 2.25rem;
	font-weight: 800;
	color: #ffffff;
	font-family: var(--kre8tive-font-mono);
	letter-spacing: -0.03em;
}

.kre8tive-pos-cohort {
	display: block;
	font-size: 0.75rem;
	color: #10B981;
	margin-top: 0.25rem;
}

.kre8tive-share-container {
	border-top: 1px solid var(--kre8tive-border);
	padding-top: 1.5rem;
}

.kre8tive-share-title {
	font-size: 0.8125rem;
	color: var(--kre8tive-text-muted);
	margin: 0 0 1rem 0;
}

.kre8tive-share-btns {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
}

.kre8tive-share-btn {
	padding: 0.5rem 1rem;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 600;
	text-decoration: none;
	color: #ffffff;
	background: #181E27;
	border: 1px solid var(--kre8tive-border);
	cursor: pointer;
	transition: background 0.15s ease;
}

.kre8tive-share-btn:hover {
	background: #232B38;
}

/* 8. FAQ Accordion Widget */
.kre8tive-waitlist-faq-section {
	padding: 5rem 0;
}

.kre8tive-faq-container {
	max-width: 760px;
}

.kre8tive-faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.kre8tive-faq-item {
	background-color: var(--kre8tive-surface);
	border: 1px solid var(--kre8tive-border);
	border-radius: var(--kre8tive-radius);
	overflow: hidden;
	transition: border-color 0.15s ease;
}

.kre8tive-faq-item.open {
	border-color: rgba(255, 255, 255, 0.15);
}

.kre8tive-faq-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	background: transparent;
	border: none;
	text-align: left;
	cursor: pointer;
	color: #ffffff;
}

.kre8tive-faq-question {
	font-size: 1rem;
	font-weight: 600;
	color: #ffffff;
}

.kre8tive-faq-chevron {
	color: var(--kre8tive-text-muted);
	transition: transform 0.2s ease;
}

.kre8tive-faq-item.open .kre8tive-faq-chevron {
	transform: rotate(180deg);
	color: var(--kre8tive-primary);
}

.kre8tive-faq-content {
	padding: 0 1.5rem 1.25rem 1.5rem;
	font-size: 0.9375rem;
	color: var(--kre8tive-text-muted);
	line-height: 1.6;
}

.kre8tive-faq-content p {
	margin: 0;
}

/* 9. Final CTA Widget */
.kre8tive-waitlist-final-cta-section {
	padding: 5rem 0;
}

.kre8tive-final-cta-container {
	max-width: 860px;
}

.kre8tive-final-cta-card {
	background-color: var(--kre8tive-surface);
	border: 1px solid var(--kre8tive-border);
	border-radius: 20px;
	padding: 3.5rem 2.5rem;
	text-align: center;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.kre8tive-cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	background: rgba(99, 102, 241, 0.08);
	border: 1px solid rgba(99, 102, 241, 0.2);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--kre8tive-secondary);
	margin-bottom: 1.25rem;
}

.kre8tive-cta-title {
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #ffffff;
	margin: 0 0 1rem 0;
}

.kre8tive-cta-desc {
	font-size: 1rem;
	color: var(--kre8tive-text-muted);
	max-width: 520px;
	margin: 0 auto 2rem auto;
	line-height: 1.6;
}

.kre8tive-final-cta-btn {
	padding: 0.875rem 2rem;
	font-size: 0.875rem;
	background-color: var(--kre8tive-primary);
	color: #ffffff;
}

/* 10. Footer Widget */
.kre8tive-waitlist-footer {
	background-color: #070A0E;
	border-top: 1px solid var(--kre8tive-border);
	padding: 3.5rem 0 2.5rem 0;
}

.kre8tive-footer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	gap: 2rem;
	flex-wrap: wrap;
}

.kre8tive-footer-logo-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.375rem;
}

.kre8tive-footer-icon {
	width: 26px;
	height: 26px;
	border-radius: 6px;
	background: var(--kre8tive-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
}

.kre8tive-footer-title {
	font-weight: 700;
	font-size: 1rem;
	color: #ffffff;
}

.kre8tive-footer-tagline {
	font-size: 0.75rem;
	color: #64748B;
	margin: 0;
}

.kre8tive-footer-links {
	display: flex;
	gap: 1.5rem;
}

.kre8tive-footer-links a {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--kre8tive-text-muted);
	text-decoration: none;
	transition: color 0.15s ease;
}

.kre8tive-footer-links a:hover {
	color: #ffffff;
}

.kre8tive-totop-btn {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: var(--kre8tive-surface);
	border: 1px solid var(--kre8tive-border);
	color: var(--kre8tive-text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.15s ease;
}

.kre8tive-totop-btn:hover {
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.2);
}

.kre8tive-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1.75rem;
	font-size: 0.6875rem;
	color: #64748B;
}

.kre8tive-footer-badge {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-family: var(--kre8tive-font-mono);
	background: var(--kre8tive-surface);
	border: 1px solid var(--kre8tive-border);
	padding: 0.25rem 0.625rem;
	border-radius: 4px;
	color: #94A3B8;
}

.kre8tive-badge-dot {
	color: #10B981;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
	.kre8tive-waitlist-hero-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.kre8tive-features-grid,
	.kre8tive-preview-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.kre8tive-waitlist-hero-heading {
		font-size: 2.25rem;
	}
}

@media (max-width: 767px) {
	.kre8tive-features-grid,
	.kre8tive-benefits-grid,
	.kre8tive-preview-features-grid {
		grid-template-columns: 1fr;
	}
	.kre8tive-waitlist-nav-links {
		display: none;
	}
	.kre8tive-proof-card {
		flex-direction: column;
		text-align: center;
	}
	.kre8tive-waitlist-form-card {
		padding: 2rem 1.25rem;
	}
	.kre8tive-footer-top {
		flex-direction: column;
		text-align: center;
	}
	.kre8tive-footer-logo-row {
		justify-content: center;
	}
	.kre8tive-footer-bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
}
