/* HGX Media — WooCommerce Management */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

#hgx-woo {
    --hgx-blue: #1B6CF2;
    --hgx-blue-bg: rgba(27, 108, 242, 0.06);
    --hgx-bg: #070b15;
    --hgx-bg-off: #0d1526;
    --hgx-text: #ffffff;
    --hgx-text-sec: rgba(255, 255, 255, 0.9);
    --hgx-text-muted: rgba(255, 255, 255, 0.5);
    --hgx-border: rgba(255, 255, 255, 0.08);
    --hgx-border2: rgba(255, 255, 255, 0.12);
    --hgx-font: 'Inter', -apple-system, sans-serif;
    --hgx-serif: 'Playfair Display', Georgia, serif;
    --hgx-max-w: 1200px;
    --hgx-r: 12px;
    --hgx-r-lg: 16px;
    --hgx-r-xl: 20px;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

/* ── GRAIN ── */
.grain::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    opacity: .5;
    mix-blend-mode: overlay
}

/* ── SHIMMER ── */
.has-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    animation: shimmer 3.5s ease infinite;
    pointer-events: none
}

@keyframes shimmer {
    0% { left: -100% }
    40% { left: 130% }
    100% { left: 130% }
}

.btn-primary {
    background: var(--hgx-blue);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 13px 28px;
    border-radius: 100px;
    font-family: var(--hgx-font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: .01em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(27, 108, 242, 0.45), 0 0 60px rgba(27, 108, 242, 0.12);
    transition: all .35s cubic-bezier(.23, 1, .32, 1);
    text-decoration: none
}

.btn-primary:hover {
    box-shadow: 0 8px 36px rgba(27, 108, 242, 0.65), 0 0 90px rgba(27, 108, 242, 0.3);
    transform: translateY(-2px) scale(1.015)
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 13px 28px;
    border-radius: 100px;
    font-family: var(--hgx-font);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all .3s cubic-bezier(.23, 1, .32, 1)
}

.btn-ghost:hover {
    border-color: rgba(27, 108, 242, 0.5);
    color: var(--hgx-blue);
    background: rgba(27, 108, 242, 0.08);
    transform: translateY(-2px)
}

/* ── SECTION UTILS ── */
section {
    position: relative
}

.s-inner {
    max-width: var(--hgx-max-w);
    margin: 0 auto
}

.s-label {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--hgx-blue);
    margin-bottom: 10px;
    font-weight: 600;
    display: block
}

.s-title {
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -.03em
}

.s-title em,
strong.serif {
    font-family: var(--hgx-serif);
    font-style: italic;
    font-weight: 600;
    letter-spacing: -.01em
}

.s-note {
    font-size: 14px;
    color: var(--hgx-text-sec);
    line-height: 1.7;
    max-width: 500px;
    font-weight: 400;
    margin-top: 12px
}

.s-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 56px
}

.section-dark {
    background: #060a13;
    border-radius: var(--hgx-r-xl);
    margin: 0 16px;
    overflow: hidden;
    position: relative
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(27, 108, 242, 0.1) 0%, transparent 70%);
    pointer-events: none
}

/* ═══════════════════════════════════════════
   ATTENTION BAR
═══════════════════════════════════════════ */
#attention-bar {
    background: var(--hgx-blue);
    padding: 12px 24px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .02em;
    position: relative;
    overflow: hidden
}

#attention-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    opacity: .6;
    mix-blend-mode: overlay
}

.attention-pulse {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    margin-right: 8px;
    vertical-align: middle;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,0.6) }
    50% { opacity: .7; box-shadow: 0 0 0 6px rgba(255,255,255,0) }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
    padding: 120px 64px 96px;
    margin: 12px;
    border-radius: var(--hgx-r-xl);
    overflow: hidden;
    position: relative;
    background: var(--hgx-bg);
    background-image:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(27, 108, 242, 0.08) 0%, transparent 60%),
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 24px 24px
}

.hero-content {
    max-width: var(--hgx-max-w);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center
}

.hero-trust-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px
}

.hero-pill {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, 0.85);
    padding: 7px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(8px);
    animation: pillIn 0.5s cubic-bezier(.23, 1, .32, 1) forwards
}

