/* =========================================================
   GICSP NEW DESIGN
========================================================= */

.gicsp-new-page {
    --gicsp-navy: #0a2373;
    --gicsp-navy-2: #0a2373;
    --gicsp-blue: #0a84ff;
    --gicsp-cyan: #51c7ff;
    --gicsp-text: #64748b;
    --gicsp-dark: #0f172a;
    --gicsp-border: #dce6f0;
    --gicsp-light: #f5f9fd;
    background: #fff;
    color: var(--gicsp-dark);
}


/* =========================================================
   HERO
========================================================= */

.gicsp-new-hero {
    position: relative;
    overflow: hidden;
    padding: 75px 0 50px;
    color: #fff;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(10,132,255,.25),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #020a14 0%,
            #061b30 55%,
            #092c4c 100%
        );
}

.gicsp-grid-bg {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(
            rgba(255,255,255,.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.07) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
    mask-image: linear-gradient(
        to right,
        black,
        transparent
    );
}

.gicsp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    margin-bottom: 25px;
    border: 1px solid rgba(81,199,255,.25);
    border-radius: 50px;
    background: rgba(10,132,255,.10);
    color: #82d4ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #51c7ff;
    box-shadow: 0 0 12px #51c7ff;
}

.gicsp-new-hero h1 {
    max-width: 780px;
    margin: 0 0 25px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -2px;
}

.gicsp-new-hero h1 span {
    color: var(--gicsp-cyan);
}

.gicsp-hero-description {
    max-width: 700px;
    margin-bottom: 32px;
    color: #b9c9d8;
    font-size: 17px;
    line-height: 1.85;
}

.gicsp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.gicsp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: all .25s ease;
}

.gicsp-btn-primary {
    color: #fff;
    background: var(--gicsp-blue);
    box-shadow: 0 12px 30px rgba(10,132,255,.25);
}

.gicsp-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    background: #0878e8;
}

.gicsp-btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.05);
}

.gicsp-btn-outline:hover {
    color: #fff;
    border-color: rgba(255,255,255,.45);
    background: rgba(255,255,255,.10);
}

.gicsp-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 42px;
}

.gicsp-trust-row div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #9eb1c4;
    font-size: 12px;
    font-weight: 700;
}

.gicsp-trust-row i {
    color: var(--gicsp-cyan);
}


/* =========================================================
   HERO CERTIFICATION PANEL
========================================================= */

.hero-certification-panel {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 24px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    color: #8298ad;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.panel-status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #7de0b2;
}

.panel-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #54d89a;
    box-shadow: 0 0 10px rgba(84,216,154,.7);
}

.certificate-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 30px 0 20px;
    border: 1px solid rgba(81,199,255,.22);
    border-radius: 18px;
    color: var(--gicsp-cyan);
    background: rgba(10,132,255,.12);
    font-size: 30px;
}

.hero-certification-panel h3 {
    margin-bottom: 7px;
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero-certification-panel > p {
    margin-bottom: 28px;
    color: #9fb3c6;
    font-size: 13px;
    line-height: 1.6;
}

.panel-stat-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    border-top: 1px solid rgba(255,255,255,.10);
    border-left: 1px solid rgba(255,255,255,.10);
}

.panel-stat-grid div {
    padding: 18px;
    border-right: 1px solid rgba(255,255,255,.10);
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.panel-stat-grid strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 20px;
}

.panel-stat-grid span {
    color: #8499ac;
    font-size: 10px;
}


/* =========================================================
   INTRO STRIP
========================================================= */

.gicsp-intro-strip {
    padding: 55px 0;
    background: #fff;
    border-bottom: 1px solid var(--gicsp-border);
}

.intro-strip-inner {
    grid-template-columns: 70px 1fr 380px;
    align-items: center;
    gap: 35px;
}

.intro-number {
    color: var(--gicsp-blue);
    font-size: 13px;
    font-weight: 900;
}

