:root {
    --primary-color: #39ff14;
    --secondary-color: #00ffff;
    --bg-color: #ffffff;
    --text-color: #001a33;
    --button-color: #001a33;
}

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

@keyframes logoAnimation {

    0%,
    100% {
        transform: rotateY(0deg);
    }

    10% {
        transform: rotateY(180deg);
    }

    20%,
    80% {
        transform: rotateY(0deg);
    }

    85%,
    95% {
        transform: translateY(-5px);
    }

    90%,
    100% {
        transform: translateY(0px);
    }
}

body {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.6;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.nav {
    background-color: var(--bg-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo {
    font-size: 36px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 15px;
    animation: logoAnimation 6s ease-in-out infinite;
}

.logo-text {
    position: relative;
}

.logo-text::after {
    content: 'AI App Lab';
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: textAnimation 6s ease-in-out infinite;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links li {
    margin-left: 40px;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 24px;
    transition: color 0.3s ease;
}

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

.download-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 0 30px;
    text-decoration: none;
    font-size: 20px;
    transition: opacity 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-btn:hover {
    opacity: 0.9;
    color: white !important;
}

.hero {
    position: relative;
    /* background-image: url('ai-logo-hero.png'); */
    background-image: url('abstract-hero.png');
    background-size: cover;
    filter: brightness(0.9);
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

#canvas-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    background-color: var(--button-color);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    display: inline-block;
    cursor: pointer;
}

.hero-btn:hover {
    background-color: var(--primary-color);
    color: var(--button-color);
    transform: scale(1.05);
}

.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-content {
    text-align: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.about-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.about-card {
    flex-basis: calc(33.333% - 20px);
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.about-card.show {
    opacity: 1;
    transform: translateY(0);
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.about-card p {
    font-size: 16px;
    color: #666;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    color: var(--text-color);
    cursor: pointer;
}

/* Products Section Styles */
.products-section {
    padding: 80px 0;
    background-color: #f0f4f8;
    overflow: hidden;
}

.products-content {
    text-align: center;
}

.products-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-hero {
    text-align: center;
    margin-bottom: 25px;
}

.product-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-tagline {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.product-features {
    margin: 25px 0;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.product-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.product-btn {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    white-space: nowrap;
    min-width: 120px;
}

.product-btn.primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
}

.product-btn.primary:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

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

.product-btn.secondary:hover {
    background: var(--secondary-color);
    color: var(--text-color);
}

/* EduKids App Section Styles - Legacy support */
.edukids-section {
    padding: 80px 0;
    background-color: #f0f4f8;
    overflow: hidden;
}

.edukids-content {
    text-align: center;
}

.edukids-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.edukids-slider-container {
    position: relative;
    margin-top: 40px;
    padding: 20px 0;
}

.edukids-phone-frame {
    position: absolute;
    top: 50%;
    left: 90px;
    transform: translateY(-50%);
    width: 300px;
    height: 600px;
    background-color: #f0f0f0;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.edukids-phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    border-radius: 20px;
    overflow: hidden;
}

.edukids-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.edukids-slider {
    margin-left: 250px;
    overflow: visible;
}

.edukids-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.edukids-slide {
    flex: 0 0 100%;
    padding: 96px;
    display: flex;
    justify-content: space-between;
}

.edukids-card {
    width: calc(100% - 20px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    color: white;
}

.card-1 {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
}

.card-2 {
    background: linear-gradient(135deg, #54a0ff, #5f27cd);
}

.card-3 {
    background: linear-gradient(135deg, #5ed1fc, #3c40c6);
}

.card-4 {
    background: linear-gradient(135deg, #0be881, #05c46b);
}

.edukids-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.edukids-card h3 {
    font-size: 28px;
    margin: 0;
}

.edukids-card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.edukids-card-icon {
    width: 80px;
    height: 80px;
}

.edukids-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.edukids-nav-btn {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.edukids-nav-btn:hover {
    background-color: var(--primary-color);
}

.edukids-dots {
    display: flex;
    justify-content: center;
    margin: 0 20px;
}

.edukids-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.edukids-dot.active {
    background-color: var(--primary-color);
}

@media (max-width: 1200px) {
    .edukids-slide {
        flex: 0 0 100%;
    }
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        background-color: var(--bg-color);
        padding: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
        height: auto;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-left: 20px;
    }

    .dropdown-menu li {
        margin: 10px 0;
    }

    .dropdown-menu a {
        padding: 8px 0;
        font-size: 18px;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .download-btn {
        width: 100%;
        height: 60px;
        margin-top: 15px;
    }

    .menu-toggle {
        display: block;
    }

    .about-card {
        flex-basis: calc(50% - 20px);
    }

    .product-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-card {
        max-width: 500px;
        width: 90%;
    }

    .product-actions {
        flex-direction: column;
        gap: 10px;
    }

    .product-btn {
        max-width: none;
        width: 100%;
    }

    .edukids-phone-frame {
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        margin: 0 auto 20px;
    }

    .edukids-slider {
        margin-left: 0;
    }

    .edukids-slide {
        flex: 0 0 100%;
    }

    .edukids-card {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        min-height: 100vh;
        height: 100vh;
        height: 100dvh;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 18px;
    }

    .about-card {
        flex-basis: 100%;
    }

    .edukids-phone-frame {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 16px;
    }

    .edukids-phone-frame {
        width: 200px;
        height: 400px;
    }
}

.large-footer {
    background-color: #f0f0f0;
    padding: 100px 0;
    text-align: center;
}

.large-footer h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.large-footer p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.footer {
    background-color: var(--button-color);
    color: white;
    padding: 20px 0;
    text-align: center;
}

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

.footer-links {
    list-style: none;
    display: flex;
    gap: 16px;
}

.footer-links li {
    padding: 0 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .edukids-slider-container {
        flex-direction: column;
    }

    .edukids-phone-frame {
        margin-bottom: 20px;
    }

    .edukids-slider {
        width: 100%;
    }

    .edukids-slides {
        flex-direction: column;
    }

    .edukids-slide {
        width: 100%;
        margin-bottom: 20px;
        padding: 0;
    }

    .edukids-nav {
        display: none;
    }

    .large-footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .large-footer .hero-btn {
        margin-top: 20px;
    }

    .footer .container {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .footer-links a {
        margin: 10px 0;
        font-size: 16px;
        padding: 10px;
    }
}

.download-section {
    background-color: #f5f5f5;
    text-align: center;
    padding: 50px 0;
}

.download-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.download-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #666;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-button {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 30px;
    overflow: hidden;
    display: inline-block;
    position: relative;
}

.download-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.download-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-button:hover::after {
    opacity: 1;
}

/* CryptoLens Specific Styles */
.cryptolens-hero .feature-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    margin: 0 8px 20px 0;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cryptolens-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cryptolens-content {
    text-align: center;
}

.cryptolens-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.cryptolens-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
}

.cryptolens-feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.cryptolens-feature-card.show {
    opacity: 1;
    transform: translateY(0);
}

.cryptolens-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    text-align: center;
    margin-bottom: 20px;
}

.cryptolens-feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.cryptolens-feature-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cryptolens-feature-card ul {
    list-style: none;
    padding: 0;
}

.cryptolens-feature-card li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.cryptolens-feature-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 12px;
}

/* Screenshots Section */
.cryptolens-screenshots-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.cryptolens-screenshots-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.cryptolens-screenshots-section p {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.screenshot-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.screenshot-item.show {
    opacity: 1;
    transform: translateY(0);
}

.phone-mockup {
    width: 200px;
    height: 400px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.mockup-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
}

.mockup-chart, .mockup-chart-advanced {
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
}

.mockup-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: white;
    animation: chartAnimation 2s ease-in-out infinite;
}

.mockup-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
}

.stat-label {
    font-size: 12px;
    color: #666;
}

.mockup-indicators {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.indicator {
    background: #f8f9fa;
    padding: 8px;
    border-radius: 5px;
    font-size: 12px;
    color: var(--text-color);
}

.portfolio-pie {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#3c40c6 0deg 162deg, #00C3FF 162deg 270deg, #1DA413 270deg 360deg);
    margin: 20px auto;
}

.portfolio-list {
    margin-top: 15px;
}

.portfolio-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.screenshot-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.screenshot-item p {
    color: #666;
    font-size: 14px;
}

/* App Screenshot Styles */
.app-screenshot {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.app-screenshot:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.screenshots-section {
    text-align: center;
}

.screenshots-section .screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .screenshots-section .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.screenshots-section .screenshot-item {
    text-align: center;
}

.screenshots-section .screenshot-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.screenshots-section .screenshot-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

@keyframes chartAnimation {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

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

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-color);
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

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

.dropdown-menu li {
    margin: 0;
    height: auto;
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.dropdown-menu a.active {
    background: rgba(57, 255, 20, 0.1);
    color: var(--primary-color);
    font-weight: bold;
}

/* Active nav link styling */
.nav-links > li > a.active {
    color: var(--primary-color);
    position: relative;
}

.nav-links > li > a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

@media (max-width: 968px) {
    .cryptolens-feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
}

@media (max-width: 480px) {
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-button {
        width: 90%;
        max-width: 200px;
    }

    .download-button svg {
        width: 100%;
        height: auto;
    }
    
    .phone-mockup {
        width: 160px;
        height: 320px;
    }
    
    .cryptolens-features-section, .cryptolens-screenshots-section {
        padding: 60px 0;
    }
}