:root {
    --bg-color: #ffffff;
    --text-color: #1d1d1f;
    --text-secondary: #6e6e73;
    --primary-color: #0071e3;
    --accent-color: #2997ff;
    --gradient-bg: linear-gradient(180deg, #b9d1ff 2%, #92e1ff 90%);
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --card-radius: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: var(--gradient-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Shapes (3D Orbs) */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(100,181,246,0.4) 0%, rgba(255,255,255,0) 70%);
    animation: pulse 10s infinite alternate;
}

.shape-2 {
    bottom: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(41,151,255,0.3) 0%, rgba(255,255,255,0) 70%);
    animation: pulse 15s infinite alternate-reverse;
}

.shape-3 {
    top: 40%;
    left: 30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(227,242,253,0.8) 0%, rgba(255,255,255,0) 70%);
    animation: move 20s infinite linear;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes move {
    0% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-30px, 30px); }
    100% { transform: translate(0, 0); }
}

/* Floating Background Icons */
.floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.icon-bg {
    position: absolute;
    opacity: 0.15;
    filter: blur(1px);
    animation: float 20s infinite ease-in-out;
}

.icon-bg:nth-child(1) { top: 10%; left: 10%; width: 120px; animation-duration: 25s; }
.icon-bg:nth-child(2) { top: 20%; right: 15%; width: 100px; animation-duration: 28s; animation-delay: -5s; }
.icon-bg:nth-child(3) { bottom: 15%; left: 20%; width: 150px; animation-duration: 30s; animation-delay: -10s; }
.icon-bg:nth-child(4) { top: 50%; left: 50%; width: 180px; animation-duration: 35s; animation-delay: -15s; }
.icon-bg:nth-child(5) { bottom: 30%; right: 10%; width: 90px; animation-duration: 22s; animation-delay: -8s; }
.icon-bg:nth-child(6) { top: 5%; right: 30%; width: 80px; animation-duration: 20s; animation-delay: -12s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(5deg); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn-primary {
    background: #000;
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: #333;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.5);
    color: #1d1d1f;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    overflow: hidden; /* Hide overflowing cards */
}

.hero-content {
    animation: slideUp 1s ease-out;
    max-width: 800px;
    margin-bottom: 5rem;
    z-index: 10;
    position: relative;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1d1d1f;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #0071e3 0%, #2997ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* 3D Hero Visual */
.hero-visual-3d {
    display: flex;
    gap: 20px;
    perspective: 1000px;
    margin-top: 2rem;
    height: 700px; /* Increased height */
    mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
    width: 100%;
    justify-content: center;
}

.card-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 260px; /* Prevent squishing */
}

.col-1 { margin-top: 0; animation: scrollUp 40s linear infinite; }
.col-2 { margin-top: -100px; animation: scrollDown 50s linear infinite; }
.col-3 { margin-top: 50px; animation: scrollUp 45s linear infinite; }

.hero-card {
    width: 260px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    background: white;
    /* Ensure full image visibility */
    height: auto;
    /* Removed display: flex to prevent squash */
    flex-shrink: 0; /* Critical: prevents height compression in flex column */
}

.hero-card img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-card:hover {
    transform: scale(1.05);
    z-index: 2;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    50% { transform: translateY(-100px); }
    100% { transform: translateY(0); }
}

@keyframes scrollDown {
    0% { transform: translateY(-100px); }
    50% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

/* Feature Tags */
.feature-tags {
    display: flex;
    gap: 8px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 113, 227, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.fav-card .tag {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}


/* Bento Grid Features */
.features-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 24px;
}

.bento-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    padding: 3rem;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

/* Grid Spans */
.span-12 { grid-column: span 12; }
.span-8 { grid-column: span 8; }
.span-6 { grid-column: span 6; }
.span-4 { grid-column: span 4; }

/* Card Content Styling */
.card-text {
    z-index: 2;
    position: relative;
    margin-bottom: 2rem;
}

.card-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.card-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* Screenshot Styles - No Phone Shell */
.screenshot-raw {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
    object-fit: cover;
    width: 100%;
    max-width: 300px;
}

/* Specific Card Layouts */
/* Card 1: Data Aggregation (Large) */
.data-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(227, 242, 253, 0.5) 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.data-card .card-text {
    flex: 0 0 40%;
    margin-bottom: 0;
}

.data-card .card-visual {
    flex: 0 0 60%;
    height: 400px;
}

.floating-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-stack img {
    position: absolute;
    width: 240px;
    top: 60%;
    left: 50%;
    transform-origin: center center;
}

.floating-stack img:nth-child(1) {
    transform: translate(-90%, -40%) rotate(-10deg) scale(0.9);
    z-index: 1;
    opacity: 0.8;
}

.floating-stack img:nth-child(2) {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    z-index: 3;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.floating-stack img:nth-child(3) {
    transform: translate(-10%, -30%) rotate(10deg) scale(0.9);
    z-index: 2;
    opacity: 0.9;
}

.data-card:hover .floating-stack img:nth-child(1) { transform: translate(-100%, -45%) rotate(-15deg) scale(0.9); }
.data-card:hover .floating-stack img:nth-child(2) { transform: translate(-50%, -60%) rotate(0deg) scale(1.05); }
.data-card:hover .floating-stack img:nth-child(3) { transform: translate(0%, -35%) rotate(15deg) scale(0.9); }


/* Compact Card Styling (Fav, Monitor, Analysis) */
.fav-card, .monitor-card, .analysis-card-small {
    padding: 2rem !important; /* Reduce padding */
    max-height: 400px; /* Force max height */
    overflow: hidden;
}

.fav-card .card-text, .monitor-card .card-text, .analysis-card-small .card-text {
    margin-bottom: 1rem;
}

.fav-card .card-text h3, .monitor-card .card-text h3, .analysis-card-small .card-text h3 {
    font-size: 1.5rem;
}



.analysis-stack-small {
    margin-top: 0.5rem;
    height: 180px; /* Restrict visual height */
}

.grid-gallery {
    margin-top: 1rem;
    gap: 10px;
}

/* Card 2: Map (Medium) */
.map-card {
    overflow: hidden;
    padding: 0;
}

.map-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.map-slide.active { opacity: 1; }

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    z-index: 2;
}

.map-overlay p { color: rgba(255,255,255,0.8); }

/* Card 3: Favorites (Medium) */
.fav-card {
    background: #1d1d1f;
    color: white;
}

.fav-card .card-text h3 { color: white; }
.fav-card .card-text p { color: #86868b; }

.grid-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: auto;
}

.grid-gallery img {
    width: 100%;
    border-radius: 12px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.grid-gallery img:hover { opacity: 1; }

/* Card 4: Analysis (Wide) - Deprecated/Removed, kept styles just in case or replace with Small Analysis */
/* New Card 4: Monitor */
.monitor-card {
    background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
}

.monitor-stack-small {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.monitor-stack-small img {
    width: 90%;
    box-shadow: 0 15px 35px rgba(0,71,227,0.15);
    border-radius: 12px;
    transform: perspective(800px) rotateY(5deg);
    transition: transform 0.4s;
}

.monitor-card:hover .monitor-stack-small img {
    transform: perspective(800px) rotateY(0deg) scale(1.05);
}

/* Card 5: Analysis Small */
.analysis-card-small {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}

.analysis-stack-small {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.analysis-stack-small img {
    width: 90%;
    box-shadow: 0 15px 35px rgba(0,71,227,0.15);
    border-radius: 12px;
    transform: perspective(800px) rotateY(-5deg);
    transition: transform 0.4s;
}

.analysis-card-small:hover .analysis-stack-small img {
    transform: perspective(800px) rotateY(0deg) scale(1.05);
}


/* CTA Section */
.cta-section {
    text-align: center;
    padding: 10rem 2rem;
    background: transparent;
    position: relative;
    z-index: 2;
}

.cta-content {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(30px);
    padding: 5rem;
    border-radius: 50px;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.6);
}

.cta-section h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #1d1d1f;
    font-weight: 800;
}

.cta-section .cta-lead {
    opacity: 0.6;
    font-size: 14px;
}

.cta-section .cta-warning {
    color: #d92d20;
    opacity: 0.8;
    font-weight: 600;
}

.btn-guide {
    margin-top: 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    color: #1d1d1f;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    transition: all 0.3s;
}

.btn-guide:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.85);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.btn-store {
    background: #1d1d1f;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-store:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    background: #000;
}

.btn-store.android {
    background: #3DDC84;
    color: #1d1d1f;
}

.btn-store.android:hover {
    background: #32b36b;
}

.btn-store.web {
    background: #0071e3;
    color: white;
}

.btn-store.web:hover {
    background: #0077ED;
}

.guide-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 9rem 2rem 5rem;
}

.guide-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.guide-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.guide-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.guide-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.guide-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: #333;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.guide-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--glass-shadow);
    border-radius: 28px;
    padding: 2.25rem 2.25rem 2rem;
}