.hero-pill:nth-child(1) { animation-delay: .3s }
.hero-pill:nth-child(2) { animation-delay: .45s }
.hero-pill:nth-child(3) { animation-delay: .6s }

@keyframes pillIn {
    from { opacity: 0; transform: translateY(8px) }
    to { opacity: 1; transform: translateY(0) }
}

.hero-h1 {
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: -.045em;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto
}

.hero-h1 em {
    font-family: var(--hgx-serif);
    font-style: italic;
    font-weight: 600;
    color: var(--hgx-blue)
}

.hero-sub {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 580px;
    margin: 0 auto 40px
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center
}

.scroll-ind {
    position: absolute;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 3;
    opacity: .5
}

.scroll-ind span {
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hgx-blue);
    animation: scrollDown 2s infinite
}

@keyframes scrollDown {
    0% { top: -100% }
    100% { top: 100% }
}

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
#stats-bar {
    padding: 0 48px;
    margin-top: 8px
}

.stats-bar-grid {
    max-width: var(--hgx-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.sb-card {
    padding: 28px 24px;
    border-radius: var(--hgx-r-lg);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform .35s cubic-bezier(.23, 1, .32, 1), box-shadow .35s
}

.sb-card:hover {
    transform: translateY(-5px) scale(1.008);
    border: 1px solid rgba(27, 108, 242, 0.4);
    box-shadow: 0 0 0 2px var(--hgx-blue), 0 0 28px rgba(27, 108, 242, 0.22), 0 20px 40px rgba(0, 0, 0, 0.12)
}

.sb-num {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -.05em;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--hgx-blue)
}

.sb-label {
    font-size: 12px;
    color: #444;
    line-height: 1.5
}

/* ═══════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════ */
#problem {
    padding: 96px 48px;
    background: #0c1a3a;
    border-radius: var(--hgx-r-xl);
    margin: 24px 16px 0;
    overflow: hidden;
    position: relative
}

#problem::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 24px 24px
}

#problem::after {
    content: '';
    position: absolute;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            transparent 0deg, rgba(27, 108, 242, 0) 60deg,
            rgba(27, 108, 242, .6) 90deg, rgba(100, 160, 255, .9) 100deg,
            rgba(27, 108, 242, .6) 110deg, rgba(27, 108, 242, 0) 160deg,
            transparent 360deg);
    animation: rayRot 4s linear infinite paused;
    pointer-events: none;
    z-index: 0
}

#problem.ray-active::after {
    animation-play-state: running
}

.problem-ray-mask {
    position: absolute;
    inset: 2px;
    background: #0c1a3a;
    border-radius: var(--hgx-r-xl);
    z-index: 1
}

@keyframes rayRot {
    from { transform: rotate(0deg) }
    to { transform: rotate(360deg) }
}

.problem-inner {
    position: relative;
    z-index: 2;
    max-width: var(--hgx-max-w);
    margin: 0 auto
}

.problem-header {
    text-align: center;
    margin-bottom: 64px
}

.problem-header .s-title {
    max-width: 600px;
    margin: 0 auto
}

.problem-body {
    max-width: 680px;
    margin: 0 auto 56px;
    text-align: center
}

.problem-body p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 16px
}

.problem-body p strong {
    color: rgba(255, 255, 255, .95);
    font-weight: 600
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.pain-card {
    padding: 32px 28px;
    border-radius: var(--hgx-r-lg);
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    transition: transform .35s cubic-bezier(.23, 1, .32, 1), background .35s, box-shadow .35s
}

.pain-card:hover {
    transform: translateY(-5px) scale(1.008);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4)
}

.pain-card h4 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.01em;
    margin-bottom: 10px;
    color: #fff
}

.pain-card p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .6)
}

/* ═══════════════════════════════════════════
   PATTERN INTERRUPT
═══════════════════════════════════════════ */
.pattern-interrupt {
    padding: 64px 48px;
    text-align: center
}

.pi-text {
    max-width: 720px;
    margin: 0 auto;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -.02em;
    color: rgba(255, 255, 255, 0.8)
}

.pi-text .pi-icon {
    color: var(--hgx-blue);
    margin-right: 8px
}

