.show-on-mobile {
    display: none;
}

.hide-on-mobile {
    display: block;
}


.show-on-tablet {
    display: none;
}

.hide-on-tablet {
    display: block;
}


.group-discount-calculator {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 50%, #e8f4fd 100%);
    padding: 40px 20px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    margin-top: 30px;
}

.group-discount-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.for-businesses-section {
    margin: 0;
    position: relative;
    z-index: 1;
}

.bulk-calculator-container {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07),
                0 10px 20px -5px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(14, 165, 233, 0.08);
}

.for-businesses-title {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 28px;
    border-bottom: none;
    display: inline-block;
    padding-bottom: 8px;
    position: relative;
    letter-spacing: -0.5px;
}

.for-businesses-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9 0%, #3b82f6 100%);
    border-radius: 2px;
}

.bulk-calculator-card {
    border-radius: 14px;
    margin-bottom: 32px;
}

.bulk-calculator-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

/* Horizontal scroll container for desktop pricing table */
.pricing-tier-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1px;
}

.calculator-container {
    width: 100%;
}

.calculator-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 24px;
}

.calculator-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calculator-col.col-12 {
    flex: 0 0 100%;
    width: 100%;
}

.calculator-col.col-md-6 {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex: 0 0 auto;
}

.calculator-col.col-md-6:first-child {
    flex: 1 1 auto;
}

.calculator-col.col-md-6:last-child {
    flex: 0 0 auto;
    margin-left: auto;
    align-items: flex-end;
    justify-content: flex-end;
}

.quantity-section {
    flex: 0 0 auto;
}

.quantity-section label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.quantity-input {
    width: 160px;
    height: 42px;
    border: 1px solid #D6EDFF;
    border-right: none;
    border-radius: 4px;
    text-align: left;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    outline: none;
    background: #E9F6FF;
    transition: all 0.2s ease;
    margin-right: 6px;
}

.quantity-input:focus {
    border-color: #0ea5e9;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #0ea5e9;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.quantity-input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.quantity-btn {
    width: 52px;
    height: 52px;
    background: #0078C6;
    border: none;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0078C6 100%);
    transform: scale(1.02);
}

.quantity-btn:active {
    transform: scale(0.98);
}

.quantity-btn.minus {
    border-radius: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    height: 42px;
    width: 42px;
    margin-right: 2px;
}

.quantity-btn.plus {
    border-radius: 2px;
    height: 42px;
    width: 42px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-top: 20px;
    flex: 0 0 auto;
}

.price-display .multiply {
    color: #000000;
    font-size: 22px;
    font-weight: 600;
    line-height: 20px;
}

.price-display .current-price {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
    line-height: 32px;
}

.price-display .original-price {
    text-decoration: line-through;
    color: #333333;
    font-size: 18px;
    line-height: 23px;
    font-weight: 400;
}

.price-display .discount-badge {
    background: #E9F6FF;
    color: #0078C6;
    padding: 2px 6px;
    border-radius: 24px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: 1px solid #0078C6;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 #0078C6;
    }
    50% { 
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

.subtotal-section {
    flex: 0 0 auto;
    text-align: right;
    padding-left: 24px;
    border-left: 2px solid #D6EDFF;
    margin-right: 24px;
    margin-top: 0;
}

.subtotal-section label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right;
    line-height: 15px;
}

.subtotal-section .subtotal-value {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #0078C6;
}

.buy-now-btn {
    background: #FF5A3A;
    color: #fff;
    border: none;
    padding: 12px 30px;
    margin-top: 0;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    text-transform: none;
    flex: 0 0 auto;
}

.buy-now-btn:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

