:root {
    --bg: #ffffff;
    --card-bg: #f8f9fa;
    --primary: #ffe013;
    --secondary: #0e45f9;
    --text: #1a1a1b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --accent: #f90303;
    --accent-glow: rgba(14, 69, 249, 0.05);
    /* Hero Palette adapted to Brand */
    --hero-bg: #f0f4ff;
    --hero-accent: var(--secondary);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.12;
    border-radius: 50%;
}

.blob-1 { width: 500px; height: 500px; background: var(--secondary); top: -100px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: var(--primary); bottom: -50px; left: -50px; }
.blob-3 { width: 300px; height: 300px; background: var(--accent); top: 40%; left: 20%; }

/* Navigation Refurbished */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1100;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--secondary);
    background: rgba(14, 69, 249, 0.05);
}

.nav-actions {
    display: flex;
    gap: 0.8rem;
}

/* Hamburger Menu (Hidden by default) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

/* Hero Refurbished */
#hero {
    padding: 120px 5% 100px;
    text-align: center;
    background: linear-gradient(180deg, rgba(14, 69, 249, 0.04) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
}

.hero-bg-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: var(--secondary);
    top: -200px;
    right: -150px;
}

.hero-blob-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -150px;
    left: -150px;
}

.hero-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: #fff;
    border: 1px solid var(--hero-accent);
    color: var(--hero-accent);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 45, 141, 0.1);
    animation: float 3s ease-in-out infinite;
}

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

.gradient-text {
    position: relative;
    z-index: 1;
    font-size: clamp(2.8rem, 10vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1a1a1b 40%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 900px;
    padding-bottom: 0.15em;
    display: block;
}

.gradient-text span.highlight {
    background: linear-gradient(135deg, var(--secondary) 0%, #000000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    position: relative;
    z-index: 1;
    font-size: clamp(1.1rem, 4vw, 1.35rem);
    color: #475569;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons Refurbished */
.btn-primary, .btn-secondary {
    padding: 0.8rem 1.8rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #fff200 0%, var(--primary) 100%);
    color: #000;
    border: none;
    box-shadow: 0 10px 25px rgba(255, 224, 19, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 224, 19, 0.4);
    filter: brightness(1.05);
}

.btn-secondary {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 224, 19, 0.4);
}

.btn-secondary:hover {
    background: var(--card-bg);
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

/* Features Refurbished */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 28px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--secondary);
    box-shadow: 0 25px 50px rgba(14, 69, 249, 0.08);
}

.feature-icon {
    margin-bottom: 1.5rem;
    width: 64px;
    height: 64px;
    color: var(--secondary);
    background: rgba(14, 69, 249, 0.05);
    border-radius: 20px;
    padding: 12px;
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.25rem;
}

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

/* Clients Section Refurbished */
.clients-section {
    padding: 4rem 5%;
    background: rgba(14, 69, 249, 0.03);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 3rem 0;
}

.clients-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
    margin-left: -18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.avatar:first-child { margin-left: 0; }

.avatar img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

.avatar:hover {
    transform: translateY(-10px) scale(1.15);
    z-index: 10;
    border-color: var(--secondary);
    box-shadow: 0 15px 30px rgba(14, 69, 249, 0.2);
}

.plus-more {
    background: var(--text);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
}

.clients-text p {
    color: var(--text);
    font-size: 1.15rem;
    margin: 0;
}

.clients-text strong {
    font-weight: 800;
    color: var(--secondary);
}

/* Status Card Refurbished */
#status-card { padding: 40px 5% 80px; }

.glass-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.04);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2.5rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.status-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    animation: pulse 2s infinite;
}

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

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

.stat-item .label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.stat-item .value {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
}

/* Modals Refurbished */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 69, 249, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal-card {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Mobile Overrides Refurbished */
@media (max-width: 850px) {
    nav {
        padding: 0.8rem 5%;
    }

    .nav-links, .nav-actions {
        display: none; /* In a real app, you'd add a mobile menu here */
    }
    
    .nav-actions {
        display: flex;
    }
    
    .nav-actions .btn-secondary { display: none; }
    
    .nav-actions .btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        border-radius: 12px;
    }

    #hero { padding: 60px 5% 30px; }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-large {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .clients-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .avatar { width: 52px; height: 52px; margin-left: -15px; }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--border);
    }
    
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .glass-card {
        padding: 2rem;
        border-radius: 24px;
    }

    .modal-card {
        padding: 2.5rem 1.5rem !important;
        border-radius: 24px;
    }
}

/* Animation for numbers in status card */
.value {
    transition: all 1s ease-out;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary);
    background: #fff;
    box-shadow: 0 10px 20px rgba(14, 69, 249, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}

.faq-icon {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(14, 69, 249, 0.01);
}

.faq-answer-inner {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--secondary);
    background: #fff;
}

.faq-item.active .faq-question h3 {
    color: var(--secondary);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--secondary);
    box-shadow: 0 30px 60px rgba(14, 69, 249, 0.1);
}

.pricing-card.recommended {
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(14, 69, 249, 0.05);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.recommended:hover {
    transform: translateY(-15px) scale(1.05);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.price {
    margin-bottom: 2.5rem;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 800;
    vertical-align: top;
    margin-right: 2px;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.price .period {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
    flex: 1;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.pricing-features li svg {
    color: #10b981;
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-features li.disabled svg {
    color: var(--text-muted);
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

input:checked + .slider {
    background-color: var(--secondary);
}

input:checked + .slider:before {
    transform: translateX(28px);
}

.discount-badge {
    background: var(--primary);
    color: #000;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-left: 8px;
}

.verified-icon {
    color: var(--secondary);
    font-size: 1.2rem;
}

@media (max-width: 850px) {
    .pricing-card.recommended {
        transform: scale(1);
    }
    .pricing-card.recommended:hover {
        transform: translateY(-10px);
    }
}

/* Contact Section */
.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    max-width: 400px;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    background: #20bd5a;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.2);
}

.btn-instagram:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 39, 67, 0.3);
    filter: brightness(1.1);
}

/* Footer Section */
.main-footer {
    background: #111111;
    color: #ffffff;
    padding: 4rem 5% 2rem;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    margin-bottom: 3rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #666;
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.privacy-note svg {
    opacity: 0.6;
}

.copyright {
    font-size: 0.85rem;
}

@media (max-width: 850px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
}

/* Contact Section Refurbished */
.contact-section {
    padding: 120px 5%;
    text-align: center;
    background-color: rgba(14, 69, 249, 0.06) !important;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--secondary);
    filter: blur(80px);
    opacity: 0.05;
    pointer-events: none;
}