/* ═══════════════════════════════════════════
   COST OF INACTION
═══════════════════════════════════════════ */
#cost {
    padding: 96px 48px;
    border-radius: var(--hgx-r-xl);
    margin: 0 16px;
    border: 1px solid var(--hgx-border);
    background: var(--hgx-bg);
    background-image: linear-gradient(145deg, rgba(27, 108, 242, .03) 0%, rgba(10, 15, 28, 0) 60%)
}

.cost-inner {
    max-width: var(--hgx-max-w);
    margin: 0 auto
}

.cost-header {
    text-align: center;
    margin-bottom: 56px
}

.cost-table {
    max-width: 800px;
    margin: 0 auto 48px;
    width: 100%
}

.cost-table table {
    width: 100%;
    border-collapse: collapse
}

.cost-table th {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hgx-blue);
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--hgx-border2)
}

.cost-table td {
    font-size: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--hgx-border);
    color: rgba(255, 255, 255, .8)
}

.cost-table tr:last-child td {
    font-weight: 700;
    color: var(--hgx-blue);
    font-size: 15px
}

.cost-punchline {
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    color: var(--hgx-blue);
    letter-spacing: -.01em
}

/* ═══════════════════════════════════════════
   GUIDE SECTION
═══════════════════════════════════════════ */
#guide {
    padding: 96px 48px;
    margin-top: 24px
}

.guide-inner {
    max-width: var(--hgx-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.guide-copy .s-title {
    margin-bottom: 28px
}

.guide-copy p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 16px;
    max-width: 52ch
}

.guide-copy p strong {
    color: rgba(255, 255, 255, .95);
    font-weight: 600
}

/* Founder letter visual */
.founder-card {
    padding: 48px 40px;
    background: rgba(255, 255, 255, .03);
    border-radius: var(--hgx-r-lg);
    border: 1px solid var(--hgx-border);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4)
}

.founder-card .fc-quote {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1.5;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .9)
}

.founder-card .fc-body {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 24px
}

.founder-card .fc-sig {
    font-size: 13px;
    font-weight: 600;
    color: var(--hgx-blue)
}

/* ═══════════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════════ */
#compare {
    padding: 96px 48px;
    background: #040810;
    border-radius: var(--hgx-r-xl);
    margin: 24px 16px 0;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--hgx-border)
}

#compare::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(27, 108, 242, .4), rgba(100, 60, 220, .2), transparent);
    pointer-events: none;
    z-index: 2;
    animation: shimmerPulse 2.5s ease-in-out infinite
}

@keyframes shimmerPulse {
    0%, 100% { opacity: 0.5 }
    50% { opacity: 1 }
}

#compare::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% -20%, rgba(27, 108, 242, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0
}

.compare-inner {
    max-width: var(--hgx-max-w);
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.compare-header {
    text-align: center;
    margin-bottom: 56px
}

.compare-table {
    width: 100%;
    overflow-x: auto
}

.compare-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px
}

.compare-table th {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 16px 14px;
    text-align: center;
    border-bottom: 1px solid var(--hgx-border2);
    color: rgba(255, 255, 255, .5)
}

.compare-table th:first-child {
    text-align: left;
    color: rgba(255, 255, 255, .7)
}

.compare-table th:last-child {
    color: var(--hgx-blue)
}

.compare-table td {
    font-size: 13px;
    padding: 14px;
    text-align: center;
    border-bottom: 1px solid var(--hgx-border);
    color: rgba(255, 255, 255, .6)
}

.compare-table td:first-child {
    text-align: left;
    color: rgba(255, 255, 255, .85);
    font-weight: 500
}

.compare-table td:last-child {
    color: var(--hgx-blue);
    font-weight: 600
}

.compare-table .check {
    color: var(--hgx-blue);
    font-weight: 700
}

.compare-table .cross {
    color: rgba(255, 255, 255, .25)
}

.compare-bottom {
    text-align: center;
    margin-top: 48px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .55);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

/* ═══════════════════════════════════════════
   MID CTA
═══════════════════════════════════════════ */
.mid-cta {
    padding: 80px 48px;
    text-align: center
}

.mid-cta h2 {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 500;
    letter-spacing: -.03em;
    margin-bottom: 24px
}

.mid-cta-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    margin-top: 16px
}

/* ═══════════════════════════════════════════
   OFFER STACK
═══════════════════════════════════════════ */
#offer {
    padding: 96px 48px;
    border-radius: var(--hgx-r-xl);
    margin: 0 16px;
    border: 1px solid var(--hgx-border);
    background: var(--hgx-bg-off)
}