.buy-now-btn:active {
    background: #FF5A3A;
    color: #fff;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

/* Prevent white flash on click (browser default) and during loading state */
.group-discount-calculator .buy-now-btn {
    -webkit-tap-highlight-color: transparent;
}
.group-discount-calculator .buy-now-btn:active {
    background: #FF5A3A !important;
    color: #fff !important;
}
/* Same loading animation as Add to Cart button (btn-add_to_card) */
.group-discount-calculator .buy-now-btn.loadingcart,
.group-discount-calculator .buy-now-btn.loadingcart:hover {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAAMElEQVQoU2P434CADGgALIZfGkkBdmm4AlzSUAW4pcEK8EljyqJJYygYqdLoCjBlAalbv4Hzd/xyAAAAAElFTkSuQmCC) !important;
    background-repeat: repeat !important;
    -webkit-animation: sc-pending-cart 0.5s linear infinite;
    animation: sc-pending-cart 0.5s linear infinite;
    background-color: #ff5a3a !important;
    color: #fff !important;
    cursor: wait;
}
@-webkit-keyframes sc-pending-cart {
    to {
        background-position: 16px 0;
    }
}
@keyframes sc-pending-cart {
    to {
        background-position: 16px 0;
    }
}

.calculator-separator {
    display: none;
}

/* Pricing Tier Table */
.pricing-tier-section {
    margin-bottom: 36px;
}

.pricing-tier-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.pricing-tier-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 6px;
}

.pricing-tier-table th,
.pricing-tier-table td {
    padding: 16px 24px;
    text-align: center;
    font-size: 14px;
    transition: all 0.25s ease;
}

.pricing-tier-table th {
    background: #0078C6;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    border: 1px solid #D6EDFF;
    line-height: 18px;
    position: relative;
    overflow: visible;
    min-width: 115px;
}

.pricing-tier-table th:first-child {
    background: #0078C6;
}

.pricing-tier-table th:nth-child(2) {
    border-top-right-radius: 6px;
}

.pricing-tier-table th:nth-child(3) {
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.pricing-tier-table th:nth-child(4) {
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.pricing-tier-table th:nth-child(5) {
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.pricing-tier-table th:nth-child(6) {
    border-top-left-radius: 6px;
}

.pricing-tier-table th.active {
    z-index: 10;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
}

.pricing-tier-table th.active::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: calc(36% + 11px);
    background: #0078C6;
    border: 2px solid #0078C6;
    border-bottom: none;
    border-radius: 10px;
    box-shadow: none;
    z-index: -1;
}

.pricing-tier-table tbody tr:nth-child(odd) td {
    background: #ffffff;
}

.pricing-tier-table tbody tr:nth-child(even) td {
    background: #E9F6FF;
}

.pricing-tier-table td {
    color: #000;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    border: 1px solid #D6EDFF;
}

.pricing-tier-table td:first-child {
    font-weight: 500;
    text-align: center;
}

.pricing-tier-table td.active {
    background: #fff;
    color: #000;
    border-left: 2px solid #0078C6;
    border-right: 2px solid #0078C6;
    border-top: none;
    border-bottom: none;
    box-shadow: -3px 0 0 0 #fff, 2px 0 0 0 #fff;
    position: relative;
    z-index: 2;
}

.pricing-tier-table tbody tr:nth-child(even) td.active {
    background: #E9F6FF;
}

.pricing-tier-table tbody tr:last-child td.active {
    border-bottom: 2px solid #0078C6;
    border-radius: 0 0 12px 12px;
    box-shadow: -3px 0 0 0 #fff, 3px 0 0 0 #fff, 0 3px 0 0 #fff;
}

.pricing-tier-table tr:last-child td {
    border-bottom: none;
}

.pricing-tier-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 6px;
}

.pricing-tier-table tbody tr:last-child td:nth-child(2) {
    border-bottom-right-radius: 6px;
}

.pricing-tier-table tbody tr:last-child td:nth-child(3) {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}

.pricing-tier-table tbody tr:last-child td:nth-child(4) {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}

.pricing-tier-table tbody tr:last-child td:nth-child(5) {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}

.pricing-tier-table tbody tr:last-child td:nth-child(6) {
    border-bottom-left-radius: 6px;
}

.pricing-tier-table tbody tr:hover td {
    background: #D6EDFF;
}

/* Manage Team Section */
.manage-team-section {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
    padding-top: 8px;
}

.manage-team-info {
    flex: 1;
    min-width: 280px;
}

.manage-team-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    line-height: 24px;
    letter-spacing: -0.3px;
}

