@charset "utf-8";
/* CSS Document */
html {
    scroll-behavior: smooth;
}
:root {
    --navy:     #0d2b4e;
    --navy-mid: #1a3f6f;
    --blue:     #1d6fbf;
    --blue-lt:  #2e86de;
    --sky:      #e8f3fd;
    --sky-mid:  #cce3f8;
    --teal: #00bdad;
    --gold:     #d4a72c;
    --gold-lt:  #f5e6b0;
    --white:    #ffffff;
    --off:      #f7f9fc;
    --gray:     #64748b;
    --gray-lt:  #e2e8f0;
    --text:     #1e293b;
    --radius:   12px;
    --shadow:   0 4px 24px rgba(13,43,78,.10);
    --shadow-lg:0 12px 48px rgba(13,43,78,.16);
}
.GPB_Banner{
    background: url(../img/GPB_banner_img.jpg) no-repeat bottom center;
    height: 385px;
}
.GPB_Banner_h1{
    font-size: 36px;
    font-family: 'Inter Bold';
    color: #10147e;
    padding-top: 65px;
}
.GPB_Banner_p{
    font-size: 20px;
    padding: 28px 0px 24px;
}
.hero-actions{}
.GPB_btn{}
.hero-stats {
    display: flex;
    gap: 43px;
    margin-top: 46px;
    padding-top: 32px;
    border-top: 1px solid #abc3e5;
    width: 850px;
}
.hero-stat-n {
    font-family: 'Inter SemiBold';
    font-size: 22px;
    font-weight: 700;
}
.hero-stat-n span {
}
.hero-stat-l {
    font-size: 16px;
    color: #333;
    margin-top: 2px;
}

/* ─── SECTION: VALUE PROPS ─── */
.value-section { padding: 96px 0; }
.value-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--gray-lt);
    border-radius: var(--radius);
    padding: 20px;
    transition: all .25s;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 52px auto;
    gap: 24px;
}
.value-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--blue), var(--teal));
    transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: var(--sky); display: flex; align-items: center;
    justify-content: center; margin-bottom: 20px; font-size: 24px;
}
.value-card h3 {
    font-family: 'Inter SemiBold';
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
}
.value-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray);
}
.value-metric {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-lt);
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.metric-n {
    font-family: 'Inter SemiBold';
    font-size: 24px;
    font-weight: 500;
    color: var(--blue);
}
.metric-l {font-size: 16px;color: var(--gray);}

/* ─── SECTION: VALUE PROPS ─── */
.costs_gird {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.bullet-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
    color: white;
    font-size: 11px;
}
.story-bullets li{
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    margin-bottom: 12px;
    background: #1576ad;
    border-radius: var(--radius);
    padding: 18px 20px;
}
.bullet_info{
}
.bullet_info_p1{
    color: var(--white);
    font-size: 20px;
    font-family: 'Inter SemiBold';
    padding-bottom: 10px;
}
.bullet_info_p2{
    color: #fff;
}
.page_title{
    line-height: 50px;
}

/* ─── SECTION: COST BREAKDOWN ─── */
.cost-section {
    background: var(--navy);
    padding: 60px 0;
}
.cost-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.cost-text .section-label-line { background: var(--gold); }
.cost-text .section-label span { color: var(--gold); }
.cost-text .section-title { color: var(--white); }
.cost-text .section-sub { color: rgba(255,255,255,.65); max-width: 100%; }
.cost-statement {
    margin-top: 28px; padding: 20px 24px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-left: 3px solid var(--gold);
    border-radius: 0 10px 10px 0;
    font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.8);
    font-style: italic;
}

.cost-chart { }
.cost-bars { display: flex; flex-direction: column; gap: 16px; }
.cost-bar-row {}
.cost-bar-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 8px;
}
.cost-bar-label {font-size: 13px;font-family: 'Inter SemiBold';color: rgba(255,255,255,.85);}
.cost-bar-pct {
    font-size: 13px;
    color: var(--gold);
}
.cost-bar-track {
    height: 8px; border-radius: 4px;
    background: rgba(255,255,255,.08); overflow: hidden;
}
.cost-bar-fill {
    height: 100%; border-radius: 4px;
    background: linear-gradient(90deg, var(--blue-lt), var(--teal));
    transform-origin: left;
    animation: growBar 1.2s ease forwards;
    transform: scaleX(0);
}
@keyframes growBar {
    to { transform: scaleX(1); }
}
.cost-bar-fill.delay1 { animation-delay: .1s; }
.cost-bar-fill.delay2 { animation-delay: .25s; }
.cost-bar-fill.delay3 { animation-delay: .4s; }
.cost-bar-fill.delay4 { animation-delay: .55s; }

