/* ============================================================
   PHONES AND APPS PAGE — phones-and-apps.css
   Brand gradient: linear-gradient(269deg, #6e196f 5%, #f433e7 152%)
   Heading dark: #13002e  |  Text dark: #0f233d
   ============================================================ */

/* Shared gradient text (same formula as .cc-g-text / .gradient-text) */
.pa-g-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================================
   HERO WRAP — continuous background spanning hero, platform,
   and device-showcase sections so the gradient has no seams
   ============================================================ */
.pa-hero-wrap {
    /* background: linear-gradient(180deg,
        #fdeef8 0%,
        #f6def4 18%,
        #e6bce9 38%,
        #b768c2 62%,
        #6e196f 88%,
        #5a1359 100%
    ); */
    overflow: hidden;
    /* .header is position:fixed — compensate for it here, same offsets as .inner-banner */
    margin-top: 100px;
}

@media (max-width: 991.98px) {
    .pa-hero-wrap { margin-top: 65px; }
    .pa-device-tabs li{width:46%!important;}
}

.pa-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%);
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.pa-hero {
    padding: 0;
}

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

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

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

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

.pa-hero__desc,
.pa-hero-inner p {
    font-size: clamp(15px, 1.4vw, 20px) !important;
}

.pa-hero .btn-squibit-grad {
    margin-bottom: 28px;
}

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

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

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

.pa-hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.pa-hero__photo-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
}
.pa-feat-card__icon img{
        display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
}
.pa-hero__main-img {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    display: block;
 
}

.pa-hero__overlay-img {
    position: absolute;
    bottom: -32px;
    right: -40px;
    width: 62%;
    border-radius: var(--radius-sm);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    display: block;
}

/* ============================================================
   SECTION 2 — ONE PLATFORM
   ============================================================ */
.pa-platform {
    padding: 70px 0 90px;
}

.pa-platform__heading {
    font-size: var(--fs-h2);
    font-weight: 600;


    line-height: 1.22;
    margin-bottom: 24px;
}

.pa-platform__desc {
    font-size: var(--fs-p);
    font-weight: 300;
   
    line-height: 1.55;
    margin-bottom: 16px;
}

.pa-platform__desc:last-child { margin-bottom: 0; }

/* ============================================================
   SECTION 3 — DEVICE SHOWCASE (tabs, with nested accordion)
   ============================================================ */
.pa-hero-wrap .pa-devices {
    padding: 70px 0 100px;
    background: var(--gradient-brand);
}

.pa-devices__tag {
display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 30px;
    border: 1px solid #fff;
    border-radius: var(--radius-pill);
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0;
    margin: 0 auto 20px;
    width: fit-content;
}

.pa-devices__heading {
      font-size: var(--fs-h2);
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.45px;
    line-height: 1.22;
    margin-bottom: 16px;
    text-align: center;
}

.pa-devices__desc {
    font-size: 20px !important;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    max-width: 900px;

    text-align: center;
    margin: 0 auto 30px;
}

.pa-device-tabs {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: center;
}
.pa-device-tabs li{width:48%}
.pa-device-tabs li button{    justify-content: center;
    width: 100%;}
.pa-device-tabs__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0 0 16px;
    font-weight: 700;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.pa-device-tabs__btn i { font-size: 18px; }

.pa-device-tabs__btn:hover { color: rgba(255, 255, 255, 0.75); }

.pa-device-tabs__label {
    display: inline-block;
}

.pa-device-tabs__btn.active {
    color: #fff;
    border-bottom-color: #fff;
}

.pa-device-pane__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    padding: 0 0 10px;
    background: none;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    text-align: left;
    cursor: pointer;
}

.pa-device-pane__toggle i {
    font-size: 16px;
    opacity: 0.85;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.pa-device-pane__toggle[aria-expanded="true"] i { transform: rotate(180deg); }

.pa-device-pane__desc {
    font-size: var(--fs-sm);
    font-weight: 300;
   color:#fff;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: 0;
}

.pa-device-pane__desc:last-of-type { margin-bottom: 28px; }

.pa-device-pane__ideal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    background: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 20px;
    text-align: left;
    cursor: pointer;
}