.offer-inner {
    max-width: var(--hgx-max-w);
    margin: 0 auto
}

.offer-header {
    text-align: center;
    margin-bottom: 64px
}

.offer-header .s-note {
    margin: 12px auto 0;
    text-align: center
}

.offer-group-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hgx-blue);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 8px
}

.offer-group-label::before {
    content: '';
    flex: 0 0 24px;
    height: 1px;
    background: var(--hgx-blue)
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px
}

.offer-card {
    padding: 32px 24px;
    border-radius: var(--hgx-r-lg);
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    transition: transform .35s cubic-bezier(.23, 1, .32, 1), background .35s, box-shadow .35s
}

.offer-card:hover {
    transform: translateY(-5px) scale(1.008);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4)
}

.offer-card-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--hgx-blue);
    margin-bottom: 14px
}

.offer-card h4 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.01em;
    margin-bottom: 4px;
    color: #fff
}

.offer-card .oc-price-ref {
    font-size: 11px;
    color: rgba(255, 255, 255, .35);
    font-style: italic;
    margin-bottom: 12px;
    display: block
}

.offer-card p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .55)
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px
}

.bonus-card {
    padding: 32px 24px;
    border-radius: var(--hgx-r-lg);
    background: rgba(27, 108, 242, .06);
    border: 1px solid rgba(27, 108, 242, .15);
    transition: transform .35s cubic-bezier(.23, 1, .32, 1), box-shadow .35s
}

.bonus-card:hover {
    transform: translateY(-5px) scale(1.008);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4)
}

.bonus-card .bc-worth {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hgx-blue);
    margin-bottom: 12px
}

.bonus-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff
}

.bonus-card p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .55)
}

.offer-total {
    text-align: center;
    padding-top: 48px;
    border-top: 1px solid var(--hgx-border)
}

.offer-total .ot-crossed {
    font-size: 14px;
    color: rgba(255, 255, 255, .4);
    text-decoration: line-through;
    margin-bottom: 8px
}

.offer-total .ot-price {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -.05em;
    margin-bottom: 16px;
    color: #fff
}

.offer-total .ot-note {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 32px
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
#process {
    padding: 96px 48px;
    margin-top: 24px;
    border-radius: var(--hgx-r-xl);
    margin-left: 16px;
    margin-right: 16px;
    border: 1px solid var(--hgx-border);
    overflow: hidden;
    background: var(--hgx-bg);
    background-image: linear-gradient(145deg, rgba(27, 108, 242, .03) 0%, rgba(10, 15, 28, 0) 60%)
}

.process-inner {
    max-width: var(--hgx-max-w);
    margin: 0 auto
}

.process-track {
    margin-top: 64px;
    position: relative
}

.process-line {
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, .06)
}

.process-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(27, 108, 242, 0) 20%, rgba(27, 108, 242, .6) 70%, rgba(100, 160, 255, 1) 95%, #fff 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.8s cubic-bezier(.23, 1, .32, 1)
}

.process-line-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 3px rgba(100, 160, 255, .8), 0 0 20px 5px rgba(27, 108, 242, .5)
}

.process-line-fill.animated {
    transform: scaleX(1)
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative
}

.process-step {
    padding-top: 56px;
    position: relative;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s, transform .5s cubic-bezier(.23, 1, .32, 1)
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0)
}

.process-dot {
    position: absolute;
    top: 16px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--hgx-blue);
    border: 2px solid rgba(27, 108, 242, .4);
    z-index: 2;
    transition: all .4s;
    box-shadow: 0 0 0 3px rgba(27, 108, 242, .12)
}

.process-step:hover .process-dot {
    background: #fff;
    border-color: var(--hgx-blue);
    box-shadow: 0 0 0 5px rgba(27, 108, 242, .2), 0 0 12px rgba(27, 108, 242, .5)
}

.process-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--hgx-blue);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -.04em
}

.process-name {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.015em;
    margin-bottom: 8px
}

.process-desc {
    font-size: 13px;
    color: var(--hgx-text-sec);
    line-height: 1.65
}

