/*
Theme Name: MAGAos
Theme URI: https://MAGAos.com
Author: MAGAos / PatriotOS
Author URI: https://MAGAos.com
Description: A dark-themed, patriotic WordPress theme for MAGAos - Privacy-First Email and OS for Patriots. Features gold accents, dark design, and American theme.
Version: 1.2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: dark, gold, patriotic, responsive, custom-logo, custom-menu
Text Domain: magaos
*/

/* =============================================
   CSS Variables (Dark Theme Default)
   ============================================= */
:root {
    /* Primary Colors */
    --MAGAos-red: #C8102E;
    --MAGAos-red-dark: #a00d25;
    --MAGAos-gold: #FFD700;
    --MAGAos-gold-light: #FFDF00;
    --navy: #041E42;
    --navy-light: #1a3a5c;
    
    /* Secondary Colors */
    --success-green: #22C55E;
    --warning-orange: #F59E0B;
    
    /* Backgrounds */
    --bg-primary: #0A0A0A;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-elevated: #252525;
    
    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    
    /* Borders & Dividers */
    --border-light: #333333;
    --border-dark: #222222;
    --divider: #2A2A2A;
    
    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
/* Border Radius */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-full: 9999px;
	
	/* Modern Effects */
	--glass-bg: rgba(26, 26, 26, 0.85);
	--glass-border: rgba(255, 215, 0, 0.2);
	--shadow-gold: 0 0 30px rgba(255, 215, 0, 0.15);
	--shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
	--shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.5);
	
	/* Animation */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
	--transition-slow: 0.5s ease;
}

/* Hero Section with Background */
.hero {
	position: relative;
	min-height: 100vh;
	padding: 140px 0 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(4, 30, 66, 0.88) 50%, rgba(10, 10, 10, 0.92) 100%),
				url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230A0A0A" width="1200" height="600"/><g opacity="0.15"><polygon fill="%23C8102E" points="600,100 650,200 550,200"/><polygon fill="%23041E42" points="400,150 450,250 350,250"/><polygon fill="%23FFD700" points="800,120 850,220 750,220"/><circle fill="%23C8102E" cx="200" cy="400" r="80"/><circle fill="%23041E42" cx="1000" cy="350" r="60"/></g></svg>');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	overflow: hidden;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 150px;
	background: linear-gradient(to top, var(--bg-primary), transparent);
	pointer-events: none;
	z-index: 1;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,50 Q25,30 50,50 T100,50 L100,100 L0,100 Z" fill="%230A0A0A" opacity="0.1"/></svg>');
	background-size: 100% 100px;
	background-position: bottom;
	background-repeat: no-repeat;
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	padding: 0 20px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 215, 0, 0.15);
	border: 1px solid var(--MAGAos-gold);
	color: var(--MAGAos-gold);
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 30px;
	backdrop-filter: blur(10px);
}

.hero-badge::before {
	content: '🛡️';
	font-size: 1.1rem;
}

.hero-title {
	font-family: var(--font-heading);
	font-size: clamp(3rem, 10vw, 6rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #FFFFFF 0%, var(--MAGAos-gold) 50%, #FFFFFF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 60px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
	font-family: var(--font-heading);
	font-size: clamp(1.2rem, 3vw, 1.8rem);
	font-weight: 600;
	color: var(--MAGAos-red);
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 25px;
}

.hero-description {
	font-size: 1.25rem;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto 20px;
	line-height: 1.7;
}

.hero-features {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin: 40px 0;
	flex-wrap: wrap;
}

.hero-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--text-secondary);
	font-size: 1rem;
	font-weight: 500;
}

.hero-feature-icon {
	width: 24px;
	height: 24px;
	color: var(--MAGAos-gold);
}

/* Feature Cards */
.feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 40px 30px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--MAGAos-red), var(--MAGAos-gold));
}

.feature-card:hover {
	transform: translateY(-5px);
	border-color: var(--MAGAos-gold);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	color: var(--MAGAos-gold);
}

.feature-title {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--text-primary);
}

.feature-description {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.6;
}

/* Light Mode Variables */
[data-theme="light"] {
    --bg-primary: #FFFFFF;
    --bg-secondary: #f5f5f5;
    --bg-card: #ffffff;
    --bg-elevated: #f0f0f0;
    --text-primary: #0A0A0A;
    --text-secondary: #555555;
    --text-muted: #808080;
    --border-light: #dddddd;
    --border-dark: #cccccc;
}

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

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

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 1px;
}

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

