* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2952FF;
    --primary-blue-hover: #133EE2;
    --light-blue: #F0F5FF;
    --light-gray: #F5F5F5;
    --medium-gray: #E8E8E8;
    --dark-gray: #666;
    --text-dark: #222;
    --text-light: #666666;
    --border-color: #D0D0D0;
}

.uc129-prices-page-base-styles {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.5;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.text-light{
    --un-light-rgb: 102, 102, 102;
    color: var(--text-light);
}

/* ============================================ */
/* Section 1: Hero Section */
/* ============================================ */
/* Hero Section */
.hero-section{
    background-color: var(--light-gray);
    margin-bottom: 64px;
    padding: 56px 0;
}

.hero-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 14px;
    color: var(--text-light);
}

.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
}

.hero-badges li {
    font-size: 18px;
    font-weight: 400;
}

.hero-badges li::before {
    content: '✓ ';
    box-sizing: content-box;
    color: #ffffff;
    margin-right: 16px;
    background-color: var(--primary-blue);
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    line-height: 24px;
    border: 8px solid #e1e7f8;
}

/* ============================================ */
/* Pricing Sections */
/* ============================================ */

.pricing-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 6px;
}

.section-header p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.section-header .help-link {
    margin-top: 8px;
    display: inline-block;
    background-color: transparent;
    border: none;
}

.help-link {
    color: var(--primary-blue);
    text-decoration: none;
    cursor: pointer;
}

.help-link:hover {
    text-decoration: underline;
}

.options-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.options-container-help-text{
    font-size: 14px;
}

/* ============================================ */
/* Radio/Checkbox Input Styling */
/* ============================================ */

input[type="radio"],
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}

