.feature-card p {
    color: var(--primary-white);
}
/* ======== GLOBAL STYLES & VARIABLES ======== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --text-light-gray: #CCCCCC;
    --color-deep-red: #9E2A1B;
    --color-bright-redorange: #E64A19;
    --color-vibrant-orange: #F57C00;
    --accent-orange: var(--color-vibrant-orange);
    --accent-red: var(--color-bright-redorange);
    --accent-gradient: linear-gradient(90deg, var(--color-deep-red), var(--color-bright-redorange), var(--color-vibrant-orange));
    --footer-dark-gray: #1a1a1a;
    --card-bg: #0f0f0f;
    --navbar-height: 70px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-black);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    gap: 5px;
}

.mobile-menu-toggle .hamburger {
    width: 25px;
    height: 3px;
    background-color: var(--primary-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--light-gray);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

section {
    padding: 6rem 0;
}

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

.subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* --- Button Styles --- */
.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    cursor: pointer;
}
.btn-primary-glow {
    background: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    box-shadow: 0 0 10px rgba(246, 124, 0, 0.3);
}
.btn-primary-glow:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    color: var(--primary-white);
    box-shadow: 0 0 20px rgba(246, 124, 0, 0.6);
    transform: translateY(-3px);
}
.btn-secondary-outline {
    background: transparent;
    border: 2px solid var(--primary-white);
    color: var(--primary-white);
}
.btn-secondary-outline:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

/* Store button sizing (larger for prominence on hero) */
.btn-store {
    text-transform: none;
    padding: 12px 28px;
    border-radius: 18px;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
}
.hero-buttons .btn-store i { margin-right: 10px; font-size: 1.05rem; }
.hero-buttons .btn-store:hover { transform: translateY(-3px); }

/* Android button: keep white fill but use Android droid icon */
.btn-android {
    background: var(--primary-white);
    color: var(--primary-black);
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.btn-android:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
}
.btn-android i { margin-right: 8px; color: var(--primary-black); }

/* --- Header & Navigation --- */
.main-header {
    background-color: var(--primary-black);
    padding: 15px 5vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}
.navbar-left .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-white);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    z-index: 1001;
}
.header-logo-icon {
    height: 35px;
    margin-right: 10px;
    filter: drop-shadow(0 0 8px rgba(246, 124, 0, 0.5)) drop-shadow(0 0 15px rgba(229, 57, 53, 0.3));
}
.navbar-center .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}
.nav-menu li a {
    color: var(--text-light-gray);
    font-weight: 500;
    padding-bottom: 8px;
    position: relative;
    transition: color 0.3s ease;
}
.nav-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease-out;
}
.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--primary-white);
}
.nav-menu li a:hover::after,
.nav-menu li a:focus::after {
    width: 100%;
}
.dropdown {
    position: relative;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--primary-black);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1;
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
}
.dropdown-content a {
    color: var(--text-light-gray);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-white);
}
.dropdown:hover .dropdown-content {
    display: block;
}
.navbar-right .btn-signin {
    border: 1px solid var(--text-light-gray);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--primary-white);
    transition: all 0.3s ease;
    background-color: transparent;
}
.navbar-right .btn-signin:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    color: var(--primary-white);
    box-shadow: 0 0 15px rgba(255, 196, 0, 0.4);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--primary-black);
    text-align: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 50h100M50 0v100" stroke="%23222" stroke-width="0.5" /></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
    animation: panBackground 60s linear infinite;
    z-index: 1;
}
@keyframes panBackground {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}
.hero-logo-large {
    width: 150px;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 15px rgba(255, 196, 0, 0.6)) drop-shadow(0 0 25px rgba(229, 57, 53, 0.4));
    animation: fadeInScale 1.5s ease-out;
}
.hero-tagline {
    font-size: 3.5em;
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 50px;
    max-width: 900px;
    line-height: 1.2;
    letter-spacing: -1px;
    animation: textSlideUp 1s ease-out 0.5s forwards;
    opacity: 0;
    transform: translateY(20px);
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes textSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-buttons {
    display: flex;
    gap: 25px;
    animation: fadeIn 1s ease-out 1.2s forwards;
    opacity: 0;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Stats --- */
.stats {
    padding: 3rem 0;
    background: var(--card-bg);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item h3 {
    font-size: 2rem;
    color: var(--accent-orange);
}
.stat-item p {
    color: var(--text-light-gray);
    margin: 0;
}

/* --- Demo Section --- */
.content-section.light-section {
    background-color: var(--primary-white);
    color: var(--primary-black);
    padding: 100px 5vw;
    border-top: 1px solid #e0e0e0;
}
.video-placeholder {
    background: #000;
    border: 2px dashed var(--text-light-gray);
    border-radius: 10px;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    max-width: 800px;
}
.video-placeholder i {
    font-size: 4rem;
    color: var(--accent-orange);
    cursor: pointer;
}
.video-placeholder p {
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.about-text {
    text-align: center;
}
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
}
.about-text h3 {
    color: var(--accent-orange);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light-gray);
    margin-bottom: 1rem;
}
.media-logos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
}
.media-logos span {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--accent-orange);
    text-align: center;
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.feature-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.feature-card i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}
.feature-card h3 {
    color: var(--primary-white);
    font-size: 1.25rem;
}

