@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* --- Global Variables & Reset --- */
:root {
    --bg-dark: #050508;
    --bg-card: #0f0f16;
    --primary-blue: #00d4ff;
    --primary-purple: #9d4edd;
    --accent-gold: #ffd700;
    --accent-gold-glow: rgba(255, 215, 0, 0.4);
    --alert-red: #ff4444;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.1);
    --vh: 1vh;
    --vw: 1vw;
}

/* Custom Cursor Effects */
.custom-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
    .custom-cursor, .cursor-follower {
        display: none;
    }
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-blue);
    color: #000;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 10000;
    font-weight: bold;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

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

body {
    background: linear-gradient(-45deg, #050508, #0a0a15, #1a0a2e, #050508);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(157, 78, 221, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: floatingBackground 20s ease-in-out infinite alternate;
}

@keyframes floatingBackground {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-20px) translateY(-10px);
    }
}

body > * {
    position: relative;
    z-index: 2;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 700; }

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- Navigation --- */
.navbar {
    position: sticky; top: 0; z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; 
    background: rgba(5, 5, 8, 0.95); 
    backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo { 
    font-weight: 800; 
    font-size: 1.5rem; 
    color: var(--primary-blue); 
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: scale(1.05);
}

.team-name { 
    font-size: 0.9rem; 
    color: var(--text-muted); 
    font-weight: 400; 
    margin-left: 5px;
    transition: color 0.3s ease;
}

.nav-links { 
    display: flex; 
    gap: 35px; 
}

.nav-links a {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-blue);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary-blue); 
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 25px; 
    border: 2px solid var(--primary-blue); 
    border-radius: 25px;
    color: var(--primary-blue); 
    font-weight: 600; 
    font-size: 0.95rem; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; right: 100%; bottom: 0;
    background: var(--primary-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-cta:hover::before {
    left: 0; right: 0;
}

.nav-cta:hover { 
    color: #000; 
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

/* --- Hero --- */
.hero {
    height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, rgba(26, 26, 46, 0.8) 35%, #050508 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(0,212,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(0,212,255,0);stop-opacity:0" /></radialGradient></defs><circle cx="50" cy="50" r="50" fill="url(%23g)" /></svg>') center/200px 200px;
    animation: floatingOrbs 20s infinite linear;
    pointer-events: none;
}

@keyframes floatingOrbs {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem; margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple), var(--accent-gold));
    background-size: 200% 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-family: 'Outfit', sans-serif; font-weight: 900; letter-spacing: -2px;
    animation: gradientShift 8s ease infinite;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.hero p { 
    font-size: 1.4rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 40px auto; 
    line-height: 1.7; font-weight: 400;
}

.hero-badges { 
    display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; 
}

.hero-badges span { 
    background: rgba(255,255,255,0.08); 
    backdrop-filter: blur(20px);
    padding: 12px 20px; 
    border-radius: 50px; 
    border: 1px solid rgba(0, 212, 255, 0.3); 
    font-size: 0.95rem; 
    color: var(--text-main);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-badges span::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; right: 100%; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: all 0.6s;
}

.hero-badges span:hover::before {
    left: 100%;
}

.hero-badges span:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.cta-group { 
    display: flex; justify-content: center; gap: 25px; 
    flex-wrap: wrap;
}

.btn-primary { 
    padding: 16px 40px; 
    background: linear-gradient(135deg, var(--primary-blue), #0099cc); 
    color: #000; 
    border-radius: 50px; 
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; right: 100%; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, #00e6ff, var(--primary-blue));
}

.btn-secondary { 
    padding: 16px 40px; 
    border: 2px solid rgba(0, 212, 255, 0.4); 
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(0, 212, 255, 0.2);
}

/* --- Common Section Styles --- */
.section { 
    padding: 100px 0; 
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.02) 50%, transparent 100%);
}

.section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.section.visible::before {
    opacity: 1;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-title { 
    font-size: 3rem; 
    text-align: center; 
    margin-bottom: 15px; 
    font-family: 'Outfit', sans-serif; 
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple), var(--accent-gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s both;
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 100px; }
}

.section-subtitle { 
    text-align: center; 
    color: var(--text-muted); 
    margin-bottom: 80px; 
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 40px;
}

