/* ============================================================
   BUSINESS TELEPHONE SERVICE PAGE — business-telephone-service.css
   Brand gradient: linear-gradient(269deg, #6e196f 5%, #f433e7 152%)
   Heading dark: #13002e  |  Text dark: #0f233d
   ============================================================ */

.bt-g-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.bt-hero {
    background: linear-gradient(181.51deg, rgba(255, 214, 219, 0) 22%, rgba(255, 212, 254, 0.85) 58%, rgba(255, 212, 254, 0.55) 100%);
    overflow: hidden;
    padding: 0;
    margin-top: 100px; /* .header is position:fixed */
}

@media (max-width: 991.98px) {
    .bt-hero { margin-top: 65px; }
}

.bt-hero-inner {
    display: flex;
    align-items: center;
    min-height: 480px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    gap: 48px;
}

.bt-hero-left {
    flex: 0 0 46%;
    max-width: 46%;
}

.bt-hero__title {
    color: var(--color-heading);
    margin-bottom: 20px;
}

.bt-hero__desc {
    color: var(--color-dark);
    font-size: clamp(15px, 1.4vw, 20px) !important;
    line-height: 1.55;
    margin-bottom: 28px;
    font-weight: 300;
}

.bt-hero__desc strong { font-weight: 600; }

.bt-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--color-muted);
    margin-top: 20px;
}

.bt-hero-breadcrumb a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.bt-hero-breadcrumb a:hover { color: var(--squibit-purple); }
.bt-hero-breadcrumb span    { color: var(--squibit-purple); font-weight: 500; }

.bt-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.bt-hero__photo-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.bt-hero__main-img {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    display: block;
    height: 320px;
    box-shadow: var(--shadow-image);
}

.bt-hero__overlay-img {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 45%;
    border-radius: var(--radius-sm);
    display: block;
}

/* ============================================================
   SECTION 2 — SIMPLIFIED ADMINISTRATION (centered)
   ============================================================ */
.bt-admin {
    padding: 70px 0 90px;
    background: #fff;
}

.bt-admin__heading {
    font-size: var(--fs-h2);
    font-weight: 600;
    color: var(--color-heading);
    letter-spacing: -0.45px;
    line-height: 1.22;
    margin-bottom: 24px;
}

.bt-admin__desc {
    font-size: var(--fs-p) !important;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.5;
    margin-bottom: 16px;
}

/* ============================================================
   SECTION 3 — BUILT FOR MODERN ORGANIZATIONS
   ============================================================ */
.bt-modern {
    padding: 90px 0;
    background: var(--gradient-brand);
}

.bt-modern__heading {
    font-size: var(--fs-h2);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.45px;
    line-height: 1.22;
    margin-bottom: 24px;
}

.bt-modern__desc {
    font-size: var(--fs-p);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
    margin-bottom: 16px;
}

.bt-modern__photo-wrap { position: relative; height: 100%; min-height: 320px; }

.bt-modern__img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* ============================================================
   SECTION 4 — BENEFITS
   ============================================================ */
.bt-benefits {
    padding: 90px 0 0;
    background: #fff;
}

.bt-benefits__heading {
    font-size: var(--fs-h2);
    font-weight: 600;
    color: var(--color-heading);
    letter-spacing: -0.45px;
    line-height: 1.22;
    margin-bottom: 16px;
    max-width: 900px;
}

.bt-benefits__desc {
    font-size: var(--fs-p) !important;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.5;
    max-width: 900px;
    margin-bottom: 8px;
}

.bt-benefit { height: 100%; }

.bt-benefit__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.bt-benefit__icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.bt-benefit__icon img { width: 100%; height: 100%; object-fit: contain; }

.bt-benefit__icon--full { padding: 0; }
.bt-benefit__icon--full img { border-radius: 14px; }

.bt-benefit__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.3;
    margin: 0;
}

.bt-benefit__desc {
    font-size: var(--fs-sm) !important;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.6;
    margin: 0;
}

.bt-benefits__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    margin-top: 40px;
    transition: box-shadow 0.3s ease, transform 0.2s ease, opacity 0.2s ease;
}

.bt-benefits__btn:hover {
    opacity: 0.9;
    color: #fff;
    box-shadow: 0 8px 24px rgba(110, 25, 111, 0.35);
    transform: translateY(-2px);
}

/* ============================================================
   SECTION 5 — CONNECT TO THE TOOLS
   ============================================================ */
.bt-tools {
    padding: 90px 0 0;
    background: #fff;
}

.bt-tools__photo-wrap { position: relative; height: 100%; min-height: 320px; }