@keyframes dotPulse {
    0% { box-shadow: 0 0 0 0 rgba(27, 108, 242, 0.5), 0 0 0 3px rgba(27, 108, 242, .12) }
    70% { box-shadow: 0 0 0 9px rgba(27, 108, 242, 0), 0 0 0 3px rgba(27, 108, 242, .12) }
    100% { box-shadow: 0 0 0 0 rgba(27, 108, 242, 0), 0 0 0 3px rgba(27, 108, 242, .12) }
}

.process-step.visible .process-dot {
    animation: dotPulse 2s ease-out infinite
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
#testimonials {
    padding: 24px 0;
    margin-top: 0
}

.testi-wrap {
    margin: 0 16px;
    border-radius: var(--hgx-r-xl);
    overflow: hidden;
    border: 1px solid var(--hgx-border);
    position: relative
}

.testi-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(27, 108, 242, .4), rgba(100, 60, 220, .2), transparent);
    pointer-events: none;
    z-index: 2;
    animation: shimmerPulse 2.5s ease-in-out infinite
}

.testi-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 80px;
    background: radial-gradient(ellipse at top, rgba(27, 108, 242, .08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1
}

.testi-inner {
    padding: 96px 48px;
    position: relative;
    z-index: 2;
    max-width: var(--hgx-max-w);
    margin: 0 auto
}

.testi-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.tc {
    padding: 32px 28px;
    border-radius: var(--hgx-r-lg);
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    flex-direction: column;
    transition: all .4s cubic-bezier(.23, 1, .32, 1)
}

.tc:hover {
    transform: translateY(-6px) scale(1.008);
    border-color: rgba(27, 108, 242, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4)
}

.tc-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 24px;
    flex: 1
}

.tc-text em {
    font-style: italic;
    color: var(--hgx-text);
    font-weight: 600
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.tc-av {
    width: 36px;
    height: 36px;
    background: var(--hgx-blue-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--hgx-text);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.tc-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--hgx-text)
}

.tc-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px
}

/* ═══════════════════════════════════════════
   WHO THIS IS FOR
═══════════════════════════════════════════ */
#fit {
    padding: 96px 48px;
    margin-top: 24px
}

.fit-inner {
    max-width: var(--hgx-max-w);
    margin: 0 auto
}

.fit-header {
    text-align: center;
    margin-bottom: 64px
}

.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

.fit-col h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -.01em
}

.fit-col.fit-yes h3 {
    color: #4EB3FF
}

.fit-col.fit-no h3 {
    color: rgba(255, 255, 255, .45)
}

.fit-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.fit-col li {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .7);
    padding-left: 24px;
    position: relative
}

.fit-col.fit-yes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4EB3FF;
    font-weight: 700;
    font-size: 13px
}

.fit-col.fit-no li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, .3);
    font-weight: 700;
    font-size: 13px
}

/* ═══════════════════════════════════════════
   GUARANTEE
═══════════════════════════════════════════ */
#guarantee {
    padding: 80px 48px;
    text-align: center;
    background: rgba(27, 108, 242, .04);
    border-radius: var(--hgx-r-xl);
    margin: 0 16px;
    border: 1px solid rgba(27, 108, 242, .12)
}

.guarantee-inner {
    max-width: 600px;
    margin: 0 auto
}

.guarantee-inner .s-title {
    margin-bottom: 20px
}

.guarantee-inner p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .65)
}

.guarantee-inner p strong {
    color: rgba(255, 255, 255, .9);
    font-weight: 600
}

/* ═══════════════════════════════════════════
   SCARCITY
═══════════════════════════════════════════ */
#scarcity {
    padding: 80px 48px;
    text-align: center;
    margin-top: 24px
}

.scarcity-inner {
    max-width: 600px;
    margin: 0 auto
}

.scarcity-inner .s-title {
    margin-bottom: 20px
}

.scarcity-inner p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 32px
}

.slot-indicators {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px
}

.slot {
    width: 48px;
    height: 48px;
    border-radius: var(--hgx-r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em
}

.slot.filled {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .25);
    border: 1px solid rgba(255, 255, 255, .06)
}

.slot.open {
    background: rgba(27, 108, 242, .12);
    color: var(--hgx-blue);
    border: 1px solid rgba(27, 108, 242, .3);
    animation: slotPulse 2s ease-in-out infinite
}

