/* ── Extra modals (Feature, RI, Calculator, PDF) ── */
.px-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem 1rem;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.px-modal-backdrop.open {
    opacity: 1;
    pointer-events: all;
}
.px-modal-box {
    background: #061033;
    border: 1px solid rgba(0, 230, 228, 0.2);
    border-radius: 1.25rem;
    width: 100%;
    transform: translateY(12px) scale(0.97);
    transition: transform 0.25s;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    flex-shrink: 0;
    margin: auto;
}
.px-modal-backdrop.open .px-modal-box {
    transform: translateY(0) scale(1);
}
.px-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    border: none;
    color: var(--fg-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}
.px-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--fg);
}
.px-close svg {
    width: 14px;
    height: 14px;
}
.px-modal-hd {
    padding: 1.25rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border);
}
.px-modal-hd h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}
.px-modal-body {
    padding: 0rem 1.5rem 1.5rem;
    overflow-y: auto;
}

/* Feature comparison layout */
.feat-layout {
    display: flex;
    gap: 0;
}
.feat-labels {
    flex: 1.3;
    min-width: 0;
}
.feat-col {
    flex: 1;
    min-width: 0;
    border-radius: 0.85rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}
.feat-col.growth {
    border: 2px solid var(--primary);
    background: rgba(0, 230, 228, 0.04);
}
.feat-col-hd {
    padding: 0.85rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: inherit;
    z-index: 5;
}
.growth .feat-col-hd {
    border-color: rgba(0, 230, 228, 0.2);
}
.feat-pop-bar {
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    padding: 0.3rem;
    margin: -0.85rem -0.85rem 0.5rem;
}
.feat-col-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}
.growth .feat-col-name {
   color: #fff;
}
.feat-col-meta {
    font-size: 0.68rem;
    color: #fff;
}
.feat-label-row {
    display: flex;
    align-items: center;
    min-height: 38px;
    font-size: 0.82rem;
}
.feat-label-row.cat {
    padding: 0.82rem 0 0.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
}
.feat-label-row.subcat {
    padding: 0rem 0 0.2rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
}
.feat-label-row.item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 1.25rem;
    color: #fff;
}
.feat-cell-row {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    font-size: 0.78rem;
    text-align: center;
    padding: 0 0.25rem;
}
.feat-cell-row.item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.growth .feat-cell-row.item {
    border-color: rgba(0, 230, 228, 0.08);
}
.icon-yes svg {
    width: 15px;
    height: 15px;
    color: var(--primary);
}
.icon-no svg {
    width: 15px;
    height: 15px;
    color: #d94f4f;
}
.feat-optional {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(0, 230, 228, 0.8);
    background: rgba(0, 230, 228, 0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
}
.feat-text-cell {
    font-size: 0.72rem;
    color: var(--fg-muted);
}
.table-wrapper {
    overflow: auto;
    max-height: calc(85vh - 80px);
}

.comparison-table {
    width: 100%;
    min-width: 900px;           /* forces horizontal scroll */
    border-collapse: separate;  /* keep your original setting */
    border-spacing:  20px 0;          /* important: removes gaps between cells */
    table-layout: fixed;
}

.comparison-table th,
.comparison-table td {

    text-align: center;
    vertical-align: middle;

}

/* Sticky columns (2nd, 3rd, 4th) */
.sticky-col {
    position: sticky;
    left: 0;
    background: #061033;           /* required for sticky */
    z-index: 10;
}

/* First column (Feature) - scrolls normally */
.first-col {
    left: 0;
    z-index: 20;                 /* higher than other sticky columns */
}



/* Make the top header row sticky vertically too */
.comparison-table thead tr {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #061033;
}

.comparison-table th,
.comparison-table td {
    text-align: center;
}

.comparison-table th {

    color: #fff;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
}


.comparison-table td:first-child {
    text-align: left;
    width: 40%;
}

.comparison-table td:not(:first-child) {
    color: #aaa;
}

/* Checkmark and dash styling */
.comparison-table td:contains("✔") {
    color: #22c55e;
    font-size: 1.2em;
}

.comparison-table td:contains("–") {
    color: #666;
}

/* Optional: Make Scale column stand out */
.comparison-table td:nth-child(3) {
    background: rgb(0 207 205 / 16%);
    color: #00CFCD;
    font-weight: 500;
    border-left: 2px solid #00CFCD;
    border-right: 2px solid #00CFCD;
}

.counter-highlight td:nth-child(3)  {
    font-size: 12px;
    background: none;
    border-left: 1px solid rgb(255 255 255 / 7%);
    border-right: 1px solid rgb(255 255 255 / 7%);
}

.counter-highlight thead th:nth-child(3) {
    border-left: 1px solid rgb(255 255 255 / 7%)!important;
    border-right: 1px solid rgb(255 255 255 / 7%)!important;
    border-top: 1px solid rgb(255 255 255 / 7%)!important;
    border-bottom: 1px solid rgb(255 255 255 / 7%)!important;
    background: #061033 !important;
}


/* First Row - Top Border */
.counter-highlight tbody tr:first-child td:nth-child(3) {
    border-top: 1px solid rgb(255 255 255 / 7%)!important;
}

/* Last Row - Bottom Border */
.counter-highlight tbody tr:last-child td:nth-child(3) {
    border-bottom: 1px solid rgb(255 255 255 / 7%)!important;
}



/* First Row - Top Border */
.comparison-table tbody tr:first-child td:nth-child(3) {
    border-top: 2px solid #00CFCD; 
}

/* Last Row - Bottom Border */
.comparison-table tbody tr:last-child td:nth-child(3) {
    border-bottom: 1px solid #00CFCD; 
}

.comparison-table thead th:nth-child(3) {  
  background: #03687a;
    color: white;
    border: 2px solid #00CFCD;   /* sets all sides */
    border-bottom: none;         /* removes bottom border */

}


.opt-teal-box {
    background-color: rgba(0, 230, 226, 0.1);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}


.comparison-table td:nth-child(2) {
    border-left: 1px solid rgb(255 255 255 / 7%);
    border-right: 1px solid rgb(255 255 255 / 7%);
}

.comparison-table td:nth-child(4) {
    border-left: 1px solid rgb(255 255 255 / 7%);
    border-right: 1px solid rgb(255 255 255 / 7%);
}

.comparison-table td:nth-child(2),
.comparison-table th:nth-child(2) {
  border-left: 1px solid rgb(255 255 255 / 7%);
  border-right: 1px solid rgb(255 255 255 / 7%);
}

.comparison-table td:nth-child(4),
.comparison-table th:nth-child(4) {
  border-left: 1px solid rgb(255 255 255 / 7%);
  border-right: 1px solid rgb(255 255 255 / 7%);
}

.comparison-table th:nth-child(4), .comparison-table th:nth-child(2) {
    border-top: 1px solid rgb(255 255 255 / 7%);
    border-bottom: 1px solid rgb(255 255 255 / 7%);
}



/* Top corners on 3rd column header */
.comparison-table thead th:nth-child(3) {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden; /* ensures background respects radius */
}


.counter-highlight thead th:nth-child(3) {
    padding-top: 41px;
}

/* Bottom corners on 3rd column last row */
.comparison-table tbody tr:last-child td:nth-child(3) {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}


/* Top corners on 2nd column header */
.comparison-table thead th:nth-child(2),
.comparison-table thead th:nth-child(4) {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  background: #061033;
  padding-top: 41px;
}

/* Bottom corners on 2nd and 4th column last row */
.comparison-table tbody tr:last-child td:nth-child(2),
.comparison-table tbody tr:last-child td:nth-child(4) {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
  border-bottom: 1px solid #182141;
}


.comparison-table tr:last-child td:nth-child(1),
.comparison-table tr:last-child td:nth-child(2),
.comparison-table tr:last-child td:nth-child(3),
.comparison-table tr:last-child td:nth-child(4) {
   padding-bottom: 24px;
}




.badge {
    width: 100%;
    display: inline-block;
    background-color: #00cfcd;
    color: #061033;
    padding: 7px 0px;
    font-size: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    text-transform: capitalize;
    margin-bottom: 10px;
}


.sticky-tier {
    position: sticky;
    left: 0;   
    background: #061033;
    z-index: 10;
}


@media (max-width: 500px) {
    /* Make the top header row sticky vertically too */
    .comparison-table thead tr {
        position: static;

    }

    /* Freeze the first column */
    .comparison-table th:nth-child(1),
    .comparison-table td:nth-child(1) {
      position: sticky;
      left: 0;               /* stick to the left edge */
      z-index: 11;            /* keep above other cells */
      background: #061033;   /* solid background so text doesn’t overlap */

    }

 
    .hide-in-mobile {
        display: none;
    }

    /* Equal width for all 4 columns */
    .comparison-table td:nth-child(1),
    .comparison-table th:nth-child(1) {
     width: 12%;
     font-size: 12px;
    }

    .comparison-table td:nth-child(2),
    .comparison-table th:nth-child(2),
    .comparison-table td:nth-child(3),
    .comparison-table th:nth-child(3),
    .comparison-table td:nth-child(4),
    .comparison-table th:nth-child(4) {
       width: 29.33%;
    }

    .comparison-table, .price-table {
        border-collapse: collapse; 
    }

}

.price-table-container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    box-sizing: border-box;
}