.section-label {
    display: block;
    margin-bottom: 10px;
    color: var(--gicsp-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.intro-strip-inner h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.6px;
}

.intro-strip-inner h2 strong {
    color: var(--gicsp-blue);
}

.intro-strip-inner > p {
    margin: 0;
    color: var(--gicsp-text);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   BUNDLES
========================================================= */

.gicsp-bundles-section {
    padding: 12px 0;
    background: #f7fafd;
}

.section-heading-new {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 25px;
}

.section-heading-new h2 {
    margin: 0;
    font-size: clamp(34px,4vw,48px);
    line-height: 1.1;
    font-weight: 850;
    letter-spacing: -1.5px;
}

.section-heading-new h2 span {
    color: var(--gicsp-blue);
}

.section-heading-new > p {
    max-width: 420px;
    margin: 0;
    color: var(--gicsp-text);
    font-size: 14px;
    line-height: 1.8;
}

.gicsp-pricing-new {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    align-items: stretch;
    gap: 18px;
}

.gicsp-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 38px 32px;
    border: 1px solid var(--gicsp-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(15,23,42,.04);
    transition: transform .25s ease, box-shadow .25s ease;
}

.gicsp-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(15,23,42,.09);
}

.gicsp-plan-featured {
    border: 2px solid var(--gicsp-blue);
    box-shadow: 0 20px 55px rgba(10,132,255,.13);
}

.plan-featured-label {
    position: absolute;
    top: -14px;
    left: 28px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 50px;
    color: #fff;
    background: var(--gicsp-blue);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.plan-number {
    color: #b5c4d2;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.plan-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 18px 0;
    border-radius: 14px;
    color: var(--gicsp-blue);
    background: #edf6ff;
    font-size: 21px;
}

.gicsp-plan h3 {
    margin: 0 0 13px;
    color: var(--gicsp-dark);
    font-size: 25px;
    line-height: 1.18;
    font-weight: 850;
    letter-spacing: -.5px;
}

.plan-tagline {
    min-height: 45px;
    margin-bottom: 25px;
    color: var(--gicsp-text);
    font-size: 13px;
    line-height: 1.7;
}
.plan-description {
    min-height: 15px;
    color: var(--gicsp-text);
    font-size: 13px;
    line-height: 1.8;
}

.plan-divider {
    height: 1px;
    margin: 25px 0 20px;
    background: var(--gicsp-border);
}

.plan-includes {
    margin-bottom: 12px;
    color: #8a9aaa;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.new-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.new-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 11px 0;
    color: #334155;
    font-size: 12px;
    line-height: 1.55;
}

.new-feature-list li > i {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gicsp-blue);
    font-size: 12px;
}

.new-feature-list strong {
    display: block;
    margin-bottom: 2px;
    color: var(--gicsp-dark);
    font-size: 12px;
}

.new-feature-list span {
    display: block;
    color: #7a8998;
    font-size: 11px;
}

.new-plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 49px;
    margin-top: auto;
    padding: 0 15px;
    border: 1px solid #cfdbe7;
    border-radius: 9px;
    color: var(--gicsp-dark);
    background: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition: all .25s ease;
}

.new-plan-btn:hover {
    color: var(--gicsp-blue);
    border-color: var(--gicsp-blue);
}

.new-plan-btn-primary {
    color: #fff;
    border-color: var(--gicsp-blue);
    background: var(--gicsp-blue);
}

.new-plan-btn-primary:hover {
    color: #fff;
    background: #0878e8;
}


/* =========================================================
   MASTER SECTION
========================================================= */

.gicsp-master-section {
    padding: 12px 0;
    background: #fff;
}

.gicsp-master-section h2 {
    max-width: 500px;
    margin: 0 0 22px;
    font-size: clamp(35px,4vw,50px);
    line-height: 1.1;
    font-weight: 850;
    letter-spacing: -1.5px;
}

.gicsp-master-section h2 span {
    color: var(--gicsp-blue);
}

.gicsp-master-section > .container > .row > div:first-child > p {
    max-width: 500px;
    margin-bottom: 30px;
    color: var(--gicsp-text);
    font-size: 15px;
    line-height: 1.9;
}

.master-callout {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 480px;
    padding: 20px;
    border-left: 3px solid var(--gicsp-blue);
    background: #f3f8fd;
}

.master-callout > i {
    color: var(--gicsp-blue);
    font-size: 21px;
}

.master-callout strong {
    display: block;
    margin-bottom: 4px;
    color: var(--gicsp-dark);
    font-size: 13px;
}

.master-callout span {
    display: block;
    color: var(--gicsp-text);
    font-size: 12px;
    line-height: 1.6;
}

.master-timeline {
    border-top: 1px solid var(--gicsp-border);
}

.timeline-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 23px 0;
    border-bottom: 1px solid var(--gicsp-border);
}

.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #cfe0ef;
    border-radius: 10px;
    color: var(--gicsp-blue);
    background: #f4f9fd;
    font-size: 11px;
    font-weight: 900;
}

.timeline-item h3 {
    margin: 0 0 7px;
    color: var(--gicsp-dark);
    font-size: 18px;
    font-weight: 800;
}

.timeline-item p {
    max-width: 600px;
    margin: 0;
    color: var(--gicsp-text);
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   COMPARISON
========================================================= */

.gicsp-comparison-section {
    padding: 12px 0;
    background: #f7fafd;
}

.section-heading-new.centered {
    display: block;
    text-align: center;
    margin-bottom: 45px;
}

.section-heading-new.centered h2 {
    margin: 0 auto;
    max-width: 700px;
}

.comparison-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--gicsp-border);
    border-radius: 18px;
    background: #fff;
}

.comparison-table {
    min-width: 750px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr repeat(3,1fr);
    border-bottom: 1px solid var(--gicsp-border);
}

