.hero-bg {
      background: linear-gradient(80deg, #0d4c92, #9ee5c9);
      color: white;
      padding: 80px 0;
      text-align: center;
}
section.hero-bg.qp-pricing-wrapper h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 24px 0 16px;
    color: #FFF;
}
section.hero-bg.qp-pricing-wrapper span {
    background: rgb(254 243 199);
    padding: 10px 24px;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: 600;
    color: #92400e;
}
section.hero-bg.qp-pricing-wrapper span a {
    color: #92400e;
}
section.hero-bg.qp-pricing-wrapper span a svg {
    margin-top: -2px;
}
section.hero-bg.qp-pricing-wrapper p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    color: #FFF;
}
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.card-title {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 12px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.card p {
    color: #4b5563;
    font-size: 15px;
}

.calculator-section {
    padding: 40px 0 70px;
}
.calculator {
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 48px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.calculator h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 48px;
    color: #1f2937;
}

.form-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0px; */
    margin-bottom: 48px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #374151;
    font-size: 18px;
    text-align: left;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 18px 20px;
    font-size: 20px;
    font-weight: 500;
    border: 2px solid #d1d5db;
    border-radius: 16px;
    transition: all 0.3s ease;
    appearance: none;
    position: relative;
}
.qp-complexity {
    position: relative;
}
.qp-complexity span.dropdown-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #64748b;
    pointer-events: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #9ee5c9;
    outline: none;
    box-shadow: 0 0 0 4px rgba(158, 229, 201, 0.15);
}

.result-box {
    background: linear-gradient(80deg, #0d4c92, #9ee5c9);
    color: white;
    border-radius: 20px;
    padding: 40px 32px;
    margin-bottom: 32px;
}

.result-total {
    text-align: center;
    margin-bottom: 32px;
}

.result-total small {
    font-size: 14px;
    letter-spacing: 1px;
    color: #FFF;
    font-weight: 700;
}

.result-total .amount {
    font-size: 52px;
    font-weight: 700;
    margin-top: 8px;
    color: #FFF;
}
.breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    text-align: center;
}

.breakdown-item h4 {
    font-size: 18px;
    color: #FFF;
    margin-bottom: 6px;
}
.breakdown-item p {
    font-size: 28px;
    font-weight: 600;
    color: #FFF;
}
.calculator a {
    display: inline-block;
    margin: 0 auto;
    background: #0d4c92;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.calculator a:hover {
    background: #0a3d75;
}


/* Everything You Need to Automate Accounts Payable */
section.qp-automate-wrapper {
    padding: 60px 0px;
}
section.qp-automate-wrapper {
    padding: 60px 0px;
    background: #f8fafc;
}
.qp-automate-wrapper-bx {
    background: linear-gradient(135deg, #e8eeff, #d0f5ea);
    padding: 30px;
    border: 1px solid #0d4c926b;
    border-radius: 12px;
    height: 100%;
}
.qp-automate-wrapper-bx h3 {
    font-size: 22px;
}
.qp-automate-wrapper-bx svg {
    background: #0d4c92;
    padding: 6px;
    border-radius: 10px;
    margin-bottom: 15px;
}


/* Everything You Need to Automate Accounts Payable */
section.qp-breakdown-wrapper {
    padding: 60px 0px 0px;
}

section.qp-breakdown-wrapper .row {
    justify-content: center;
}
section.qp-breakdown-wrapper tr th {
    color: #FFF;
}


@media screen and (max-width:1200px) {
.pricing-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}  
.price {
    font-size: 30px;
}
    
}
@media screen and (max-width:992px) {
.pricing-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.card {
    padding: 20px;
}
.result-box {
    padding: 20px 20px;
    margin: 0;
}
.breakdown {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}
.breakdown-item h4 {
    font-size: 15px;
}
.breakdown-item p {
    font-size: 20px;;
}

}
@media screen and (max-width:575px) {
section.hero-bg.qp-pricing-wrapper h1 {
    font-size: 34px;
}
.calculator {
    padding: 20px;
}

}