.pa-device-pane__ideal i {
    font-size: 14px;
    opacity: 0.85;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.pa-device-pane__ideal[aria-expanded="true"] i { transform: rotate(180deg); }

.pa-device-pane__ideal-body {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-sm);
    font-weight: 300;
    line-height: 1.6;
    padding: 4px 0 20px;
}

.pa-device-pane__btn {
    margin-top: 8px;
}

.pa-device-pane__media {
    position: relative;
}

.pa-device-pane__img {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-md);
    display: block;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* ============================================================
   SECTION 4 — CTA  (adapted from .ind-cta)
   ============================================================ */
.pa-cta {
    padding: 76px 0;
    background: var(--gradient-brand);
    position: relative;
    overflow: hidden;
}

.pa-cta .container {
    position: relative;
    z-index: 1;
}

.pa-cta__heading {
    font-family: var(--font-body);
    font-size: var(--fs-h2);
    font-weight: 600;
    color: #fff;
    line-height: 1.163;
    letter-spacing: -0.49px;
    margin: 0 0 20px;
}

.pa-cta__body {
    font-family: var(--font-body);
    font-size: var(--fs-p);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.388;
    letter-spacing: -0.18px;
    margin: 0;
    max-width: 704px;
}

.pa-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 33px;
    background: #fff;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    color: var(--squibit-purple);
    letter-spacing: -0.23px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.22s, color 0.22s, transform 0.22s, box-shadow 0.22s;
    padding: 12px 40px;
}

.pa-cta__btn:hover {
    background: rgba(255, 255, 255, 0.92);
    color: var(--squibit-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* ============================================================
   SECTION 5 — POWERFUL CALLING FEATURES  (adapted from .cc-cards)
   ============================================================ */
.pa-features {
    background: linear-gradient(180deg, #fff 0%, #fdf4fe 30%, #facbff 55%, #fff 100%);
    padding: 80px 0 0px;
}

.pa-features__intro {
    max-width: 900px;
    margin-bottom: 48px;
}

.pa-features__tag {
    display: inline-block;
    border: 1px solid var(--color-dark);
    border-radius: var(--radius-pill);
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-dark);
    letter-spacing: -0.18px;
    margin-bottom: 20px;
}

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

.pa-feat-card {
    background: transparent;
    height: 100%;
}

.pa-feat-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

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

.pa-feat-card__icon i {
    color: #fff;
    font-size: 20px;
}

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

.pa-feat-card__desc {

    font-weight: 300;
    color: var(--color-dark);

    margin: 0;
}

/* ============================================================
   SECTION 6 — COMPARISON TABLE
   ============================================================ */
.pa-compare {
    padding: 90px 0;
    background: #fff;
}

.pa-compare__intro {
    max-width: 900px;
    margin-bottom: 40px;
}

.pa-compare__tag {
    display: inline-block;
    border: 1px solid var(--color-dark);
    border-radius: var(--radius-pill);
    padding: 10px 22px;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-dark);
    letter-spacing: -0.18px;
    margin-bottom: 20px;
}

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

.pa-compare-table-wrap {
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

.pa-compare-table thead tr {
    background: var(--gradient-brand);
}

.pa-compare-table thead th {
    background: transparent;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    padding: 14px 20px;
    border: none;
    width: 33.333%;
        background: linear-gradient(270deg, #6E196F -21.01%, #F433E7 75.72%);
    text-align: center;
}


.pa-compare-table tbody td {
    width: 33.333%;
    padding: 20px;
    font-size: 18px;
    font-weight: 300;
    color: var(--color-dark);
    vertical-align: middle;
    border-color: var(--color-border-soft);
}

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

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

/* ============================================================
   SECTION 7 — GETTING YOUR TEAM SET UP  (inset panel)
   ============================================================ */
.pa-setup {
    padding: 0px 0;
    background: #fff;
}

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

.pa-setup__tag {
       display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 40px;
    border: 1.5px solid #fff;
    border-radius: var(--radius-pill);
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0;
    margin-bottom: 24px;
}

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

.pa-setup__subheading {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.pa-setup__desc {
    font-size:18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 14px;
}

.pa-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;
}

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

.pa-setup__photo-wrap {
    position: relative;
    height: 100%;
    min-height: 260px;
}

.pa-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);
}

.pa-setup__overlay {
    position: absolute;
    left: -12%;
    bottom: -10%;
    width: 62%;
    border-radius: 16px;
   
    display: block;
}

/* ============================================================
   SECTION 7.5 — RSC-BUILT (setup, support, practical use)
   ============================================================ */
.pa-built {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    margin-top: 80px;
}

.pa-built::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;
}