/* --- Tech Grid --- */
.tech-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 35px; 
}

.tech-card { 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    padding: 40px; 
    border-radius: 20px; 
    border: 1px solid rgba(0, 212, 255, 0.2); 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(157, 78, 221, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card:hover { 
    transform: translateY(-10px) rotateX(5deg); 
    border-color: var(--primary-blue); 
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tech-icon { 
    font-size: 3.5rem; 
    color: var(--primary-blue); 
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.tech-card:hover .tech-icon {
    color: var(--accent-gold);
    transform: scale(1.1) rotate(5deg);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.tech-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.tech-card:hover h3 {
    color: var(--primary-blue);
}

.tech-card p {
    position: relative;
    z-index: 2;
    line-height: 1.7;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.tech-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* --- Business Model & Gallery --- */
.business-layout { display: grid; grid-template-columns: 350px 1fr; gap: 40px; }
.model-column { background: var(--bg-card); border-radius: 16px; height: 100%; display: flex; flex-direction: column; }
.gallery-label { font-size: 0.8rem; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; letter-spacing: 1px; font-weight: bold; margin-top: 10px; }

/* Screenshot Hint */
.screenshot-hint { background: rgba(0, 212, 255, 0.08); border-left: 4px solid var(--primary-blue); padding: 12px 15px; border-radius: 6px; margin-bottom: 20px; font-size: 0.85rem; color: var(--text-muted); }
.screenshot-hint p { margin: 0; display: flex; align-items: center; gap: 10px; }
.screenshot-hint i { color: var(--primary-blue); font-size: 1.1rem; }

/* FREE TIER & GALLERY */
.free-tier { padding: 30px; border: 1px solid var(--glass-border); }
.tier-header { border-bottom: 1px solid var(--glass-border); padding-bottom: 15px; margin-bottom: 15px; }
.tier-header h3 { color: var(--primary-blue); margin-bottom: 5px; }
.price { font-size: 1.2rem; font-weight: 700; color: #fff; }
.tier-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

/* 3-Image Gallery for Free Tier */
.free-gallery-grid { display: grid; grid-template-columns: 1fr; gap: 25px; margin-bottom: 20px; }
.gallery-card { background: rgba(255,255,255,0.02); border: 0.5px solid rgba(0, 212, 255, 0.15); border-radius: 12px; padding: 0; display: flex; flex-direction: column; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); backdrop-filter: blur(10px); }
.gallery-card:hover { border-color: rgba(0, 212, 255, 0.6); background: rgba(0, 212, 255, 0.08); transform: translateY(-8px); box-shadow: 0 12px 48px rgba(0, 212, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1); }

/* Enhanced Screenshot Placeholder */
.gallery-img-box {
    width: 100%; height: 300px; border-radius: 8px 8px 0 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; font-size: 1.2rem; position: relative;
    overflow: hidden; background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(157, 78, 221, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.2); border-bottom: 0.5px solid rgba(0, 212, 255, 0.1);
    padding: 20px; text-align: center;
}

.gallery-img-box img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 6px; transition: transform 0.3s ease, filter 0.3s ease; }
.gallery-card:hover .gallery-img-box img { transform: scale(1.02); filter: brightness(1.1); }
.placeholder-icon { color: var(--primary-blue); font-size: 3.5rem; margin-bottom: 12px; opacity: 0.8; }
.img-caption { font-size: 0.75rem; margin-top: 10px; text-transform: uppercase; color: var(--primary-blue); font-weight: bold; letter-spacing: 1.5px; }
.gallery-text { font-size: 0.95rem; font-weight: 600; color: #e0e0e0; }
.gallery-content { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.gallery-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-top: 5px; }
.placeholder-icon { color: var(--primary-blue); font-size: 1.2rem; }
.img-caption { font-size: 0.5rem; margin-top: 3px; text-transform: uppercase; color: var(--primary-blue); }
.gallery-text { font-size: 0.9rem; font-weight: 600; color: #e0e0e0; }

/* Feature List */
.feature-list li { margin-bottom: 10px; display: flex; gap: 10px; color: var(--text-muted); font-size: 0.85rem; }
.feature-list i { color: var(--primary-blue); margin-top: 3px; }

/* PREMIUM TIER & SPY GRID */
.premium-tier {
    padding: 3px; background: linear-gradient(135deg, #ffd700, #b8860b, #ffd700); background-size: 200% 200%;
    animation: goldenShimmer 3s ease-in-out infinite;
    position: relative; box-shadow: 0 0 40px rgba(255, 215, 0, 0.3), 0 0 80px rgba(255, 215, 0, 0.1);
    border-radius: 16px;
}

@keyframes goldenShimmer { 0% { background-position: 0% 50%; filter: brightness(1); } 50% { background-position: 100% 50%; filter: brightness(1.1); } 100% { background-position: 0% 50%; filter: brightness(1); } }
.gold-frame { background: #0a0a0f; border-radius: 14px; padding: 30px; height: 100%; }
.premium-header { text-align: center; margin-bottom: 25px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,215,0,0.2); }
.premium-header h3 { color: var(--accent-gold); font-size: 1.8rem; }
.premium-subtext { color: var(--text-muted); font-size: 0.85rem; margin-top: 5px; }

/* 6-Image Spy Grid */
.spy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 30px; }

.spy-card {
    background: rgba(255, 255, 255, 0.02); border: 0.5px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px; padding: 0; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); text-align: center; backdrop-filter: blur(10px);
}
.spy-card:hover { background: rgba(255, 215, 0, 0.08); border-color: rgba(255, 215, 0, 0.6); transform: translateY(-8px); box-shadow: 0 16px 48px rgba(255, 215, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1); }

/* Enhanced Spy Image Placeholder */
.spy-img-box {
    width: 100%; height: 200px; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); border-radius: 8px 8px 0 0; margin-bottom: 0;
    display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 215, 0, 0.15); border-bottom: 0.5px solid rgba(255, 215, 0, 0.08);
    position: relative; overflow: hidden;
}

.spy-img-box img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 6px; transition: transform 0.3s ease, filter 0.3s ease; }
.spy-card:hover .spy-img-box img { transform: scale(1.02); filter: brightness(1.1) saturate(1.1); }
.spy-icon-overlay { font-size: 2.5rem; color: var(--accent-gold); opacity: 0.8; }
.spy-icon-overlay.alert { color: var(--alert-red); animation: pulse 1.5s infinite; }

.spy-card h4 { color: #fff; font-size: 1rem; margin: 12px 10px 5px 10px; font-weight: 700; }
.spy-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; padding: 0 10px 12px 10px; }

.premium-cta { text-align: center; }
.btn-gold-full {
    background: var(--accent-gold); color: #000; padding: 12px 40px; border-radius: 50px;
    font-weight: bold; box-shadow: 0 0 15px var(--accent-gold-glow); display: inline-block; width: 100%;
}
.btn-gold-full:hover { transform: scale(1.02); background: #ffe44d; }

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

/* --- Feasibility & Market Sections --- */

/* Feasibility Statistics Grid */
.feasibility-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(157, 78, 221, 0.08) 100%);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
}

.stat-card .stat-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.stat-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.05);
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid var(--glass-border);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    font-size: 0.7rem;
    font-weight: bold;
    color: #000;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.feasibility-wrapper { display: flex; flex-direction: column; gap: 30px; }

.feasibility-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    border-left: 4px solid #00d4ff;
    transition: all 0.3s ease;
}

.feasibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.1);
}

.feasibility-card .card-icon {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #00d4ff;
}

.feasibility-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.feasibility-card .card-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.feasibility-card.border-blue { border-left: 4px solid var(--primary-blue); }
.detail-list li { margin-bottom: 10px; list-style: none; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.detail-list li i { color: var(--primary-blue); font-size: 0.9rem; }
.detail-list li strong { color: var(--text-main); }

.api-box { background: #000; padding: 20px; border-radius: 8px; margin-top: 15px; font-family: monospace; border: 1px solid #333; }
.api-box code { color: var(--primary-blue); display: block; margin: 10px 0; }
.api-note { font-size: 0.8rem; color: #666; font-style: italic; }

.stat-row { display: flex; justify-content: space-around; margin-top: 20px; }
.stat { text-align: center; }
.stat .num { display: block; font-size: 2.5rem; font-weight: 800; color: var(--text-main); }
.stat .label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Market Statistics */
.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.market-stat {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(157, 78, 221, 0.08) 100%);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all 0.3s ease;
}

.market-stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.stat-name {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Market Tabs */
.market-tabs-container {
    margin-bottom: 50px;
}

.tabs-header {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--glass-border);
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    bottom: -2px;
}

.tab-btn:hover {
    color: var(--primary-blue);
}

.tab-btn.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

.tab-content {
    display: none;
    animation: fadeInScale 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-content.active {
    display: block;
}

.tab-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, #151520 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 12px 48px rgba(0, 212, 255, 0.1);
}

.tab-header-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.tab-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.tab-card > p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.segment-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature i {
    color: var(--primary-blue);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.feature div {
    line-height: 1.6;
}

.feature strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 3px;
}

.potential-box {
    background: rgba(0, 212, 255, 0.08);
    border-left: 4px solid var(--primary-blue);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.potential-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
}

.potential-badge.potential-critical {
    background: #ff6b6b;
    color: #fff;
}

.potential-badge.potential-enterprise {
    background: var(--accent-gold);
    color: #000;
}

.potential-box p {
    color: var(--text-muted);
    margin: 0;
}

.market-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 50px; }
.market-intro-box { background: rgba(0, 212, 255, 0.05); border-left: 4px solid var(--primary-blue); padding: 30px; border-radius: 10px; margin-bottom: 40px; }
.market-intro-box p { margin-bottom: 15px; line-height: 1.8; }
.market-card { background: linear-gradient(180deg, var(--bg-card) 0%, #151520 100%); padding: 30px; border-radius: 16px; border: 1px solid var(--glass-border); }
.market-card h3 { font-size: 1.3rem; margin-bottom: 15px; }
.market-card p { margin-bottom: 12px; line-height: 1.7; }
.market-icon { width: 50px; height: 50px; background: rgba(0, 212, 255, 0.1); color: var(--primary-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 20px; }

/* Market Closing Section */
.market-closing { background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%); padding: 50px; border-radius: 20px; border: 1px solid var(--glass-border); margin-top: 40px; }
.market-closing h3 { font-size: 2rem; text-align: center; margin-bottom: 40px; color: var(--primary-blue); }
.closing-points { display: grid; gap: 25px; margin-bottom: 40px; }
.point { display: flex; gap: 20px; align-items: flex-start; }
.point i { color: var(--primary-blue); font-size: 1.5rem; margin-top: 5px; flex-shrink: 0; }
.point div { line-height: 1.8; }
.point strong { color: var(--text-main); }
.final-cta { text-align: center; padding: 30px; background: rgba(255, 255, 255, 0.05); border-radius: 10px; border: 1px solid var(--glass-border); }
.final-cta p { font-size: 1.1rem; color: var(--text-main); }

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(157, 78, 221, 0.03) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 16px 40px rgba(0, 212, 255, 0.2);
}

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(157, 78, 221, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 3px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    font-size: 0.95rem;
    flex: 1;
    margin: 0;
}

/* Testimonials Summary Stats */
.testimonials-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(157, 78, 221, 0.08) 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.summary-stat {
    padding: 20px;
}

.summary-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.summary-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === SECURITY AUDIT SECTION === */
.security-audit-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 212, 255, 0.03) 100%);
}