.bt-tools__img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    display: block;
    box-shadow: var(--shadow-image);
}

.bt-tools__heading {
    font-size: var(--fs-h2);
    font-weight: 500;
    color: var(--color-heading);
    letter-spacing: -0.45px;
    line-height: 1.22;
    margin-bottom: 24px;
}

.bt-tools__desc {
    font-size: var(--fs-p);
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.6;
    margin-bottom: 16px;
}

.bt-tools__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    padding: 13px 32px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    margin-top: 8px;
    transition: box-shadow 0.3s ease, transform 0.2s ease, opacity 0.2s ease;
}

.bt-tools__btn:hover {
    opacity: 0.9;
    color: #fff;
    box-shadow: 0 8px 24px rgba(110, 25, 111, 0.35);
    transform: translateY(-2px);
}

/* ============================================================
   SECTION 6 — POWERS EVERYDAY BUSINESS COMMUNICATION
   ============================================================ */
.bt-power {
    padding: 90px 0;
    background: #fff;
}

.bt-power__heading {
    font-size: var(--fs-h2);
    font-weight: 600;
    color: var(--color-heading);
    letter-spacing: -0.45px;
    line-height: 1.22;
    margin-bottom: 20px;
}

.bt-power-card {
    background: #fff;
    border: 1px solid #d9c3d7;
    border-radius: var(--radius-md);
    box-shadow: 0 14px 8px rgba(0, 0, 0, 0.1);
    padding: 40px 28px;
    height: 100%;
}

.bt-power-card__head {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 20px;
}

.bt-power-card__icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bt-power-card__icon i { color: #fff; font-size: 24px; }

.bt-power-card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.3;
    margin: 0;
}

.bt-power-card__desc {
    font-size: var(--fs-sm) !important;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.5;
    margin: 0;
}

/* ============================================================
   SECTION 7 — FEATURES TABLE (dark full-bleed)
   ============================================================ */
.bt-features {
    padding: 90px 0;
    background: var(--gradient-brand);
}

.bt-features__heading {
    font-size: var(--fs-h2);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.45px;
    line-height: 1.22;
    text-align: center;
    margin-bottom: 48px;
}

.bt-compare-table-wrap {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.bt-compare-table {
    margin-bottom: 0;
    table-layout: fixed;
}

.bt-compare-table thead tr {
    background: var(--color-dark);
}

.bt-compare-table thead th {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    text-align: left;
    padding: 14px 24px;
    border: none;
    width: 50%;
}

.bt-compare-table tbody td {
    width: 50%;
    padding: 20px 24px;
    font-size: var(--fs-sm) !important;
    font-weight: 300;
    color: var(--color-dark);
    vertical-align: middle;
    background: #fff;
    border-color: #e0d3df;
}

.bt-compare-table tbody td:first-child {
    font-weight: 500;
    font-size: 18px;
    color: #000;
}

.bt-compare-table tbody tr:nth-child(even) td {
    background: #f1f1f1;
}

/* ============================================================
   SECTION 8 — BUILT TO SUPPORT THE WAY YOUR BUSINESS COMMUNICATES
   ============================================================ */
.bt-communicates {
    padding: 90px 0 0;
    background: #fff;
}

.bt-communicates__photo-wrap { position: relative; height: 100%; min-height: 320px; }

.bt-communicates__img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    display: block;
    box-shadow: var(--shadow-image);
}

.bt-communicates__heading {
    font-size: var(--fs-h2);
    font-weight: 500;
    color: var(--color-heading);
    letter-spacing: -0.45px;
    line-height: 1.22;
    margin-bottom: 24px;
}

.bt-communicates__desc {
    font-size: var(--fs-p);
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ============================================================
   SECTION 9 — SUPPORT DESIGNED AROUND YOUR NEEDS (inset panel)
   ============================================================ */
.bt-setup {
    padding: 90px 0;
    background: #fff;
}

.bt-setup__panel {
    background: var(--gradient-brand);
    border-radius: var(--radius-md);
    padding: 60px;
    overflow: hidden;
}

.bt-setup__heading {
    font-size: var(--fs-h2);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.45px;
    line-height: 1.22;
    margin-bottom: 20px;
}

.bt-setup__desc {
    font-size: var(--fs-sm) !important;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
    margin-bottom: 14px;
}

.bt-setup__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--squibit-purple);
    font-size: 17px;
    font-weight: 300;
    padding: 12px 32px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    letter-spacing: -0.18px;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    margin-top: 12px;
}