p {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--MAGAos-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--MAGAos-gold-light);
}

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

/* =============================================
   Layout
   ============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.site-content {
    min-height: calc(100vh - 200px);
    padding-top: 80px;
}

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

.section-alt {
    background-color: var(--bg-secondary);
}

/* =============================================
   Header & Navigation
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(10,10,10,0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--MAGAos-red);
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: var(--MAGAos-gold);
}

.site-header.scrolled .logo-svg {
    height: 38px;
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.site-logo a {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
}

.site-logo .MAGA {
    color: var(--text-primary);
}

.site-logo .os {
    color: var(--MAGAos-red);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-md);
}

.main-navigation a {
    color: var(--text-primary);
    font-weight: 600;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation a:hover,
.main-navigation a.active {
    background: rgba(255, 215, 0, 0.1);
    color: var(--MAGAos-gold);
}

.main-navigation a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--MAGAos-gold);
    border-radius: 1px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    margin-left: 10px;
}

.menu-icon-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--MAGAos-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active .menu-icon-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .menu-icon-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-icon-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.menu-icon-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--MAGAos-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active .menu-icon-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .menu-icon-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-icon-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   Dark Mode Toggle
   ============================================= */
.theme-toggle {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: 30px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    border-color: var(--MAGAos-gold);
}

.theme-toggle .icon {
    font-size: 1.25rem;
}

.theme-toggle .text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--MAGAos-red) 0%, var(--MAGAos-red-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.5);
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--MAGAos-gold);
    color: var(--MAGAos-gold);
}

.btn-secondary:hover {
    background: var(--MAGAos-gold);
    color: var(--bg-primary);
}

.btn-gold {
    background: linear-gradient(135deg, var(--MAGAos-gold) 0%, #DAA520 100%);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* =============================================
   Domain Selector
   ============================================= */
.domain-selector {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    border: 2px solid var(--MAGAos-gold);
    margin: var(--spacing-md) 0;
}

.domain-selector h3 {
    color: var(--MAGAos-gold);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.domain-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

.domain-option {
    padding: 12px 24px;
    background: var(--bg-elevated);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    color: var(--MAGAos-gold);
    font-size: 0.9rem;
}

[data-theme="light"] .domain-option {
    background: var(--bg-secondary);
    color: var(--navy);
}

.domain-option:hover {
    border-color: var(--MAGAos-gold);
}

.domain-option.selected {
    border-color: var(--MAGAos-gold);
    background: linear-gradient(135deg, rgba(255,215,0,0.2) 0%, rgba(255,215,0,0.1) 100%);
}

.domain-option.featured {
    background: linear-gradient(135deg, var(--MAGAos-gold) 0%, #DAA520 100%);
    color: var(--navy);
}

/* =============================================
   Pricing Cards
   ============================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    max-width: 900px;
    margin: var(--spacing-lg) auto;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--MAGAos-gold);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--MAGAos-gold);
    color: var(--bg-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.pricing-card .period {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-xs);
}

.pricing-card .price {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.pricing-card.featured .price {
    color: var(--MAGAos-gold);
}

.pricing-card .period-price {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
    text-align: left;
}

.pricing-card .features li {
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-dark);
}

.pricing-card.featured .features li {
    color: var(--MAGAos-gold);
}

.pricing-card .features li:last-child {
    border-bottom: none;
}

/* =============================================
   Forms
   ============================================= */
.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-primary);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-elevated);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--MAGAos-gold);
}

.form-submit {
    margin-top: var(--spacing-sm);
}

/* =============================================
   Waitlist Form
   ============================================= */
.waitlist-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 2px solid var(--MAGAos-gold);
    max-width: 500px;
    margin: var(--spacing-md) auto;
    text-align: center;
}

.waitlist-form h3 {
    color: var(--MAGAos-gold);
    margin-bottom: var(--spacing-sm);
}

.waitlist-form p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.waitlist-form .form-input {
    text-align: center;
    font-size: 1.1rem;
    padding: 18px;
}

.waitlist-form .success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid var(--success-green);
    color: var(--success-green);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-sm);
}

.waitlist-form .error-message {
    background: rgba(200, 16, 46, 0.1);
    border: 2px solid var(--MAGAos-red);
    color: var(--MAGAos-red);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-sm);
}

/* =============================================
Features Section
============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

/* =============================================
   Footer
   ============================================= */
.site-footer {
    background: var(--bg-secondary);
    border-top: 3px solid var(--MAGAos-red);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-column h4 {
    color: var(--MAGAos-gold);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-column a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--MAGAos-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-dark);
    color: var(--text-muted);
}

