/* Premium plan cards + 3D bubble buttons */

.gx-plans {
    position: relative;
    z-index: 8;
    padding: 10px 18px 32px;
    background: linear-gradient(180deg, #eef9fc 0%, #e4f5f9 45%, #d9eef5 100%);
}

.gx-plans__head {
    text-align: center;
    margin-bottom: 16px;
}

.gx-plans__head h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: #0c4a5c;
    letter-spacing: -0.02em;
}

.gx-plan-grid {
    display: grid;
    gap: 24px;
    justify-items: center;
}

.gx-plan {
    --accent-a: #0e7490;
    --accent-b: #22d3ee;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 0 1.45rem;
    border: 0;
    background: linear-gradient(180deg, #f4fcfe 0%, #eaf7fb 55%, #e2f3f8 100%);
    border-radius: 30px;
    overflow: visible;
    box-shadow: 0 14px 36px rgba(8, 80, 100, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.14);
    text-align: center;
    font: inherit;
    color: inherit;
}

.gx-plan__hero {
    position: relative;
    height: 156px;
    background: linear-gradient(180deg, #f7fdff 0%, #eef8fb 100%);
    border-radius: 30px 30px 0 0;
    overflow: visible;
}

.gx-plan__band {
    position: absolute;
    left: 0;
    right: 0;
    top: 44px;
    height: 48px;
    background: linear-gradient(
        105deg,
        #0e7490 0%,
        #06b6d4 28%,
        #67e8f9 48%,
        #22d3ee 62%,
        #0891b2 100%
    );
    box-shadow:
        inset 12px 0 18px rgba(6, 80, 100, 0.28),
        inset -12px 0 18px rgba(6, 80, 100, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    z-index: 1;
}

/* White icon circle + name below */
.gx-plan__badge {
    position: absolute;
    left: 50%;
    top: 28px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    pointer-events: none;
}

.gx-plan__bubble {
    position: relative;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #f3fafc 100%);
    color: #0891b2;
    font-size: 1.45rem;
    box-shadow:
        0 8px 0 #c5d7de,
        0 12px 18px rgba(8, 80, 100, 0.18),
        inset 0 2px 0 rgba(255, 255, 255, 0.95);
}

.gx-plan__bubble::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%) rotate(45deg);
    background: linear-gradient(135deg, #ffffff 40%, #f3fafc 100%);
    border-radius: 2px;
    box-shadow: 3px 3px 0 #c5d7de;
    z-index: -1;
}

.gx-plan__name {
    margin: 0;
    padding: 0.28rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0c4a5c;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(6, 182, 212, 0.18);
    box-shadow: 0 4px 12px rgba(8, 80, 100, 0.08);
}

.gx-plan__features {
    list-style: none;
    margin: 0.55rem 1.55rem 0;
    padding: 0;
    text-align: left;
}

.gx-plan__features li {
    display: flex;
    align-items: center;
    gap: 0.78rem;
    padding: 0.78rem 0.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.25;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.55),
        0 0 8px rgba(125, 211, 252, 0.35);
}

.gx-plan__features li:last-child {
    border-bottom: 0;
}

.gx-plan__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    background: linear-gradient(160deg, #86efac 0%, #16a34a 100%);
    box-shadow:
        0 3px 8px rgba(8, 145, 178, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* ── 3D bubble buttons (speech-circle + bar) ── */
.gx-bubble-btn {
    --bb-a: #0e7490;
    --bb-b: #22d3ee;
    --bb-edge: #0a5f75;
    --bb-icon: #0891b2;
    position: relative;
    display: flex;
    align-items: center;
    width: calc(100% - 2.6rem);
    max-width: 280px;
    margin: 1.05rem auto 0;
    min-height: 52px;
    padding: 0 1rem 0 0.35rem;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    color: #fff;
    background: linear-gradient(180deg, var(--bb-b) 0%, var(--bb-a) 100%);
    box-shadow:
        0 7px 0 var(--bb-edge),
        0 12px 18px rgba(8, 80, 100, 0.22);
    -webkit-appearance: none;
    appearance: none;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.gx-bubble-btn:active {
    transform: translateY(3px);
    box-shadow:
        0 3px 0 var(--bb-edge),
        0 6px 10px rgba(8, 80, 100, 0.18);
}

.gx-bubble-btn__icon {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    margin: 3px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #fff 0%, #f4f8fa 100%);
    color: var(--bb-icon);
    font-size: 1.05rem;
    box-shadow:
        0 4px 0 #c9d8df,
        inset 0 1px 0 #fff;
}

.gx-bubble-btn__icon::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translateY(-50%) rotate(45deg);
    background: #fff;
    border-radius: 2px;
    box-shadow: 2px 2px 0 #c9d8df;
    z-index: -1;
}

.gx-bubble-btn__label {
    flex: 1;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    padding-right: 0.35rem;
}

.gx-bubble-btn--cyan {
    --bb-a: #0e7490;
    --bb-b: #22d3ee;
    --bb-edge: #0a5f75;
    --bb-icon: #0891b2;
}

.gx-bubble-btn--blue {
    --bb-a: #1d4ed8;
    --bb-b: #3b82f6;
    --bb-edge: #1e3a8a;
    --bb-icon: #2563eb;
}

.gx-bubble-btn--pink {
    --bb-a: #e11d48;
    --bb-b: #fb7185;
    --bb-edge: #9f1239;
    --bb-icon: #e11d48;
}

.gx-bubble-btn--orange {
    --bb-a: #ea580c;
    --bb-b: #fb923c;
    --bb-edge: #c2410c;
    --bb-icon: #ea580c;
}

.gx-bubble-btn--green {
    --bb-a: #16a34a;
    --bb-b: #4ade80;
    --bb-edge: #15803d;
    --bb-icon: #16a34a;
}

.gx-bubble-btn--teal {
    --bb-a: #0f766e;
    --bb-b: #2dd4bf;
    --bb-edge: #115e59;
    --bb-icon: #0d9488;
}

.gx-empty {
    padding: 24px;
    text-align: center;
    color: #0e7490;
    background: linear-gradient(180deg, #f4fcfe, #eaf7fb);
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(8, 80, 100, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.14);
}

/* Homepage CTA row uses bubble buttons */
.gx-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 20px auto 0;
    width: 100%;
}

.gx-cta .gx-bubble-btn {
    width: auto;
    min-width: 148px;
    margin: 0;
    flex: 1 1 140px;
    max-width: 180px;
}
