:root {
    /* Color Palette */
    --bg-color: #0b0f19;
    --surface-color: rgba(255, 255, 255, 0.03);
    --surface-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    
    /* Accents */
    --accent-gradient: linear-gradient(135deg, #4f46e5, #0ea5e9);
    --accent-hover: linear-gradient(135deg, #4338ca, #0284c7);
    --accent-glow: rgba(79, 70, 229, 0.4);
    
    /* Typography */
    --font-family: 'Outfit', sans-serif;
    
    /* Transitions */
    --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-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Glassmorphism Utilities */
.glass {
    background: var(--surface-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--surface-border);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--surface-border);
    padding: 0.75rem 0;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 85px;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

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

.nav-links a:not(.btn) {
    color: var(--text-secondary);
    font-weight: 400;
}

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

@media (max-width: 768px) {
    .nav-links a:not(.btn) {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 12rem 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 30% 30%, rgba(79, 70, 229, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(14, 165, 233, 0.1) 0%, transparent 60%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}


.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 600px) {
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1000px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--surface-border);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.hero-mockup {
    width: 100%;
    display: block;
}

.hero-image-wrapper.has-hover {
    cursor: pointer;
}

.hero-mockup.light-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-image-wrapper.has-hover:hover .hero-mockup.light-img {
    opacity: 1;
}

.theme-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s ease;
    opacity: 0.8;
}

.hero-image-wrapper.has-hover:hover .theme-hint {
    opacity: 0;
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Solutions Section */
.solutions-section {
    position: relative;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solutions-bg-accent {
    position: absolute;
    top: 50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, rgba(11, 15, 25, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: linear-gradient(180deg, var(--surface-color) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.solution-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.solution-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--bg-color) 0%, transparent 100%);
}

.solution-image.super { background: linear-gradient(135deg, rgba(30,58,138,0.4), rgba(59,130,246,0.4)), url('../assets/supermarket.png') center/cover; }
.solution-image.boutique { background: linear-gradient(135deg, rgba(131,24,67,0.4), rgba(236,72,153,0.4)), url('../assets/boutique.png') center/cover; }
.solution-image.pharmacy { background: linear-gradient(135deg, rgba(6,78,59,0.4), rgba(16,185,129,0.4)), url('../assets/pharmacy.png') center/cover; }
.solution-image.warehouse { background: linear-gradient(135deg, rgba(120,53,15,0.4), rgba(245,158,11,0.4)), url('../assets/warehouse.png') center/cover; }
.solution-image.hotel { background: linear-gradient(135deg, rgba(185,28,28,0.4), rgba(244,63,94,0.4)), url('../assets/hotel.png') center/cover; }

.solution-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg-color);
}

.solution-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.solution-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Features Section */
.features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

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

.feature-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 70, 229, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(79, 70, 229, 0.1);
    color: #818cf8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
}

.cta-box {
    background: var(--accent-gradient);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.demo-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.demo-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: inherit;
}

.btn-submit {
    background: #111827;
    color: #fff;
    box-shadow: none;
}

.btn-submit:hover {
    background: #1f2937;
    box-shadow: none;
}

.form-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 1rem;
}

@media (max-width: 600px) {
    .demo-form {
        flex-direction: column;
    }
}

/* Footer */
.footer {
    border-top: 1px solid var(--surface-border);
    padding: 4rem 2rem 2rem;
    background: #080b12;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1.5rem;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    height: 110px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 800;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-secondary);
}

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

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
    transition: opacity 0.3s ease;
}

/* Infinite Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--surface-color);
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
    padding: 1rem 0;
    white-space: nowrap;
    position: relative;
    display: flex;
}

.marquee-content {
    display: flex;
    animation: scrollMarquee 20s linear infinite;
}

.marquee-content span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0 2rem;
    letter-spacing: 2px;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scrolls exactly half its width (the duplicated content) */
}

/* Stats Section */
.stats-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    color: #0ea5e9;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 500;
}

/* Full Form Styling */
.demo-form.full-form {
    flex-direction: column;
    max-width: 400px;
}
.demo-form.full-form .demo-input {
    width: 100%;
}
.demo-form.full-form .btn-submit {
    width: 100%;
    margin-top: 0.5rem;
}

/* Footer Contact Info */
.contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-info p {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #fff;
}
.contact-info p a {
    color: var(--text-secondary);
    font-weight: 400;
}
.contact-info p a:hover {
    color: #0ea5e9;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 2px 10px 20px rgba(0,0,0,0.4);
    background-color: #1ebe57;
}
.whatsapp-icon {
    width: 35px;
    height: 35px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}
.preloader-logo {
    width: 150px;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Custom Scrollbar & Selection */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.4);
}
::selection {
    background: #0ea5e9;
    color: #fff;
}