.audit-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.audit-badge {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.08);
}

.audit-badge:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 16px 48px rgba(255, 215, 0, 0.15);
}

.badge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.audit-badge:hover .badge-icon {
    transform: scale(1.1);
}

.badge-icon.audit-verified {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.badge-icon.audit-compliant {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.1) 100%);
    color: #4caf50;
    border: 2px solid #4caf50;
}

.badge-icon.audit-open {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2) 0%, rgba(157, 78, 221, 0.1) 100%);
    color: #9d4edd;
    border: 2px solid #9d4edd;
}

.badge-icon.audit-zero {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    color: #ffd700;
    border: 2px solid #ffd700;
}

.audit-badge h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.badge-status {
    font-size: 0.95rem;
    color: #4caf50;
    font-weight: 700;
    margin-bottom: 12px;
    margin: 0 0 12px 0;
}

.badge-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
    margin: 0 0 15px 0;
}

.audit-details {
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
}

.audit-date {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Audit Roadmap */
.audit-roadmap {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(157, 78, 221, 0.08) 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    margin-bottom: 40px;
}

.audit-roadmap h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.roadmap-items {
    display: grid;
    gap: 20px;
}

.roadmap-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.roadmap-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-blue);
}

.roadmap-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.roadmap-status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.roadmap-status.completed {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.roadmap-content h4 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.roadmap-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 8px 0;
}

