/* --- Base Variables & Reset --- */
:root {
    --bg-color: #0b1120; 
    --surface-color: #151e32; 
    --surface-border: rgba(255, 255, 255, 0.05);

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --cream-logo: #F0EAD6; 
    --accent-cyan: #22d3ee; 
    --accent-purple: #a855f7; 
    
    --primary-color: #0ea5e9; 
    --primary-hover: #0284c7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="%23F0EAD6" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><circle cx="10" cy="10" r="7"></circle><line x1="21" y1="21" x2="15" y2="15"></line></svg>'), auto;
}

/* --- Finger Pointer for selectable items --- */
a, button, .btn, .nav-glow-btn, .clickable-image, .modal-close, .hamburger, a img, .theme-wrapper {
    cursor: pointer !important;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3 {
    color: var(--text-main);
    letter-spacing: -0.5px;
}

/* --- Themed Gradient Titles --- */
.gradient-title {
    background: linear-gradient(to right, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
    align-items: center;
    padding-bottom: 5px; 
    margin-bottom: 0.5rem;
    font-weight: 800;
}

/* --- MASSIVE HEADER CLASS --- */
.massive-title {
    font-size: clamp(4rem, 12vw, 8rem) !important;
    text-transform: uppercase;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
    line-height: 0.85;
}

/* --- Splash Screen --- */
body.no-scroll {
    overflow: hidden; 
}

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000; 
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1.5s ease;
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 720px;
    transition: opacity 1.0s ease; 
}

.video-frame {
    position: relative;
    padding: 2px; 
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.4), rgba(168, 85, 247, 0.4)); 
    border-radius: 12px; 
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.25); 
    overflow: hidden; 
    line-height: 0; 
    margin-bottom: 25px; 
    width: 100%;
}

#splash-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px; 
}

.loading-bar-container {
    width: 70%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transition: width 0.1s linear; 
}

/* --- Top Web Banner --- */
.top-banner {
    width: 100%;
    max-height: 550px; 
    overflow: hidden;
    display: flex;
    justify-content: center;
    background-color: var(--bg-color);
    position: relative; 
}

.top-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.9; 
    filter: drop-shadow(0px 8px 15px rgba(0, 0, 0, 0.8)); 
}

.top-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; 
    background: linear-gradient(to bottom, transparent 0%, var(--bg-color) 100%);
    pointer-events: none; 
}

#top-banner-container {
    position: relative; 
    overflow: hidden; 
}

.cursor-radiance {
    position: absolute;
    width: 300px; 
    height: 300px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.6) 0%, rgba(168, 85, 247, 0.2) 60%, rgba(11, 17, 33, 0) 100%);
    border-radius: 50%;
    pointer-events: none; 
    opacity: 0; 
    transition: opacity 0.3s ease; 
    z-index: 5; 
    transform: translate(-50%, -50%); 
}

/* --- Navigation --- */
header {
    background-color: rgba(21, 30, 50, 0.75); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); 
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--surface-border);
    margin-top: -30px; 
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: auto;
}

.logo, .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--cream-logo);
    text-decoration: none;
}

.logo-icon {
    height: 36px;
    width: auto;
    border-radius: 6px; 
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-glow-btn {
    text-decoration: none;
    color: var(--text-main) !important;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(34, 211, 238, 0.2);
    background: rgba(34, 211, 238, 0.03);
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(34, 211, 238, 0.05);
    display: inline-block;
}

.nav-glow-btn:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.3), inset 0 0 15px rgba(34, 211, 238, 0.1);
    background: rgba(34, 211, 238, 0.08);
    transform: translateY(-2px);
    color: #fff !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--cream-logo);
    border-radius: 2px;
}

