/* ── GCC Pricing Page ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

/* Break sections out of theme's 800px container using full-bleed trick */
.gcc-pricing-section,
.gcc-contact-section {
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

/* ── Pricing Section ─────────────────────────────────────── */
.gcc-pricing-section {
    padding: 80px 20px;
    background: #0d0d1a;
    position: relative;
    overflow: hidden;
}
.gcc-pricing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(108,99,255,.15) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}
.gcc-pricing-header {
    text-align: center;
    margin-bottom: 56px;
}
.gcc-pricing-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -.5px;
}
.gcc-pricing-header p {
    font-size: 1.05rem;
    color: #8b8fa8;
    max-width: 520px;
    margin: 0 auto;
}

/* Plans Grid */
.gcc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Plan Card */
.gcc-plan {
    background: #14142b;
    border: 1px solid #2a2a4a;
    border-radius: 18px;
    padding: 36px 28px;
    position: relative;
    transition: transform .25s, box-shadow .25s;
}
.gcc-plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(108,99,255,.2);
}
.gcc-plan--featured {
    border-color: #6c63ff;
    background: linear-gradient(160deg, #1a1a3e 0%, #14142b 100%);
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(108,99,255,.3);
}
.gcc-plan--featured:hover { transform: scale(1.03) translateY(-6px); }

/* Badge */
.gcc-plan__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b3b6e;
    color: #a0a0d0;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.gcc-plan__badge--pro  { background: #6c63ff; color: #fff; }
.gcc-plan__badge--corp { background: linear-gradient(90deg,#f59e0b,#f97316); color: #fff; }

/* Header */
.gcc-plan__header { text-align: center; margin-bottom: 28px; }
.gcc-plan__icon   { font-size: 2.4rem; margin-bottom: 10px; }
.gcc-plan__name   { font-size: 1.4rem; font-weight: 800; color: #fff; margin: 0 0 16px; }
.gcc-plan__price  { margin-bottom: 10px; }
.gcc-plan__amount {
    font-size: 3rem; font-weight: 900;
    color: #6c63ff;
    line-height: 1;
}
.gcc-plan--featured .gcc-plan__amount { color: #a78bfa; }
.gcc-plan__currency { font-size: 1.5rem; font-weight: 700; color: #8b8fa8; vertical-align: top; margin-top: 8px; display: inline-block; }
.gcc-plan__period   { font-size: .9rem; color: #8b8fa8; }
.gcc-plan__amount-text { font-size: 1.4rem; font-weight: 700; color: #f59e0b; }
.gcc-plan__desc { font-size: .87rem; color: #8b8fa8; margin: 0; }

/* Features List */
.gcc-plan__features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gcc-plan__features li {
    font-size: .87rem;
    padding: 6px 0;
    border-bottom: 1px solid #1e1e3a;
    color: #c0c0e0;
}
.gcc-plan__features li.yes { color: #c0c0e0; }
.gcc-plan__features li.no  { color: #4a4a6a; text-decoration: line-through; }
.gcc-plan__features li:last-child { border-bottom: none; }

/* Button */
.gcc-plan__btn {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    border: 2px solid #6c63ff;
    background: transparent;
    color: #6c63ff;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    letter-spacing: .3px;
}
.gcc-plan__btn:hover { background: #6c63ff; color: #fff; }
.gcc-plan__btn--featured { background: #6c63ff; color: #fff; }
.gcc-plan__btn--featured:hover { background: #5a52e0; border-color: #5a52e0; }
.gcc-plan__btn--corp { border-color: #f59e0b; color: #f59e0b; }
.gcc-plan__btn--corp:hover { background: #f59e0b; color: #fff; }

/* Pricing Footer */
.gcc-pricing-footer {
    text-align: center;
    margin-top: 40px;
    color: #8b8fa8;
    font-size: .9rem;
}

/* ── Contact Section ─────────────────────────────────────── */
.gcc-contact-section {
    padding: 80px 40px;
    background: #0a0a16;
}
.gcc-contact-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    max-width: 1140px;
    margin: 0 auto;
    align-items: start;
}
.gcc-contact-wrap--full {
    grid-template-columns: 280px 1fr;
    max-width: 1300px;
    width: 100%;
}
@media (max-width: 700px) {
    .gcc-contact-wrap { grid-template-columns: 1fr; }
    .gcc-pricing-grid { grid-template-columns: 1fr; }
    .gcc-plan--featured { transform: none; }
}
.gcc-contact-info h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin: 0 0 14px; }
.gcc-contact-info p  { color: #8b8fa8; margin-bottom: 28px; }
.gcc-contact-details { display: flex; flex-direction: column; gap: 14px; }
.gcc-contact-item    { display: flex; align-items: center; gap: 10px; color: #c0c0e0; }
.gcc-contact-item a  { color: #a78bfa; text-decoration: none; }
.gcc-contact-item a:hover { text-decoration: underline; }
.gcc-contact-icon { font-size: 1.2rem; }

/* Form */
.gcc-contact-form {
    background: #14142b;
    border: 1px solid #2a2a4a;
    border-radius: 16px;
    padding: 36px 40px;
}
.gcc-form-row { display: flex; gap: 18px; }
.gcc-form-row--2 > * { flex: 1; }
@media (max-width: 500px) { .gcc-form-row { flex-direction: column; } }

.gcc-form-group { margin-bottom: 18px; }
.gcc-form-group label { display: block; font-size: .84rem; color: #a0a0c0; margin-bottom: 7px; font-weight: 500; }
.gcc-form-group .req { color: #ef4444; }
.gcc-form-group input,
.gcc-form-group textarea {
    width: 100%;
    background: #0d0d1a;
    border: 1px solid #2a2a4a;
    border-radius: 8px;
    padding: 10px 14px;
    color: #e0e0f0;
    font-size: .9rem;
    transition: border-color .2s;
    outline: none;
}
.gcc-form-group input:focus,
.gcc-form-group textarea:focus { border-color: #6c63ff; }
.gcc-form-group textarea { resize: vertical; min-height: 90px; }

/* Package selector */
.gcc-package-selector { display: flex; gap: 10px; flex-wrap: wrap; }
.gcc-pkg-opt { display: flex; align-items: center; gap: 7px; cursor: pointer; }
.gcc-pkg-opt input { display: none; }
.gcc-pkg-opt span {
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid #2a2a4a;
    color: #8b8fa8;
    font-size: .84rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
}
.gcc-pkg-opt input:checked + span { border-color: #6c63ff; color: #a78bfa; background: rgba(108,99,255,.1); }

/* Submit */
.gcc-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #6c63ff, #8b5cf6);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s;
    letter-spacing: .3px;
}
.gcc-submit-btn:hover { opacity: .9; }
.gcc-submit-btn:disabled { opacity: .6; cursor: not-allowed; }

/* Messages */
.gcc-form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
}
.gcc-form-message.gcc-success { background: rgba(34,197,94,.1); color: #22c55e; border: 1px solid rgba(34,197,94,.3); }
.gcc-form-message.gcc-error   { background: rgba(239,68,68,.1);  color: #ef4444; border: 1px solid rgba(239,68,68,.3); }

/* ── Signup form extras ──────────────────────────────────── */
.gcc-contact-wrap--full { align-items: flex-start; grid-template-columns: 280px 1fr; max-width: 1300px; width: 100%; }
.gcc-form-section-title {
    font-size: .72rem; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: #6c63ff; margin: 22px 0 12px;
    padding-bottom: 8px; border-bottom: 1px solid rgba(108,99,255,.15);
}
.gcc-subdomain-wrap { display: flex; align-items: center; gap: 0; }
.gcc-subdomain-wrap input { border-radius: 8px 0 0 8px; flex: 1; }
.gcc-subdomain-suffix {
    background: rgba(108,99,255,.12); border: 1.5px solid #2a2a4a;
    border-left: none; border-radius: 0 8px 8px 0;
    padding: 9px 12px; font-size: .8rem; color: #8b8fa8; white-space: nowrap;
}

/* Plan picker cards */
.gcc-plan-picker { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.gcc-plan-pick { cursor: pointer; flex: 1; min-width: 200px; }
.gcc-plan-pick input[type="radio"] { display: none; }
.gcc-plan-pick__card {
    position: relative; padding: 20px 18px; border-radius: 12px;
    border: 2px solid #2a2a4a; background: rgba(255,255,255,.02);
    transition: border-color .2s, background .2s, transform .15s;
}
.gcc-plan-pick--featured .gcc-plan-pick__card { border-color: rgba(108,99,255,.4); }
.gcc-plan-pick--selected .gcc-plan-pick__card,
.gcc-plan-pick input:checked + .gcc-plan-pick__card {
    border-color: #6c63ff; background: rgba(108,99,255,.08);
}
.gcc-plan-pick__card:hover { transform: translateY(-2px); border-color: #6c63ff; }
.gcc-plan-pick__badge {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg,#6c63ff,#a78bfa);
    color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: .5px;
    padding: 3px 12px; border-radius: 99px; white-space: nowrap;
}
.gcc-plan-pick__name { font-weight: 700; color: #f1f5f9; font-size: 1rem; margin-bottom: 6px; }
.gcc-plan-pick__price { font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 12px; }
.gcc-plan-pick__price span { font-size: .85rem; color: #8b8fa8; font-weight: 500; }
.gcc-plan-pick__list { list-style: none; padding: 0; margin: 0; }
.gcc-plan-pick__list li { font-size: .82rem; color: #94a3b8; padding: 3px 0; }
.gcc-plan-pick__list li::before { content: '✓ '; color: #6c63ff; }

/* Steps */
.gcc-steps { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.gcc-step { display: flex; align-items: center; gap: 12px; }
.gcc-step-n {
    width: 28px; height: 28px; border-radius: 50%;
    background: linear-gradient(135deg,#6c63ff,#a78bfa);
    color: #fff; font-size: .8rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.gcc-step span:last-child { font-size: .85rem; color: #8b8fa8; }

/* Payment notice */
.gcc-payment-notice {
    display: flex; gap: 10px; align-items: flex-start;
    background: rgba(59,130,246,.07); border: 1px solid rgba(59,130,246,.2);
    border-radius: 10px; padding: 12px 16px; margin-bottom: 18px;
    font-size: .83rem; color: #93c5fd;
}

/* Status notices */
.gcc-notice {
    padding: 16px 20px; border-radius: 10px; margin-bottom: 24px;
    font-size: .92rem;
}
.gcc-notice--success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #22c55e; }
.gcc-notice--error   { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.3);  color: #ef4444; }