.roadmap-timeline {
    display: block;
    font-size: 0.8rem;
    color: var(--primary-blue);
    font-weight: 600;
}

/* Audit Trust Box */
.audit-trust-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--glass-border);
    text-align: center;
}

.audit-trust-box i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.audit-trust-box p {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 20px;
}

.trust-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Comparison Intro */
.comparison-intro { background: rgba(157, 78, 221, 0.1); border-radius: 10px; padding: 25px; margin-bottom: 30px; text-align: center; }
.comparison-intro p { color: var(--text-muted); font-size: 1rem; }

/* Tier Intro */
.tier-intro { background: rgba(0, 212, 255, 0.05); padding: 15px; border-radius: 8px; margin-bottom: 20px; }
.tier-intro p { font-size: 0.9rem; line-height: 1.6; color: var(--text-muted); margin-bottom: 8px; }

/* Feature List Section */
.feature-list-section { margin-top: 20px; }
.section-label { font-weight: bold; color: var(--primary-blue); margin-bottom: 10px; display: block; }

/* Premium Intro */
.premium-intro { background: rgba(255, 215, 0, 0.05); padding: 15px; border-radius: 8px; margin-bottom: 20px; border-left: 3px solid var(--accent-gold); }
.premium-intro p { color: var(--text-muted); font-size: 0.9rem; }

/* Premium Details */
.premium-details { background: rgba(255, 215, 0, 0.02); padding: 20px; border-radius: 8px; margin-bottom: 20px; }
.premium-features { margin-left: 0; }
.premium-features li { margin-bottom: 10px; display: flex; gap: 10px; color: var(--text-muted); font-size: 0.85rem; }
.premium-features i { color: var(--accent-gold); margin-top: 3px; }

/* Gallery Content Styling */
.gallery-content { flex: 1; }
.gallery-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; margin-top: 3px; }