/* --- Pricing Section --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}
.pricing-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--card-bg);
    position: relative;
    overflow: hidden;
}
.pricing-card h3 {
    color: var(--accent-orange);
    text-align: center;
    font-size: 1.25rem;
}
.pricing-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-white);
    text-align: center;
    margin-bottom: 1.5rem;
}
.pricing-card .price span {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-light-gray);
}
.pricing-card ul {
    flex-grow: 1;
    margin-bottom: 2rem;
}
.pricing-card ul li {
    margin-bottom: 0.75rem;
    color: var(--text-light-gray);
}
.pricing-card ul li i {
    margin-right: 0.5rem;
    color: var(--accent-orange);
}
.pricing-card ul li i.fa-times {
    color: #666;
}
.pricing-card .btn {
    width: 100%;
}
.pricing-card.popular {
    border-color: var(--accent-orange);
    transform: scale(1.05);
}
.popular-badge {
    position: absolute;
    top: 15px;
    right: -40px;
    background: var(--accent-orange);
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}
.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
}
.contact-form h3 {
    color: var(--primary-white);
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-white);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #444;
    background: var(--card-bg);
    color: var(--primary-white);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-amber);
}
.contact-form .btn {
    width: 100%;
}
.contact-form .btn {
    background: var(--accent-gradient);
    color: var(--primary-white) !important;
    border-color: transparent !important;
    text-transform: none;
    padding: 12px 18px;
    box-shadow: 0 6px 18px rgba(245,124,0,0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}
.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.contact-info i {
    margin-right: 1rem;
    color: var(--accent-orange);
}
.social-media {
    margin-top: 2rem;
}
.social-media a {
    font-size: 1.5rem;
    color: var(--text-light-gray);
    margin-right: 1rem;
    transition: color 0.3s ease;
}
.social-media a:hover {
    color: var(--accent-orange);
}

/* --- Footer --- */
footer {
    padding: 2rem 0;
    background: var(--footer-dark-gray);
    text-align: center;
    border-top: 1px solid #222;
}
footer p {
    margin: 0;
    color: var(--text-light-gray);
}

/* ======== ALTERNATING SECTION COLORS ======== */
.page-dark {
    background-color: var(--primary-black);
    color: var(--primary-white);
}
.page-light {
    background-color: var(--primary-white);
    color: var(--primary-black);
}
.content-section.page-dark {
    background-color: var(--primary-black);
    color: var(--primary-white);
}
.content-section.page-light {
    background-color: var(--primary-white);
    color: var(--primary-black);
}

/* ======================
  FOOTER STYLING
  ====================== 
*/
.site-footer {
    background-color: var(--footer-dark-gray);
    color: var(--text-light-gray);
    padding: 4rem 5vw 2rem 5vw;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--primary-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--accent-amber);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light-gray);
}

.navbar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-signin-orange {
    border: 2px solid var(--accent-orange);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--accent-orange);
    transition: all 0.3s ease;
    background-color: transparent;
    text-transform: none;
    font-size: 1rem;
}

.btn-signin-orange:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    color: var(--primary-white);
    box-shadow: 0 0 20px rgba(246, 124, 0, 0.6);
    transform: translateY(-2px);
}

.btn-signup-white {
    border: 2px solid var(--primary-white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--primary-white);
    background-color: transparent;
    transition: all 0.3s ease;
    text-transform: none;
    font-size: 1rem;
}

.btn-signup-white:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-2px);
}

/* ======================
  MOBILE RESPONSIVE NAVIGATION
  ====================== 
*/
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-center {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--primary-black);
        transition: right 0.3s ease;
        padding-top: 80px;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-center.active {
        right: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }
    
    .navbar-center .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        padding: 18px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-content {
        position: static;
        display: none;
        background-color: rgba(255, 255, 255, 0.03);
        box-shadow: none;
        margin: 0;
        border-radius: 0;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .navbar-right {
        position: fixed;
        bottom: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        background-color: var(--primary-black);
        transition: right 0.3s ease;
        padding: 20px 30px;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        gap: 10px;
    }
    
    .navbar-right.active {
        right: 0;
    }
    
    .btn-signin-orange,
    .btn-signup-white {
        width: 100%;
        text-align: center;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    /* Mobile hero adjustments */
    .hero-logo-large {
        width: 80px;
        margin-bottom: 25px;
    }
    
    .hero-tagline {
        font-size: 1.8rem;
        margin-bottom: 30px;
        line-height: 1.3;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .hero-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
    .stats-grid,
    .features-grid,
    .pricing-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
    .contact-info {
        text-align: center;
    }
    .social-media {
        text-align: center;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
}