.footer-bottom .tagline {
    color: var(--MAGAos-red);
    font-style: italic;
    margin-top: var(--spacing-xs);
}

/* =============================================
   AI Chat Widget
   ============================================= */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--MAGAos-red) 0%, var(--MAGAos-red-dark) 100%);
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(200, 16, 46, 0.5);
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    max-width: calc(100vw - 40px);
    height: 450px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 2px solid var(--MAGAos-gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.open {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, var(--MAGAos-red) 0%, var(--MAGAos-red-dark) 100%);
    padding: var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    color: white;
    font-size: 1rem;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    padding: var(--spacing-sm);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.chat-message {
    padding: 10px 14px;
    border-radius: var(--radius-md);
    max-width: 85%;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.bot {
    background: var(--bg-elevated);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message.user {
    background: var(--MAGAos-gold);
    color: var(--bg-primary);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-input-area {
    padding: var(--spacing-sm);
    border-top: 1px solid var(--border-dark);
    display: flex;
    gap: var(--spacing-xs);
}

.chat-input {
    flex: 1;
    padding: 10px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.9rem;
}

.chat-input:focus {
    outline: none;
    border-color: var(--MAGAos-gold);
}

.chat-send {
    padding: 10px 16px;
    background: var(--MAGAos-red);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    cursor: pointer;
    font-weight: 600;
}

.chat-send:hover {
    background: var(--MAGAos-red-dark);
}

/* =============================================
   Splash Popup
   ============================================= */
.splash-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    padding: var(--spacing-sm);
}

.splash-popup.hidden {
    display: none;
}

.splash-content {
    background: linear-gradient(135deg, var(--navy) 0%, #0A0A0A 100%);
    border: 3px solid var(--MAGAos-gold);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    max-width: 600px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: popIn 0.5s ease;
}

[data-theme="light"] .splash-content {
    background: linear-gradient(135deg, var(--navy) 0%, #0A0A0A 100%);
}

@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.splash-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

.splash-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #fff 0%, var(--MAGAos-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.splash-content h3 {
    color: var(--MAGAos-gold);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }
    
    .main-navigation {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: var(--spacing-sm);
    }
    
    .main-navigation.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .chat-window {
        width: calc(100vw - 40px);
        right: -10px;
    }
}

/* =============================================
   Utility Classes
   ============================================= */
.text-center { text-align: center; }
.text-gold { color: var(--MAGAos-gold); }
.text-red { color: var(--MAGAos-red); }
.text-white { color: white; }
.text-muted { color: var(--text-secondary); }

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.hidden { display: none !important; }
.visible { display: block !important; }

/* =============================================
   Phase 4: Animations & Interactions
   ============================================= */
.splash-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    padding: 20px;
}

.splash-popup.hidden {
    display: none;
}

.splash-content {
    background: linear-gradient(135deg, var(--navy) 0%, var(--bg-primary) 100%);
    border: 3px solid var(--MAGAos-gold);
    border-radius: 24px;
    padding: 50px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.splash-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

.splash-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, var(--MAGAos-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Hero heading glow effect */
.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, var(--MAGAos-gold) 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease infinite;
    background-size: 200% auto;
}

.splash-content h3 {
    color: var(--MAGAos-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.splash-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* ============================================
   Chat Widget Styles
   ============================================ */

.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--MAGAos-red);
    border: 3px solid var(--MAGAos-gold);
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
}

.chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 450px;
    background: #1a1a1a;
    border: 2px solid var(--MAGAos-gold);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.open {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--MAGAos-red) 100%);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--MAGAos-gold);
}

.chat-header h4 {
    color: white;
    margin: 0;
    font-family: var(--font-heading);
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #0f0f0f;
}

.chat-message {
    margin-bottom: 12px;
    padding: 10px 15px;
    border-radius: 8px;
    max-width: 80%;
    word-wrap: break-word;
}

.chat-message.bot {
    background: #252525;
    color: #fff;
    align-self: flex-start;
    border-left: 3px solid var(--MAGAos-gold);
}

