/* Reset & Base Styles */
:root {
    /* Colors - Clean Light Mode */
    --bg-base: #F8FAFC;
    --bg-surface: #FFFFFF;
    --bg-surface-elevated: #F1F5F9;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --border-color: rgba(0, 0, 0, 0.08);
    
    /* Accents - Vibrant Orange to Neon Pink Gradient */
    --accent-main: #FF512F;
    --accent-secondary: #DD2476;
    --accent-glow: rgba(255, 81, 47, 0.2);
    
    /* Status Colors */
    --success: #10B981;
    --error: #EF4444;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-main), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* UI Elements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-main), var(--accent-secondary));
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}

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

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

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.15);
}

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

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-heading);
    background: rgba(255, 81, 47, 0.1);
    color: var(--accent-main);
    border: 1px solid rgba(255, 81, 47, 0.2);
    margin-bottom: 1rem;
}

.badge.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.2);
}

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

.orb-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 81, 47, 0.15);
}

.orb-2 {
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(221, 36, 118, 0.10);
}

.orb-3 {
    bottom: -20%;
    left: 20%;
    width: 800px;
    height: 800px;
    background: rgba(255, 81, 47, 0.10);
}

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

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo i {
    color: var(--accent-main);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 0 auto 2.5rem;
    max-width: 90%;
}

.hero-actions {
    margin-bottom: 3rem;
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-base);
    margin-left: -15px;
}

.avatars img:first-child {
    margin-left: 0;
}

.mockup-panel {
    padding: 1rem;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
}

.mockup-panel:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.floating-mockup {
    width: 100%;
    border-radius: 12px;
    display: block;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Problems Section */
.problems-section {
    padding: 6rem 0;
    background-color: var(--bg-surface);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 68, 68, 0.3);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.icon-wrapper.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--text-secondary);
}

/* Showcase Section */
.showcase-section {
    padding: 8rem 0;
    position: relative;
}

.showcase-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.showcase-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Animated Scroll Showcase */
.scroll-showcase-container {
    display: flex;
    gap: 4rem;
    position: relative;
    align-items: flex-start;
}

.scroll-showcase-content {
    flex: 1;
    padding-bottom: 30vh;
}

.scroll-step {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.2;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-step.active {
    opacity: 1;
    transform: translateY(0);
}

.showcase-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.showcase-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

.scroll-showcase-visual {
    flex: 1;
    position: sticky;
    top: 15vh;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-visual img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.sticky-visual img.changing {
    opacity: 0;
    transform: scale(0.95);
}

.mobile-showcase-image {
    display: none;
}

@media (max-width: 992px) {
    .scroll-showcase-container {
        flex-direction: column;
    }
    
    .scroll-showcase-content {
        padding-bottom: 0;
        order: 2;
    }
    
    .scroll-step {
        min-height: auto;
        margin-bottom: 4rem;
        opacity: 1;
        transform: translateY(0);
    }
    
    .scroll-showcase-visual {
        display: none;
    }

    .mobile-showcase-image {
        display: block;
        margin-top: 2rem;
        text-align: center;
    }

    .mobile-showcase-image img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }
}


.feature-list {
    list-style: none;
    display: inline-block;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.feature-list i {
    color: var(--success);
    margin-top: 0.25rem;
}

.solution-visual {
    position: relative;
}

.feature-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

/* Workflow Timeline Section */
.workflow-section {
    padding: 6rem 0;
    background-color: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

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

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-main), var(--accent-secondary), transparent);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-surface-light);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-main);
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    border-color: var(--accent-main);
    color: var(--accent-secondary);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: scale(1.1);
}

.timeline-content {
    margin-left: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    flex: 1;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.3);
}

.step-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-secondary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

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

.timeline-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Implementation Section */
.implementation-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-main), var(--bg-surface));
}

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

.implementation-visual {
    position: relative;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 32px;
    padding: 4rem 2rem;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.icon-pulse {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-main), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
    position: relative;
}

.icon-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-main);
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta-panel {
    padding: 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-panel h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-panel > p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

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

.input-group input {
    width: 100%;
    padding: 1.25rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-main);
    background: var(--bg-surface-elevated);
}

.cta-submit {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.privacy-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
.site-footer {
    background: var(--bg-surface-elevated);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand-col .logo {
    margin-bottom: 1rem;
}

.brand-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    font-size: 1.25rem;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-main);
    color: white;
    border-color: var(--accent-main);
    transform: translateY(-3px);
}

.footer-links-col h3,
.footer-contact-col h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links-col ul,
.footer-contact-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links-col a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links-col a:hover {
    color: var(--accent-main);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--accent-main);
    font-size: 1.25rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-main);
}

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

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

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-container, .solution-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    
    .social-proof {
        justify-content: center;
    }
    
    .mockup-panel {
        transform: none;
    }
    
    .mockup-panel:hover {
        transform: none;
    }
    
    .feature-list li {
        justify-content: center;
    }
    
    .solution-row.reverse {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0 3rem;
        min-height: 100svh;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin: 0 auto 1.5rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
        margin-bottom: 0.75rem;
    }

    .btn-large {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }

    .hero-actions {
        margin-bottom: 2rem;
    }

    .social-proof {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .showcase-header h2 {
        font-size: 1.75rem;
    }

    .showcase-header p {
        font-size: 1rem;
    }

    .showcase-content h2 {
        font-size: 1.5rem;
    }

    .timeline::before {
        left: 30px;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-content {
        margin-left: 1rem;
        padding: 1.5rem;
    }
    
    .implementation-container {
        grid-template-columns: 1fr;
    }
    
    .cta-panel {
        padding: 2rem;
    }
    
    .cta-panel h2 {
        font-size: 1.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