.bt-setup__btn:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    color: var(--squibit-purple-dark);
}

.bt-setup__photo-wrap { position: relative; }

.bt-setup__photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   SECTION 10 — MAKE BUSINESS COMMUNICATION EASIER TO MANAGE
   ============================================================ */
.bt-cta {
       position: relative;
    padding: 80px 0;
    overflow: hidden;
    margin-top: 80px;
}

.bt-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160.79deg, rgba(255, 214, 219, 0) 18.34%, rgb(204, 118, 201) 77.99%, #fff 90.61%);
    pointer-events: none;
}

.bt-cta__heading {
    font-size: var(--fs-h2);
    font-weight: 700;
    color: #000;
    letter-spacing: -0.45px;
    line-height: 1.22;
    margin-bottom: 20px;
}

.bt-cta__desc {
    font-size: var(--fs-sm) !important;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.55;
    margin-bottom: 12px;
    max-width: 780px;
}

.bt-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--squibit-purple-dark);
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    white-space: nowrap;
    transition: box-shadow 0.3s ease, transform 0.2s ease, background 0.2s ease;
}

.bt-cta__btn:hover {
    background: var(--squibit-purple);
    color: #fff;
    box-shadow: 0 8px 24px rgba(110, 25, 111, 0.35);
    transform: translateY(-2px);
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.bt-back-top {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(110, 25, 111, 0.40);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
}

.bt-back-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bt-back-top:hover {
    box-shadow: 0 8px 28px rgba(110, 25, 111, 0.55);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
    .bt-hero-inner { max-width: 100%; gap: 40px; }
    .bt-hero-left  { flex: 0 0 48%; max-width: 48%; }
    .bt-cta{margin-top: 0px;}
}

@media (max-width: 991.98px) {
    .bt-hero-inner { gap: 28px; padding: 44px 20px; }
    .bt-hero-left  { flex: 0 0 50%; max-width: 50%; }
    .bt-admin, .bt-modern, .bt-benefits, .bt-tools, .bt-power,
    .bt-features, .bt-communicates, .bt-setup, .bt-cta { padding: 70px 0; }
    .bt-setup__panel { padding: 40px; }

    /* Below lg, columns stack — stretched height:100% has no reference height anymore */
    .bt-modern__photo-wrap,
    .bt-tools__photo-wrap,
    .bt-communicates__photo-wrap {
        height: 420px;
        min-height: 0;
    }
    .bt-tools{padding-top: 0px!important}
    .bt-power-card{padding:15px}
    .bt-setup{padding-top: 0px!important}
    .bt-cta{margin-top: 0px;}
    .bt-power{padding-top: 0px;}
}

@media (max-width: 767.98px) {
    .bt-hero-inner       { flex-direction: column; gap: 32px; padding: 40px 20px 28px; }
    .bt-hero-left        { flex: none; max-width: 100%; width: 100%; text-align: center; }
    .bt-hero-breadcrumb  { justify-content: center; }
    .bt-hero-right       { width: 100%; }

    .bt-power-card { padding: 28px 22px; }

    .bt-setup__panel { padding: 28px; }
    .bt-setup__photo-wrap { margin-top: 24px; }

    .bt-compare-table thead th { font-size: 16px; padding: 10px 14px; }
    .bt-compare-table tbody td { padding: 14px 14px; }
}

@media (max-width: 575.98px) {
    .bt-admin, .bt-modern, .bt-benefits, .bt-tools, .bt-power,
    .bt-features, .bt-communicates, .bt-setup, .bt-cta { padding: 40px 0 !important; }
    .bt-cta a    { margin-top: 20px; }
    .bt-back-top { bottom: 20px; right: 20px; }
    .bt-hero-inner{flex-direction:column-reverse;padding-top:0px}
    .bt-modern{text-align:center}
       .bt-modern .row{flex-direction:column-reverse}
       .bt-benefits h2, .bt-benefits p{text-align:center}
       .bt-benefit__head{justify-content:center;text-align: center;flex-wrap: wrap;flex-direction: column}
       .bt-tools{padding-top: 0px!important;text-align: center;}
       .bt-power{text-align: center}
       .bt-power-card__head{flex-direction: column;}
       .bt-features h2 br{display: none;}
       .bt-communicates{text-align: center}
       .bt-setup{padding-top: 0px!important;}
       .bt-setup .row{flex-direction: column-reverse;text-align: center;}
       .bt-cta{margin-top: 0px;text-align: center;}
         .bt-cta .bt-cta__btn{position: relative;left: 50%; transform: translateX(-50%);}

}