.optional-modules {
    width: auto;
    padding: 16px;
    border-radius: 16px;
    border-left: 1px solid #1a2d5a;
    border-right: 1px solid #1a2d5a;
    border-bottom: 1px solid #1a2d5a;
    border-top: 3px solid #00CFCD;
    background: #0a1a47;
}


.price-table-wrapper {
    overflow-x: auto;
    max-height: calc(85vh - 80px);
    -webkit-overflow-scrolling: touch;
}

.price-table {
    width: 100%;
    min-width: 620px;           /* Prevents table from collapsing too much */
    border-collapse: collapse;
    font-size: 0.95rem;
}

.price-table th,
.price-table td {
    padding: 12px;
        border-bottom: 1px solid #1a2d5a;
        text-align: center;
        vertical-align: middle;
        background: none;
        white-space: nowrap;
        font-size: 14px;
}

.price-table td:first-child, th:first-child {
    text-align: left;
    color: #fff;
}

.price-table th:nth-child(2) {
    text-align: center;     /* or left / right as you prefer */
}

.price-table td:nth-child(2) {
    color: #B2B5C0;
}

.price-table th:nth-child(3) {
    text-align: center;     /* usually right for prices, but you can change */

}

.price-table th:nth-child(4) {
    text-align: center;     /* usually right for prices, but you can change */

}
.price-table td:nth-child(3) {
   color: #00CFCD;
}



