/* ==========================================================================
   SNOWSIN LANDING PAGE - ULTRA-PREMIUM DESIGN SYSTEM & RESPONSIVE CSS
   ========================================================================== */

:root {
    --bg-dark: #08080c;
    --bg-card: rgba(18, 18, 24, 0.65);
    --bg-card-hover: rgba(28, 28, 38, 0.85);
    --bg-panel: rgba(13, 13, 18, 0.8);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --accent-purple: #8b5cf6;
    --accent-purple-dark: #6d28d9;
    --accent-cyan: #06b6d4;
    --accent-cyan-dark: #0891b2;
    --accent-magenta: #ec4899;
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-hover: rgba(255, 255, 255, 0.18);
    --shadow-glow: 0 10px 30px -10px rgba(139, 92, 246, 0.3);
    --shadow-cyan: 0 10px 30px -10px rgba(6, 182, 212, 0.3);
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-full: 9999px;
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, .logo, .stat-number, .tier-name, .tier-price {
    font-family: 'Outfit', sans-serif;
}

/* Ambient Background Glows */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.35;
    pointer-events: none;
    animation: floatGlow 22s infinite alternate ease-in-out;
}

.glow-1 {
    top: -10vw;
    left: -10vw;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
}

.glow-2 {
    bottom: -15vw;
    right: -10vw;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    animation-delay: -7s;
}

.glow-3 {
    top: 40%;
    left: 30%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--accent-magenta) 0%, transparent 70%);
    opacity: 0.15;
    animation-delay: -12s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(4%, 8%) scale(1.08); }
    100% { transform: translate(-3%, 4%) scale(0.95); }
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Styles */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-3 { margin-top: 1rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-icon {
    margin-right: 8px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-dark));
    color: #ffffff;
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -5px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #9d6cfe, var(--accent-purple));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border-color: var(--border-glass);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-glass-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.05);
}

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
}

.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    border-radius: var(--radius-full);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.glow-effect:hover::after {
    opacity: 0.6;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.1rem 0;
    background: rgba(8, 8, 12, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    transition: padding var(--transition-fast);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    text-decoration: none;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    background: none;
    border: none;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--text-main);
}

/* Legal Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.75rem;
    background: rgba(14, 14, 20, 0.95);
    border: 1px solid var(--border-glass-hover);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-cyan);
}

/* Nav Actions & Mobile Toggle */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Toggle Hamburger animation */
.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Navigation Menu Drawer */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 12, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2rem 3rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all var(--transition-normal);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.mobile-nav-link {
    font-size: 1.25rem;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-glass);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    text-align: left;
    cursor: pointer;
}

.mobile-divider {
    height: 1px;
    background: var(--border-glass);
    margin: 0.5rem 0;
}

.mobile-legal-header {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    font-weight: 700;
}

.mobile-cta-wrapper {
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 9rem 0 5rem;
    position: relative;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 1.2rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: #c4b5fd;
    font-weight: 600;
    margin-bottom: 2rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(2.5rem, 6.5vw, 5.2rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 720px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

/* Hero Stats Grid */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
    padding-top: 3rem;
    border-top: 1px solid var(--border-glass);
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    backdrop-filter: blur(12px);
    transition: transform var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glass-hover);
}

.stat-number {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent-cyan);
    font-weight: 700;
}

/* Sections */
.section {
    padding: 7rem 0;
    position: relative;
}

.section-alt {
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem;
}

.section-badge {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-purple);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.badge-cyan { color: var(--accent-cyan); }
.badge-purple { color: var(--accent-purple); }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.title-underline {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Grids & Cards */
.grid {
    display: grid;
    gap: 2rem;
}

.double-grid {
    grid-template-columns: repeat(2, 1fr);
}

.triple-grid {
    grid-template-columns: repeat(3, 1fr);
}

.quadruple-grid {
    grid-template-columns: repeat(4, 1fr);
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glass-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.glass-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.glass-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

.glass-panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 3.5rem 2.5rem;
    backdrop-filter: blur(20px);
}

/* App Flavor Card Specifics */
.flavor-card {
    display: flex;
    flex-direction: column;
}

.highlight-border {
    border-color: rgba(6, 182, 212, 0.3);
}

.card-badge {
    align-self: flex-start;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
}

.flavor-subtitle {
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.feature-list {
    list-style: none;
    margin-top: 1rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.feature-list li {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.5;
    position: relative;
    padding-left: 1.4rem;
}

.feature-list li::before {
    content: "•";
    color: var(--accent-cyan);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.card-action {
    margin-top: auto;
}

.badge-pill {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Subscription Tiers Styling */
.tier-card {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
}

.tier-featured {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(24, 20, 36, 0.8);
}

.featured-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 35px;
    transform: rotate(45deg);
}

.tier-header {
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    color: #ffffff;
}

.tier-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin: 0.3rem 0;
}

.tier-subtext {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.tier-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.tier-features li {
    line-height: 1.4;
}

.creator-sub-box {
    margin-top: 3rem;
}

.creator-sub-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.creator-sub-box p {
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Safety Table */
.safety-table-wrapper {
    margin-top: 1.5rem;
    overflow-x: auto;
}

.safety-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    text-align: left;
}

.safety-table th, .safety-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-glass);
}

.safety-table th {
    color: var(--accent-cyan);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.tag-danger {
    color: #f87171;
    font-weight: 700;
}

.tag-success {
    color: #34d399;
    font-weight: 700;
}

/* Download Section Specifics */
.download-hero-card {
    border-color: rgba(6, 182, 212, 0.25);
    background: linear-gradient(180deg, rgba(14, 18, 28, 0.9) 0%, rgba(8, 8, 12, 0.95) 100%);
}

.download-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 1rem 0;
}

.download-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.download-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.download-meta {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.download-meta code {
    color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-glass);
    text-align: left;
}

.step-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.step-item h4 {
    font-size: 1.1rem;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 5rem 0 3rem;
    border-top: 1px solid var(--border-glass);
    background: #050508;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.copyright {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-nav {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-col h4 {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-col a, .footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    padding: 0;
}

.footer-col a:hover, .footer-link:hover {
    color: var(--accent-cyan);
}

.footer-link-ext {
    font-size: 0.8rem !important;
    color: var(--text-dim) !important;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 8, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: rgba(16, 16, 24, 0.95);
    border: 1px solid var(--border-glass-hover);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 720px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: #ffffff;
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal-body h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.modal-body ul {
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-callout {
    background: rgba(239, 68, 68, 0.08);
    border-left: 4px solid #ef4444;
    padding: 1.25rem;
    border-radius: 8px;
    margin: 0.5rem 0;
}

.modal-callout h4 {
    color: #f87171;
    margin-top: 0;
}

.modal-footer {
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: flex-end;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (FIXES ALL MOBILE OVERLAPS)
   ========================================================================== */

@media (max-width: 1024px) {
    .quadruple-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navbar Mobile Fixes */
    #desktopNavLinks, #navCtaBtn {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }

    /* Hero Section Mobile Fixes */
    .hero {
        padding-top: 7rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .btn-hero {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1rem;
    }

    /* Grid Resets */
    .double-grid, .triple-grid, .quadruple-grid {
        grid-template-columns: 1fr;
    }

    .glass-card {
        padding: 1.75rem;
    }

    .glass-panel {
        padding: 2rem 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-nav {
        gap: 2rem;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .tier-card {
        padding: 1.5rem;
    }

    .modal-card {
        max-height: 90vh;
        border-radius: var(--radius-lg);
    }

    .modal-header, .modal-body, .modal-footer {
        padding: 1.25rem 1rem;
    }
}
