﻿:root {
    --gc-blue: #0272bc;
    --gc-sky: #29abe2;
    --gc-navy: #07426b;
    --gc-ink: #052c47;
    --gc-grey: #55606b;
    --gc-mute: #8a94a0;
    --gc-line: #e6ebf0;
}

/* ================= HERO (dark, premium) ================= */
.gc-hero {
    position: relative;
    padding: 170px 0 100px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(1200px 600px at 50% -10%, #0a5d94 0%, var(--gc-navy) 45%, var(--gc-ink) 100%);
}

    .gc-hero .orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(70px);
        opacity: .45;
        pointer-events: none;
        animation: orbFloat 9s ease-in-out infinite alternate;
    }

    .gc-hero .orb-1 {
        width: 480px;
        height: 480px;
        top: -160px;
        left: -120px;
        background: #1289d8;
    }

    .gc-hero .orb-2 {
        width: 420px;
        height: 420px;
        bottom: -180px;
        right: -100px;
        background: #29abe2;
        animation-delay: 2.5s;
    }

@keyframes orbFloat {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(42px)
    }
}

.gc-hero .container {
    position: relative;
    z-index: 2;
}

.gc-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #bfe3f8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 9px 22px;
    margin-bottom: 26px;
}

    .gc-badge .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #4fc3f7;
        box-shadow: 0 0 10px #4fc3f7;
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .35
    }
}

.gc-hero h1 {
    font-size: clamp(46px, 6.6vw, 84px);
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.0;
    margin-bottom: 22px;
}

.gc-hero .lede {
    font-size: clamp(17px, 2.2vw, 22px);
    color: #b9cfdf;
    max-width: 640px;
    margin: 0 auto 42px;
    line-height: 1.55;
}

.gc-stats {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.gc-stat {
    min-width: 172px;
    padding: 18px 22px;
    border-radius: 18px;
    text-align: center;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
    transition: transform .25s ease, background .25s ease;
}

    .gc-stat:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,.12);
    }

    .gc-stat .n {
        font-size: 21px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.01em;
    }

    .gc-stat .l {
        font-size: 12.5px;
        color: #9fc0d6;
        margin-top: 2px;
    }

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #29abe2, #0272bc);
    color: #fff !important;
    font-weight: 600;
    font-size: 16px;
    border: 0;
    border-radius: 999px;
    padding: 16px 40px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(41,171,226,.4);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .btn-glow:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 44px rgba(41,171,226,.55);
        color: #fff;
    }

    .btn-glow:after {
        content: "";
        position: absolute;
        top: 0;
        left: -80%;
        width: 50%;
        height: 100%;
        background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
        transform: skewX(-24deg);
        animation: shine 3.4s infinite;
    }

@keyframes shine {
    0% {
        left: -80%
    }

    55% {
        left: 130%
    }

    100% {
        left: 130%
    }
}

.gc-hero .price-inline {
    color: #b9cfdf;
    font-size: 15px;
    margin-left: 18px;
}

    .gc-hero .price-inline strong {
        color: #fff;
        font-size: 19px;
    }

.gc-hero .scroll-cue {
    margin-top: 54px;
}

    .gc-hero .scroll-cue span {
        display: inline-block;
        width: 26px;
        height: 42px;
        border: 2px solid rgba(255,255,255,.35);
        border-radius: 14px;
        position: relative;
    }

        .gc-hero .scroll-cue span:after {
            content: "";
            position: absolute;
            top: 7px;
            left: 50%;
            width: 4px;
            height: 9px;
            margin-left: -2px;
            border-radius: 4px;
            background: #7fc6ee;
            animation: cue 1.8s infinite;
        }