.price-table th, .price-table td {
  width: 33.3%;
}

abbr {
    font-variant-caps: all-small-caps;   /* Makes it look like small caps */
    text-decoration: none;                /* Removes default dotted underline */
    border-bottom: 1px dashed #14b8a6;    /* Optional teal dashed line */
    cursor: help;
}



  /* Calculator */
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
}
.calc-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #053b57;
    border-radius: 1rem;
    padding: 1.4rem;
}
.calc-panel h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #fff;
}
.calc-panel .sub {
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 1.25rem;
    color: #B2B5C0;
    margin: 0 0 10px 0;
}
.clabel {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00e6e4;
    margin-bottom: 0.55rem;
    display: block;
}

.slider-hint {
    font-size: .62rem;
    color: #B2B5C0;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.slider-unlimited {
    display:flex;justify-content:space-between;align-items:center;margin-bottom:1.1rem
}

.stack-row {
    margin-bottom: 0.85rem;
}
.stack-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.stack-input-wrap .pfx {
    position: absolute;
    left: 0.7rem;
    font-size: 0.84rem;
    color: #fff;
}
.stack-input-wrap .sfx {
    position: absolute;
    right: 0.7rem;
    font-size: 0.84rem;
    color: #adb1bd;
}
.stack-input-wrap input {
    width: 100%;
    padding: 0.5rem 0.7rem 0.5rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: monospace;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
    padding-right: 2.5rem;
}
.stack-input-wrap input:focus {
    border-color: rgba(0, 230, 228, 0.4);
}

