/*
 * ============================================================
 * SITE-STYLE.CSS - SAFE TO EDIT
 * ============================================================
 * This file contains all site styling (colors, typography,
 * components, layouts, etc.)
 * 
 * Parallax effects are in parallax-core.css - DO NOT EDIT THAT FILE
 * ============================================================
 */

/* ==================== CSS VARIABLES ==================== */
:root {
    --primary: #2196F3;
    --primary-dark: #1565C0;
    --primary-light: #BBDEFB;
    --accent: #FF6B35;
    --accent-light: #FFE4DB;
    --navy: #1A1F3C;
    --navy-light: #252B4A;
    --green: #4CAF50;
    --green-light: #E8F5E9;
    --purple: #7C4DFF;
    --gray-50: #FAFBFC;
    --gray-100: #F5F6F8;
    --gray-200: #E8EAED;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #6B7280;
    --gray-800: #374151;
    --gray-900: #1F2937;
    --white: #FFFFFF;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy);
    color: var(--gray-800);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

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

/* ==================== NAVIGATION ==================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(26, 31, 60, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.logo-text span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover { color: white; }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: #E55A2B; transform: translateY(-3px); }
.btn-white { background: white; color: var(--navy); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(255,255,255,0.3); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.3); color: white; }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-green { background: var(--green); color: white; }

/* ==================== PHONE MOCKUP ==================== */
.phone-mockup {
    position: relative;
    width: 280px;
    height: 580px;
    background: #1a1a1a;
    border-radius: 44px;
    padding: 10px;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 26px;
    background: #1a1a1a;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 36px;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.phone-mockup.small {
    width: 240px;
    height: 500px;
    border-radius: 40px;
}

.phone-mockup.small::before {
    width: 65px;
    height: 22px;
    top: 12px;
}

.phone-mockup.small .phone-screen {
    border-radius: 32px;
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 70px;
}

.section-label {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.section-title {
    font-size: 52px;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 19px;
    color: var(--gray-600);
}

/* ==================== SECTION 1: HERO ==================== */
#hero {
    background: linear-gradient(135deg, var(--navy) 0%, #0f1225 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 64px;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-tagline {
    font-size: 24px;
    color: var(--primary-light);
    margin-bottom: 20px;
    font-weight: 500;
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-hand-container {
    position: relative;
    width: 100%;
    max-width: 821px;
    margin-left: auto;
    margin-right: -100px;
}

.hero-hand-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-screen-overlay {
    position: absolute;
    top: 3.4%;
    left: 14.3%;
    width: 39.0%;
    height: 66.4%;
    border-radius: 20px;
    overflow: hidden;
}

.hero-screen-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-phones {
    position: relative;
    display: flex;
}

.hero-phones .phone-mockup:nth-child(1) {
    transform: rotate(-8deg) translateX(40px);
    z-index: 1;
}

.hero-phones .phone-mockup:nth-child(2) {
    transform: rotate(6deg) translateX(-40px);
    z-index: 2;
}

.float-badge {
    position: absolute;
    background: white;
    padding: 14px 24px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
    z-index: 10;
}

.float-badge .material-icons-round { font-size: 24px; }
.float-badge.green { color: var(--green); }
.float-badge.blue { color: var(--primary); }

/* ==================== SECTION 2: FEATURES ==================== */
#features {
    background: var(--gray-50);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 34px;
}

.feature-icon.blue { background: var(--primary-light); color: var(--primary); }
.feature-icon.green { background: var(--green-light); color: var(--green); }
.feature-icon.orange { background: var(--accent-light); color: var(--accent); }
.feature-icon.purple { background: #EDE9FE; color: var(--purple); }

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--gray-900);
}

.feature-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ==================== SECTION 3: HOW IT WORKS ==================== */
#how-it-works {
    background: white;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-item {
    display: flex;
    gap: 24px;
    padding: 28px;
    border-radius: 20px;
    background: var(--gray-50);
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-item:hover {
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateX(10px);
}

.step-item.active {
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    transform: translateX(10px);
    border-left: 4px solid var(--primary);
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    flex-shrink: 0;
}

.step-item:nth-child(1) .step-number { background: var(--green-light); color: var(--green); }
.step-item:nth-child(2) .step-number { background: var(--primary-light); color: var(--primary); }
.step-item:nth-child(3) .step-number { background: var(--accent-light); color: var(--accent); }
.step-item:nth-child(4) .step-number { background: #EDE9FE; color: var(--purple); }

.step-content h3 {
    font-size: 21px;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.step-content p {
    font-size: 15px;
    color: var(--gray-600);
}

.steps-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.steps-visual .phone-mockup {
    width: 320px;
    height: 660px;
}

/* ==================== SECTION 4: SHOWCASE ==================== */
#showcase {
    background: linear-gradient(180deg, var(--navy) 0%, #0d1020 100%);
}

#showcase .section-title { color: white; }
#showcase .section-subtitle { color: var(--gray-400); }

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

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

.showcase-item .phone-mockup {
    margin: 0 auto 30px;
}

.showcase-item h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 12px;
}

.showcase-item p {
    font-size: 16px;
    color: var(--gray-400);
}

/* ==================== SECTION 5: PRICING ==================== */
#pricing {
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1050px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 28px;
    padding: 48px 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    background: var(--navy);
    color: white;
    transform: scale(1.08);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-card.featured .pricing-header {
    border-bottom-color: rgba(255,255,255,0.15);
}

.pricing-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-currency { font-size: 28px; font-weight: 600; }
.pricing-amount { font-size: 64px; font-weight: 800; line-height: 1; }
.pricing-period { font-size: 16px; color: var(--gray-500); margin-top: 10px; }
.pricing-card.featured .pricing-period { color: var(--gray-400); }

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-size: 15px;
    color: var(--gray-600);
}

.pricing-card.featured .pricing-features li { color: var(--gray-300); }
.pricing-features li .material-icons-round { font-size: 22px; color: var(--green); }
.pricing-card .btn { width: 100%; justify-content: center; padding: 18px; }

/* ==================== SECTION 6: DOWNLOAD CTA ==================== */
#download {
    background: linear-gradient(135deg, var(--navy) 0%, #0f1225 100%);
}

.cta-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 60px;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 22px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 50px;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    color: var(--gray-900);
    padding: 18px 36px;
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.store-btn svg { width: 36px; height: 36px; }
.store-btn .store-text { text-align: left; }
.store-btn .small { font-size: 12px; color: var(--gray-500); display: block; }
.store-btn .large { font-size: 22px; font-weight: 700; display: block; }

/* ==================== FOOTER ==================== */
.footer-mini {
    margin-top: 80px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-mini a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin: 0 15px;
}

.footer-mini a:hover { color: white; }

/* ==================== MODALS ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--white);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.modal-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 40px 32px 32px;
    text-align: center;
}

.modal-icon {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 16px;
}

.modal-header h2 {
    color: var(--white);
    font-size: 28px;
    margin: 0;
}

.modal-content {
    padding: 32px;
    overflow-y: auto;
    max-height: calc(85vh - 160px);
}

.modal-content h3 {
    font-size: 18px;
    color: var(--gray-900);
    margin: 24px 0 12px;
}

.modal-content h3:first-of-type {
    margin-top: 16px;
}

.modal-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 12px;
}

.modal-content p strong {
    color: var(--gray-800);
}

/* Contact Modal Specific */
.contact-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.contact-item:hover {
    background: var(--gray-100);
}

.contact-item > .material-icons-round {
    font-size: 32px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item h3 {
    margin: 0 0 4px;
    font-size: 17px;
}

.contact-item p {
    margin: 0 0 8px;
    font-size: 14px;
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .showcase-grid .showcase-item:last-child { grid-column: span 2; justify-self: center; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .hero-content h1 { font-size: 42px; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; }
    .hero-stats { justify-content: center; flex-wrap: wrap; gap: 30px; }
    
    .hero-phones .phone-mockup {
        width: 160px;
        height: 340px;
        border-radius: 28px;
        padding: 6px;
    }
    .hero-phones .phone-mockup::before { width: 40px; height: 12px; top: 8px; }
    .hero-phones .phone-mockup .phone-screen { border-radius: 24px; }
    .hero-phones .phone-mockup:nth-child(1) { transform: rotate(-6deg) translateX(20px); }
    .hero-phones .phone-mockup:nth-child(2) { transform: rotate(4deg) translateX(-20px); }
    
    .hero-hand-container {
        max-width: 350px;
    }
    
    .hero-screen-overlay {
        border-radius: 12px;
    }
    
    .section-title { font-size: 36px; }
    .features-grid { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr; gap: 50px; }
    .steps-visual { order: -1; }
    .steps-visual .phone-mockup { width: 240px; height: 500px; }
    
    .showcase-grid { grid-template-columns: 1fr; }
    .showcase-grid .showcase-item:last-child { grid-column: auto; }
    .phone-mockup.small { width: 200px; height: 420px; }
    
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-10px); }
    
    .cta-content h2 { font-size: 38px; }
    .cta-content p { font-size: 18px; }
}