.manage-team-desc {
    color: #000;
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 20px;
    font-weight: 500;
}

.manage-team-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.manage-team-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.manage-team-features li:last-child {
    border-bottom: none;
}

.manage-team-features li svg {
    color: #0ea5e9;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(14, 165, 233, 0.3));
}

.manage-team-features li .feature-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.corporate-form-wrapper {
    background: #E9F6FF;
    padding: 16px;
    border-radius: 8px;
}

.corporate-form {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #000;
    margin-bottom: 5px;
}

.form-group label .required {
    color: #0078C6;
    font-weight: 400;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #D6EDFF;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
    background: #ffffff;
}

.form-group input:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group input::placeholder {
    color: #94a3b8;
}

.corporate-submit-btn {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 20px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
    letter-spacing: 0.2px;
}

.corporate-submit-btn:hover {
    background: linear-gradient(135deg, #1e293b 0%, #000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.35);
}

.corporate-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
}

/* tablet css */
/* =========================
   TABLET: Force Column Layout
========================= */
@media (max-width: 1024px) {

    .show-on-mobile {
        display: none;
    }

    .hide-on-mobile {
        display: block;
    }

    .show-on-tablet {
      display: block;
    }
    
    .hide-on-tablet {
        display: none;
    }

    .group-discount-calculator {
        padding: 30px 0px;
    }   

    /* Stack the two main columns */
    .calculator-row {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
    }
    
    /* Reset BOTH columns to vertical */
    .calculator-col.col-md-6 {
      flex: 0 0 100%;
      width: 100%;
      display: flex;
      flex-direction: column !important;  /* 🔴 critical */
      align-items: flex-start !important; /* 🔴 critical */
      gap: 14px;
    }
  
    /* -------- ROW 1: Quantity + Price -------- */
    .calculator-col.col-md-6:first-child {
      flex-direction: row !important;  /* 🔴 critical - keep Quantity and Price in same row */
      align-items: center !important;
      gap: 16px;
    }
  
    .quantity-section {
      flex: 0 0 auto;
      width: auto;
    }
  
    .quantity-controls {
      width: auto;
      display: flex;
    }
  
    .quantity-input {
      width: 160px;
      flex: 0 0 auto;
    }
  
    .price-display {
      flex: 0 0 auto;
      width: auto;
      display: flex;
      justify-content: flex-start;
      margin-top: 20px;
    }
  
    /* -------- ROW 2: Subtotal + Button -------- */
    /* Separator between row 1 and row 2 */
    .calculator-col.col-md-6:last-child {
      position: relative;
      padding-top: 22px;
      margin-top: 22px;
      border-top: 2px solid #D6EDFF;
      flex-direction: row !important;
      align-items: center !important;
      gap: 18px;
      justify-content: flex-start;
      text-align: left;
      width: 100%;
      min-width: 100%;
      margin-left: 0px;
    }
  
    .subtotal-section {
      flex: 0 0 auto;
      width: auto;
      text-align: left;
      padding-left: 0;
      border-left: none;
      margin: 0;
    }
  
    .subtotal-section label {
      text-align: left;
    }
  
    .buy-now-btn {
      flex: 0 0 auto;
      width: auto;
      white-space: nowrap;
      margin-top: 0;
      margin-left: 18px;
      padding: 14px 26px;
      font-size: 16px;
      background: #000;
    }
    
    .buy-now-btn:hover {
        background: #000;
    }
    
    .buy-now-btn:active {
        background: #000 !important;
        color: #fff !important;
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    /* Same loading animation as Add to Cart */
    .group-discount-calculator .buy-now-btn.loadingcart,
    .group-discount-calculator .buy-now-btn.loadingcart:hover {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAAMElEQVQoU2P434CADGgALIZfGkkBdmm4AlzSUAW4pcEK8EljyqJJYygYqdLoCjBlAalbv4Hzd/xyAAAAAElFTkSuQmCC) !important;
        background-repeat: repeat !important;
        -webkit-animation: sc-pending-cart 0.5s linear infinite;
        animation: sc-pending-cart 0.5s linear infinite;
        background-color: #000 !important;
        color: #fff !important;
        cursor: wait;
    }

    .pricing-tier-title {
        font-size: 18px;
        line-height: 22px;
        font-weight: 600;
        color: #0f172a;
        margin-bottom: 18px;
        letter-spacing: -0.3px;
    }

    .pricing-tier-table th:first-child {
        background: #0078C6;
        width: 100px;
    }

    /* Manage Team Section - Both columns in one row */
    .manage-team-section {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        align-items: flex-start;
    }

    .manage-team-info {
        flex: 1;
        min-width: 0;
    }

    .corporate-form-wrapper {
        flex: 2;
        min-width: 0;
        padding:8px;
    }

    .corporate-form {
        min-width: 0;
        padding:16px;
    }

    /* Form - Stack inputs vertically (one per row) */
    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .form-group {
        width: 100%;
    }

    .manage-team-title {
        margin-bottom: 5px;
        font-size: 18px;
    }

    .manage-team-desc {
        margin-bottom: 2px;
    }
    .manage-team-features li {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 4px 0;
        color: #000;
        font-size: 12px;
        font-weight: 500;
    }

    .corporate-submit-btn {
        width: 100%;
        background: #000;
        color: #fff;
        border: none;
        padding: 9px 7px;
        border-radius: 5px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
        letter-spacing: 0.2px;
    }

}