/* --- Scroll Reveal Animations --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Hero Section --- */
.hero {
    padding: 7rem 5% 4rem; 
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.highlight {
    background: linear-gradient(to right, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.35rem; 
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* --- Button Animations --- */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn {
    padding: 1rem 3.5rem; 
    border-radius: 50px; 
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(270deg, var(--accent-cyan), var(--primary-color), var(--accent-purple), var(--accent-cyan));
    background-size: 300% 300%;
    color: #000;
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3);
}

.btn-primary:hover {
    animation: gradientShift 3s ease infinite;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.5) !important;
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(270deg, rgba(34, 211, 238, 0.2), rgba(168, 85, 247, 0.2), rgba(34, 211, 238, 0.2));
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
    border-color: rgba(34, 211, 238, 0.5);
}

.btn-secondary.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    animation: none;
}
.btn-secondary.disabled:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none !important;
    transform: none;
}

/* --- How It Works --- */
.how-it-works {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 4rem;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-purple), #4f46e5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.step-item h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--cream-logo);
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Products Section --- */
.products-section {
    padding: 8rem 5% 4rem; 
    max-width: 1600px; 
    margin: auto;
    border-top: 1px solid var(--surface-border);
}

.section-header {
    text-align: center;
    margin-bottom: 7rem; 
}

.product-container {
    margin-bottom: 8rem;
}

.product-header {
    margin-bottom: 4rem;
}

.product-header p {
    color: var(--text-muted);
    font-size: 1.4rem; 
    max-width: 1000px;
    margin-top: 1rem;
    line-height: 1.8;
}

.version-badge {
    background: linear-gradient(135deg, var(--accent-cyan), var(--primary-color));
    color: #000;
    font-size: 1rem;
    padding: 0.4rem 1.4rem;
    border-radius: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
    display: inline-flex;
    align-items: center;
    margin-left: 20px; 
}

.lite-badge {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    color: #fff;
}

.version-badge.mobile-badge {
    margin-left: 20px;
    background: linear-gradient(135deg, #34a853, #4285f4);
    color: #fff;
}

.product-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--surface-border), transparent);
    margin: 6rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; 
    gap: 6rem; 
    align-items: center;
    margin-bottom: 4rem;
}

.lite-grid {
    grid-template-columns: 1.2fr 1fr; 
}

/* --- PREMIUM TYPOGRAPHY FOR DESCRIPTIONS --- */
.ui-features h4 {
    font-size: 2rem; 
    color: var(--cream-logo);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.ui-features p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.3rem; 
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin: 2.5rem 0;
    text-align: left;
}

.feature-list li {
    margin-bottom: 2rem; 
    color: var(--text-main); 
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.25rem; 
    line-height: 1.7;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 900;
    font-size: 1.6rem;
}

/* --- Store Badge Display Links Fix --- */
.store-badge-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.store-badge-wrapper a {
    display: inline-flex;
}

.store-badge-wrapper.center {
    justify-content: center;
    margin-top: auto;
    display: flex;
}

/* --- Desktop Galleries (Pro & Lite) --- */
.lite-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.main-lite-img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--surface-border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.theme-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.theme-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.theme-label {
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #0f172a;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    border: 1px solid rgba(34, 211, 238, 0.4);
    position: absolute;
    top: -18px; 
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.9);
}

.theme-img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--surface-border);
}

/* --- Mobile App Gallery Section --- */
.mobile-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 2rem; 
    width: 100%;
}

/* The Large Focal Image */
.main-mobile-img {
    width: 100%;
    max-height: 350px; 
    object-fit: cover;
    object-position: center 20%; 
    border-radius: 20px; 
    border: 1px solid var(--surface-border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
}

/* 4-Column Grid for Phone Screenshots */
.mobile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 1.2rem; 
}