@keyframes slotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(27, 108, 242, 0.3) }
    50% { box-shadow: 0 0 0 8px rgba(27, 108, 242, 0) }
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
#faq {
    padding: 96px 48px;
    background: var(--hgx-bg-off);
    border-radius: var(--hgx-r-xl);
    margin: 24px 16px 0
}

.faq-inner {
    max-width: var(--hgx-max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
    justify-content: space-between
}

.faq-header {
    flex: 0 0 320px
}

.faq-list {
    flex: 1;
    width: 100%
}

.faq-item {
    border-bottom: 1px solid var(--hgx-border);
    overflow: hidden;
    position: relative;
    transition: background 0.35s ease
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--hgx-blue);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s cubic-bezier(.23, 1, .32, 1);
    border-radius: 0 2px 2px 0
}

.faq-item.open::before {
    transform: scaleY(1)
}

.faq-item.open {
    background: rgba(27, 108, 242, 0.04)
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 24px 0 24px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--hgx-font);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    color: var(--hgx-text);
    letter-spacing: -.01em;
    transition: color .25s
}

.faq-btn:hover {
    color: var(--hgx-blue)
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, .4);
    flex-shrink: 0;
    line-height: 1;
    transition: transform .35s cubic-bezier(.23, 1, .32, 1), color .25s
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.23, 1, .32, 1), padding .4s cubic-bezier(.23, 1, .32, 1);
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .6)
}

.faq-body-inner {
    padding: 8px 0 24px 16px
}

.faq-item.open .faq-body {
    max-height: 300px
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--hgx-blue)
}

.faq-item.open .faq-btn {
    color: var(--hgx-blue)
}

/* ═══════════════════════════════════════════
   FINAL CTA / APPLY FORM
═══════════════════════════════════════════ */
#apply {
    padding: 96px 48px;
    background: #f5f6f8;
    border-radius: var(--hgx-r-xl);
    margin: 24px 16px 0
}

.apply-inner {
    max-width: var(--hgx-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.apply-left .s-label { color: var(--hgx-blue) }
.apply-left .s-title { max-width: 400px; margin-bottom: 20px; color: #0a0f1c }
.apply-left .s-title em { color: #1a2340 }
.apply-left .s-note { max-width: 36ch; color: #4a5070 }

.apply-trust {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px
}

.apply-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #4a5070
}

.apply-trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hgx-blue);
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--hgx-blue)
}

.apply-form {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--hgx-r-xl);
    padding: 40px 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06)
}

.form-label-top {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--hgx-blue);
    margin-bottom: 28px;
    display: block
}

.f-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.f-field { margin-bottom: 14px }

.f-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 7px;
    color: #3a4260;
    letter-spacing: .04em;
    text-transform: uppercase
}

.f-field input,
.f-field textarea,
.f-field select {
    width: 100%;
    background: #f5f6f8;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: var(--hgx-font);
    font-size: 13px;
    color: #0a0f1c;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none
}

.f-field select option {
    background: #fff;
    color: #0a0f1c
}

.f-field input::placeholder,
.f-field textarea::placeholder {
    color: #8a90a8
}

.f-field input:focus,
.f-field textarea:focus,
.f-field select:focus {
    border-color: var(--hgx-blue);
    box-shadow: 0 0 0 3px rgba(27, 108, 242, .1);
    background: #fff
}

.f-field textarea { resize: none }

.f-submit {
    width: 100%;
    background: var(--hgx-blue);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 14px;
    font-family: var(--hgx-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    letter-spacing: .01em;
    box-shadow: 0 4px 20px rgba(27, 108, 242, .3);
    transition: all .3s cubic-bezier(.23, 1, .32, 1);
    position: relative;
    overflow: hidden
}

.f-submit:hover {
    box-shadow: 0 8px 36px rgba(27, 108, 242, .45);
    transform: translateY(-2px)
}

.f-note {
    font-size: 11px;
    color: #6a7090;
    text-align: center;
    margin-top: 14px;
    line-height: 1.6
}

/* ── STICKY MOBILE ── */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(7, 11, 21, .94);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--hgx-border2);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    transform: translateY(100%);
    transition: transform .3s;
    will-change: transform
}

.sticky-bar.show { transform: translateY(0) }

.sticky-info p:first-child {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.02em
}