/* --- Revenue Streams Section --- */
.revenue-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.revenue-card { background: linear-gradient(180deg, #0f0f16 0%, rgba(0, 212, 255, 0.05) 100%); padding: 30px; border-radius: 16px; border: 1px solid rgba(0, 212, 255, 0.2); transition: 0.3s; }
.revenue-card:hover { border-color: var(--primary-blue); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1); }
.revenue-icon { width: 60px; height: 60px; background: rgba(0, 212, 255, 0.1); color: var(--primary-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.revenue-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--primary-blue); }
.revenue-subtitle { font-size: 0.85rem; color: var(--accent-gold); font-weight: bold; margin-bottom: 12px; }
.revenue-highlight { background: rgba(255, 255, 255, 0.03); padding: 15px; border-radius: 8px; margin-top: 15px; border-left: 3px solid var(--primary-blue); }
.revenue-highlight p { margin-bottom: 8px; font-size: 0.9rem; display: flex; gap: 10px; }
.revenue-highlight i { color: var(--primary-blue); font-size: 0.8rem; margin-top: 3px; }

/* Tech Highlight Box */
.tech-highlight { background: rgba(0, 212, 255, 0.05); padding: 15px; border-radius: 8px; margin-top: 15px; border-left: 3px solid var(--primary-blue); }
.tech-highlight p { margin-bottom: 10px; }

/* Market Grid Enhancement */
footer { 
    padding: 60px 0; 
    text-align: center; 
    background: linear-gradient(135deg, #000000 0%, #0a0a0f 50%, #000000 100%); 
    margin-top: 80px; 
    border-top: 2px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: -50%; right: -50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    animation: footerGlow 3s ease-in-out infinite alternate;
}

@keyframes footerGlow {
    0% { opacity: 0.3; transform: translateX(-100%); }
    100% { opacity: 1; transform: translateX(100%); }
}

footer .container {
    position: relative;
    z-index: 2;
}

footer p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

footer p:hover {
    color: var(--primary-blue);
}

.footer-quote { 
    color: rgba(255, 255, 255, 0.7); 
    font-style: italic; 
    margin-top: 15px; 
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.footer-quote::before {
    content: '"';
    position: absolute;
    top: -10px; left: 10px;
    font-size: 4rem;
    color: var(--primary-blue);
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* --- Animations --- */
.scroll-reveal { 
    opacity: 0; 
    transform: translateY(30px) scale(0.98); 
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); 
}

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

.scroll-reveal:nth-child(2) {
    transition-delay: 0.05s;
}

.scroll-reveal:nth-child(3) {
    transition-delay: 0.1s;
}

.scroll-reveal:nth-child(4) {
    transition-delay: 0.15s;
}

.fade-in { 
    /* Removed animation to prevent content disappearing */
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

@keyframes fadeIn { 
    from { 
        opacity: 0; 
        transform: translateY(15px) scale(0.98); 
    } 
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    } 
}

/* Stagger animations for grids */
.tech-grid .scroll-reveal:nth-child(1) { transition-delay: 0s; }
.tech-grid .scroll-reveal:nth-child(2) { transition-delay: 0.05s; }
.tech-grid .scroll-reveal:nth-child(3) { transition-delay: 0.1s; }
.tech-grid .scroll-reveal:nth-child(4) { transition-delay: 0.15s; }

/* Section entrance animations */
@keyframes sectionSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    animation: sectionSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1);
}



/* Enhanced Mobile Responsiveness */
@media (max-width: 1200px) {
    .hero h1 { font-size: 3.2rem; }
    .tech-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
}

@media (max-width: 900px) {
    .business-layout { grid-template-columns: 1fr; gap: 30px; }
    .hero { height: 80vh; padding: 0 20px; }
    .hero h1 { font-size: 2.8rem; line-height: 1.2; }
    .hero p { font-size: 1.2rem; }
    .navbar { padding: 15px 4%; }
    .nav-links { display: none; }
    .spy-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .revenue-grid { grid-template-columns: 1fr; }
    .market-grid { grid-template-columns: 1fr; }
    .gallery-img-box { height: 220px; }
    .spy-img-box { height: 180px; }
    .tech-card { padding: 30px 25px; }
    .cta-group { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 280px; }
    .container { padding: 0 15px; }
}

@media (max-width: 600px) {
    .hero { height: 75vh; }
    .hero h1 { font-size: 2.2rem; letter-spacing: -1px; }
    .hero p { font-size: 1.1rem; }
    .hero-badges { gap: 12px; }
    .hero-badges span { padding: 8px 16px; font-size: 0.85rem; }
    .spy-grid { grid-template-columns: 1fr; gap: 20px; }
    .stat-row { flex-direction: column; gap: 20px; }
    .revenue-card { padding: 25px 20px; }
    .market-card { padding: 25px 20px; }
    .market-closing { padding: 30px 20px; }
    .closing-points { gap: 20px; }
    .gallery-img-box { height: 200px; }
    .spy-img-box { height: 160px; }
    .placeholder-icon { font-size: 2.2rem; }
    .spy-icon-overlay { font-size: 1.8rem; }
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 0.95rem; }
    .tech-icon { font-size: 2.8rem; }
    .btn-primary, .btn-secondary { 
        width: 100%; 
        padding: 14px 30px;
        font-size: 1rem;
    }
    .navbar { padding: 12px 4%; }
    .logo { font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 1rem; }
    .hero-badges { flex-direction: column; align-items: center; }
    .hero-badges span { width: 200px; text-align: center; }
    .tech-card { padding: 25px 20px; }
    .tech-icon { font-size: 2.5rem; }
    .gallery-img-box { height: 180px; }
    .spy-img-box { height: 140px; }
}