.chat-message.user {
    background: var(--MAGAos-red);
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

.chat-input-area {
    padding: 15px;
    background: #1a1a1a;
    border-top: 1px solid #333;
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #444;
    border-radius: 4px;
    background: #0f0f0f;
    color: white;
    font-size: 14px;
}

.chat-input:focus {
    outline: none;
    border-color: var(--MAGAos-gold);
}

.chat-send {
    padding: 10px 20px;
    background: var(--MAGAos-red);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chat-send:hover {
    background: var(--MAGAos-red-dark);
}

/* Header Waitlist Button */
.header-waitlist-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: var(--MAGAos-red);
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 10px;
}

.header-waitlist-btn:hover {
    background: var(--MAGAos-red-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.4);
}

.header-waitlist-btn svg {
    width: 14px;
    height: 14px;
}

/* =============================================
Trust Badges
============================================= */
.trust-badges {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin: 40px 0;
	flex-wrap: wrap;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-secondary);
	font-size: 0.9rem;
	font-weight: 500;
}

.trust-badge-icon {
	width: 24px;
	height: 24px;
	color: var(--MAGAos-gold);
}

.trust-badge-text {
	text-align: left;
}

.trust-badge-title {
	font-weight: 700;
	color: var(--text-primary);
	display: block;
}

.trust-badge-subtitle {
	font-size: 0.8rem;
	color: var(--text-muted);
}

/* =============================================
Logo Styles
============================================= */
.logo-link {
	display: block;
	transition: transform 0.3s ease;
}

.logo-link:hover {
	transform: scale(1.05);
}

.logo-svg {
	display: block;
	height: 45px;
	width: auto;
}

/* Payment Trust Badges */
.payment-badges {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 30px 0;
	flex-wrap: wrap;
	align-items: center;
}

.payment-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	border-radius: 8px;
	padding: 12px 20px;
	font-size: 0.85rem;
	color: var(--text-secondary);
	transition: all 0.3s ease;
}

.payment-badge:hover {
	border-color: var(--MAGAos-gold);
	background: var(--bg-elevated);
}

.payment-badge svg {
	width: 30px;
	height: 20px;
}

/* Security Badges */
.security-badges {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 30px 0;
	padding: 20px;
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
}

.security-badge {
	text-align: center;
	color: var(--text-secondary);
	font-size: 0.8rem;
}

.security-badge svg {
	width: 40px;
	height: 40px;
	color: var(--MAGAos-gold);
	margin-bottom: 8px;
}

.security-badge-title {
	font-weight: 600;
	color: var(--text-primary);
	display: block;
	margin-bottom: 4px;
}

/* =============================================
Logo Styles
============================================= */
.logo-link {
	display: block;
	transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-link:hover {
	transform: scale(1.05);
}

.logo-text {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 900;
	letter-spacing: 1px;
	line-height: 1;
}

.logo-maga {
	color: #FFFFFF;
}

.logo-os {
	color: var(--MAGAos-red);
}

[data-theme="light"] .logo-maga {
	color: var(--bg-primary);
}

.logo-svg {
	display: block;
	height: 45px;
	width: auto;
	max-width: 100%;
}

/* Favicon Styles */
.favicon {
	display: inline-block;
	vertical-align: middle;
}

/* Logo for mobile */
@media (max-width: 768px) {
	.logo-svg {
		height: 38px;
	}
}

/* =============================================
MODERN GLASS MORPHISM STYLES
============================================= */

/* Glass Card Effect */
.glass-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-elevated);
	border-color: rgba(255, 215, 0, 0.4);
}

/* Modern Section Styling */
.section-modern {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.section-modern::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
				radial-gradient(ellipse at bottom, rgba(200, 16, 46, 0.03) 0%, transparent 50%);
	pointer-events: none;
}

/* Gradient Text */
.gradient-text {
	background: linear-gradient(135deg, var(--text-primary) 0%, var(--MAGAos-gold) 50%, var(--text-primary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% auto;
	animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
	to {
		background-position: 200% center;
	}
}

/* Modern Button Styles */
.btn-modern {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--MAGAos-red) 0%, var(--MAGAos-red-dark) 100%);
	border: none;
	border-radius: var(--radius-full);
	padding: 16px 40px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all var(--transition-normal);
	box-shadow: 0 4px 15px rgba(200, 16, 46, 0.4);
}

.btn-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.btn-modern:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(200, 16, 46, 0.5);
}

.btn-modern:hover::before {
	left: 100%;
}

/* Floating Animation */
@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.float-animation {
	animation: float 4s ease-in-out infinite;
}

/* Glow Effect */
.glow-gold {
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
	transition: box-shadow var(--transition-normal);
}