.mobile-shot {
    width: 100%;
    aspect-ratio: 9 / 19; 
    object-fit: cover;
    object-position: top; 
    border-radius: 12px; 
    border: 1px solid var(--surface-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

/* Shared image hover effect */
.main-lite-img:hover, .theme-img:hover, .main-mobile-img:hover, .mobile-shot:hover {
    transform: scale(1.03);
    border-color: var(--accent-cyan);
    z-index: 5;
}

/* --- Video Bridge Styling --- */
.inter-product-video {
    margin: 6rem auto 2rem;
    text-align: center;
    padding-top: 4rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.video-title {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(34, 211, 238, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #000;
    line-height: 0;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Interactive Image Lightbox Styles --- */
.clickable-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clickable-image:hover {
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.25);
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 10000; 
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 45px;
    font-weight: bold;
    transition: 0.3s;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--accent-cyan);
    text-decoration: none;
    transform: scale(1.1);
}

/* --- Use Cases Grid --- */
.use-cases-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-main);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); 
    gap: 3rem;
}

.use-case-card {
    background-color: var(--surface-color);
    border-radius: 16px;
    border: 1px solid var(--surface-border);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.4);
    z-index: 10;
}

.use-case-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-bottom: 1px solid var(--surface-border);
}

.use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; 
}

.use-case-content {
    padding: 2rem;
    flex-grow: 1;
}

.use-case-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--cream-logo);
}

.use-case-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Features Section --- */
.features {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--surface-color);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--surface-border);
    transition: all 0.3s ease;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-card:hover {
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4), 0 0 40px rgba(168, 85, 247, 0.3) !important;
    transform: translateY(-5px); 
    border-color: rgba(34, 211, 238, 0.5); 
    z-index: 10;
}

/* --- Pricing Section (3 COLUMNS FORCED) --- */
.pricing {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: auto;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 3rem;
    align-items: stretch; 
}

.pricing-card {
    background-color: var(--surface-color);
    padding: 5rem 3rem; 
    border-radius: 32px;
    border: 1px solid var(--surface-border);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

/* Added Styling for New App Logos in Pricing Section */
.pricing-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 20px;
    margin: 0 auto 1.5rem auto;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-logo {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--accent-cyan);
}

.pricing-card.featured {
    background: linear-gradient(180deg, #151e32 0%, #0f172a 100%);
    border: 1px solid rgba(34, 211, 238, 0.3);
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.pricing-card:hover {
    transform: translateY(-10px); 
    border-color: var(--accent-purple); 
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-cyan), var(--primary-color));
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 1.5rem 0;
    color: var(--cream-logo);
}

/* --- Ad Banner Layouts --- */
.top-ad-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0.5rem 0;
    position: relative;
    z-index: 10;
    min-height: auto;
}

.bottom-ads-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 0 5%;
    gap: 2rem;
}

.ad-left, .ad-right {
    display: flex;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); 
}

/* --- Legal / Privacy Page Styles --- */
.legal-container {
    padding: 10rem 5% 6rem;
    max-width: 900px;
    margin: auto;
}

.legal-card {
    background-color: var(--surface-color);
    padding: 4rem;
    border-radius: 16px;
    border: 1px solid var(--surface-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.legal-card h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--cream-logo);
}

.last-updated {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.legal-card h3 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    border-bottom: 1px solid var(--surface-border);
    padding-bottom: 0.5rem;
}

.legal-card p, .legal-card li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-card ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

/* --- Footer --- */
footer {
    background-color: #070a13;
    padding: 3rem 5% 2rem;
    border-top: 1px solid var(--surface-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--surface-border);
    font-size: 0.85rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .showcase-grid, .lite-grid { grid-template-columns: 1fr; gap: 5rem; }
    .massive-title { font-size: 4.5rem !important; }
}

@media (max-width: 900px) {
    .mobile-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    * { cursor: auto !important; }
    .top-banner { max-height: 200px; }
    .top-banner::after { height: 60px; }
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 65px;
        left: 0;
        background-color: var(--surface-color);
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid var(--surface-border);
    }
    .nav-links.active { display: flex; }
    .nav-links a { 
        display: block; 
        padding: 1rem 0; 
        border: none;
        box-shadow: none;
        background: transparent;
        text-align: center;
    }
    .steps-container {
        flex-direction: column;
        gap: 3rem;
    }
    .bottom-ads-container {
        flex-direction: column;
        gap: 2rem;
    }
    .legal-card {
        padding: 2rem;
    }
}