

/* Header */
.header {
    padding: 140px 30px 40px;
    background: linear-gradient(180deg,#faf5ff,#d3f1ff);
    text-align: center;
}
.badge {
    display: inline-block;
    background: rgba(255,255,255,1);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: #000;
}

h1 {
    font-weight: 700;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Pricing Cards Section */
.pricing-area {
    padding: 60px 0px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.card.left {
    border: 1px solid #e5e7eb;
    /* margin-bottom: 50px; */
}
.card.right {
    border: 2px solid #2563eb;
}

.one-time {
    display: inline-block;
    background: #fef3c7;
    color: #854d0e;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.price {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 12px 0;
}

.price small {
    font-size: 1.1rem;
    font-weight: 400;
    color: #6b7280;
}

.description {
    color: #4b5563;
    font-size: 0.97rem;
    line-height: 1.5;
}

/* Calculator Section */
.calculator-section {
    /* padding: 0 60px 60px; */
}

.calculator-title {
    font-size: 1.55rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1f2937;
}

/* .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
} */

label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 10px;
    font-size: 1rem;
}
.qs-complexity {
    position: relative;
}
input, select {
    width: 100%;
    padding: 14px 18px;
    font-size: 1.35rem;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    transition: all 0.2s ease;
    appearance: none;
    margin-bottom: 20px;
}
.qs-complexity i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #64748b;
    pointer-events: none;
}
input:focus, select:focus {
    border-color: #0d4c92;
    /* box-shadow: 0 0 0 4px rgba(74, 222, 181, 0.15); */
    outline: none;
}

/* Results */
.results {
    background: #f8fafc;
    border-radius: 16px;
    padding: 28px 32px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1.1rem;
}

.result-row:last-child {
    border-bottom: none;
    padding-top: 24px;
    font-size: 1.4rem;
    font-weight: 700;
}

.total-amount {
    color: #0d4c92;
    font-weight: 700;
}
.calculator-section a {
    display: block;
    margin-top: 40px;
    width: 100%;
    padding: 18px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.calculator-section a:hover {
    background: #0a3d75;
    color: #FFF;
}

@media (max-width: 768px) {
    .pricing-area {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 2.2rem;
    }
}


section.qs-pricing-area .row {
    justify-content: center;
    align-items: center;
}

section.qs-breakdown-wrapper {
    background: #f8fafc;
    padding: 60px;
}
section.qs-breakdown-wrapper .row {
    justify-content: center;
}
.qs-breakdown-wrapper tr th {
    color: #FFF;
}