/* Touch-friendly hover states for mobile */
@media (hover: none) {
    .tech-card:active {
        transform: translateY(-5px);
        border-color: var(--primary-blue);
    }
    .btn-primary:active {
        transform: translateY(-2px);
    }
    .hero-badges span:active {
        border-color: var(--primary-blue);
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2) {
    .hero h1 {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* HERO CONTENT STABILITY - NEVER DISAPPEAR */
.hero-content,
.hero-content * {
    opacity: 1 !important;
    visibility: visible !important;
    animation-duration: 0s !important;
    transition: none !important;
    transform: none !important;
}

.hero-content h1 {
    animation: gradientShift 8s ease infinite !important;
}

.hero {
    min-height: 90vh !important;
}


/* --- Lightbox Modal --- */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active { display: flex; }

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--primary-blue);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2001;
}

.lightbox-close:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    pointer-events: none;
}

.lightbox-prev, .lightbox-next {
    background: rgba(0, 212, 255, 0.15);
    border: 0.5px solid rgba(0, 212, 255, 0.3);
    color: var(--primary-blue);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 212, 255, 0.15);
    border: 0.5px solid rgba(0, 212, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- Navbar Brand with Logo --- */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.logo-image:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    transform: scale(1.05);
}

/* Clickable images for lightbox */
.gallery-img-box img, .spy-img-box img {
    cursor: pointer;
}

/* --- Progress Bar --- */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple), var(--accent-gold));
    background-size: 200% 100%;
    animation: slideProgress 0.5s ease-out;
    z-index: 1001;
}

@keyframes slideProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* --- Feature Comparison Toggle --- */
.comparison-toggle-section {
    margin: 40px 0;
}

.toggle-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.toggle-btn {
    padding: 12px 30px;
    border: 0.5px solid rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
    color: var(--primary-blue);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Outfit', sans-serif;
}

.toggle-btn:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.toggle-btn.active {
    background: var(--primary-blue);
    color: #000;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

.comparison-view {
    display: none;
    animation: fadeInScale 0.4s ease;
}

.comparison-view.active {
    display: block;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.comparison-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.comparison-header h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: rgba(0, 212, 255, 0.05);
    border: 0.5px solid rgba(0, 212, 255, 0.2);
    padding: 16px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.feature-item.premium {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
}

.feature-item.premium:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
}

.feature-item.premium i {
    color: var(--accent-gold);
}

.feature-item.disabled {
    opacity: 0.6;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
}

.feature-item.disabled i {
    color: #666;
}

.comparison-cta {
    display: block;
    width: 100%;
    padding: 14px;
    margin-top: 30px;
    text-align: center;
    background: var(--primary-blue);
    color: #000;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.comparison-cta.premium {
    background: var(--accent-gold);
}

.comparison-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.3);
}

.comparison-cta.premium:hover {
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 0.5px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: rgba(0, 212, 255, 0.1);
}

.comparison-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--primary-blue);
    border-bottom: 0.5px solid rgba(0, 212, 255, 0.2);
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 0.5px solid rgba(0, 212, 255, 0.1);
    text-align: left;
}

.comparison-table tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

/* --- Security Badges Section --- */
.security-section {
    background: rgba(0, 212, 255, 0.02);
}

.security-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.security-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 0.5px solid rgba(0, 212, 255, 0.2);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.security-badge:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 212, 255, 0.15);
}

.badge-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.security-badge:hover .badge-icon {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.security-badge h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.security-badge p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- FAQ Section --- */
.faq-section {
    background: rgba(157, 78, 221, 0.02);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 0.5px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    user-select: none;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.3s ease;
    background: rgba(0, 212, 255, 0.02);
}

.faq-item:hover .faq-question {
    background: rgba(0, 212, 255, 0.08);
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.faq-answer strong {
    color: var(--primary-blue);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .toggle-buttons { gap: 10px; }
    .toggle-btn { padding: 10px 20px; font-size: 0.9rem; }
    .security-badges-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
    .comparison-table { font-size: 0.9rem; }
    .comparison-table th, .comparison-table td { padding: 10px 12px; }
}

@media (max-width: 600px) {
    .toggle-buttons { flex-direction: column; }
    .toggle-btn { width: 100%; }
    .feature-grid { grid-template-columns: 1fr; }
    .security-badges-grid { grid-template-columns: 1fr; }
    .faq-question { padding: 15px; font-size: 0.95rem; }
    .faq-answer p { padding: 0 15px 15px 15px; }
}