.glow-gold:hover {
	box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

/* Modern Grid Layout */
.grid-modern {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

/* Card with Image */
.card-image {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
}

.card-image img {
	transition: transform var(--transition-slow);
}

.card-image:hover img {
	transform: scale(1.05);
}

/* Modern Input Styling */
.input-modern {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid var(--border-light);
	border-radius: var(--radius-md);
	padding: 16px 20px;
	color: var(--text-primary);
	transition: all var(--transition-normal);
}

.input-modern:focus {
	outline: none;
	border-color: var(--MAGAos-gold);
	background: rgba(255, 215, 0, 0.05);
	box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* Badge Modern */
.badge-modern {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
	border: 1px solid rgba(255, 215, 0, 0.3);
	color: var(--MAGAos-gold);
	padding: 10px 20px;
	border-radius: var(--radius-full);
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Divider with Gradient */
.divider-gradient {
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--MAGAos-gold), transparent);
	margin: 60px 0;
}

/* Modern List Styling */
.list-modern {
	list-style: none;
	padding: 0;
}

.list-modern li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
	color: var(--text-secondary);
}

.list-modern li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--MAGAos-gold);
	font-weight: 700;
}

/* Smooth Scroll Behavior */
html {
	scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
	background: rgba(255, 215, 0, 0.3);
	color: var(--text-primary);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
	background: var(--border-light);
	border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--MAGAos-gold);
}

