/* Business Phone Specific Styles */

/* Common Banner Styles */
.phone-banner {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    color: var(--navy-color);
}

.phone-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0.2) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 5%;
}

.banner-content h1 {
    font-size: 42px;
    color: var(--navy-color);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.banner-content p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    font-weight: 500;
}

/* Banner Backgrounds */
.centrex-banner {
    background: url('https://images.unsplash.com/photo-1557200134-90327ee9fafa?auto=format&fit=crop&w=1600&q=80') center right/cover no-repeat;
}

.dcs-banner {
    background: url('https://images.unsplash.com/photo-1560264280-88b68371db39?auto=format&fit=crop&w=1600&q=80') center right/cover no-repeat;
}

.customer-banner {
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80') center right/cover no-repeat;
}

.rep-banner {
    background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80') center right/cover no-repeat;
}

.mobile-banner {
    background: url('https://images.unsplash.com/photo-1562408590-e32931084e23?auto=format&fit=crop&w=1600&q=80') center right/cover no-repeat;
}

.payment-router-banner {
    background: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1600&q=80') center right/cover no-repeat;
}

.car-control-banner {
    background: url('https://images.unsplash.com/photo-1506015391300-4802dc74de2e?auto=format&fit=crop&w=1600&q=80') center right/cover no-repeat;
}

.cctv-banner {
    background: url('https://images.unsplash.com/photo-1552083375-1447ce886485?auto=format&fit=crop&w=1600&q=80') center right/cover no-repeat;
}

.iptv-banner {
    background: url('https://images.unsplash.com/photo-1593305841991-05c297ba4575?auto=format&fit=crop&w=1600&q=80') center right/cover no-repeat;
}


/* Section Common */
.phone-section {
    padding: 80px 0;
}

.phone-section.bg-light {
    background: #f8f9fa;
}

.phone-section.bg-white {
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-title {
    font-size: 30px;
    color: var(--navy-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Intro Layout */
.intro-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-wrapper.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 32px;
    color: var(--navy-color);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.intro-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Badge List */
.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.badge-list span {
    display: inline-block;
    background: #f1f5f9;
    color: #334155;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.badge-list span:hover {
    background: var(--primary-color);
    color: white;
}

/* Card Grids */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(230, 0, 126, 0.2);
}

.feature-card .card-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--navy-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.pricing-table th {
    background: var(--navy-color);
    color: #fff;
    font-weight: 600;
    padding: 18px 15px;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.08);
}

.pricing-table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-table td:last-child {
    border-right: none;
}

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

.row-header {
    font-weight: 700;
    color: var(--navy-color) !important;
    background: #f8f9fa;
    width: 220px;
}

.price-accent {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
}

.price-sub {
    font-size: 13px;
    color: #888;
    display: block;
    margin-top: 4px;
}

.pricing-notes {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Recommend */
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.recommend-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.recommend-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.recommend-item .icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.recommend-item p {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--primary-color);
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(230,0,126,0.3);
    transition: all 0.3s ease;
}

.floating-contact:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 30px rgba(230,0,126,0.4);
}

.floating-contact a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 28px;
    color: white;
    text-align: center;
}

.floating-contact span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
    text-transform: uppercase;
}

.floating-contact strong {
    font-size: 18px;
    font-weight: 800;
    margin-top: 2px;
}

