:root {
    --color-bg: #0A1320; /* Darker Navy to match logo */
    --color-surface: rgba(255, 255, 255, 0.03);
    --color-surface-hover: rgba(255, 255, 255, 0.08);
    --color-primary: #4285F4; /* Logo Blue */
    --color-primary-glow: rgba(66, 133, 244, 0.5);
    --color-secondary: #0a1f3d; /* Deep Navy */
    --color-text: #ffffff;
    --color-text-muted: #94a3b8;
    --color-border: rgba(255, 255, 255, 0.1);
    
    --font-main: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    touch-action: pan-y; /* Force locks pinch-to-zoom on iPhones */
}

/* Background Gradients */
.bg-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, rgba(5,11,20,0) 70%);
    animation: floatOrb 15s ease-in-out infinite alternate;
}

.orb-2 {
    bottom: 20%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(10,31,61,0.8) 0%, rgba(5,11,20,0) 70%);
    animation: floatOrb2 20s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.1); }
}
@keyframes floatOrb2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-10%, -5%) scale(1.2); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(90deg, #fff, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(5, 11, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

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

.logo-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    height: 45px; 
    width: 160px; /* Fixed window size */
    border-radius: 6px;
    overflow: hidden; 
    transition: var(--transition);
}

.logo-wrapper:hover {
    box-shadow: 0 0 15px var(--color-primary-glow);
}

.logo-img {
    height: 100%; 
    width: 100%;
    object-fit: contain;
    transform: scale(3.5); /* Zooms in 3.5x to bypass the white space */
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--color-text);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    border-radius: 3px;
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px var(--color-primary-glow);
    background: #4f91ff;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-text-muted);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 6rem;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.headline {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.glassmorphism {
    background: var(--color-surface);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glassmorphism:hover {
    transform: translateY(-8px) scale(1.02);
    background: var(--color-surface-hover);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(59, 130, 246, 0.2);
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 15px var(--color-primary-glow);
}

.stat-card:hover .stat-icon {
    transform: scale(1.2);
    color: var(--color-primary);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trend {
    font-size: 1rem;
    color: #10b981; /* Emerald green for up trend */
}

/* About Section */
.about-section {
    padding: 6rem 0;
}

.about-wrapper {
    padding: 4rem;
    border-radius: 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    max-width: 900px;
    margin: 0 auto;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

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

/* App Promo Section */
.app-promo-section {
    padding: 6rem 0;
}

.highlighted-app-wrapper {
    border: 1px solid var(--color-primary) !important;
    box-shadow: 0 0 40px rgba(66, 133, 244, 0.2) !important;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(66, 133, 244, 0.05) 100%) !important;
}

.app-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--color-surface);
    border-radius: 24px;
    padding: 4rem;
    border: 1px solid var(--color-border);
}

.app-mockups {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    perspective: 1000px;
}