.comparison-row:last-child {
    border-bottom: 0;
}

.comparison-row > div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 12px 15px;
    border-right: 1px solid var(--gicsp-border);
    color: #64748b;
    font-size: 12px;
    text-align: center;
}

.comparison-row > div:first-child {
    justify-content: flex-start;
    color: var(--gicsp-dark);
    font-weight: 700;
    text-align: left;
}

.comparison-row > div:last-child {
    border-right: 0;
}

.comparison-header > div {
    min-height: 64px;
    color: #fff !important;
    background: var(--gicsp-navy);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .7px;
}

.comparison-header > div:first-child {
    color: #fff !important;
}

.comparison-row:not(.comparison-header) > div i {
    color: var(--gicsp-blue);
}


/* =========================================================
   DISCLAIMER
========================================================= */

.gicsp-disclaimer-section {
    padding: 15px 0;
    background: #fff;
}

.disclaimer-new {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;
    padding: 38px;
    border: 1px solid #dce6ef;
    border-radius: 18px;
    background: #f8fafc;
}

.disclaimer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 14px;
    color: #0a84ff;
    background: #eaf4ff;
    font-size: 21px;
}

.disclaimer-new h2 {
    margin: 0 0 12px;
    color: var(--gicsp-dark);
    font-size: 23px;
    font-weight: 850;
}

.disclaimer-new p {
    max-width: 950px;
    margin: 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.9;
}


/* =========================================================
   CTA
========================================================= */

.gicsp-new-cta {
    padding: 80px 0 100px;
    background: #fff;
}

.new-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px;
    border-radius: 22px;
    color: #fff;
    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(81,199,255,.25),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #061426,
            #0a3152
        );
}

.new-cta-inner h2 {
    margin: 0 0 12px;
    font-size: clamp(30px,4vw,45px);
    line-height: 1.15;
    font-weight: 850;
}

.new-cta-inner h2 span {
    color: var(--gicsp-cyan);
}

.new-cta-inner p {
    max-width: 650px;
    margin: 0;
    color: #b9c9d8;
    font-size: 14px;
    line-height: 1.8;
}

.gicsp-btn-light {
    flex-shrink: 0;
    color: var(--gicsp-dark);
    background: #fff;
}

.gicsp-btn-light:hover {
    color: var(--gicsp-dark);
    transform: translateY(-2px);
    background: #edf7ff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .gicsp-pricing-new {
        grid-template-columns: repeat(2,1fr);
    }

    .gicsp-plan-featured {
        grid-column: span 2;
    }

}


@media (max-width: 991px) {

    .gicsp-new-hero {
        padding: 75px 0 50px;
    }

    .hero-certification-panel {
        max-width: 600px;
    }

    .intro-strip-inner {
        grid-template-columns: 50px 1fr;
    }

    .intro-strip-inner > p {
        grid-column: 2;
    }

    .section-heading-new {
        display: block;
    }

    .section-heading-new > p {
        margin-top: 20px;
    }

    .gicsp-pricing-new {
        grid-template-columns: 1fr;
    }

    .gicsp-plan-featured {
        grid-column: auto;
    }

    .gicsp-master-section {
        padding: 30px 0;
    }

    .new-cta-inner {
        display: block;
    }

    .new-cta-inner .gicsp-btn {
        margin-top: 28px;
    }

}


@media (max-width: 767px) {

    .gicsp-new-hero {
        padding: 130px 0 65px;
    }

    .gicsp-new-hero h1 {
        letter-spacing: -1px;
    }

    .gicsp-hero-description {
        font-size: 15px;
    }

    .gicsp-trust-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .gicsp-intro-strip {
        padding: 40px 0;
    }

    .intro-strip-inner {
        display: block;
    }

    .intro-number {
        margin-bottom: 18px;
    }

    .intro-strip-inner > p {
        margin-top: 20px;
    }

    .gicsp-bundles-section {
        padding: 35px 0;
    }

    .gicsp-master-section {
        padding: 35px 0;
    }

    .gicsp-comparison-section {
        padding: 35px 0;
    }

    .gicsp-disclaimer-section {
        padding: 30px 0;
    }

    .disclaimer-new {
        display: block;
        padding: 28px;
    }

    .disclaimer-icon {
        margin-bottom: 20px;
    }

    .gicsp-new-cta {
        padding: 55px 0 70px;
    }

    .new-cta-inner {
        padding: 35px 25px;
    }

}


@media (max-width: 575px) {

    .gicsp-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .gicsp-btn {
        width: 100%;
    }

    .hero-certification-panel {
        padding: 23px;
    }

    .gicsp-plan {
        padding: 30px 23px;
    }

    .plan-description {
        min-height: auto;
    }

    .new-cta-inner .gicsp-btn {
        width: 100%;
    }

}