/* ============================================ */
/* Option Item Styling */
/* ============================================ */
.option-label {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

input[type="checkbox"]:checked + .option-label,
input[type="radio"]:checked + .option-label {
    border-color: var(--primary-blue);
}

.option-badge {
    display: inline-block;
    background-color: #D0F59E;
    color: #09231F;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
}

.option-title{
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.option-title-text {
    font-size: 18px;
    font-weight: 500;
}

.option-subtitle {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

.option-prices-container {
    text-align: right;
    margin-left: auto;
}

.option-price .price-value {
    font-size: 18px;
}

.option-prices-container .price-suffix{
    font-size: 14px;;
}

.option-info {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 6px;
}

/* ============================================ */
/* Sub-options Styling */
/* ============================================ */

.sub-options {
    display: none;
    background-color: #fafafa;
    padding: 24px;
    border-radius: 24px;
    /* margin-bottom: 20px; */
    margin-left: 24px;
}

.sub-options-header {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    display: block;
}

.sub-options-body{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sub-options-info-section {
    margin-top: 16px;
    font-size: 14px;
}

.sub-options-info-section ul {
    list-style: none;
    padding-left: 0;
}

.sub-option-item .option-price {
    margin-top: 8px;
}

.sub-option-label {
    display: block;
    padding: 14px;
    padding-left: 24px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

input[type="radio"]:checked + .sub-option-label {
    border-color: var(--primary-blue);
}

.sub-option-info {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================ */
/* Add-ons Section */
/* ============================================ */
.option-indicator-x{
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-left: 40px;
    flex-shrink: 0;
    font-size: 0;
    width: 40px;
    height: 40px;
    color: var(--primary-blue);
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.option-label:hover .option-indicator-x{
    color: #FFFFFF;
}

.option-label .option-indicator-x rect{
    stroke: var(--primary-blue);
    fill: #FFFFFF;
}

.option-label:hover .option-indicator-x rect{
    stroke: var(--primary-blue);
    fill: var(--primary-blue);
}


input[type="checkbox"]:checked + .option-label .option-indicator-x{
    color: #93A2AD;
    transform: rotate(45deg);
}

input[type="checkbox"]:checked + .option-label .option-indicator-x rect{
    stroke: #93A2AD;
    fill: #FFFFFF;
}

/* ============================================ */
/* Summary Section */
/* ============================================ */

.summary-section{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
}

.summary-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: var(--light-gray);
    padding: 24px;
    border-radius: 24px;
}

.summary-list-wrapper h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-list-wrapper .price-suffix{
    font-size: 14px;
}

.summary-pricing {
    background-color: #fff;
    border-radius: 8px;
    margin-top: 32px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.total {
    padding-top: 32px;
}

.price-row.total .price-suffix{
    font-size: 18px;
}

.price-value {
    font-size: 18px;
}

.price-row.total .price-value {
    font-size: 40px;
    font-weight: 600;
}

.disclaimer {
    font-size: 12px;
    color: var(--text-light);
    /* margin-top: 16px; */
}

/* ============================================ */
/* Buttons */
/* ============================================ */
.static-cta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    margin-top: 40px;
}

.cta-button,
.cta-button-outline{
    border-width: 1px;
    border-style: solid;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.cta-button {
    border-color: var(--primary-blue);
    background-color: var(--primary-blue);
    color: #fff;
    /* transition: all 0.3s ease; */
    min-width: 220px;
    text-align: center;
}

.cta-button:hover {
    border-color: var(--primary-blue-hover);
    background-color: var(--primary-blue-hover);
}

.cta-button-outline{
    color: #09231F;
    border-color: #09231F;
    background-color: transparent;
}

/* ============================================ */
/* Sticky Bottom Bar */
/* ============================================ */

.price-page-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #93A2AD;
    padding: 32px 0;
    z-index: 1000;
    display: flex;
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.sticky-cta{
    display: flex;
    align-items: center;
    gap: 40px;
}

.sticky-price .value{
    font-size: 28px;
    font-weight: 600;
}

.sticky-price  .price-suffix{
    font-size: 16px;
}


/* ============================================ */
/* Price Details Table shown in popup */
/* ============================================ */

.price-details-table h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}

.price-details-table th {
    padding-bottom: 10px;
}

.price-details-table td {
    padding: 10px;
    vertical-align: top;
}

.price-details-table ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ============================================ */
/* Contact form */
/* ============================================ */

.feedback-popup-content-controls{
    text-align: right;
}

.UC129ContactInfoCont{
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 6px;
}

.uc129 .FormLabelCont {
    margin-bottom: 4px;
}

.uc129__contact-info-cont .FormBox{
    height: 50px;
}

.UC129MainContainer{
    width: 450px;
}

.uc129 .FormLabel{
    margin-bottom: 0;
}

.uc129 .RequiredFieldCont{
    display: inline-block;
}

.uc129 .ContactInfoCont .FormLabel, .uc129 .CommentCont .FormLabel{
    display: inline-block;
}

/* ============================================ */
/* Responsive Design */
/* ============================================ */

@media (max-width: 768px) {
    /* Hero Section */
    .hero-section-content {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    /* Sections */
    .pricing-section {
        margin-bottom: 40px;
        gap: 32px;
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 20px;
    }

    /* Summary Section */
    .summary-section {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .summary-section h2 {
        font-size: 20px;
    }

    /* Sticky Bar */
    .sticky-bar {
        display: none;
    }

    .sticky-content {
        flex-direction: column;
        gap: 12px;
    }

    .sticky-price .value{
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    /* Option Item */
    .option-label {
        padding: 16px;
        padding-left: 24px;
    }

    .option-title {
        font-size: 14px;
    }

    .option-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-section{
        margin-bottom: 32px;
    }

    .hero-section-content{
        padding: 0;
        gap: 16px;
    }

    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .hero-badges{
        gap: 8px;
    }

    .hero-badges li{
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 18px;
    }

    .summary-pricing {
        padding: 16px;
    }

    .price-label{
        font-size: 14px;
    }

    .price-row.total .price-value {
        font-size: 20px;
    }

    .price-row.total .price-suffix{
        font-size: 14px;
    }

    .option-label,
    .sub-option-label{
        padding: 12px;
    }

    .option-price .price-value{
        font-size: 16px;
    }

    .option-indicator-x {
        width: 24px;
        height: 24px;
        margin-left: 20px;
    }

    .cta-button {
        padding: 10px 24px;
        font-size: 13px;
        min-width: 120px;
    }

    .cta-button-outline{
        padding: 10px 24px;
        font-size: 13px;
    }

    .UC129MainContainer{
        width: 450px;
    }
}
