 

/* Hero Section */
.hero {
    margin-top: 2rem;
    background: var(--bg-lighter);
    padding: 4rem 2rem 0rem 2rem;
    text-align: center;
}

    .hero h1 {
        font-size: 2.0rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.6rem;
    }

    .hero p {
        font-size: 1.125rem;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto 0.4rem;
    }

.hero-note {
    font-size: 0.95rem;
    color: var(--text-lighter);
    font-style: italic;
}

/* Pricing Section */
.pricing-section {
    padding: 1rem 2rem;
    background: white;
    padding: 0px;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}
 
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid var(--border-color);
    position: relative;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    height: 100%;
    margin-top: 12px;
    transform-origin: center center;
}

    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .pricing-card.featured {
        border-color: var(--primary-color);
        box-shadow: var(--shadow-md);
        position: relative;
    }

        .pricing-card.featured:hover {
            box-shadow: 0 12px 40px rgba(153, 0, 0, 0.2);
            transform: translateY(-10px);
        }

.badge-recommended {
    position: absolute;
    top: 0px;
    transform: none;
    right: 5px;
  /*  transform: translateX(-50%);*/
    background: #ffd800;
    color: black;
    padding: 0.2rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(153, 0, 0, 0.4);
    border-radius: 10px;
    z-index: 10;
    white-space: nowrap;
}

.pricing-header {
    background: var(--text-dark);
    color: white;
    padding: 1rem;
    text-align: center;
}

.pricing-card.featured .pricing-header {
    background: var(--primary-color);
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.0rem;
}

.pricing-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.pricing-price {
    padding: 0.5rem;
    text-align: center;
    border-bottom: 2px solid var(--bg-light);
}

.price-amount {
    padding-top:1rem;
    font-size: 3rem;
    line-height:2rem;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.pricing-features {
    padding: 1rem;
    list-style: none;
    display: flex;
    flex-direction: column;
}

    .pricing-features li {
        padding: 0.65rem 0;
        border-bottom: 1px solid var(--bg-light);
        display: flex;
        align-items: center;
        gap: 1.1rem;
        font-size: 1.1rem;
    }

        .pricing-features li:last-child {
            border-bottom: none;
        }

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-yes {
    color: var(--success-color);
}

.feature-no {
    color: #dc2626;
}

.feature-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5em;
    width: 30px;
    text-align: right;

}

.pricing-cta {
    margin:1rem auto;
    padding: 1rem;
    align-self: end;
    max-width:280px;
}

.btn-pricing {
    width: 100%;
    padding: 1rem 2rem;
    background:var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

    .btn-pricing:hover {
        background: color-mix(in srgb, var(--primary-color) 80%, black);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(56, 118, 29, 0.3);
    }

/* Comparison Table */
.comparison-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

    .comparison-table table {
        width: 100%;
        border-collapse: collapse;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1.25rem 1.5rem;
        text-align: left;
        border-bottom: 1px solid var(--bg-light);
    }

    .comparison-table thead {
        background: var(--text-dark);
    }

    .comparison-table th {
        font-weight: 700;
        color:white;
        text-align: center;
    }

        .comparison-table th:first-child {
            text-align: left;
        }

    .comparison-table tbody tr:hover {
        background: var(--bg-lighter);
    }

    .comparison-table .featured-col {
        background: rgba(0, 0, 153, 0.03);
    }

.table-icon {
    font-size: 1.25rem;
}

/* Footer */
/*footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

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

    .footer-links a {
        color: #cbd5e1;
        text-decoration: none;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .footer-links a:hover {
            color: #93c5fd;
            padding-left: 0.5rem;
        }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.9rem;
}*/

/* Responsive */
@media (max-width: 1024px) {
/*    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }*/

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

@media (max-width: 768px) {
  /*  .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
    }

        .nav-menu.active {
            left: 0;
        }

    .mobile-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }*/

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

    .comparison-table {
        overflow-x: auto;
    }

    .badge-recommended {
        font-size: 0.7rem;
        padding: 0.35rem 1.2rem;
        top: -10px;
    }
}
 
