.pricing-card {
    width: 320px;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.pricing-hero {
    padding: 60px 0 30px;
}
.price-highlight {
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0 10px;
}

.price-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.pricing-features li {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.pricing-card .btn {
    margin-top: auto;
}

.featured-plan {
    border: 2px solid #2563eb;
}
.badge {
    position: relative;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #fff;
    padding: 6px 16px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
}
.hybrid-tagline {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
}

.faq-section {
    background: #f8fafc;
    padding: 40px 20px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding-bottom: 15px;
    color: #555;
}

.calculator-section {
    background: #ffffff;
    text-align: center;
    padding: 40px 20px;
}

.calculator-box {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calculator-box input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.calculator-result {
    margin-top: 20px;
    font-weight: 600;
    color: #2563eb;
}
.organiser-highlight {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 18px;
    font-size: 20px;
    font-weight: 700;
    background-color: #e0f2fe;
    border: 2px solid #2563eb;
    border-radius: 8px;
    color: #1e3a8a;
}
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.pricing-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding-top: 120px; /* prevents navbar overlap */
}

.pricing-hero-content {
    max-width: 900px;
}

.pricing-hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-hero p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 35px;
}