.mockup {
    width: 250px;
    height: 500px;
    border-radius: 30px;
    background: #111;
    border: 8px solid #222;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.bg-abstract-1 { background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%); }
.bg-abstract-2 { background: linear-gradient(135deg, #0f172a 0%, #3b82f6 100%); }
.bg-abstract-3 { background: linear-gradient(135deg, #1e40af 0%, #000 100%); }

.center-mockup {
    transform: scale(1.1);
    z-index: 10;
}

.side-mockup {
    opacity: 0.7;
    filter: blur(1px);
}

.side-mockup.left {
    transform: rotateY(15deg) translateZ(-50px);
}

.side-mockup.right {
    transform: rotateY(-15deg) translateZ(-50px);
}

.app-mockups:hover .mockup {
    transform: none;
    opacity: 1;
    filter: none;
}

.download-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-cta p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #000;
    border: 1px solid var(--color-border);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-store:hover {
    background: #111;
    border-color: var(--color-text-muted);
    transform: translateY(-2px);
}

.store-icon {
    width: 24px;
    height: 24px;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.store-text span {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.store-text strong {
    font-size: 1.1rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Updated Responsive Media Queries */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .app-mockups {
        flex-direction: column;
        gap: 2rem;
    }
    
    .side-mockup {
        display: none;
    }
    
    .center-mockup {
        transform: scale(1);
    }
    
    .cta-group {
        flex-direction: column;
    }
}

/* --- New Sections (About, Services, Packages, Contact) --- */

.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* About Section */
.about-section {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.about-features {
    list-style: none;
    margin-bottom: 2rem;
}

.about-features li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-primary);
    font-weight: bold;
}

.about-visual {
    position: relative;
    height: 400px;
}

.abstract-shape {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.glass-panel {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.stat-big {
    display: flex;
    flex-direction: column;
}

.stat-big .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

/* Services Section */
.services-section {
    padding: 8rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem;
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: var(--transition);
}

.service-icon {
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

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

/* Packages Section */
.packages-section {
    padding: 8rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    position: relative;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
}

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.pricing-card .price span {
    font-size: 1.5rem;
    vertical-align: super;
}

.pricing-card .period {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.pricing-card .features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-card .features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-muted);
}

.pricing-card .features li:last-child {
    border-bottom: none;
}

.pricing-card.popular {
    border-color: var(--color-primary);
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(59,130,246,0.05) 0%, rgba(255,255,255,0.02) 100%);
}
.pricing-card.popular:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.w-full {
    width: 100%;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0 12rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item .icon {
    font-size: 2rem;
}

.info-item strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.2rem;
}

.info-item p {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Updated Responsive Media Queries */
@media (max-width: 992px) {
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
}

/* --- Trusted By Section --- */
.trusted-section {
    padding: 2rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.trusted-text {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.logo-scroller {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.logo-track {
    display: inline-block;
    animation: scrollLogos 20s linear infinite;
}

.brand-logo {
    display: inline-block;
    padding: 0 3rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-muted);
    opacity: 0.5;
    transition: var(--transition);
}

.brand-logo:hover {
    opacity: 1;
    color: white;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Process Section --- */
.process-section {
    padding: 8rem 0;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: var(--color-border);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--color-bg);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 0 20px var(--color-primary-glow);
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--color-text-muted);
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 8rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 3rem;
    text-align: center;
}

.stars {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.author {
    font-weight: 700;
    color: var(--color-primary);
}

/* --- FAQ Section --- */
.faq-section {
    padding: 8rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-answer p {
    color: var(--color-text-muted);
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

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

/* Footer */
.site-footer {
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
    background: rgba(0,0,0,0.5);
    color: var(--color-text-muted);
}

/* Mobile Responsive Fixes */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Typography & Hero */
    .headline {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }
    .description {
        font-size: 1rem;
    }
    .cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    .cta-group .btn {
        width: 100%;
        text-align: center;
    }
    .hero-section {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    /* Padding & Containers */
    .container {
        width: 95%;
        padding: 0 15px;
    }
    section {
        padding: 4rem 0 !important;
    }

    /* App Mockup Section - Show only the center mockup on mobile for a perfect fit */
    .app-content-wrapper {
        grid-template-columns: 1fr !important;
        padding: 2rem 1rem !important;
        gap: 2rem;
    }
    .app-mockups {
        height: auto;
        margin-bottom: 0;
        display: flex !important;
        justify-content: center;
    }
    .side-mockup {
        display: none !important; /* Hide left and right phones on mobile */
    }
    .mockup.center-mockup {
        width: 260px !important;
        height: 520px !important;
        margin: 0 auto;
        z-index: 10;
        transform: none !important;
    }
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Process Timeline */
    .process-timeline::before {
        left: 20px;
    }
    .process-step {
        flex-direction: column;
        gap: 1rem;
        padding-left: 50px;
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        position: absolute;
        left: 0;
        top: 0;
    }

    /* Grids */
    .stats-grid, .services-grid, .pricing-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .pricing-card.popular {
        transform: scale(1) !important;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }
    
    /* Logo */
    .logo-wrapper {
        width: 120px;
        height: 35px;
    }
    .logo-img {
        transform: scale(4);
    }
    
    /* Navbar */
    .navbar {
        padding: 10px 0;
    }
}