/* mobile css */
@media (min-width: 375px) and (max-width: 575.98px) {
    
    .show-on-mobile {
        display: block;
    }

    .hide-on-mobile {
        display: none;
    }

    .show-on-tablet {
        display: none;
      }
      
      .hide-on-tablet {
          display: none;
      }
    
    .bulk-calculator-container {
        padding: 16px;
        border-radius: 8px;
       
    }
    .bulk-calculator-title {
        font-size: 14px;
        line-height: 18px;
        font-weight: 700; 
        margin-bottom: 12px;
    }
    .quantity-section label {
        font-size: 10px;
    }
    .calculator-row .col-md-6,
    .calculator-row .col-12 {
        position: relative;
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
    .quantity-input {
        width: 45px;
        height: 32px;
        padding-left: 8px;
    }

    .quantity-btn.minus {
        border-radius: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        height: 32px;
        width: 32px;
        margin-right: 2px;
    }
    
    .quantity-btn.plus {
        border-radius: 2px;
        height: 32px;
        width: 32px;
    }

    .price-display {
        flex: 0 0 auto;
        width: auto;
        display: flex;
        justify-content: flex-start;
        margin-top: 20px;
        margin-left: -5px;
        gap: 5px;
    }
    .price-display .multiply {
        color: #000000;
        font-size: 16px;
    }
    .price-display .current-price {
        font-size: 16px;
    }
    .price-display .original-price {
        text-decoration: line-through;
        color: #333333;
        font-size: 12px;
    }
    .price-display .discount-badge {
        background: #E9F6FF;
        color: #0078C6;
        padding: 0px 3px;
        border-radius: 24px;
        font-size: 10px;
    }
    .subtotal-section label {
        display: block;
        font-size: 10px;
    }
    .subtotal-section .subtotal-value {
        font-size: 18px;
        font-weight: 700;
        line-height: 23px;
    }
    .buy-now-btn {
        flex: 1 0 auto;
        font-size: 14px;
        border-radius: 5px;
        background: #FF5A3A;
        -webkit-tap-highlight-color: transparent;
    }
    .buy-now-btn:active {
        background: #FF5A3A !important;
        color: #fff !important;
    }
    /* Same loading animation as Add to Cart */
    .group-discount-calculator .buy-now-btn.loadingcart,
    .group-discount-calculator .buy-now-btn.loadingcart:hover {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAAMElEQVQoU2P434CADGgALIZfGkkBdmm4AlzSUAW4pcEK8EljyqJJYygYqdLoCjBlAalbv4Hzd/xyAAAAAElFTkSuQmCC) !important;
        background-repeat: repeat !important;
        -webkit-animation: sc-pending-cart 0.5s linear infinite;
        animation: sc-pending-cart 0.5s linear infinite;
        background-color: #ff5a3a !important;
        color: #fff !important;
        cursor: wait;
    }
    .manage-team-info{
        margin-bottom: 10px;
    }
    .manage-team-section {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .manage-team-title {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 20px;
    }
    .manage-team-desc {
        margin-bottom: 5px;
        font-size: 12px;
        line-height: 15px;
        font-weight: 400;
    }
    .manage-team-features li{
        font-size: 12px;
        line-height: 15px;
        font-weight: 400;
    }
    .corporate-form-wrapper{
        width: 100%;
    }
    .form-group label {
        display: block;
        font-size: 14px;
        font-weight: 500;
        line-height: 18px;
    }
    .form-group {
        margin-bottom: 0.5rem;
    }

    /* Pricing Tier Table - Mobile */
    .pricing-tier-section.show-on-mobile {
        margin-bottom: 24px;
    }

    .pricing-tier-title {
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
        color: #0f172a;
        margin-bottom: 16px;
        letter-spacing: -0.3px;
    }

    .pricing-tier-table-mobile {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        border-radius: 8px;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .pricing-tier-table-mobile thead {
        background: #0078C6;
    }

    .pricing-tier-table-mobile th {
        background: #0078C6;
        color: #fff;
        font-weight: 500;
        font-size: 12px;
        letter-spacing: 0.3px;
        padding: 12px 16px;
        text-align: center;
        border: none;
        border-right: 2px solid rgba(255, 255, 255, 0.3);
        line-height: 16px;
    }

    .pricing-tier-table-mobile th:first-child {
        border-top-left-radius: 8px;
        border-right: 2px solid rgba(255, 255, 255, 0.3);
    }

    .pricing-tier-table-mobile th:nth-child(2) {
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        border-right: 2px solid rgba(255, 255, 255, 0.3);
    }

    .pricing-tier-table-mobile th:last-child {
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        border-right: none;
    }

    .pricing-tier-table-mobile tbody tr {
        transition: all 0.25s ease;
    }

    .pricing-tier-table-mobile tbody tr:nth-child(odd) {
        background: #ffffff;
    }

    .pricing-tier-table-mobile tbody tr:nth-child(even) {
        background: #E9F6FF;
    }

    .pricing-tier-table-mobile tbody tr.active {
        background: #E9F6FF;
        position: relative;
    }

    .pricing-tier-table-mobile tbody tr.active td {
        border-top: 2px solid #0078C6;
        border-bottom: 2px solid #0078C6;
        position: relative;
        z-index: 1;
    }

    .pricing-tier-table-mobile tbody tr.active td:first-child {
        border-left: 2px solid #0078C6;
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
    }

    .pricing-tier-table-mobile tbody tr.active td:last-child {
        border-right: 2px solid #0078C6;
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .pricing-tier-table-mobile tbody tr.active td:not(:first-child):not(:last-child) {
        border-left: none;
        border-right: none;
    }

    .pricing-tier-table-mobile td {
        color: #000;
        text-align: center;
        font-size: 12px;
        line-height: 16px;
        padding: 12px 16px;
        border: 1px solid rgba(214, 237, 255, 0.3);
        font-weight: 400;
    }

    .pricing-tier-table-mobile td:first-child {
        font-weight: 500;
    }

    .pricing-tier-table-mobile tbody tr:last-child td:first-child {
        border-bottom-left-radius: 8px;
    }

    .pricing-tier-table-mobile tbody tr:last-child td:last-child {
        border-bottom-right-radius: 8px;
    }

    .pricing-tier-table-mobile tbody tr:last-child.active td:first-child {
        border-bottom-left-radius: 4px;
    }

    .pricing-tier-table-mobile tbody tr:last-child.active td:last-child {
        border-bottom-right-radius: 4px;
    }
    
}