.guide-card h2 {
    font-size: 1.7rem;
    margin-bottom: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.guide-card ol {
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.guide-card li {
    margin: 0.5rem 0;
}

.guide-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.guide-images img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-secondary);
    background: transparent;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.scroll-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Mobile Responsive */
@media (max-width: 960px) {
    .navbar {
        padding: 1rem;
    }

    .hero {
        padding: 6rem 1rem 1rem; /* Reduce padding on mobile */
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .span-12, .span-8, .span-6, .span-4 {
        grid-column: span 1;
    }

    .fav-card, .monitor-card, .analysis-card-small {
        max-height: none !important;
        height: auto !important;
        overflow: visible;
        padding: 2rem !important;
    }

    .data-card {
        max-height: none !important;
        height: auto !important;
        overflow: hidden !important; /* Ensure content stays inside */
        padding: 2rem !important;
        flex-direction: column;
    }
    
    .monitor-card .card-visual, .analysis-stack-small, .monitor-stack-small {
        height: auto;
        min-height: 250px;
        margin-bottom: 1rem;
    }
    
    .data-card .card-text {
        margin-bottom: 2rem;
    }
    
    .data-card .card-visual {
        height: auto !important; /* Allow dynamic height */
        min-height: 400px; /* Enforce minimum height */
        width: 100%;
        margin-top: 1rem;
        overflow: hidden; /* Ensure visual area clips content */
    }

    .data-card .floating-stack img {
        width: 200px; /* Smaller images for mobile */
    }

    /* Adjust floating stack position for mobile */
    .data-card .floating-stack img:nth-child(1) { top: 50%; left: 50%; transform: translate(-80%, -40%) rotate(-10deg) scale(0.9); }
    .data-card .floating-stack img:nth-child(2) { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    .data-card .floating-stack img:nth-child(3) { top: 50%; left: 50%; transform: translate(-20%, -30%) rotate(10deg) scale(0.9); }
    
    .data-card:hover .floating-stack img:nth-child(1) { transform: translate(-90%, -45%) rotate(-15deg) scale(0.9); }
    .data-card:hover .floating-stack img:nth-child(2) { transform: translate(-50%, -60%) rotate(0deg) scale(1.05); }
    .data-card:hover .floating-stack img:nth-child(3) { transform: translate(-10%, -35%) rotate(15deg) scale(0.9); }

    .analysis-card {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .cta-content {
        padding: 2rem;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .download-buttons {
        flex-direction: column;
    }

    .guide-page {
        padding: 8rem 1rem 4rem;
    }

    .guide-hero h1 {
        font-size: 2.4rem;
    }

    .guide-hero p {
        font-size: 1.05rem;
    }

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

    .guide-card {
        padding: 1.75rem;
    }

    .guide-images {
        grid-template-columns: 1fr;
    }
    
    .hero-visual-3d {
        width: 100vw; /* Use viewport width */
        margin-left: calc(50% - 50vw); /* Center relative to viewport */
        height: 700px; /* Restored original height */
        margin-top: -50px; /* Slight pull up */
        
        /* Restore mask */
        mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
        -webkit-mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
        
        /* Ensure layout stays consistent */
        flex-direction: row;
        overflow: visible; /* Prevent tilted clipping */
        padding-bottom: 0;
    }
    
    .col-1, .col-2, .col-3 {
        /* Keep animations active */
        animation-play-state: running;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-visual-3d {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        height: 600px; /* Increased height */
    }
}
