/* LANDING PAGE STYLES - QUINIELAS WEB SAAS */

:root {
    --brand-green: #4ade80;
    --brand-green-bright: #66cc00;
    --brand-green-dark: #16a34a;
    --brand-green-glow: rgba(74, 222, 128, 0.35);
    --dark-bg: #0a0f1d;
    --dark-card: #0f172a;
    --dark-surface: #1e293b;
    --text-bright: #ffffff;
    --text-subtle: #94a3b8;
    --border-glow: rgba(74, 222, 128, 0.4);
    --gold-accent: #facc15;
}

/* Base Landing Reset */
.landing-wrapper {
    font-family: var(--font-body, 'Inter', -apple-system, sans-serif);
    background-color: var(--dark-bg);
    color: var(--text-bright);
    line-height: 1.6;
    overflow-x: hidden;
}

/* SaaS Navbar */
.saas-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 15, 29, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(74, 222, 128, 0.2);
    padding: 12px 24px;
}

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

/* Hamburger Button for SaaS Navbar */
.saas-hamburger-btn {
    display: none;
    background: transparent;
    border: 1px solid rgba(74, 222, 128, 0.4);
    color: var(--brand-green-bright);
    font-size: 1.3rem;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.saas-hamburger-btn:hover {
    background: rgba(74, 222, 128, 0.15);
}

.saas-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.saas-brand-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(102, 204, 0, 0.4));
}

.saas-brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.saas-brand-name span {
    color: var(--brand-green-bright);
}

.saas-nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.saas-nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.saas-nav-link:hover {
    color: var(--brand-green-bright);
}

.btn-saas-cta {
    background: linear-gradient(135deg, var(--brand-green-bright), var(--brand-green-dark));
    color: #000000 !important;
    font-weight: 900;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.92rem;
    box-shadow: 0 4px 15px var(--brand-green-glow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-saas-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 204, 0, 0.6);
}

.btn-saas-outline {
    background: rgba(30, 41, 59, 0.8);
    color: #ffffff !important;
    border: 1px solid rgba(74, 222, 128, 0.5);
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-saas-outline:hover {
    background: rgba(74, 222, 128, 0.15);
    border-color: var(--brand-green-bright);
    color: var(--brand-green-bright) !important;
}

/* Hero Section */
.saas-hero {
    position: relative;
    padding: 70px 20px 60px 20px;
    background: radial-gradient(circle at 50% 20%, rgba(74, 222, 128, 0.15) 0%, transparent 65%);
    text-align: center;
}

.saas-hero-container {
    max-width: 980px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 204, 0, 0.12);
    border: 1px solid var(--brand-green-bright);
    color: var(--brand-green-bright);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(102, 204, 0, 0.2);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.1rem;
    }
}

.hero-title span {
    background: linear-gradient(135deg, #66cc00, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 760px;
    margin: 0 auto 36px auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Feature Showcase Preview Card */
.saas-preview-card {
    background: var(--dark-card);
    border: 2px solid rgba(102, 204, 0, 0.35);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(102, 204, 0, 0.15);
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.preview-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #334155;
    margin-bottom: 20px;
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.preview-url-box {
    background: #1e293b;
    border: 1px solid #334155;
    color: var(--brand-green-bright);
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Stats Counter Section */
.saas-stats-strip {
    background: #0f172a;
    border-y: 1px solid rgba(74, 222, 128, 0.2);
    padding: 30px 20px;
    margin: 40px 0;
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--brand-green-bright);
    line-height: 1;
}

.stat-desc {
    color: #94a3b8;
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 6px;
}

/* Features Grid */
.saas-features-sec {
    padding: 70px 20px;
    max-width: 1150px;
    margin: 0 auto;
}

.sec-head {
    text-align: center;
    margin-bottom: 50px;
}

.sec-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
}

.sec-sub {
    color: #94a3b8;
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-green-bright);
    box-shadow: 0 10px 30px rgba(102, 204, 0, 0.15);
}

.feature-icon-box {
    width: 52px;
    height: 52px;
    background: rgba(102, 204, 0, 0.12);
    border: 1px solid var(--brand-green-bright);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green-bright);
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.feature-card p {
    color: #94a3b8;
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.55;
}

/* Pricing Section */
.saas-pricing-sec {
    padding: 70px 20px;
    background: radial-gradient(circle at 50% 50%, rgba(102, 204, 0, 0.08) 0%, transparent 70%);
}

.pricing-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.price-card {
    background: var(--dark-card);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s ease;
}

.price-card.popular {
    border: 2px solid var(--brand-green-bright);
    box-shadow: 0 0 35px rgba(102, 204, 0, 0.25);
    transform: scale(1.03);
}

.badge-popular {
    position: absolute;
    top: -14px;
    right: 24px;
    background: linear-gradient(135deg, var(--brand-green-bright), var(--brand-green-dark));
    color: #000000;
    font-weight: 900;
    font-size: 0.75rem;
    padding: 4px 14px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-header h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.price-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand-green-bright);
    margin: 14px 0 6px 0;
}

.price-period {
    font-size: 0.9rem;
    color: #94a3b8;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-features li {
    font-size: 0.92rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li i {
    color: var(--brand-green-bright);
    font-size: 0.9rem;
}

/* FAQ Section */
.saas-faq-sec {
    padding: 70px 20px;
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 22px;
    font-weight: 800;
    font-size: 1.05rem;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question i {
    color: var(--brand-green-bright);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 22px 18px 22px;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* CTA Banner Footer */
.saas-footer-cta {
    background: linear-gradient(135deg, #0b132b, #0f172a);
    border-top: 2px solid var(--brand-green-bright);
    padding: 60px 20px;
    text-align: center;
}

.saas-footer {
    background: #070a14;
    padding: 30px 20px;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    border-top: 1px solid #1e293b;
}

@media (max-width: 900px) {
    .saas-hamburger-btn {
        display: block;
    }

    .saas-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f172a;
        border-bottom: 2px solid var(--brand-green-bright);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
        z-index: 1001;
    }

    .saas-nav-menu.open {
        display: flex;
    }
}

/* Floating Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #66cc00, #16a34a);
    color: #0a0f1d;
    border: 2px solid #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(102, 204, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 25px rgba(102, 204, 0, 0.65);
    background: linear-gradient(135deg, #4ade80, #22c55e);
}