.override-pad input {
    padding: 0.5rem 0.5rem 0.5rem 0.5rem!important;
}
.plan-sel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.plan-sel-btn {
  padding: 0.65rem 0.5rem;
      border-radius: 0.65rem;
      border: 1px solid #00b8b824;
      background: #00b8b836;
      cursor: pointer;
      text-align: center;
      transition: all 0.2s;
      color: #fff;
      font-family: inherit;
      color: #B2B5C0;
}
.plan-sel-btn:hover {
    border-color: rgba(0, 230, 228, 0.3);
}
.plan-sel-btn.active {
   background: #00e6e4;
   color: #061033;
}
.plan-sel-btn .pname {
    font-size: 0.82rem;
    font-weight: 600;
    display: block;
}
.plan-sel-btn .pprice {
    font-size: 0.75rem;
    display: block;
    opacity: 0.8;
}
.slider-row {
    margin-bottom: 1.1rem;
}
.slider-meta {
    display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.35rem;
        color: #B2B5C0;
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
}
.slider-meta .slabel {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #00CFCD;
}
.slider-meta .shint {
    font-size: 0.62rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.slider-wrap {
    position: relative;
    margin-bottom: 0.3rem;
}
.inc-track {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    height: 6px;
    border-radius: 3px;
    background: rgba(0, 230, 228, 0.2);
    pointer-events: none;
    z-index: 0;
    left: 0;
}
input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
     background: #00e6e4;
    border: 2px solid var(--bg);
    box-shadow: 0 0 8px rgba(0, 230, 228, 0.4);
    cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--bg);
    cursor: pointer;
}
.slider-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}
.slider-ovg {
    color: #ff0000;
    font-size: .62rem;
    text-align: right;
}
.ri-sel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}
.ri-btn {
    padding: 0.5rem 0.25rem;
    border-radius: 0.65rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    color: #B2B5C0;
    font-family: inherit;
}
.ri-btn.active {
    background: #00e6e4;
    border-color: var(--primary);
    color: #061033;
}
.bill-toggle {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 0.2rem;
    gap: 0.15rem;
}
.bill-btn {
    padding: 0.45rem 0.9rem;
    border-radius: 0.55rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: none;
    color: #B2B5C0;
    transition: all 0.2s;
    font-family: inherit;
}
.bill-btn.active {
   background: #00e6e4;
   color: #061033;
}
.est-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.84rem;
    margin-bottom: 1.25rem;
}
.est-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.est-label {
    color: #B2B5C0;
}
.est-val {
    font-family: monospace;
    font-weight: 600;
    color: #fff;
}
.est-val.inc {
    color: #B2B5C0;
    font-size: 0.78rem;
}
.total-box {
    background: rgba(0, 230, 228, 0.06);
    border: 1px solid rgba(0, 230, 228, 0.2);
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 1rem;
}
.total-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00e6e4;
    margin-bottom: 0.35rem;
}
.total-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00e6e4;
    line-height: 1.1;
    margin-bottom: 10px 0;
}
.total-sub {
    font-size: 0.75rem;
    color: #00e6e4
}
.savings-bdg {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    background: rgba(0, 230, 228, 0.08);
    border: 1px solid rgba(0, 230, 228, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
    color: #00CFCD;
    margin-bottom: 1rem;
}
.savings-bdg svg {
    width: 14px;
    height: 14px;
}
.dl-btn {
    width: 100%;
    padding: 0.7rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, #00e6e4, #00b8b8);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: opacity 0.2s;
    margin-bottom: 0.75rem;
}
.dl-btn:hover {
    opacity: 0.88;
}
.est-note {
    font-size: 0.72rem;
        color: #B2B5C0;
    text-align: center;
    line-height: 1.6;
}
.dl-email-wrap {
    position: relative;
    margin-bottom: 0.5rem;
}
.dl-email-wrap svg {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #fff;
}
.dl-email-input {
    width: 100%;
    padding: 0.7rem 0.9rem 0.7rem 2.4rem;
    border-radius: 0.65rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: inherit;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.dl-email-input:focus {
    border-color: rgba(0, 230, 228, 0.4);
}
.dl-email-input.err {
    border-color: #d94f4f;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .calc-grid,
    .math-body {
        grid-template-columns: 1fr;
    }
    .math-col {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .math-col:last-child {
        border-bottom: none;
    }
}
@media (max-width: 768px) {
    .plans-grid,
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }
    .startup-banner {
        flex-direction: column;
        text-align: center;
    }
    .module-header {
        flex-direction: column;
    }
    .feat-layout {
        flex-direction: column;
    }
    .sf-section-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 500px) {
    .rlm-estimates {
       font-size:0.75rem;
    }
}

.ri-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    margin-top: 6px;
}

.ri-hint {
    color:#00CFCD;
}

.ri-total {
    font-family: monospace;
    color: #B2B5C0;
    font-weight: 600;
}

.simulation-box {
    padding: 32px 24px;           /* Better mobile padding */
    background: #192655;
    border: 1px solid #1a2d5a;
    border-radius: 16px;
    margin: 0 auto;               /* Center it */
    display: flex;                /* Changed from grid to flex - better for this layout */
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Optional: Reduce padding on small screens */
@media (max-width: 480px) {
    .simulation-box {
        padding: 24px 18px;
        gap: 16px;
    }
}
    /* Optional: Reduce padding on small screens */
    @media (max-width: 480px) {
        .simulation-box {
            padding: 24px 18px;
            gap: 16px;
        }
    }
}


.margin-auto {
    margin: 0 auto;
}


.rlm-estimates {
   font-size: 1.25rem;
}


.parent {
    max-width: 960px;    
    width: 100%; 
    margin: 0 auto;  
    box-sizing: border-box;
}


/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #0d9b9b;   /* your teal color */
}

input:checked + .slider:before {
    transform: translateX(22px);
}

.slider.round {
    border-radius: 26px;
}

.slider.round:before {
    border-radius: 50%;
}


.tier {
    font-weight: bold;
}

/* Styling for the error messages */
.field-err {
  color: #d94f4f;
  font-size: 0.7rem;
  display: block;
  margin: 4px 0px;
  text-align: left;
}

/* Ensure the form group doesn't have too much bottom margin now */
.form-grp {
  margin-bottom: 0.5rem; 
}