@keyframes cue {
    0% {
        transform: translateY(0);
        opacity: 1
    }

    70% {
        transform: translateY(13px);
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

/* ================= SHARED SECTION STYLES ================= */
.gc-section {
    padding: 90px 0;
}

    .gc-section.slate {
        background: linear-gradient(180deg, #f4f8fb 0%, #eef4f9 100%);
    }

.gc-eyebrow {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gc-blue);
    margin-bottom: 12px;
}

.gc-title {
    font-size: clamp(30px, 4.2vw, 50px);
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 14px;
    color: var(--gc-navy);
}

.gc-sub {
    text-align: center;
    color: var(--gc-grey);
    font-size: 17.5px;
    max-width: 600px;
    margin: 0 auto 58px;
    line-height: 1.6;
}

/* ================= JOURNEY ================= */
.journey-row {
    position: relative;
}

    .journey-row:before {
        content: "";
        position: absolute;
        top: 27px;
        left: 8%;
        right: 8%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #bcd9ee 15%, #bcd9ee 85%, transparent);
    }

.journey-card {
    position: relative;
    text-align: center;
    padding: 0 18px;
}

    .journey-card .step-no {
        width: 54px;
        height: 54px;
        margin: 0 auto 22px;
        border-radius: 50%;
        position: relative;
        z-index: 2;
        background: linear-gradient(135deg, #29abe2, #0272bc);
        color: #fff;
        font-weight: 700;
        font-size: 19px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 24px rgba(2,114,188,.35), 0 0 0 8px #ffffff;
    }

.gc-section.slate .journey-card .step-no {
    box-shadow: 0 10px 24px rgba(2,114,188,.35), 0 0 0 8px #f2f7fa;
}

.journey-card .when {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gc-blue);
    margin-bottom: 8px;
}

.journey-card h4 {
    font-size: 19px;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    color: var(--gc-navy);
}

.journey-card p {
    font-size: 14.5px;
    color: var(--gc-grey);
    line-height: 1.65;
    margin: 0;
}

/* ================= FEATURES ================= */
.feat-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 34px 30px;
    height: 100%;
    border: 1px solid var(--gc-line);
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

    .feat-card:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        border-radius: 3px 3px 0 0;
        background: linear-gradient(90deg, #29abe2, #0272bc);
        opacity: 0;
        transition: opacity .28s ease;
    }

    .feat-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 54px rgba(2,60,100,.13);
        border-color: transparent;
    }

        .feat-card:hover:before {
            opacity: 1;
        }

    .feat-card .ico {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        font-size: 27px;
        color: #fff;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #29abe2, #0272bc);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 22px rgba(2,114,188,.28);
    }

    .feat-card h4 {
        font-size: 18.5px;
        margin-bottom: 9px;
        letter-spacing: -0.01em;
        color: var(--gc-navy);
    }

    .feat-card p {
        font-size: 14.5px;
        color: var(--gc-grey);
        line-height: 1.65;
        margin: 0;
    }

/* ================= FIT CHIPS ================= */
.fit-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #ffffff;
    border: 1px solid var(--gc-line);
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 15px;
    color: var(--gc-navy);
    margin: 7px 6px;
    box-shadow: 0 4px 14px rgba(2,60,100,.05);
    transition: all .22s ease;
}

    .fit-chip:hover {
        border-color: var(--gc-blue);
        background: #f2f9fe;
        transform: translateY(-2px);
    }

    .fit-chip i {
        color: #fff;
        background: linear-gradient(135deg, #29abe2, #0272bc);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        font-size: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

/* ================= BUY ================= */
.buy-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: radial-gradient(900px 480px at 80% 0%, #0a5d94 0%, var(--gc-navy) 50%, var(--gc-ink) 100%);
}

    .buy-section .orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: .35;
        pointer-events: none;
    }

    .buy-section .orb-a {
        width: 420px;
        height: 420px;
        top: -140px;
        right: -80px;
        background: #1289d8;
    }

    .buy-section .container {
        position: relative;
        z-index: 2;
    }

    .buy-section h2 {
        color: #fff;
        font-size: clamp(28px, 3.8vw, 44px);
        letter-spacing: -0.02em;
        margin-bottom: 12px;
    }

    .buy-section .buy-lede {
        color: #b9cfdf;
        font-size: 16px;
        margin-bottom: 36px;
        max-width: 470px;
        line-height: 1.6;
    }

.buy-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .buy-checklist li {
        position: relative;
        padding: 11px 0 11px 38px;
        font-size: 15.5px;
        color: #e6f1f8;
        border-bottom: 1px solid rgba(255,255,255,.09);
    }

        .buy-checklist li:last-child {
            border-bottom: 0;
        }

        .buy-checklist li:before {
            content: "\2713";
            position: absolute;
            left: 0;
            top: 10px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, #29abe2, #0272bc);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(41,171,226,.35);
        }

        .buy-checklist li small {
            color: #8fb4cc;
        }

.buy-panel {
    background: #ffffff;
    border-radius: 26px;
    padding: 40px 36px;
    color: #1a2530;
    box-shadow: 0 40px 100px rgba(0,0,0,.4);
}

    .buy-panel .eyebrow {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--gc-blue);
        margin-bottom: 18px;
    }