/* Benefit Grid */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.benefit-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.benefit-card .icon-box {
    width: 60px;
    height: 60px;
    background: #fff0f6;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    font-size: 19px;
    color: var(--navy-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Device Grid */
.device-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.device-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.device-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.device-image {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 20px;
    mix-blend-mode: multiply;
}

.device-card h3 {
    font-size: 18px;
    color: var(--navy-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.device-sub {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.device-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    width: 100%;
    text-align: left;
    border-top: 1px dashed var(--border-color);
    padding-top: 15px;
}

.device-specs li {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.device-specs li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
}

.device-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-color);
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    width: 100%;
    margin-top: auto;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .intro-wrapper, .intro-wrapper.reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .recommend-grid {
        grid-template-columns: 1fr;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .device-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .phone-banner {
        height: 280px;
    }
    
    .banner-content h1 {
        font-size: 30px;
    }
    
    .banner-content p {
        font-size: 15px;
    }
}

/* Common Classes for Business Phone (DCS / Centrex) Pages */
.banner-badge {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(230, 0, 126, 0.3);
    z-index: 2;
    animation: pulse 2s infinite;
}

.banner-badge a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.banner-badge strong {
    font-size: 16px;
    display: block;
    margin-top: 4px;
    font-weight: 800;
}

.info-box-pink {
    background: #fff0f6;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    margin-top: 25px;
}

.info-box-pink p {
    margin: 0;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.four-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.three-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: -25px auto 45px;
    font-size: 16px;
    line-height: 1.6;
}

.pricing-flex {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-flex .table-responsive {
    flex: 1;
}

.bullet-notes {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.bullet-notes li {
    font-size: 13.5px;
    color: #666;
    line-height: 1.8;
    position: relative;
    padding-left: 15px;
}

.bullet-notes li::before {
    content: '*';
    position: absolute;
    left: 0;
    color: #888;
}

@keyframes pulse {
    0% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 8px 25px rgba(230, 0, 126, 0.5);
    }
    100% {
        transform: translateY(-50%) scale(1);
    }
}

@media (max-width: 992px) {
    .banner-badge {
        display: none;
    }
    .four-grid, .three-grid {
        grid-template-columns: 1fr;
    }
    .pricing-flex {
        flex-direction: column;
        gap: 20px;
    }
}

/* Device & Add-on Services Table Redesign */
.device-table-container {
    margin-top: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f5;
    overflow: hidden;
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.modern-table th {
    background: #0f172a;
    color: #ffffff;
    font-weight: 600;
    padding: 20px 24px;
    font-size: 15px;
    letter-spacing: -0.3px;
    border: none;
    text-align: center;
}

.modern-table td {
    padding: 24px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14.5px;
    color: #334155;
    line-height: 1.6;
    vertical-align: middle;
}

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

.category-cell {
    background: #f8fafc;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    border-right: 1px solid #f1f5f9 !important;
    font-size: 15px;
}

.device-info-cell {
    display: flex;
    align-items: center;
    gap: 20px;
}

.device-img-box {
    width: 100px;
    height: 100px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    padding: 5px;
}

.device-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.device-name-text {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    color: #475569;
    font-size: 14px;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e6007e;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    top: -1px;
}

.service-desc-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 25px;
}

.service-desc-card p {
    margin: 0;
    font-size: 14.5px;
    color: #334155;
    line-height: 1.7;
    position: relative;
    padding-left: 15px;
}

.service-desc-card p:not(:last-child) {
    margin-bottom: 8px;
}

.service-desc-card p::before {
    content: '*';
    position: absolute;
    left: 0;
    color: #e6007e;
    font-weight: bold;
}

.service-desc-card.alt-bullet p::before {
    content: '-';
    color: #64748b;
}

.price-table-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f5;
    overflow: hidden;
    margin-bottom: 30px;
}

.notice-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-top: 30px;
    border: 1px solid #e2e8f0;
}

.notice-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notice-box li {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    position: relative;
    padding-left: 15px;
}

.notice-box li::before {
    content: '*';
    position: absolute;
    left: 0;
    color: #e6007e;
    font-weight: bold;
}

/* DCS/Centrex Expected Effects Grid */
.effects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    align-items: start;
}

.effect-item {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 25px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.effect-item-wrapper {
    margin-bottom: 40px;
}

.effect-item-wrapper:last-child {
    margin-bottom: 0;
}

/* Intro Custom Layout */
.intro-img-custom {
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    width: 378px;
    height: 180px;
    object-fit: cover;
}

.intro-desc-1 {
    font-size: 16.5px;
    color: #111;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 12px;
}

.intro-desc-2 {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 18px;
}

.intro-desc-3 {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 0;
}

/* Target Custom styles */
.recommend-item-custom .icon {
    font-size: 40px !important;
    margin-bottom: 20px !important;
    color: #111 !important;
}
.recommend-item-custom h3 {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin-bottom: 10px !important;
}
.recommend-item-custom p {
    font-size: 14px !important;
    color: #555 !important;
    line-height: 1.6 !important;
    font-weight: normal !important;
    margin: 0 !important;
}

/* Features Custom styles */
.feature-card-custom {
    text-align: left !important;
    padding: 30px 24px !important;
}
.feature-card-custom h3 {
    font-size: 19px !important;
    color: var(--navy-color) !important;
    margin-bottom: 12px !important;
    font-weight: 700 !important;
}
.feature-card-custom p {
    font-size: 14px !important;
    color: var(--text-secondary) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Expected Effects details */
.effect-icon-wrapper {
    font-size: 28px;
    color: #111;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.badge-icon-address {
    background: #111;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 20px;
}

.badge-icon-phone {
    border: 2px solid #111;
    border-radius: 50%;
    padding: 6px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.effect-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.effect-item p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Sub-section Title */
.sub-section-title {
    font-size: 1.4em;
    color: #292929;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
    text-decoration: underline;
}

.sub-section-title.first {
    margin-top: 15px;
}

/* Layout Helpers */
.mb-20 {
    margin-bottom: 20px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-50 {
    margin-bottom: 50px;
}
.text-center {
    text-align: center;
}
.text-left-padded {
    text-align: left;
    padding-left: 20px;
}
.align-middle {
    vertical-align: middle;
}
.font-semibold {
    font-weight: 600;
}
.table-note-text {
    font-size: 12px;
    color: #666;
    font-weight: normal;
    display: block;
    margin-top: 4px;
}

/* Table layout helper classes */
.table-desc-cell-left {
    vertical-align: middle;
    padding: 20px;
    text-align: left;
    line-height: 1.8;
    font-size: 14px;
    border-right: none;
}

.table-desc-cell-center {
    vertical-align: middle;
    padding: 20px;
    text-align: center;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .effects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Service Diagram Flow Styles */
.diagram-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 40px auto 20px;
    position: relative;
}

.diagram-step {
    background: #ffffff;
    border: 1px solid #eef2f5;
    border-radius: 16px;
    padding: 30px 24px;
    flex: 1;
    max-width: 250px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 2;
}

.diagram-step .icon-box {
    width: 64px;
    height: 64px;
    background: #fff0f6;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.diagram-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.diagram-step p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.diagram-step ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: #475569;
}

.diagram-arrow {
    font-size: 24px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 60px;
}

@media (max-width: 768px) {
    .diagram-flow {
        flex-direction: column;
        gap: 20px;
    }
    .diagram-arrow {
        transform: rotate(90deg);
        height: 40px;
    }
}

/* Service features custom box title styling */
.service-desc-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

/* Rebuilt Service Diagram Styles matching mockup */
.diagram-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 50px auto 30px;
    max-width: 960px;
}

.diagram-node {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    width: 170px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.diagram-node.system-node {
    width: 220px;
    text-align: left;
    border-color: #cbd5e1;
}

.diagram-node .node-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-align: center;
}

.diagram-node h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
    text-align: center;
}

.diagram-node ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
}

.diagram-connector {
    color: #cbd5e1;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagram-connector-pink {
    width: 50px;
    border-top: 2px dotted #e6007e;
    align-self: center;
}

.diagram-agents {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.diagram-agent-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 160px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.diagram-agent-card i {
    color: var(--primary-color);
    font-size: 18px;
}

.diagram-agent-card span {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
}

@media (max-width: 992px) {
    .diagram-container {
        flex-direction: column;
        gap: 20px;
    }
    .diagram-connector {
        transform: rotate(90deg);
        height: 30px;
    }
    .diagram-connector-pink {
        transform: rotate(90deg);
        height: 30px;
        width: 2px;
        border-left: 2px dotted #e6007e;
        border-top: none;
    }
}

/* Sub-header columns in pricing table */
.pricing-table th.sub-th {
    background: #1e293b !important;
    font-size: 13.5px !important;
    padding: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Representative Number Page custom styles */
.rep-pricing-grid {
    display: flex;
    gap: 30px;
    text-align: left;
}

.rep-pricing-col {
    flex: 1;
}

.rep-pricing-col div {
    margin-bottom: 6px;
    font-size: 13.5px;
    color: var(--text-secondary);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    margin-right: 6px;
}






