@import url('header.css');
@import url('footer.css');
@import url('homepage.css');

:root {
    --primary-red: #a00000;
    --primary-black: #0b0b0b;
    --text-grey: #555555;
}

.pricing-hero-modifier {
    padding-bottom: 2rem;
}

.pricing-toggle-container {
    margin-top: 2rem;
    margin-bottom: 4rem;
    border: none;
    background: transparent;
}

.pricing-toggle {
    display: inline-flex;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.toggle-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #555;
    font-family: 'Inter', sans-serif;
}

.toggle-btn.active {
    background-color: var(--primary-red);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(160, 0, 0, 0.2);
}

.pricing-cards-section {
    padding-bottom: 5rem;
}

.pricing-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.highlight {
    background-color: var(--primary-red);
    color: #ffffff;
    border: none;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 60px rgba(160, 0, 0, 0.25);
}

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

.plan-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.per-user {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.plan-desc {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
    min-height: 2.7em;
}

.pricing-card.highlight .plan-desc {
    color: rgba(255, 255, 255, 0.9);
}

.divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 1.5rem 0;
}

.pricing-card.highlight .divider {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.features-list i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

.pricing-card.highlight .features-list i {
    color: #ffffff;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: var(--primary-red);
    color: #ffffff;
}

.pricing-card .pricing-btn:hover {
    background-color: #800000;
}

.pricing-card.highlight .pricing-btn {
    background-color: #ffffff;
    color: var(--primary-red);
}

.pricing-card.highlight .pricing-btn:hover {
    background-color: #f0f0f0;
}

.help-decide-section {
    text-align: center;
    padding: 5rem 1rem;
    background: #ffffff;
}

.help-decide-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight-red-text {
    color: var(--primary-red);
}

.subtitle {
    color: var(--text-grey);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.help-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

.help-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
}

.help-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.help-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    text-align: justify;
}

.cta-section {
    background-color: #FFF7F7;
    text-align: center;
    padding: 6rem 1rem 7rem;
    position: relative;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--primary-black);
}

.cta-section p {
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto 0.5rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.arrow-container {
    margin: 1.5rem auto 1.5rem;
    width: 60px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-container svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.cta-btn {
    background-color: var(--primary-red);
    color: #ffffff;
    padding: 1rem 3.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(160, 0, 0, 0.25);
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(160, 0, 0, 0.3);
}

@media (max-width: 900px) {

    .pricing-cards-container,
    .help-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-card.highlight {
        transform: scale(1);
    }

    .pricing-card.highlight:hover {
        transform: translateY(-8px);
    }
}