/* Video Testimonials */
.video-testimonials { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.video-card { text-align: center; }
.video-placeholder { 
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)); 
    border: 1px solid var(--surface-border); 
    border-radius: 15px; 
    height: 200px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    margin-bottom: 1rem; 
    position: relative; 
    overflow: hidden; 
}
.play-button {
    background: rgba(14, 165, 233, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.video-placeholder:hover .play-button { transform: scale(1.1); background: #0ea5e9; }
.video-status { color: var(--text-secondary); font-size: 0.9rem; margin:0; }
.video-card h3 { color: #fff; font-size: 1.1rem; }

/* Pricing Section */
.pricing-section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.pricing-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover { transform: translateY(-10px); }
.pricing-card.featured {
    border-color: #0ea5e9;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.1);
}
.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #4f46e5, #0ea5e9);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.pricing-card h3 { color: #fff; font-size: 1.8rem; margin-bottom: 0.5rem; }
.price-desc { color: var(--text-secondary); margin-bottom: 2rem; }
.pricing-card ul { list-style: none; padding: 0; margin-bottom: 2rem; flex-grow: 1; }
.pricing-card ul li { color: #ccc; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.pricing-card ul li::before { content: '✓'; color: #0ea5e9; font-weight: bold; }
.pricing-card .btn { width: 100%; text-align: center; }

/* FAQ Section */
.faq-section { padding: 4rem 2rem; max-width: 800px; margin: 0 auto; }
.faq-container { margin-top: 3rem; }
.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-item.active .icon { transform: rotate(45deg); }
.icon { transition: transform 0.3s ease; font-size: 1.5rem; font-weight: 300; }

/* Interactive Feature Tabs */
.interactive-features {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}
.feature-tabs { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-tab {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    color: var(--text-secondary);
}
.feature-tab h3 { color: #fff; font-size: 1rem; margin-bottom: 0.25rem; }
.feature-tab p { margin: 0; font-size: 0.85rem; }
.feature-tab.active, .feature-tab:hover {
    border-color: #0ea5e9;
    background: rgba(14, 165, 233, 0.08);
}
.feature-tab.active { box-shadow: 0 0 20px rgba(14, 165, 233, 0.15); }
.feature-display { position: relative; min-height: 400px; }
.feature-pane {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.feature-pane.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.feature-mockup {
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}
.mockup-header {
    padding: 1rem 1.5rem;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid var(--surface-border);
    background: rgba(255,255,255,0.03);
    font-size: 0.9rem;
}
.mockup-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mockup-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.mockup-row span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    min-width: 100px;
}
.mockup-bar {
    height: 10px;
    background: linear-gradient(90deg, #4f46e5, #0ea5e9);
    border-radius: 5px;
    transition: width 1s ease;
}
.mockup-bar.warn {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}
.mockup-cart-item {
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}
.mockup-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(14,165,233,0.1);
    border: 1px solid rgba(14,165,233,0.3);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 140px;
}
.mockup-total span { color: var(--text-secondary); font-size: 0.85rem; }
.mockup-total strong { color: #0ea5e9; font-size: 1.5rem; margin-top: 0.5rem; }
.mockup-circle-container { text-align: center; }
.mockup-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 4px solid #0ea5e9;
    border-top-color: #f59e0b;
    margin: 0 auto 0.5rem;
}
.mockup-circle-container span { color: var(--text-secondary); font-size: 0.85rem; }
.mockup-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.mockup-box span { color: var(--text-secondary); font-size: 0.8rem; }
.mockup-box strong { color: #0ea5e9; font-size: 1.3rem; }
.platform-icon {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    min-width: 120px;
}
.platform-icon:hover {
    transform: translateY(-5px);
    border-color: #0ea5e9;
}
.platform-icon span { font-size: 0.95rem; color: var(--text-secondary); font-weight: 600; }
.crossplatform-body {
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    min-height: 280px;
}

@media (max-width: 768px) {
    .interactive-features { grid-template-columns: 1fr; }
    .feature-display { min-height: 380px; }
    .crossplatform-body { flex-direction: column !important; gap: 1rem; }
    .platform-icon { min-width: 80px; }
    .platform-icon svg { width: 36px; height: 36px; }
}

/* Timeline Section */
.timeline-section { padding: 4rem 2rem; max-width: 900px; margin: 0 auto; }
.timeline-container {
    margin-top: 3rem;
    position: relative;
    padding-left: 50px;
}
.timeline-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #4f46e5, #0ea5e9);
}
.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}
.step-number {
    min-width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #4f46e5, #0ea5e9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    position: absolute;
    left: -50px;
    z-index: 2;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}
.step-content {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    flex-grow: 1;
}
.step-content h3 { color: #fff; margin-bottom: 0.5rem; font-size: 1.2rem; }
.step-content p { color: var(--text-secondary); margin: 0; }

/* Mobile Frame */
.mobile-frame {
    position: absolute;
    bottom: -20px;
    right: -30px;
    width: 120px;
    background: #1a1a2e;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    z-index: 5;
    animation: floatMobile 3s ease-in-out infinite;
}
.mobile-notch {
    width: 40px;
    height: 5px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    margin: 4px auto 8px;
}
.mobile-screen {
    background: linear-gradient(180deg, #0f172a, #1e293b);
    border-radius: 12px;
    padding: 10px;
    min-height: 180px;
}
.m-header {
    font-size: 0.55rem;
    color: #0ea5e9;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}
.m-stat {
    height: 30px;
    background: linear-gradient(90deg, rgba(79,70,229,0.3), rgba(14,165,233,0.3));
    border-radius: 6px;
    margin-bottom: 8px;
}
.m-list { display: flex; flex-direction: column; gap: 4px; }
.m-item {
    height: 20px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.08);
}

@keyframes floatMobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .mobile-frame { display: none; }
}