.duration-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 24px;
}

.duration-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1.5px solid var(--gc-line);
    border-radius: 16px;
    padding: 15px 18px;
    cursor: pointer;
    transition: all .2s ease;
    background: #fff;
}

    .duration-row:hover {
        border-color: #8ec6ea;
        transform: translateX(3px);
    }

    .duration-row.selected {
        border-color: var(--gc-blue);
        background: linear-gradient(135deg, #f2f9fe, #e9f5fd);
        box-shadow: 0 0 0 1px var(--gc-blue) inset, 0 8px 22px rgba(2,114,188,.12);
    }

    .duration-row .radio {
        width: 21px;
        height: 21px;
        border-radius: 50%;
        border: 2px solid #c3ccd4;
        flex: 0 0 21px;
        position: relative;
        transition: all .15s ease;
    }

    .duration-row.selected .radio {
        border-color: var(--gc-blue);
    }

        .duration-row.selected .radio:after {
            content: "";
            position: absolute;
            inset: 3px;
            border-radius: 50%;
            background: var(--gc-blue);
        }

    .duration-row .d-info {
        flex: 1 1 auto;
    }

    .duration-row .d-months {
        font-size: 16px;
        font-weight: 700;
        color: var(--gc-navy);
        letter-spacing: -0.01em;
    }

    .duration-row .d-permo {
        font-size: 12.5px;
        color: var(--gc-mute);
    }

    .duration-row .d-price {
        font-size: 16px;
        font-weight: 700;
        color: var(--gc-navy);
        white-space: nowrap;
    }

        .duration-row .d-price small {
            display: block;
            font-size: 11px;
            font-weight: 400;
            color: var(--gc-mute);
            text-align: right;
        }

.d-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #29abe2, #0272bc);
    border-radius: 999px;
    padding: 3px 11px;
    margin-left: 8px;
    vertical-align: 2px;
}

.total-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 20px 2px 2px;
    border-top: 1px dashed #d5dde4;
}

    .total-row .t-label {
        font-size: 14px;
        color: var(--gc-mute);
    }

    .total-row .t-value {
        font-size: 40px;
        font-weight: 700;
        letter-spacing: -0.02em;
        color: var(--gc-navy);
        transition: opacity .18s ease;
    }

        .total-row .t-value.flash {
            animation: priceIn .35s ease;
        }

@keyframes priceIn {
    from {
        opacity: 0;
        transform: translateY(6px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.gst-line {
    font-size: 12.5px;
    color: var(--gc-mute);
    text-align: right;
    margin: 0 2px 20px;
}

.btn-pay {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #29abe2, #0272bc);
    color: #fff !important;
    font-weight: 600;
    font-size: 17px;
    border: 0;
    border-radius: 999px;
    padding: 17px 28px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(2,114,188,.35);
    transition: transform .18s ease, box-shadow .18s ease;
}

    .btn-pay:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 42px rgba(2,114,188,.5);
    }

.secure-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12.5px;
    color: var(--gc-mute);
}

    .secure-row i {
        color: #2e9e5b;
    }

.fineprint {
    font-size: 12.5px;
    color: var(--gc-mute);
    line-height: 1.6;
}

/* ================= FAQ ================= */
.gc-faq .accordion-section-title {
    font-size: 16.5px;
}

/* ================= CROSS-SELL ================= */
.xsell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 44px 48px;
    background: linear-gradient(120deg, #eaf5fc, #dceefa);
    border: 1px solid #cfe6f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

    .xsell:before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        right: -100px;
        top: -140px;
        background: radial-gradient(closest-side, rgba(41,171,226,.25), transparent);
    }

    .xsell h4 {
        margin: 0 0 6px;
        font-size: 22px;
        letter-spacing: -0.01em;
        color: var(--gc-navy);
    }

    .xsell p {
        margin: 0;
        font-size: 15px;
        color: var(--gc-grey);
    }

@media (max-width: 991px) {
    .journey-row:before {
        display: none
    }
}

@media (max-width: 767px) {
    .gc-hero {
        padding: 140px 0 70px;
    }

    .gc-section {
        padding: 64px 0;
    }

    .buy-section {
        padding: 70px 0;
    }

    .buy-panel {
        padding: 30px 22px;
    }

    .xsell {
        padding: 32px 26px;
    }
}