/* Page Loader */
.page-loader {
	position: fixed;
	inset: 0;
	background: var(--bg-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.loaded {
	opacity: 0;
	visibility: hidden;
}

/* Responsive Improvements */
@media (max-width: 768px) {
	.section-modern {
		padding: 60px 0;
	}
	
	.grid-modern {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.btn-modern {
		padding: 14px 30px;
		font-size: 0.9rem;
	}
}

/* Scroll Fade-In Animation */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* Section entrance animations */
section > .container > * {
	opacity: 1;
}

/* =============================================
Waitlist Form Messages
============================================= */
.success-message {
	background: rgba(34, 197, 94, 0.15);
	border: 1px solid rgba(34, 197, 94, 0.5);
	color: var(--success-green);
	padding: 15px 20px;
	border-radius: var(--radius-md);
	margin-top: 15px;
	font-weight: 500;
	text-align: center;
}

.error-message {
	background: rgba(200, 16, 46, 0.15);
	border: 1px solid rgba(200, 16, 46, 0.5);
	color: var(--MAGAos-red);
	padding: 15px 20px;
	border-radius: var(--radius-md);
	margin-top: 15px;
	font-weight: 500;
	text-align: center;
}

.waitlist-form button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* =============================================
Rotating Email Examples - Hero Section
============================================= */
.rotating-emails {
	position: relative;
	height: 80px;
	margin: 40px 0 30px;
	overflow: visible;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0 5%;
}

.email-example {
	position: absolute;
	width: 100%;
	left: 0;
	text-align: center;
	font-size: clamp(1.5rem, 5vw, 2.8rem);
	font-weight: 900;
	font-family: var(--font-heading);
	opacity: 0;
	animation: fadeWhiteToGold 50s infinite;
	animation-timing-function: ease-in-out;
	color: white;
	text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
	white-space: nowrap;
	overflow: visible;
	padding: 0 10px;
	box-sizing: border-box;
}

.email-example:nth-child(1) { animation-delay: 0s; }
.email-example:nth-child(2) { animation-delay: 2.5s; }
.email-example:nth-child(3) { animation-delay: 5s; }
.email-example:nth-child(4) { animation-delay: 7.5s; }
.email-example:nth-child(5) { animation-delay: 10s; }
.email-example:nth-child(6) { animation-delay: 12.5s; }
.email-example:nth-child(7) { animation-delay: 15s; }
.email-example:nth-child(8) { animation-delay: 17.5s; }
.email-example:nth-child(9) { animation-delay: 20s; }
.email-example:nth-child(10) { animation-delay: 22.5s; }
.email-example:nth-child(11) { animation-delay: 25s; }
.email-example:nth-child(12) { animation-delay: 27.5s; }
.email-example:nth-child(13) { animation-delay: 30s; }
.email-example:nth-child(14) { animation-delay: 32.5s; }
.email-example:nth-child(15) { animation-delay: 35s; }
.email-example:nth-child(16) { animation-delay: 37.5s; }
.email-example:nth-child(17) { animation-delay: 40s; }
.email-example:nth-child(18) { animation-delay: 42.5s; }
.email-example:nth-child(19) { animation-delay: 45s; }
.email-example:nth-child(20) { animation-delay: 47.5s; }

@keyframes fadeWhiteToGold {
	0% { opacity: 0; transform: translateY(10px); }
	2% { opacity: 1; transform: translateY(0); color: white; text-shadow: 0 0 30px rgba(255, 255, 255, 0.5); }
	3% { opacity: 1; color: var(--MAGAos-gold); text-shadow: 0 0 30px rgba(255, 215, 0, 0.4); }
	4% { opacity: 1; color: var(--MAGAos-gold); text-shadow: 0 0 30px rgba(255, 215, 0, 0.4); }
	5% { opacity: 0; transform: translateY(-10px); }
	100% { opacity: 0; }
}

/* =============================================
   Phase 4: Animations & Interactions
   ============================================= */

/* Button Glow Effect */
.btn-primary:hover {
    box-shadow: 0 0 20px rgba(200, 16, 46, 0.5), 0 6px 20px rgba(200, 16, 46, 0.4);
}

.btn-gold:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-secondary:hover {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Card Lift Effect */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.08);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

/* Smooth Section Transitions */
section {
    transition: opacity 0.3s ease;
}

/* Subtle Pulse for CTA Elements */
@keyframes subtle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.pricing-card.featured .btn-gold {
    animation: subtle-pulse 3s ease-in-out infinite;
}

/* Link Underline Animation */
.main-navigation a {
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--MAGAos-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-navigation a:hover::after {
    width: 80%;
}

/* OS Feature Card Hover */
.os-feature:hover {
    transform: translateY(-5px);
    border-color: var(--MAGAos-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* =============================================
   prefers-reduced-motion
   ============================================= */
@media (prefers-reduced-motion: reduce) {
    .btn-gold {
        animation: none !important;
    }
    
    .hero {
        background-attachment: scroll !important;
    }
    
    .feature-card:hover,
    .pricing-card:hover,
    .pricing-card.featured:hover,
    .os-feature:hover {
        transform: none !important;
    }
    
    .testimonials-track {
        transition: none !important;
    }
    
    .fade-in {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =============================================
   Phase 4: Mobile Responsiveness Audit
   ============================================= */

@media (max-width: 768px) {
    /* Hero text sizing */
    .hero h1 {
        font-size: 2.2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        letter-spacing: 2px !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
    }
    
    .hero-features {
        gap: 20px !important;
    }
    
    .hero-feature {
        font-size: 0.85rem !important;
    }
    
    /* Navigation improvements */
    .main-navigation.active {
        background: var(--bg-card);
        padding: 15px;
        border-radius: var(--radius-md);
        margin-top: 10px;
        border: 1px solid var(--border-light);
    }
    
    .main-navigation.active ul {
        flex-direction: column;
        gap: 5px !important;
    }
    
    .main-navigation.active a {
        display: block;
        padding: 10px 15px;
    }
    
    /* Form field sizing */
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 16px !important;
        padding: 14px 16px;
    }
    
    /* Domain selector mobile */
    .domain-options {
        flex-direction: column;
        align-items: stretch;
    }
    
    .domain-option {
        text-align: center;
    }
    
    /* Pricing cards mobile */
    .pricing-card.featured {
        transform: none !important;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px) !important;
    }
    
    /* Email preview */
    .email-preview {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
    
    .email-preview-display {
        font-size: 1.1rem !important;
        word-break: break-all;
    }
    
    /* Comparison table */
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table td,
    .comparison-table th {
        padding: 10px 12px !important;
    }
    
    /* OS mockup */
    .os-feature {
        padding: 20px !important;
    }
    
    /* Testimonials carousel */
    .testimonials-carousel .testimonial-slide > div {
        grid-template-columns: 1fr !important;
    }
    
    /* Footer grid */
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    
    /* Urgency banner */
    .urgency-banner {
        font-size: 0.85rem !important;
        padding: 10px 15px !important;
    }
    
    /* CTA buttons */
    .hero .btn {
        width: 100% !important;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero {
        padding: 120px 0 60px !important;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 1.8rem !important;
    }
    
    .site-header {
        padding: 8px 0 !important;
    }
    
    .site-header.scrolled {
        padding: 6px 0 !important;
    }
    
    .logo-svg {
        height: 32px !important;
    }
    
    .theme-toggle .text {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    
    .chat-window {
        width: calc(100vw - 20px) !important;
        right: -10px !important;
        height: 70vh !important;
    }
    
    .splash-content {
        padding: 30px 20px !important;
    }
    
    .splash-content h2 {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem !important;
    }
    
    .hero-badge {
        font-size: 0.7rem !important;
        padding: 6px 14px !important;
    }
}
