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

:root {
    --primary-blue: #022a52;
    --secondary-blue: #0b4588;
    --text-color: #ffffff;
    --accent-color: #ff9900;
    --icon-bg: #1a63b8;
    --card-bg: rgba(255, 255, 255, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, var(--secondary-blue), var(--primary-blue));
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--secondary-blue);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

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

.logo { display: flex; align-items: center; text-decoration: none; color: var(--text-color); }
.logo img { height: 45px; margin-right: 10px; }
.logo span { font-size: 1.5rem; font-weight: 600; }
.hamburger-menu { font-size: 1.8rem; cursor: pointer; }
.mobile-nav { display: none; position: absolute; top: 75px; left: 0; width: 100%; background: var(--primary-blue); flex-direction: column; padding: 20px 0; text-align: center; }
.mobile-nav.active { display: flex; }
.mobile-nav a { color: var(--text-color); text-decoration: none; padding: 15px; font-size: 1.2rem; transition: background 0.3s; }
.mobile-nav a:hover { background: var(--secondary-blue); }

.section-title, .section-title-alt { text-align: center; font-size: 2.2rem; font-weight: 600; margin-bottom: 20px; position: relative; padding-bottom: 15px; }
.section-title::after { content: '◆◆◆'; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); font-size: 0.8rem; color: var(--text-color); letter-spacing: 5px; }
.section-title-alt { color: var(--text-color); }
.section-title-alt::after { color: var(--accent-color); }
.section-subtitle { text-align: center; max-width: 600px; margin: 0 auto 50px auto; font-size: 1.1rem; color: rgba(255, 255, 255, 0.8); }

.hero { padding: 60px 0 20px 0; text-align: center; }
.hero-content h1 { font-size: 3rem; font-weight: 700; margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; max-width: 600px; margin: 0 auto 30px auto; }
.btn-outline { display: inline-block; padding: 12px 30px; border: 2px solid var(--text-color); border-radius: 50px; color: var(--text-color); text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
.btn-outline:hover { background: var(--text-color); color: var(--primary-blue); }

/* === NAYA SLIDER CSS === */
.screenshot-slider-section {
    padding: 60px 0;
}
.phone-mockup {
    width: 320px;
    height: 640px;
    background: #111;
    border-radius: 40px;
    border: 5px solid #444;
    padding: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    margin: 0 auto;
    position: relative;
}
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    background: #000;
    border-radius: 10px;
    z-index: 2;
}
.slider-window {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
}
.slider-track {
    display: flex;
    width: 600%; /* 100% * 6 images */
    height: 100%;
    animation: slide 24s linear infinite;
}
.slider-track img {
    width: 16.666%; /* 100 / 6 */
    height: 100%;
    object-fit: cover;
}

@keyframes slide {
    0%, 14% { transform: translateX(0%); }
    16.66%, 30% { transform: translateX(-16.666%); }
    33.33%, 47% { transform: translateX(-33.333%); }
    50%, 64% { transform: translateX(-50%); }
    66.66%, 81% { transform: translateX(-66.666%); }
    83.33%, 98% { transform: translateX(-83.333%); }
    100% { transform: translateX(0%); }
}
/* === END SLIDER CSS === */

.about-section { padding: 80px 0; background: #fff; color: #333; }
.about-section .section-title, .about-section .section-subtitle { color: #333; }
.about-section .section-title::after { color: var(--primary-blue); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 50px; }
.feature-card { text-align: center; }
.icon-wrapper { background: var(--icon-bg); color: white; width: 80px; height: 80px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2.5rem; margin: 0 auto 20px auto; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--primary-blue); }

.more-features { padding: 80px 0; }
.feature-list-item { display: flex; align-items: center; margin-bottom: 40px; background: var(--card-bg); padding: 20px; border-radius: 10px; }
.ad-icon { flex-shrink: 0; width: 60px; height: 60px; border: 2px dotted rgba(255,255,255,0.5); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: 600; margin-right: 25px; }
.feature-text h3 { font-size: 1.4rem; margin-bottom: 5px; }
.feature-text p { color: rgba(255, 255, 255, 0.8); }

.stats-section { padding: 80px 0; background: var(--card-bg); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; text-align: center; margin-top: 50px; }
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-icon { width: 90px; height: 90px; border-radius: 50%; background: var(--icon-bg); display: flex; justify-content: center; align-items: center; font-size: 2.5rem; margin-bottom: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.stat-number { font-size: 2.5rem; font-weight: 700; }
.stat-label { font-size: 1.1rem; color: rgba(255, 255, 255, 0.8); }

.testimonials-section { padding: 80px 0; background: #fff; color: #333; }
.testimonials-section .section-title { color: #333; }
.testimonials-section .section-title::after { color: var(--primary-blue); }
.testimonial-content { text-align: center; font-size: 1.5rem; font-weight: 600; margin: 40px 0; color: var(--primary-blue); }
.slider-dots { text-align: center; }
.dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: #ccc; margin: 0 5px; cursor: pointer; }
.dot.active { background: var(--secondary-blue); }

.download-section { padding: 80px 0; text-align: center; background-image: url('https://www.toptal.com/designers/subtlepatterns/uploads/wheat.png'); background-size: cover; background-position: center; }
.download-section p { max-width: 500px; margin: 0 auto 40px auto; font-size: 1.1rem; }
.btn-download { display: inline-flex; align-items: center; background: var(--text-color); color: #333; padding: 15px 30px; border-radius: 10px; text-decoration: none; transition: all 0.3s ease; }
.btn-download:hover { background: var(--accent-color); color: white; transform: translateY(-5px); }
.btn-download i { font-size: 2.5rem; margin-right: 15px; }
.btn-download span { text-align: left; line-height: 1.2; }
.btn-download strong { font-size: 1.2rem; }

.scroll-to-top { position: fixed; bottom: 20px; right: 20px; width: 50px; height: 50px; background: var(--accent-color); color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; text-decoration: none; opacity: 0; visibility: hidden; transition: all 0.4s ease; z-index: 100; }
.scroll-to-top.visible { opacity: 1; visibility: visible; }