.pa-built__heading {
font-size: var(--fs-h2);
    font-weight: 500;
    color: #000;
    letter-spacing: 0;
    line-height: 1.22;
    margin-bottom: 20px;
}

.pa-built__desc {
    font-size: var(--fs-p) !important;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.55;
    margin: 0;

}

.pa-built__btn {
   display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 44px;
    border-radius: 26px;
    background: linear-gradient(269.85deg, #6e196f 4.97%, #f433e7 151.61%);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.2s;
}

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

@media (max-width: 767.98px) {
    .pa-built { padding: 56px 0; }
    .pa-built__btn { margin-top: 12px; }
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.pa-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;
}

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

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

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

@media (max-width: 991.98px) {
    .pa-hero-inner  { gap: 28px; padding: 44px 20px; }
    .pa-hero-left   { flex: 0 0 50%; max-width: 50%; }
    .pa-platform    { padding: 56px 0 70px; }
    .pa-devices     { padding: 20px 0 70px; }
    .pa-features    { padding: 60px 0 70px; }
    .pa-compare { padding: 70px 0; }
    .pa-setup__panel { padding: 40px; }
}

@media (max-width: 767.98px) {
    .pa-hero-inner       { flex-direction: column-reverse; gap: 32px; padding: 40px 20px 28px; }
    .pa-hero-left        { flex: none; max-width: 100%; width: 100%; text-align: center; }
    .pa-hero-right       { width: 100%; }
    .pa-hero__photo-wrap { max-width: 320px; }
    .pa-hero__main-img   { height: 240px; }

    .pa-device-tabs      { gap: 24px; }
    .pa-device-tabs__btn { font-size: 18px; }
    .pa-device-pane__media { margin-top: 24px; }

    .pa-setup__panel { padding: 28px; }
    .pa-setup__photo-wrap { margin-top: 24px; min-height: 180px; }

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

@media (max-width: 575.98px) {
    .pa-cta      { padding: 40px 0 !important; }
    .pa-cta a    { margin-top: 20px; }
    .pa-features { padding: 40px 0 !important; }
    .pa-compare{ padding: 40px 0 !important; }
    .pa-back-top { bottom: 20px; right: 20px; }
    .pa-device-tabs li{width:46%}
    .pa-device-tabs{justify-content: space-between;}
    .pa-device-tabs__btn{font-size: 14px}
    .pa-device-pane__media{margin-top:0px}
    .pa-platform{padding: 40px 0 40px !important}
    .pa-hero-wrap .pa-devices{padding: 40px 0 40px !important}
    .pa-features__intro{margin-bottom: 0}
    #pane-ipdesk p{text-align: center}
    .pa-device-pane__btn{    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: fit-content;}
    .pa-feat-card{text-align: center}
    .pa-feat-card__head{justify-content: center}
    .pa-compare .pa-compare__intro {text-align: center}
    .pa-compare-table tbody td{font-size: 14px}
    .pa-setup{text-align: center}
    .pa-built{margin-top: 20px}
    .pa-built{text-align: center}
    .pa-built__btn{margin: 0 auto}
}