/* Compare table */
.compare-table {
    margin-top: 40px; border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
}
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table th {
    padding: 14px 20px; font-size: 12px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    background: rgba(255,255,255,.05); color: rgba(255,255,255,.5);
    text-align: left;
}
.compare-table th:last-child { color: var(--gold); }
.compare-table td {
    padding: 14px 20px; font-size: 14px;
    color: rgba(255,255,255,.75);
    border-top: 1px solid rgba(255,255,255,.06);
}
.compare-table td:first-child { color: rgba(255,255,255,.85); font-weight: 500; }
.compare-table td:last-child {
    font-weight: 700; color: var(--white);
    font-family: 'DM Mono', monospace;
}
.compare-table tr:hover td { background: rgba(255,255,255,.03); }
.saving-tag {
    display: inline-block; padding: 2px 8px; border-radius: 4px;
    background: rgba(15,155,142,.2); color: #5de8dc;
    font-size: 11px; font-weight: 700; margin-left: 8px;
}

.lifetime-intro1{
    font-size: 24px;
    margin-bottom: 24px;
}
.lifetime-intro {
    font-size: 19px;
    color: #1e293b;
    margin-bottom: 24px;
    font-weight: 500;
}
.lifetime-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 32px;
    border: 1px solid #e2e8f0;
}
.lifetime-table th {
    background: #f1f5f9;
    padding: 14px 16px;
    text-align: left;
    font-size: 17px;
    color: #0d2b4e;
    border-bottom: 1px solid #e2e8f0;
}
.lifetime-table td {
    padding: 14px 16px;
    font-size: 17px;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
    line-height: 1.5;
}
.lifetime-table td strong {
    font-weight: 700;
    color: #0d2b4e;
}
.lifetime-table tr:last-child td {
    border-bottom: none;
}
.lifetime-summary-original {
    background: #e8f7fe;
    border-left: 4px solid #1576ad;
    padding: 20px 24px 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #1e293b;
    line-height: 1.6;
    border-radius: 8px;
    margin-bottom: 20px;
}
.lifetime-summary-original strong {
    font-weight: 700;
    color: #0d2b4e;
    display: block;
    margin-bottom: 8px;
}
.lifetime_p1{
    font-size: 19px;
    font-family: 'Inter SemiBold';
    margin-bottom: 8px;
}
.lifetime_p2{}


/* ─── CTA BANNER ─── */
.cta-banner {
    padding: 80px 0;
}
.cta-banner-inner {
    text-align: center;
}
.cta-banner h2 {
    font-family: 'Inter Bold';
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: #10147e;
    margin-bottom: 26px;
}
.cta-banner p {
    font-size: 20px;
    color: #333;
    max-width: 980px;
    margin: 0 auto 24px;
    line-height: 40px;
}
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
    background: var(--white); color: var(--blue);
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-white:hover { background: var(--sky); transform: translateY(-2px); }


/*FAQ*/
.faq-section {
    padding: 96px 0;
    background: var(--white);
}
.faq-list {
    max-width: 1000px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-lt);
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
    overflow: hidden;
}
.faq-item:hover {
    border-color: var(--blue-lt);
    box-shadow: var(--shadow);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 28px;
    background: var(--white);
    border: none;
    font-size: 17px;
    color: var(--navy);
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
    font-family: Inter Regular, arial;
}
.faq-question:hover {
    background: var(--off);
}
.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--blue);
}
.faq-item.open .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding 0.2s ease;
    padding: 0 28px;
    background: var(--off);
    border-top: 0px solid transparent;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 28px 20px 28px;
    border-top: 1px solid var(--gray-lt);
}
.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 16px 0 4px;
}

.apc_discount2 {
    background: url(../img/apc_author_support.png) no-repeat bottom center;
    position: relative;
    height: 240px;
    float: right;
    width: 510px;
}
.support_left{
    float: left;
    width: 743px;
}
.apc_discount2_p1 {
    font-size: 24px;
    font-family: "Inter SemiBold";
    margin-bottom: 24px
}

.apc_discount2_p2 {
    font-size: 24px;
    font-family: "Inter SemiBold";
    color: #0b6ba2;
    margin-bottom: 24px
}

.apc_discount2_p2 span {
    font-size: 34px;
    color: #fe701c;
    font-family: "Inter Bold"
}

.apc_discount2_p3 {
    font-size: 24px;
    font-family: "Inter SemiBold"
}

.apc_discount2_p3 span {
    text-decoration: underline
}

.original_apc2 {
    position: absolute;
    top: 6px;
    left: 0;
    font-size: 19px;
    color: #0b6ba2;
    font-family: "Inter SemiBold"
}
.discount2_apc {
    position: absolute;
    top: 125px;
    left: 144px;
    font-size: 25px;
    color: #fe701c;
    font-family: "Inter Bold";
}