
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
html { scroll-behavior: smooth; }
body { background-color: #f8f9fc; color: #1a1a1a; overflow-x: hidden; }

.navbar {
    display: flex; justify-content: center; height: 90px; width: 100%;
    position: fixed; top: 0; left: 0; z-index: 1000; transition: all 0.3s ease;
}
.navbar.navbar-solid {
    background: rgba(15, 5, 24, 0.95); backdrop-filter: blur(12px);
    height: 80px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar.navbar-hidden {
    transform: translateY(-100%);
}
.navbarboks {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; max-width: 1200px; padding: 0 2rem;
}
.navbarlogo { font-size: 1.8rem; font-weight: 800; color: white; text-decoration: none; }
.navbarmenu { display: flex; align-items: center; gap: 2rem; list-style: none; }
.link { color: rgba(255,255,255,0.8); text-decoration: none; font-weight: 500; transition: color 0.3s; }
.link:hover { color: white; }

.opretbtn {
    background: linear-gradient(135deg, #6C63FF, #4834d4); color: white;
    padding: 12px 28px; border-radius: 50px; text-decoration: none; font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}
.opretbtn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(108, 99, 255, 0.5); }

.navbarknap {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}
.bar {
    display: block; width: 25px; height: 3px; margin: 5px auto;
    transition: all 0.3s ease-in-out; background-color: white;
}

.hero-background {
    position: relative; height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(to bottom, rgba(15,5,24,0.7), #0f0518), 
                url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?q=80&w=2070&auto=format&fit=crop');
    background-size: cover; background-position: center; background-attachment: fixed;
    text-align: center; color: white;
}
.hero-container { max-width: 900px; padding: 2rem; margin-top: 40px; }
.hero-container h1 { font-size: 4.2rem; line-height: 1.1; font-weight: 800; margin-bottom: 1.5rem; }
.hero-container p { font-size: 1.3rem; color: rgba(255,255,255,0.9); margin-bottom: 2.5rem; line-height: 1.6; max-width: 700px; margin-left: auto; margin-right: auto; }

.highlight { 
    background: linear-gradient(135deg, #FF9E00, #FFD60A); 
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
}
.badge-pill {
    display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; color: #FFD60A;
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; }
.hero-btn-primary { font-size: 1.1rem; padding: 18px 45px; }
.hero-btn-outline {
    padding: 18px 45px; border-radius: 50px; border: 2px solid rgba(255,255,255,0.3);
    color: white; text-decoration: none; font-weight: 600; transition: 0.3s;
    background: rgba(255,255,255,0.05); backdrop-filter: blur(5px);
}
.hero-btn-outline:hover { background: white; color: #0f0518; border-color: white; }

.trust-text {
    margin-top: 20px;
    font-size: 0.9rem !important; 
    color: rgba(255,255,255,0.6) !important;
    display: block;
}

.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    opacity: 0.8; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-text {
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.7);
}
.mouse {
    width: 26px; height: 40px; border: 2px solid white; border-radius: 20px; position: relative;
}
.mouse::before {
    content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 8px; background: white; border-radius: 2px;
    animation: scrollMouse 1.5s infinite;
}
@keyframes scrollMouse { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 20px; } }

.stats-bar {
    background: #0f0518; color: white; display: flex; justify-content: center; gap: 80px;
    padding: 40px 20px; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2.5rem; font-weight: 700; color: #6C63FF; }
.stat-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: #aaa; }

.feature-section { padding: 100px 20px; max-width: 1200px; margin: 0 auto; }
.feature-row { display: flex; align-items: center; justify-content: space-between; gap: 80px; margin-bottom: 150px; }
.feature-row.reverse { flex-direction: row-reverse; }
.text-col { flex: 1; max-width: 500px; }
.image-col { flex: 1; position: relative; }

.feature-icon { font-size: 3rem; margin-bottom: 20px; }
.text-col h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px; color: #0f0518; }
.text-col p { font-size: 1.1rem; line-height: 1.6; color: #555; margin-bottom: 20px; }

.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 12px; font-weight: 500; color: #333; display: flex; align-items: center; gap: 10px; }
.check-list li::before { content: '✓'; color: #6C63FF; font-weight: 800; }
.text-link { color: #6C63FF; font-weight: 600; text-decoration: none; font-size: 1.1rem; }
.text-link:hover { text-decoration: underline; }

.app-screenshot {
    width: 100%; height: auto; border-radius: 20px;
    box-shadow: 0 20px 60px -10px rgba(0,0,0,0.15); transition: transform 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.shadow-right { box-shadow: 20px 20px 60px -10px rgba(108, 99, 255, 0.15); }
.shadow-left { box-shadow: -20px 20px 60px -10px rgba(108, 99, 255, 0.15); }
.image-col:hover .app-screenshot {
    transform: translateY(-10px) scale(1.02);
}

.benefits-section { background: white; padding: 100px 20px; text-align: center; }
.section-header { max-width: 600px; margin: 0 auto 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; color: #0f0518; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; }
.benefit-card { padding: 40px; border-radius: 20px; background: #f8f9fc; transition: transform 0.3s; }
.benefit-card:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.icon-box { font-size: 2.5rem; margin-bottom: 20px; }
.benefit-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: #0f0518; }
.benefit-card p { color: #667; }

.final-cta { padding: 50px 20px 100px; text-align: center; }
.cta-background {
    background: #0f0518; color: white; padding: 80px 20px; border-radius: 30px;
    max-width: 1100px; margin: 0 auto;
    background-image: radial-gradient(circle at top right, #392b58, #0f0518);
}
.cta-background h2 { font-size: 2.5rem; margin-bottom: 15px; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }
.cta-btn-white { background: white; color: #0f0518; padding: 15px 35px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: 0.3s; }
.cta-btn-white:hover { transform: scale(1.05); }
.cta-btn-trans { border: 2px solid rgba(255,255,255,0.3); color: white; padding: 15px 35px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: 0.3s; }
.cta-btn-trans:hover { background: rgba(255,255,255,0.1); border-color: white; }

.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.fade-in-up { animation: fadeInUp 1s ease-out; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.footer { background: #0f0518; color: white; padding: 4rem 2rem; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-logo { font-size: 1.8rem; font-weight: 700; margin-bottom: 1.5rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; }
.copyright { color: rgba(255,255,255,0.4); font-size: 0.9rem; }

@media (max-width: 900px) {
    .hero-container h1 { font-size: 2.5rem; }
    .stats-bar { flex-direction: column; gap: 30px; }
    .feature-row { flex-direction: column; gap: 40px; text-align: center; margin-bottom: 80px; }
    .feature-row.reverse { flex-direction: column; } 
    .text-col h2 { font-size: 2rem; }
    .check-list li { justify-content: center; }

    .navbarknap { display: block; }
    .navbarmenu {
        position: fixed; left: -100%; top: 0; flex-direction: column; justify-content: flex-start;
        background-color: #0f0518; width: 100%; height: 100vh; text-align: center;
        transition: 0.3s ease-in-out; padding-top: 110px; gap: 0; display: flex; 
    }
    .navbarmenu.active { left: 0; }
    .navbarmenu li { width: 100%; margin: 0; }
    .link { display: block; width: 100%; padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); font-size: 1.1rem; }

    .hero-buttons { flex-direction: column; width: 100%; gap: 15px; }
    .hero-btn-primary, .hero-btn-outline { width: 100%; display: block; text-align: center; }
    
    .cta-buttons { flex-direction: column; gap: 15px; }
    .footer-links { flex-direction: column; gap: 1rem; }
}

.navbarknap.active .bar:nth-child(2) { opacity: 0; }
.navbarknap.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbarknap.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


.image-col.image-crossfade {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    overflow: visible;

    align-items: center; 
    justify-items: center;
}

.image-crossfade .fade-image {
    grid-column: 1;
    grid-row: 1;
    
    width: 100%;
    height: auto;
    
    opacity: 0;
    border-radius: 20px;

    transition: opacity 1s ease-in-out, transform 0.4s ease;
}

.image-crossfade .fade-image.active {
    opacity: 1;
    z-index: 1;
}



.image-col.side-by-side {
    display: flex;
    gap: 15px; 
    align-items: center; 
    justify-content: center;
}

.image-col.side-by-side img {
    width: calc(50% - 10px); 
    height: auto;
    border-radius: 20px;

    transition: transform 0.4s ease; 
    
    object-fit: contain; 
}

.image-col.side-by-side img:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 2; 
}

@media (max-width: 900px) {
    .image-col.side-by-side {
        flex-direction: column; 
        gap: 20px;
    }
    
    .image-col.side-by-side img {
        width: 100%; 
        max-width: 400px; 
    }
}


.dual-text-row {
    display: flex;
    gap: 30px;
    margin-top: -60px;
    margin-bottom: -50px;
    align-items: stretch;
}

.dual-text-col {
    flex: 1;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dual-text-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
    .dual-text-row {
        flex-direction: column;
        gap: 20px;
        margin-top: 0;
    }

    .dual-text-col {
        text-align: center;
        padding: 40px 30px;
    }

    .dual-text-col .check-list li {
        justify-content: center;
    }
}