.sticky-info p:last-child {
    font-size: 11px;
    color: var(--hgx-text-muted)
}

.sticky-btn {
    background: var(--hgx-blue);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 10px 22px;
    font-family: var(--hgx-font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap
}

/* ── SCROLL PROGRESS BAR ── */
#scrollBar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    height: 2px;
    width: 0%;
    background: var(--hgx-blue);
    transition: width 0.08s linear;
    pointer-events: none
}

/* ═══════════════════════════════════════════
   MOBILE
═══════════════════════════════════════════ */
@media(max-width:900px) {
    #hero { padding: 80px 24px 80px; margin: 0 8px }
    .hero-h1 { font-size: clamp(32px, 9vw, 48px) }

    #stats-bar { padding: 0 24px }
    .stats-bar-grid { grid-template-columns: 1fr 1fr; gap: 12px }

    #problem { padding: 64px 24px; margin: 24px 8px 0 }
    .pain-grid { grid-template-columns: 1fr }

    .pattern-interrupt { padding: 48px 24px }

    #cost { padding: 64px 24px; margin: 24px 8px 0 }
    .cost-table { overflow-x: auto }

    #guide { padding: 64px 24px }
    .guide-inner { grid-template-columns: 1fr; gap: 40px }

    #compare { padding: 64px 24px; margin: 24px 8px 0 }

    .mid-cta { padding: 56px 24px }

    #offer { padding: 64px 24px; margin: 0 8px }
    .offer-grid, .bonus-grid { grid-template-columns: 1fr }

    #process { padding: 64px 24px; margin-left: 8px; margin-right: 8px }
    .process-steps { grid-template-columns: 1fr; gap: 0 }
    .process-line { display: none }
    .process-dot { display: none }
    .process-step { padding-top: 0; padding-bottom: 28px; border-bottom: 1px solid var(--hgx-border) }
    .process-step:last-child { border-bottom: none; padding-bottom: 0 }
    #process .s-header { flex-direction: column; gap: 20px; margin-bottom: 40px }
    .process-track { margin-top: 0 }

    #testimonials { padding: 16px 0 }
    .testi-inner { padding: 64px 24px }
    .testi-grid { grid-template-columns: 1fr; gap: 16px }

    #fit { padding: 64px 24px }
    .fit-grid { grid-template-columns: 1fr; gap: 32px }

    #guarantee { padding: 56px 24px; margin: 24px 8px 0 }
    #scarcity { padding: 56px 24px }

    #faq { padding: 64px 24px; margin: 24px 8px 0 }
    .faq-inner { flex-direction: column; gap: 40px }
    .faq-header { flex: none }

    #apply { padding: 64px 24px; margin: 24px 8px 0 }
    .apply-inner { grid-template-columns: 1fr; gap: 48px }
    .f-row2 { grid-template-columns: 1fr }

    .sticky-bar { display: flex }
}

@media(min-width:901px) {
    .sticky-bar { display: none }
}

/* Accessibility: Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0.01ms !important;
        transition-duration: 0.01ms !important
    }
}

/* ── ELEMENTOR: Root container ── */
#hgx-woo {
    font-family: var(--hgx-font);
    background: var(--hgx-bg);
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    color: var(--hgx-text);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    position: relative
}

/* ── ELEMENTOR: WordPress bleed resets ── */
#hgx-woo button {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    padding: 0;
    margin: 0;
    color: inherit
}

#hgx-woo ul, #hgx-woo ul li {
    list-style: none !important;
    list-style-type: none !important
}

#hgx-woo a, #hgx-woo a:visited, #hgx-woo a:hover {
    text-decoration: none !important
}

#hgx-woo .f-submit {
    background: var(--hgx-blue) !important;
    box-shadow: 0 4px 20px rgba(27, 108, 242, .3) !important;
    border: none !important;
    padding: 14px !important;
    letter-spacing: .01em !important
}

#hgx-woo .sticky-btn {
    background: var(--hgx-blue) !important;
    border: none !important;
    padding: 10px 22px !important
}

#hgx-woo .faq-btn {
    padding: 24px 0 24px 16px !important;
    letter-spacing: -.01em !important;
    text-align: left !important;
    font-family: var(--hgx-font) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--hgx-text) !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 16px !important;
    cursor: pointer !important
}
