* {
    box-sizing: border-box;
}

.ap-calculator-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.ap-calculator-container {
    max-width: 1440px;
    margin: 0 auto;
}

/* Header Section */
.ap-calculator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 40px 30px;
    gap: 30px;
}

.ap-calculator-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a2940;
    margin: 0;
    line-height: 1.2;
    flex: 1;
}

.book-demo-button {
    background: linear-gradient(135deg, #ff6600 0%, #ff8833 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration : none;
}

.request-button-mobile:hover,
.book-demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.book-demo-button svg {
    width: 20px;
    height: 20px;
}

/* Top Input Section */
.ap-calculator-top-section {
    display: flex;
    align-items: stretch;
    position: relative;
    height: 185px;
    padding: 0 10px;
    background: rgba(229, 229, 229, 0.70); 
    box-shadow: 30px 30px 50px rgba(13, 39, 80, 0.16) inset, -30px -30px 50px rgba(255, 255, 255, 0.70) inset, 10px 10px 48px rgba(0, 0, 0, 0.75), -10px -10px 48px rgba(255, 255, 255, 0.70); 
    border-radius: 20px;
}

/* Orange Badge - Left Side */
.orange-badge {
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
    background: linear-gradient(135deg, #ff6600 0%, #ff8833 100%);
    color: white;
    padding: 40px 30px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-radius: 30px;
}

.orange-badge h2 {
    margin: 0 0 15px 0;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.orange-badge p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.95;
    max-width: 220px;
}

/* Input Fields Grid */
.input-fields-container {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 30px 0px 30px 0px;
    align-items: center;
}

.input-field-wrapper {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    position: relative;
    min-height: 150px;
    align-items: center;
}

.input-field-wrapper:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #334455, transparent);
    background: #D9D9D9;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); 
    border-radius: 5px;
    outline: 1px #07375F solid;
}

.input-field-wrapper label {
    color: #1a2940;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.3;
    text-align: center;
    min-height: 85px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.input-field-wrapper input {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(51, 68, 85, 0.2);
    border-radius: 8px;
    padding: 18px 12px;
    font-size: 22px;
    font-weight: 700;
    color: #334455;
    text-align: center;
    transition: all 0.3s ease;
    width: 160px;
    height: 36px;
}

.input-field-wrapper input:focus {
    outline: none;
    border-color: #ff6600;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

/* Currency Input Wrapper */
.input-with-currency {
    position: relative;
    width: 160px;
}

.currency-symbol {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 700;
    color: #334455;
    pointer-events: none;
}

.input-with-currency input {
    padding-left: 32px;
}

/* Bottom Results Section */
.ap-calculator-bottom-section {
    display: grid;
    grid-template-columns: 380px 1fr 400px;
    gap: 10px;
    padding: 30px 10px;
    /*padding: 30px;*/
    align-items: start;
}

/* Left Sidebar Box */
.info-sidebar {
    background: #36578C;
    border-radius: 16px;
    padding: 35px;
    color: white;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 350px;
}

.info-sidebar h3 {
    margin: 0 0 20px 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.info-sidebar p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 20px 0;
    opacity: 0.95;
    text-align: justify;
}

.info-sidebar .cta-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Middle Results Grid (2x2) */
.results-grid-middle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.results-grid-header {
    display: none;
}

.result-card {
    background: white;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 255px;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.result-card-header {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
    display: flex;
    justify-content: center;
}

.result-card-title {
    color: #ff6600;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.3;
    display: flex;
    justify-content: center;
    text-align: center;
}

.result-card-value-section {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.result-card-value {
    font-size: 40px;
    font-weight: 900;
    color: #1a2940;
    margin: 0;
    line-height: 1;
}

.result-card-value.has-unit {
    display: inline-block;
}

.result-card-unit {
    font-size: 1.2em;
    font-weight: 600;
    color: #64748b;
    margin-left: 8px;
}

/* Right Total Card */
.total-savings-card {
    background: white;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 420px;
    width: 380px;
}

.total-savings-card-mobile {
    display: none;
}

.total-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 0px;
}

.total-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.total-value {
    font-size: 48px;
    font-weight: 900;
    color: #1a2940;
    margin: 0px 0;
    line-height: 1;
}

.total-label {
    color: #ff6600;
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 15px 0 0px 0;
    line-height: 1.2;
}

.request-button {
    background: #072950;
    box-shadow: 10px 10px 10px 0 rgba(111, 111, 111, 0.40);
    color: white;
    border: none;
    padding: 18px 12px;
    border-radius: 20px;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.request-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 41, 64, 0.4);
}

.request-button:active {
    transform: translateY(0);
}

/* User Info Modal */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.user-info-modal.active {
    display: flex;
}

.user-info-content {
    background: white;
    border-radius: 16px;
    padding: 45px;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.user-info-content h3 {
    margin: 0 0 10px 0;
    color: #1a2940;
    font-size: 2em;
    font-weight: 700;
}

.user-info-content p {
    color: #64748b;
    margin: 0 0 30px 0;
    font-size: 1.05em;
}

.user-info-form .input-group {
    margin-bottom: 20px;
}

.user-info-form label {
    display: block;
    color: #1a2940;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.user-info-form input {
    width: 100%;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.user-info-form input:focus {
    outline: none;
    border-color: #ff6600;
}

.user-info-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.user-info-actions button {
    flex: 1;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1.05em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit {
    background: linear-gradient(135deg, #ff6600 0%, #ff8833 100%);
    color: white;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

.btn-cancel {
    background: #e2e8f0;
    color: #64748b;
}

.btn-cancel:hover {
    background: #cbd5e1;
}

.save-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.save-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.save-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

/* Mobile request button - visible only on mobile */
.request-button-mobile {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8833 100%);
    color: white;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    margin: 0;
    border: 1px solid white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(26, 41, 64, 0.3);
    transition: all 0.3s ease;
}

@media (min-width: 769px) {
    .request-button-mobile {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ap-calculator-wrapper {
        padding: 15px;
    }

    /* Mobile header styles */
    .ap-calculator-header {
        flex-direction: column;
        align-items: stretch;
        padding: 20px 15px;
        gap: 15px;
    }

    .ap-calculator-main-title {
        font-size: 24px;
        text-align: center;
        line-height: 1.3;
    }

    .book-demo-button {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
        background: #042745;
    }

    .ap-calculator-container {
        background: white;
        border: 8px solid white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    /* Mobile: Top section with orange badge and inputs stacked */
    .ap-calculator-top-section {
        flex-direction: column;
        height: auto;
        padding: 0;
        background: white;
        box-shadow : none;
    }

    .orange-badge {
          clip-path: polygon(
    0 0,           /* top left */
    100% 0,        /* top right */
    100% 70%,      /* right side before point */
    50% 100%,      /* bottom point */
    0 70%          /* left side before point */
  );
        min-width: 100%;
        width: 100%;
        padding: 45px;
        border-radius: 30px;
        /*background: linear-gradient(135deg, #ff6600 0%, #ff8833 100%);*/
    }

    .orange-badge h2 {
        font-size: 20px;
        margin: 0 0 8px 0;
        text-align: center;
    }

    .orange-badge p {
        font-size: 12px;
        max-width: 100%;
        text-align: center;
        line-height: 1.4;
    }

    /* Input fields stacked vertically */
    .input-fields-container {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 15px;
        background: white;
    }

    .input-field-wrapper {
        min-height: auto;
        padding: 0;
        align-items: flex-start;
    }

    .input-field-wrapper:not(:last-child)::after {
        display: none;
    }

    .input-field-wrapper label {
        font-size: 16px;
        min-height: auto;
        margin-bottom: 8px;
        text-align: center;
        align-items: center;
        font-weight: 600;
        color: #1a2940;
        line-height: 1.3;
        width: 100%;
    }

    .input-with-currency {
        width: 100%;
    }

    .input-with-currency input {
        width: 100%;
        padding-left: 32px;
    }

    .currency-symbol {
        font-size: 16px;
    }

    .input-field-wrapper input {
        width: 100%;
        font-size: 16px;
        padding: 10px 12px;
        height: 40px;
        text-align: center;
    }

    /* Bottom section - stacked vertically */
    .ap-calculator-bottom-section {
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 0;
        background: #ffffff;
    }

    /* Hide the left sidebar on mobile */
    .info-sidebar {
        display: none;
    }

    /* Total savings card appears first on mobile */
    .total-savings-card {
        display: none;
    }

    .total-savings-card-mobile {
        display: flex;
        width: calc(100% - 40px);
        height: auto;
        padding: 22px 20px;
        border-radius: 14px;
        background: #36578C;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
        margin: 20px auto 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .total-icon-wrapper {
        display: none;
    }

    .total-value {
        font-size: 40px;
        color: white;
        margin: 5px 0;
        font-weight: 900;
    }

    .total-label {
        color: white;
        font-size: 16px;
        margin: 0;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .request-button {
        display: none;
    }

    .total-savings-card-mobile .request-button {
        display: block;
        background: linear-gradient(135deg, #ff6600 0%, #ff8833 100%);
        margin-top: 12px;
    }

    .results-grid-header {
        display: block;
        background: transparent;
        color: #ffffff;
        font-size: 32px;
        line-height: 45px;
        font-weight: 500;
        text-align: center;
        padding: 0;
        margin: 0 0 12px 0;
        width: auto;
    }

    /* Results grid - stacked vertically */
    .results-grid-middle {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
        margin-top: 2em;
        background: #07375F;
        order: 1;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .results-grid-middle > .results-grid-header {
        display: block;
        grid-column: 1 / -1;
    }

    .result-card {
        min-height: auto;
        padding: 18px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        min-width: auto;
        background: white;
        border-radius: 30px;
        margin-bottom: 0;
    }

    .result-card:hover {
        transform: none;
    }

    .result-card-header {
        font-size: 12px;
        justify-content: center;
        text-align: center;
        color: #64748b;
        margin-bottom: 5px;
    }

    .result-card-title {
        font-size: 16px;
        justify-content: center;
        text-align: center;
        margin: 0 0 15px 0;
        line-height: 1.3;
    }

    .result-card-value {
        font-size: 32px;
        text-align: center;
    }

    .result-card-value-section {
        justify-content: center;
    }

    .result-card-value {
        font-size: 2.5em;
    }

    .total-value {
        font-size: 2.8em;
    }

    .total-label {
        font-size: 1.2em;
    }

    .orange-badge h2 {
        font-size: 2em;
    }

}

@media (min-width: 769px) {

    /* Hide mobile button on desktop */
    .request-button-mobile {
        display: none;
    }
}

@media (max-width: 1400px) {
    .ap-calculator-bottom-section {
        grid-template-columns: 280px 1fr 320px;
        gap: 16px;
    }

    .info-sidebar {
        width: 100%;
    }

    .total-savings-card {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 1200px) {
    .ap-calculator-bottom-section {
        grid-template-columns: 1fr;
    }

    .info-sidebar {
        order: 1;
        min-height: auto;
    }

    .results-grid-middle {
        order: 2;
    }

    .total-savings-card {
        order: 3;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .orange-badge p {
        max-width: none;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .ap-calculator-header {
        padding: 22px 24px;
        gap: 16px;
    }

    .ap-calculator-main-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .book-demo-button {
        padding: 14px 20px;
        font-size: 16px;
    }

    .ap-calculator-top-section {
        height: auto;
        padding: 20px;
        gap: 20px;
        align-items: stretch;
    }

    .orange-badge {
        min-width: 260px;
        padding: 24px;
        clip-path: none;
        border-radius: 12px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .orange-badge h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .orange-badge p {
        font-size: 14px;
        line-height: 1.5;
    }

    .input-fields-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 10px 0 0;
        align-items: start;
    }

    .input-field-wrapper {
        min-height: auto;
        padding: 0 10px;
        align-items: center;
    }

    .input-field-wrapper label {
        font-size: 18px;
        min-height: auto;
        margin-bottom: 10px;
        text-align: center;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .input-field-wrapper input {
        width: 100%;
        height: 44px;
        font-size: 18px;
    }

    .input-with-currency {
        width: 100%;
    }

    .input-with-currency input {
        width: 100%;
        text-align: center;
    }

    .currency-symbol {
        left: 10px;
    }

    .ap-calculator-bottom-section {
        padding: 20px;
        gap: 16px;
    }

    .info-sidebar {
        width: 100%;
        padding: 24px;
        min-height: auto;
    }

    .results-grid-middle {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .result-card {
        min-height: 180px;
        padding: 16px;
    }

    .result-card-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .result-card-value {
        font-size: 32px;
    }

    .total-savings-card {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .total-value {
        font-size: 40px;
    }

    .total-label {
        font-size: 22px;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .input-fields-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }

    .input-field-wrapper:not(:last-child)::after {
        display: none;
    }

    .orange-badge {
        min-width: 100%;
        clip-path: none;
        padding: 30px 20px;
    }

    .ap-calculator-top-section {
        flex-direction: column;
    }
}

/* ROI Factors + FAQ Section */
.ap-info-section {
    background: #ffffff;
    padding: 30px 0 40px;
}

.ap-info-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Savings Method Section */
.ap-savings-section {
    background: #07375F;
    padding: 30px 0 40px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.ap-savings-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

.ap-savings-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.ap-savings-card {
    background: #0c355a;
    color: #ffffff;
    width: 100%;
    max-width: 620px;
}

.ap-savings-title {
    margin: 0 0 14px 0;
    background: #35558a;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    padding: 10px 14px;
    text-align: center;
    width: 100%;
}

.ap-savings-text {
    margin: 0 0 14px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
}

.ap-savings-highlight {
    display: grid;
    grid-template-columns: 6px 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.ap-savings-desktop {
    display: block;
}

.ap-savings-mobile {
    display: none;
}

.ap-savings-highlight-body {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
}

.ap-savings-metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 78px;
}

.ap-savings-metric-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
}

.ap-savings-accent {
    width: 6px;
    border-radius: 4px;
}

.ap-savings-accent-blue {
    background: #2f6aa3;
}

.ap-savings-accent-orange {
    background: #ff7a1a;
}

.ap-savings-number {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

@media (min-width: 901px) {
    .ap-savings-title {
        padding: 14px 18px;
        min-height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .result-card-inner{
        margin-top: 1rem;
    }
    /*.result-card-value-section{*/
    /*    margin-bottom: 1rem;*/
    /*}*/

    .ap-savings-desktop {
        display: grid;
        gap: 18px;
    }

    .ap-savings-desktop .ap-savings-text {
        margin-bottom: 8px;
    }

    .ap-savings-desktop .ap-savings-text+.ap-savings-highlight {
        margin-top: 8px;
    }

    .ap-savings-accent {
        display: none;
    }

    .ap-savings-desktop .ap-savings-highlight {
        display: block;
        margin-bottom: 10px;
    }

    .ap-savings-highlight-body {
        grid-template-columns: 1fr 3fr;
        align-items: end;
    }

    .ap-savings-highlight-secondary .ap-savings-highlight-body {
        align-items: center;
    }

    .ap-savings-metric {
        flex-direction: row;
        align-items: baseline;
        gap: 6px;
        min-width: 0;
    }

    .ap-savings-highlight-body .ap-savings-text {
        margin: 0;
    }
}

.ap-savings-list {
    margin: 0 0 18px 18px;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

.ap-savings-sublist {
    margin: 6px 0 0 18px;
    padding: 0;
    list-style-type: lower-alpha;
}

.ap-savings-sublist li {
    margin-bottom: 4px;
}

.ap-savings-cta {
    margin-top: 10px;
    gap: 4px;
    background: #287C14;
    color: #ffffff;
    padding: 18px 18px;
    border: 1px solid white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.ap-savings-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 124, 20, 0.4);
}

/* ROI Factors Row */
.ap-info-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.ap-info-media,
.ap-info-content {
    width: 100%;
}

.ap-info-media {
    flex: 0 1 600px;
    max-width: 600px;
}

.ap-info-content {
    flex: 1 1 740px;
    max-width: 740px;
}

.ap-faq-media img,
.ap-info-media img {
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 750px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ap-faq-title,
.ap-info-title {
    margin: 0 0 16px 0;
    color: #202020;
    font-size: 35px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0;
    font-family: inherit;
}

.ap-info-subtitle {
    margin: 0 0 24px 0;
    color: #000000;
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0;
    font-family: inherit;
}

.ap-info-list-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

.ap-info-list-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 30px;
}

.ap-info-list {
    margin: 0;
    padding-left: 18px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0;
    overflow-y: auto;
}

.ap-info-list li {
    margin-bottom: 6px;
}

.ap-info-list-desktop {
    column-count: 2;
    column-gap: 30px;
}

.ap-info-list-desktop>li {
    break-inside: avoid;
}

.ap-info-list-parent {
    margin-bottom: 10px;
    font-weight: 500;
}

.ap-info-list-child {
    margin-top: 8px;
    padding-left: 18px;
    font-weight: 400;
    list-style: disc;
}

.ap-info-list-child li {
    margin-bottom: 4px;
}

.ap-info-slider-dots {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.ap-info-slider-track {
    display: none;
}

.ap-info-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(26, 41, 64, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
}

.ap-info-dot-active {
    background: #000;
}

.ap-info-nav {
    display: none;
}

.ap-info-cta {
    margin-top: 20px;
    color: white;
    padding: 16px 20px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(26, 41, 64, 0.25);
    transition: all 0.3s ease;
    border-radius: 20px;
    background: #072950;
    box-shadow: 6px 6px 4px 0 rgba(0, 0, 0, 0.25);
}

.ap-info-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 41, 64, 0.4);
}

/* FAQ Row */
.ap-faq-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
}

.ap-faq-content,
.ap-faq-media {
    width: 100%;
}

.ap-faq-content {
    flex: 1 1 740px;
    max-width: 740px;
}

.ap-faq-media {
    flex: 0 1 600px;
    max-width: 600px;
}

.ap-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 10px;
}

.ap-faq-item {
    background: #F5F5F5;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    padding: 12px 14px;
}

.ap-faq-item[open] {
    background: #ffffff;
}

.ap-faq-question {
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0;
    color: #1a2940;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ap-faq-question::-webkit-details-marker {
    display: none;
}

.ap-faq-question::after {
    content: '⌄';
    stroke-width: 2px;
    color: #000;
}

details[open]>.ap-faq-question::after {
    content: '^';
}

.ap-faq-answer {
    margin: 10px 0 0 0;
    color: #334455;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
}

@media (min-width: 769px) {
    .ap-savings-cta {
        display: none;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .ap-savings-row {
        flex-direction: column;
        align-items: stretch;
    }

    .ap-savings-card {
        max-width: none;
        width: 100%;
    }

    .ap-savings-highlight-body {
        grid-template-columns: 140px 1fr;
        align-items: start;
        gap: 16px;
        width: 100%;
    }

    .ap-savings-metric {
        width: 140px;
        flex-direction: row;
        align-items: baseline;
        gap: 6px;
    }

    .ap-savings-desktop .ap-savings-highlight,
    .ap-savings-desktop .ap-savings-highlight-body {
        display: grid;
    }

    .ap-savings-desktop .ap-savings-highlight {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .ap-info-row,
    .ap-faq-row {
        align-items: stretch;
    }

    .ap-info-row {
        flex-direction: column;
    }

    .ap-faq-row {
        flex-direction: column-reverse;
    }

    .ap-info-content,
    .ap-faq-content {
        max-width: none;
        width: 100%;
    }

    .ap-info-media,
    .ap-faq-media {
        max-width: 100%;
        height: 360px;
    }

    .ap-info-media img,
    .ap-faq-media img {
        display: block;
        max-width: 100%;
        height: 100%;
    }

    .ap-info-cta {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .ap-savings-desktop {
        display: none;
    }

    .ap-savings-mobile {
        display: block;
    }

    .ap-savings-row {
        flex-direction: column;
        align-items: stretch;
    }

    .ap-savings-card {
        max-width: none;
    }

    .ap-savings-section {
        background: #ffffff;
        padding: 20px 0 30px;
    }

    .ap-savings-card {
        background: #ffffff;
        color: #0c355a;
    }

    .ap-savings-title {
        background: #d7e6ec;
        color: #0c355a;
        text-align: left;
        padding: 10px 35px;
        font-size: 32px;
        font-weight: 500;
        line-height: 45px;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .ap-savings-title-right {
        text-align: right;
    }

    .ap-savings-text {
        font-size: 16px;
        font-weight: 500;
        line-height: 21px;
    }

    .ap-savings-number {
        font-size: inherit;
        font-weight: inherit;
        line-height: inherit;
    }

    .ap-savings-highlight-body {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .ap-savings-metric {
        flex-direction: row;
        gap: 6px;
        align-items: baseline;
    }

    .ap-savings-highlight {
        background: inherit;
    }

    .ap-savings-highlight .ap-savings-text {
        margin-bottom: 0;
    }

    .ap-savings-list {
        font-size: 16px;
        font-weight: 500;
        line-height: 21px;
        margin-left: 20px;
    }

    .ap-savings-cta {
        width: 100%;
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
    }

    .ap-info-content,
    .ap-faq-content {
        max-width: none;
        width: 100%;
    }

    .ap-info-section {
        padding: 30px 0 40px;
    }

    .ap-info-container {
        padding: 0 20px;
    }

    .ap-info-title {
        font-size: 35px;
        line-height: 40px;
        text-align: center;
    }

    .ap-info-subtitle {
        font-size: 16px;
        line-height: 21px;
    }

    .ap-info-list-desktop {
        column-count: 1;
        display: none;
    }

    .ap-faq-title {
        font-size: 32px;
        line-height: 40px;
        text-align: center;
    }

    .ap-faq-media img {
        max-height: 360px;
    }

    .ap-info-row {
        background: linear-gradient(180deg, #ff7a1a 0%, #ff6600 100%);
        border-radius: 20px;
        padding: 22px 18px;
        gap: 18px;
    }

    .ap-info-title,
    .ap-info-subtitle {
        color: #ffffff;
    }

    .ap-info-list-card {
        position: relative;
        background: #f3e7dc;
        border-radius: 16px;
        width: 100%;
        height: 380px;
        padding: 22px 22px 16px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
        margin: 0 auto;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ap-info-slider-track {
        display: block;
        position: relative;
        width: 100%;
        flex: 1;
        padding: 10px 34px 24px;
    }

    .ap-info-slide {
        position: absolute;
        top: 10px;
        left: 34px;
        right: 34px;
        bottom: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        user-select: none;
        transition: opacity 0.25s ease;
    }

    .ap-info-slide.is-active {
        opacity: 1;
        visibility: visible;
    }

    .ap-info-slide .ap-info-list {
        max-width: 260px;
        margin: 0 auto;
        text-align: left;
    }

    .ap-info-list li {
        margin-bottom: 8px;
        line-height: 1.25;
    }

    .ap-info-list-child {
        margin-top: 6px;
    }

    .ap-info-slider-dots {
        display: flex;
        margin-top: 0;
    }

    .ap-info-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        border-radius: 6px;
        border: none;
        background: #ff7a1a;
        color: #ffffff;
        font-size: 18px;
        line-height: 1;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .ap-info-nav:disabled {
        opacity: 0.4;
        cursor: default;
        box-shadow: none;
    }

    .ap-info-nav-prev {
        left: 10px;
    }

    .ap-info-nav-next {
        right: 10px;
    }

    .ap-info-cta {
        width: 100%;
        background: #1a2940;
        font-size: 16px;
        line-height: 1;
    }

    .ap-info-row,
    .ap-faq-row {
        flex-direction: column;
        align-items: stretch;
    }

    .ap-info-media,
    .ap-faq-media {
        display: none;
    }
}

@media (max-width: 390px) {
    .ap-info-slide {
        overflow-y: auto;
    }
}
