.p2s-calculator {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.p2s-card, .oil-gas-after-submit {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 20px 40px rgba(13, 58, 73, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    text-align: left;
}
.p2s-card__header {
    background: #0d3a49;
    padding: 32px 32px 28px 32px;
    color: #ffffff;
    position: relative;
}
.p2s-card__badge {
    background: rgba(238, 247, 134, 0.15);
    color: #eef786;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 3px 15px;
    border-radius: 30px;
    text-transform: uppercase;
    display: flex;
    max-width: fit-content;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.p2s-card__badge svg {
    height: 11px;
}
.p2s-card__header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 8px;
    margin-bottom: 0;
}
.p2s-card__body {
    padding: 32px;
}
.p2s-tabs {
    display: flex;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
}
.p2s-tabs__tab {
    flex: 1;
    padding: 6px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.p2s-tabs__tab--active {
    background: #ffffff;
    color: #7a4399;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.p2s-input {
    display: flex;
    align-items: stretch;
    border: 1.5px solid #cbd5e1;
    border-radius: 14px;
    overflow: hidden;
    background: #f8fafc;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}
.p2s-input:focus-within {
    border-color: #0d3a49;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(13, 58, 73, 0.08);
}
.p2s-input:focus-within .p2s-input__icon {
    color: #0d3a49;
}
.p2s-input__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    border-right: 1px solid #e2e8f0;
}
.p2s-input__icon .drop-icon{
    display: flex;
    justify-content: center;
}
article .p2s-input__field {
    flex: auto;
    border: none;
    background: transparent;
    padding: 11px;
    font-size: 14px;
    font-weight: 600;
    color: #0d3a49;
    outline: none;
    min-width: 100px;
}
article .p2s-input__field:focus{
    border-style: none;
}
.p2s-input__addon {
    display: flex;
    align-items: center;
    padding: 0 16px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 700;
    border-left: 1px solid #e2e8f0;
}
.p2s-slider__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.p2s-form__label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #475569;
    margin: 0;
}
.p2s-slider__value {
    background: #f5effa;
    color: #7a4399;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}
.p2s-slider__container {
    margin-bottom: 28px;
}
article .p2s-slider__input {
    width: 100%;
    height: 7px;
    border-radius: 3px;
    background: #cbd5e1;
    outline: none;
    cursor: pointer;
}
article .p2s-slider__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 5px solid #7a4399;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
article .p2s-slider__input::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 5px solid #7a4399;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

article .p2s-slider__input::-webkit-slider-runnable-track {
    box-shadow: none;
}
article .p2s-slider__input::-moz-range-track {
    height: 6px;
    background: #cbd5e1;
    border: none;
    box-shadow: none;
}
main article .p2s-btn {
    width: 100%;
    padding: 16px;
    background: #caa2dd;
    color: #000000;
    border: none;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(202, 162, 221, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.p2s-btn:hover {
    background: #b88ecb;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(202, 162, 221, 0.3);
    color: #0d3a49;
}
span.pound-icon {
    font-size: 20px;
    color: #7f8a9b;
}
.p2s-results {
    display: none;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
    text-align: center;
    animation: fadeIn 0.4s ease;
}
.p2s-results h3 {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #15803d;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.p2s-results__text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 12px;
}
.p2s-results__amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: #16a34a;
    margin: 0 2px;
    display: inline;
    vertical-align: baseline;
}
.p2s-results .p2s-results__subtitle {
    font-size: 0.8rem;
    color: #166534;
    opacity: 0.8;
}
article .oil-gas-after-submit{
    display: none;
}
.p2s-boiler-results {
    display: none;
    border: 1.5px solid #d8b4e2;
    border-radius: 16px;
    padding: 28px;
    margin-top: 24px;
    animation: fadeIn 0.4s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf4ff 0%, #ffffff 60%);
}
.p2s-boiler-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #7a4399 0%, #d8b4e2 100%);
    border-radius: 16px 0 0 16px;
}
.p2s-results__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0d3a49;
    margin-bottom: 20px;
    padding-left: 8px;
}
.p2s-results__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.p2s-results__data {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.p2s-results__row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #f3e8ff;
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 2px 6px rgba(122, 67, 153, 0.06);
}
.p2s-results__label {
    color: #ea580c;
    font-weight: 700;
    font-size: 0.88rem;
    min-width: 110px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.p2s-results__value {
    color: #0d3a49;
    font-weight: 800;
    font-size: 1.2rem;
}
.p2s-results__graphic {
    width: 120px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}
.p2s-results__next {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #f3e8ff;
    padding-left: 8px;
}
.p2s-results__next h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0d3a49;
    margin-bottom: 4px;
}
.p2s-results__next p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}
.p2s-results__next a {
    color: #7a4399;
    text-decoration: none;
    font-weight: 600;
}
@media (max-width: 768px) {
    .p2s-input__addon{
        padding: 0 10px;
        min-width: 75px;
    }
    .p2s-card__body {
        padding: 20px;
    }
    .p2s-results__graphic {
        display: none;
    }
}