:root {
    --primary: #3F7EFF;
    --primary-dark: #2A66E3;
    --bg-soft: #F9F9FB;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --white: #ffffff;
    --radius-pill: 99px;
    --radius-card: 28px;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-soft);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}

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

.btn-pill {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-weight: 700 !important;
}

/* Hero Section */
.hero {
    padding: 160px 0 60px;
    text-align: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-main);
}

.text-primary {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.btn-primary-pill {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: var(--radius-pill);
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(63, 126, 255, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(63, 126, 255, 0.3);
}

.trust-badge {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Gallery / Auto Carousel */
.gallery {
    padding: 40px 0 100px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: #1A1A1A;
    border-radius: 40px;
    padding: 12px;
    border: 8px solid #222;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-soft);
    padding: 40px;
    border-radius: var(--radius-card);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--bg-soft);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 30px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 40px; }
    .feature-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero { padding: 120px 0 40px; }
    .phone-mockup { width: 220px; height: 450px; }
}
