/*
Theme Name: LFG Sports AI
Theme URI: https://lfgsports.ai/
Author: LFG Sports AI
Author URI: https://lfgsports.ai/
Description: Sports analytics and betting insights theme
Version: 1.0.0
License: GPL v2 or later
Text Domain: lfg-sports-ai
*/

/* Your CSS can stay inline or in separate file */
/* ================================================================
   LFG SPORTS AI â€” LANDING PAGE STYLES
   File: lfg-landing.css
   Place in: /assets/css/lfg-landing.css
   Enqueued via functions.php (see lfg-enqueue.php)
   All selectors namespaced with .lfg- to avoid theme conflicts
   ================================================================ */

/* ----------------------------------------------------------------
   CSS CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
    --lfg-green:        #84C225;
    --lfg-green-dim:    rgba(132, 194, 37, 0.12);
    --lfg-green-glow:   rgba(132, 194, 37, 0.16);
    --lfg-green-border: rgba(132, 194, 37, 0.25);
    --lfg-bg:           #0A0B0C;
    --lfg-bg-alt:       #0d0e0f;
    --lfg-surface:      #141516;
    --lfg-surface-2:    #1a1b1c;
    --lfg-surface-3:    #1e2020;
    --lfg-border:       rgba(255, 255, 255, 0.08);
    --lfg-border-soft:  rgba(255, 255, 255, 0.05);
    --lfg-text:         #FFFFFF;
    --lfg-text-muted:   rgba(255, 255, 255, 0.45);
    --lfg-text-dim:     rgba(255, 255, 255, 0.25);
    --lfg-red:          #e05555;

    --lfg-font:         'Gotham', 'Gotham Medium', 'Montserrat', 'Futura',
                        'Century Gothic', 'Trebuchet MS', sans-serif;

    --lfg-radius:       10px;
    --lfg-radius-lg:    16px;
    --lfg-radius-xl:    24px;

    --lfg-max:          1080px;
    --lfg-pad:          40px;
    --lfg-section-pad:  80px 40px;
}

/* ----------------------------------------------------------------
   GLOBAL RESETS (scoped to LFG sections)
   ---------------------------------------------------------------- */
.lfg-statsbar,
.lfg-freebanner,
.lfg-hero,
.lfg-hook,
.lfg-steps,
.lfg-feature,
.lfg-books,
.lfg-proof,
.lfg-pricing,
.lfg-final,
.lfg-footer-legal {
    box-sizing: border-box;
    background-color: var(--lfg-bg);
    font-family: var(--lfg-font);
    color: var(--lfg-text);
}

.lfg-statsbar *,
.lfg-freebanner *,
.lfg-hero *,
.lfg-hook *,
.lfg-steps *,
.lfg-feature *,
.lfg-books *,
.lfg-proof *,
.lfg-pricing *,
.lfg-final *,
.lfg-footer-legal * {
    box-sizing: border-box;
}

/* Shared background alternation */
.lfg-feature--alt,
.lfg-books,
.lfg-proof {
    background-color: var(--lfg-bg-alt);
}

.lfg-hook,
.lfg-final {
    background-color: #111213;
}

/* ----------------------------------------------------------------
   SHARED UTILITIES
   ---------------------------------------------------------------- */
.lfg-green { color: var(--lfg-green); }

.lfg-section-label {
    display: block;
    color: var(--lfg-green);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
}

.lfg-section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-align: center;
    margin: 0 0 12px;
}

.lfg-section-sub {
    color: var(--lfg-text-muted);
    font-size: 14px;
    line-height: 1.65;
    text-align: center;
    max-width: 540px;
    margin: 0 auto 48px;
}

.lfg-badge {
    display: inline-block;
    background: var(--lfg-green-dim);
    border: 1px solid var(--lfg-green-border);
    color: var(--lfg-green);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

.lfg-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lfg-green-dim);
    border: 1px solid var(--lfg-green-border);
    color: var(--lfg-green);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.lfg-free-badge__check {
    font-size: 14px;
}

/* ----------------------------------------------------------------
   CTA BUTTONS â€” shared across sections
   ---------------------------------------------------------------- */
.lfg-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    border-radius: var(--lfg-radius);
    text-decoration: none;
    font-family: var(--lfg-font);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    cursor: pointer;
    border: none;
}

.lfg-cta--primary {
    background: var(--lfg-green);
    color: #0A0B0C;
    box-shadow: 0 4px 20px rgba(132, 194, 37, 0.3);
}

.lfg-cta--primary:hover,
.lfg-cta--primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(132, 194, 37, 0.45);
    color: #0A0B0C;
    text-decoration: none;
}

.lfg-cta--secondary {
    background: transparent;
    color: var(--lfg-text);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.lfg-cta--secondary:hover,
.lfg-cta--secondary:focus {
    border-color: var(--lfg-green);
    color: var(--lfg-green);
    transform: translateY(-2px);
    text-decoration: none;
}

.lfg-cta--large {
    padding: 16px 28px;
}

.lfg-cta__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.lfg-cta--large .lfg-cta__icon {
    width: 26px;
    height: 26px;
}

.lfg-cta__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.lfg-cta__sub {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.75;
    line-height: 1;
}

.lfg-cta__main {
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.01em;
}

.lfg-cta--large .lfg-cta__main {
    font-size: 18px;
}

/* ----------------------------------------------------------------
   STATS BAR
   ---------------------------------------------------------------- */
.lfg-statsbar {
    border-bottom: 1px solid var(--lfg-border);
    padding: 14px 0;
}

.lfg-statsbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: var(--lfg-max);
    margin: 0 auto;
    padding: 0 var(--lfg-pad);
}

.lfg-statsbar__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 0 40px;
}

.lfg-statsbar__divider {
    width: 1px;
    height: 36px;
    background: var(--lfg-border);
    flex-shrink: 0;
}

.lfg-statsbar__num {
    font-family: var(--lfg-font);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: var(--lfg-green);
    line-height: 1;
    letter-spacing: -0.02em;
}

.lfg-statsbar__star {
    font-size: 0.75em;
    vertical-align: middle;
}

.lfg-statsbar__lbl {
    font-family: var(--lfg-font);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lfg-text-muted);
}

/* ----------------------------------------------------------------
   FREE BANNER
   ---------------------------------------------------------------- */
.lfg-freebanner {
    background: rgba(132, 194, 37, 0.06);
    border-top: 1px solid rgba(132, 194, 37, 0.15);
    border-bottom: 1px solid rgba(132, 194, 37, 0.15);
    padding: 14px var(--lfg-pad);
}

.lfg-freebanner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    max-width: var(--lfg-max);
    margin: 0 auto;
}

.lfg-freebanner__pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--lfg-font);
    font-size: 13px;
    color: var(--lfg-text-muted);
}

.lfg-freebanner__pill strong {
    color: var(--lfg-green);
    font-weight: 700;
}

.lfg-freebanner__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lfg-green);
    flex-shrink: 0;
}

.lfg-freebanner__sep {
    color: var(--lfg-border);
    font-size: 18px;
    line-height: 1;
}

/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */
.lfg-hero {
    position: relative;
    overflow: hidden;
    padding: 64px var(--lfg-pad) 80px;
}

.lfg-hero__stripe {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 80px,
        rgba(132, 194, 37, 0.025) 80px,
        rgba(132, 194, 37, 0.025) 82px
    );
    pointer-events: none;
    z-index: 0;
}

.lfg-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 64px;
    align-items: center;
    max-width: var(--lfg-max);
    margin: 0 auto;
}

/* Visual */
.lfg-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
}

.lfg-hero__glow {
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, var(--lfg-green-glow) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: lfg-pulse 5s ease-in-out infinite;
}

@keyframes lfg-pulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: 0.65; transform: translate(-50%, -50%) scale(1.08); }
}

.lfg-hero__img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: var(--lfg-radius-xl);
    border: 1px solid var(--lfg-green-border);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.65),
        0 8px 32px rgba(0, 0, 0, 0.4);
    animation: lfg-float 6s ease-in-out infinite;
}

@keyframes lfg-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

/* Copy */
.lfg-hero__copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lfg-hero__hl {
    font-family: var(--lfg-font);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.025em;
    margin: 0;
}

.lfg-hero__hl-white {
    display: block;
    font-size: clamp(40px, 5vw, 68px);
    color: var(--lfg-text);
    text-transform: uppercase;
}

.lfg-hero__hl-green {
    display: block;
    font-size: clamp(40px, 5vw, 68px);
    color: var(--lfg-green);
    text-transform: uppercase;
}

.lfg-hero__sub {
    font-family: var(--lfg-font);
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--lfg-text-muted);
    line-height: 1.65;
    margin: 0;
}

.lfg-hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lfg-hero__proof {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--lfg-font);
    font-size: 13px;
    color: var(--lfg-text-muted);
    margin: 0;
}

.lfg-hero__proof strong {
    color: var(--lfg-text);
    font-weight: 700;
}

.lfg-hero__avatars {
    display: flex;
}

.lfg-hero__av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--lfg-bg);
    background: var(--lfg-surface-2);
    color: var(--lfg-green);
    font-family: var(--lfg-font);
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
}

.lfg-hero__av:first-child {
    margin-left: 0;
}

.lfg-hero__features {
    list-style: none;
    margin: 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--lfg-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lfg-hero__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--lfg-font);
    font-size: 13px;
    color: var(--lfg-text-muted);
    line-height: 1.4;
}

.lfg-hero__feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lfg-green);
    flex-shrink: 0;
}

/* ----------------------------------------------------------------
   $2,340 HOOK
   ---------------------------------------------------------------- */
.lfg-hook {
    border-top: 1px solid rgba(132, 194, 37, 0.1);
    border-bottom: 1px solid rgba(132, 194, 37, 0.1);
    padding: var(--lfg-section-pad);
}

.lfg-hook__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 64px;
    align-items: center;
    max-width: var(--lfg-max);
    margin: 0 auto;
}

.lfg-hook__copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lfg-hook__copy .lfg-section-label {
    text-align: left;
}

.lfg-hook__amt {
    font-family: var(--lfg-font);
    font-size: clamp(64px, 8vw, 96px);
    font-weight: 800;
    color: var(--lfg-red);
    line-height: 1;
    letter-spacing: -0.03em;
}

.lfg-hook__claim {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    color: var(--lfg-text);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
    text-transform: uppercase;
}

.lfg-hook__detail {
    font-size: 14px;
    color: var(--lfg-text-muted);
    line-height: 1.65;
    margin: 0;
}

.lfg-hook__detail strong {
    color: var(--lfg-green);
}

.lfg-hook__card {
    background: var(--lfg-surface-2);
    border: 1px solid var(--lfg-border);
    border-radius: var(--lfg-radius);
    padding: 20px 24px;
}

.lfg-hook__card-label {
    color: var(--lfg-text-muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.lfg-hook__odds-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--lfg-border-soft);
}

.lfg-hook__odds-row:last-of-type {
    border-bottom: none;
}

.lfg-hook__book {
    color: var(--lfg-text-muted);
    font-size: 14px;
}

.lfg-hook__odds {
    font-size: 17px;
    font-weight: 800;
}

.lfg-hook__odds--bad { color: var(--lfg-red); }
.lfg-hook__odds--good { color: var(--lfg-green); }

.lfg-hook__save {
    background: var(--lfg-green-dim);
    border: 1px solid var(--lfg-green-border);
    border-radius: 6px;
    padding: 9px 14px;
    margin-top: 14px;
    color: var(--lfg-green);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.lfg-hook__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lfg-hook__visual img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: var(--lfg-radius-xl);
    border: 1px solid var(--lfg-green-border);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

/* ----------------------------------------------------------------
   HOW IT WORKS â€” STEPS
   ---------------------------------------------------------------- */
.lfg-steps {
    padding: var(--lfg-section-pad);
}

.lfg-steps__inner {
    max-width: var(--lfg-max);
    margin: 0 auto;
}

.lfg-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 0;
}

.lfg-steps__step {
    background: var(--lfg-surface);
    border: 1px solid var(--lfg-border);
    padding: 32px 28px;
    position: relative;
}

.lfg-steps__step:first-child {
    border-radius: var(--lfg-radius) 0 0 var(--lfg-radius);
}

.lfg-steps__step:last-child {
    border-radius: 0 var(--lfg-radius) var(--lfg-radius) 0;
}

.lfg-steps__step + .lfg-steps__step {
    border-left: none;
}

.lfg-steps__num {
    font-family: var(--lfg-font);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lfg-green);
    margin-bottom: 16px;
}

.lfg-steps__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--lfg-radius);
    background: var(--lfg-green-dim);
    border: 1px solid var(--lfg-green-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.lfg-steps__icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(62%) sepia(73%) saturate(413%) hue-rotate(55deg) brightness(93%) contrast(87%);
}

.lfg-steps__title {
    font-family: var(--lfg-font);
    font-size: 17px;
    font-weight: 800;
    color: var(--lfg-text);
    letter-spacing: -0.01em;
    margin: 0 0 10px;
}

.lfg-steps__desc {
    font-family: var(--lfg-font);
    font-size: 13px;
    color: var(--lfg-text-muted);
    line-height: 1.65;
}

.lfg-steps__desc strong {
    color: var(--lfg-green);
    font-weight: 700;
}

.lfg-steps__arrow {
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--lfg-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    clip-path: polygon(20% 0%, 100% 50%, 20% 100%, 20% 60%, 60% 50%, 20% 40%);
}

/* ----------------------------------------------------------------
   FEATURE SECTIONS (alternating layout)
   ---------------------------------------------------------------- */
.lfg-feature {
    padding: var(--lfg-section-pad);
}

.lfg-feature__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 64px;
    align-items: center;
    max-width: var(--lfg-max);
    margin: 0 auto;
}

.lfg-feature__inner--img-left .lfg-feature__visual { order: -1; }
.lfg-feature__inner--img-right .lfg-feature__visual { order: 1; }

.lfg-feature__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.lfg-feature__glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--lfg-green-glow) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.lfg-feature__visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: var(--lfg-radius-xl);
    border: 1px solid var(--lfg-green-border);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.lfg-feature__copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lfg-feature__copy .lfg-section-label {
    text-align: left;
}

.lfg-feature__title {
    font-family: var(--lfg-font);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
}

.lfg-feature__sub {
    font-size: 14px;
    color: var(--lfg-text-muted);
    line-height: 1.65;
    margin: 0;
}

.lfg-feature__list {
    list-style: none;
    margin: 0;
    padding: 18px 0 0;
    border-top: 1px solid var(--lfg-border);
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.lfg-feature__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--lfg-font);
    font-size: 13px;
    color: var(--lfg-text-muted);
    line-height: 1.5;
}

.lfg-feature__dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--lfg-green-dim);
    border: 1px solid var(--lfg-green-border);
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lfg-feature__dot::after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lfg-green);
}

/* Tier comparison blocks */
.lfg-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}

.lfg-tier {
    border-radius: var(--lfg-radius);
    padding: 14px 16px;
}

.lfg-tier--free {
    background: var(--lfg-surface);
    border: 1px solid var(--lfg-border);
}

.lfg-tier--pro {
    background: #141a0b;
    border: 1px solid var(--lfg-green-border);
}

.lfg-tier__label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lfg-text-muted);
    margin-bottom: 6px;
}

.lfg-tier--pro .lfg-tier__label {
    color: var(--lfg-green);
}

.lfg-tier__desc {
    font-size: 12px;
    color: var(--lfg-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ----------------------------------------------------------------
   SPORTSBOOKS
   ---------------------------------------------------------------- */
.lfg-books {
    padding: var(--lfg-section-pad);
    border-top: 1px solid var(--lfg-border);
    border-bottom: 1px solid var(--lfg-border);
}

.lfg-books__inner {
    max-width: var(--lfg-max);
    margin: 0 auto;
}

.lfg-books__grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 40px;
}

.lfg-books__book {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: default;
    transition: transform 0.18s ease;
}

.lfg-books__book:hover {
    transform: translateY(-3px);
}

.lfg-books__book img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--lfg-border);
}

.lfg-books__name {
    font-family: var(--lfg-font);
    font-size: 10px;
    font-weight: 600;
    color: var(--lfg-text-muted);
    text-align: center;
    max-width: 64px;
}

/* ----------------------------------------------------------------
   SOCIAL PROOF / REVIEWS
   ---------------------------------------------------------------- */
.lfg-proof {
    padding: var(--lfg-section-pad);
}

.lfg-proof__inner {
    max-width: var(--lfg-max);
    margin: 0 auto;
}

.lfg-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.lfg-review {
    background: var(--lfg-surface-2);
    border: 1px solid var(--lfg-border);
    border-radius: var(--lfg-radius-lg);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lfg-review__top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lfg-review__av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--lfg-text);
    flex-shrink: 0;
}

.lfg-review__name {
    font-family: var(--lfg-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--lfg-text);
    line-height: 1.2;
}

.lfg-review__role {
    font-size: 11px;
    color: var(--lfg-text-muted);
}

.lfg-review__stars {
    color: var(--lfg-green);
    font-size: 13px;
    letter-spacing: 2px;
}

.lfg-review__quote {
    font-family: var(--lfg-font);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-style: normal;
    margin: 0;
    padding: 0;
    border: none;
}

.lfg-proof__stat {
    text-align: center;
}

.lfg-proof__num {
    font-family: var(--lfg-font);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    color: var(--lfg-green);
    letter-spacing: -0.03em;
    line-height: 1;
}

.lfg-proof__lbl {
    color: var(--lfg-text-muted);
    font-size: 13px;
    margin-top: 6px;
}

/* ----------------------------------------------------------------
   PRICING
   ---------------------------------------------------------------- */
.lfg-pricing {
    padding: var(--lfg-section-pad);
}

.lfg-pricing__inner {
    max-width: var(--lfg-max);
    margin: 0 auto;
}

.lfg-pricing__plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 720px;
    margin: 0 auto 20px;
}

.lfg-plan {
    background: var(--lfg-surface);
    border: 1px solid var(--lfg-border);
    border-radius: var(--lfg-radius-lg);
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lfg-plan--pro {
    background: #141a0b;
    border-color: var(--lfg-green);
}

.lfg-plan__badge {
    display: inline-block;
    background: var(--lfg-green);
    color: #0A0B0C;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.lfg-plan__name {
    font-family: var(--lfg-font);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--lfg-text);
    margin-bottom: 8px;
}

.lfg-plan__price {
    font-family: var(--lfg-font);
    font-size: 40px;
    font-weight: 800;
    color: var(--lfg-green);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.lfg-plan__per {
    font-size: 14px;
    font-weight: 500;
    color: var(--lfg-text-muted);
}

.lfg-plan__note {
    font-size: 11px;
    color: var(--lfg-text-muted);
    margin: 0 0 20px;
    line-height: 1.5;
}

.lfg-plan__note strong {
    color: var(--lfg-green);
}

.lfg-plan__features {
    list-style: none;
    margin: 0;
    padding: 16px 0 0;
    border-top: 1px solid var(--lfg-border);
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.lfg-plan__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--lfg-font);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.lfg-plan__feature--pro {
    color: var(--lfg-text);
    font-weight: 700;
}

.lfg-plan__feature--locked {
    opacity: 0.45;
}

.lfg-plan__check {
    color: var(--lfg-green);
    font-weight: 800;
    font-size: 13px;
    width: 14px;
    flex-shrink: 0;
}

.lfg-plan__dash {
    color: var(--lfg-text-muted);
    font-size: 13px;
    width: 14px;
    flex-shrink: 0;
}

.lfg-pricing__footnote {
    text-align: center;
    color: var(--lfg-text-muted);
    font-size: 13px;
    margin: 0;
}

.lfg-pricing__footnote strong {
    color: var(--lfg-green);
}

/* ----------------------------------------------------------------
   FINAL CTA
   ---------------------------------------------------------------- */
.lfg-final {
    border-top: 1px solid var(--lfg-green-border);
    padding: 88px var(--lfg-pad) 80px;
    text-align: center;
}

.lfg-final__inner {
    max-width: var(--lfg-max);
    margin: 0 auto;
}

.lfg-final__hl {
    margin: 16px 0;
    font-family: var(--lfg-font);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.lfg-final__hl-white {
    display: block;
    font-size: clamp(36px, 5vw, 60px);
    color: var(--lfg-text);
    text-transform: uppercase;
}

.lfg-final__hl-green {
    display: block;
    font-size: clamp(36px, 5vw, 60px);
    color: var(--lfg-green);
    text-transform: uppercase;
}

.lfg-final__sub {
    color: var(--lfg-text-muted);
    font-size: 16px;
    margin: 0 0 8px;
}

.lfg-final__free {
    color: var(--lfg-green);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 36px;
}

.lfg-final__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.lfg-final__note {
    color: var(--lfg-text-dim);
    font-size: 12px;
    margin-bottom: 40px;
}

/* Partner logos */
.lfg-partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid var(--lfg-border);
    flex-wrap: wrap;
}

.lfg-partners__label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
}

.lfg-partners__logo {
    height: 28px;
    width: auto;
    opacity: 1;
    filter: brightness(1.8);
    transition: opacity 0.2s;
}

.lfg-partners__logo:hover {
    opacity: 0.8;
}

/* ----------------------------------------------------------------
   FOOTER LEGAL
   ---------------------------------------------------------------- */
.lfg-footer-legal {
    background: var(--lfg-bg);
    border-top: 1px solid var(--lfg-border);
    padding: 24px var(--lfg-pad);
}

.lfg-footer-legal__inner {
    max-width: var(--lfg-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lfg-footer-legal__text {
    color: rgba(255,255,255,0.65);
    font-size: 10px;
    line-height: 1.7;
    margin: 0;
}

.lfg-footer-legal__text a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: underline;
}

.lfg-footer-legal__powered {
    color: rgba(255,255,255,0.55);
    font-size: 10px;
    margin: 0;
}

.lfg-footer-legal__powered a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
}

.lfg-footer-legal__powered a:hover {
    color: var(--lfg-green);
}

.lfg-footer-legal__copy {
    color: rgba(255,255,255,0.55);
    font-size: 10px;
    margin: 0;
}

/* ================================================================
   RESPONSIVE â€” TABLET (â‰¤ 960px)
   ================================================================ */
@media (max-width: 960px) {

    :root {
        --lfg-pad: 32px;
        --lfg-section-pad: 64px 32px;
    }

    /* Hero â€” copy first, phone second on tablet */
    .lfg-hero__grid {
        grid-template-columns: 1fr;
        gap: 48px 0;
    }

    .lfg-hero__visual {
        order: 2;
        min-height: 320px;
    }

    .lfg-hero__copy {
        order: 1;
        align-items: center;
        text-align: center;
    }

    .lfg-hero__hl {
        text-align: center;
    }

    .lfg-hero__ctas {
        justify-content: center;
    }

    .lfg-hero__proof {
        justify-content: center;
    }

    .lfg-hero__features {
        align-items: flex-start;
        max-width: 380px;
    }

    .lfg-hero__img {
        max-width: 280px;
    }

    /* Hook */
    .lfg-hook__inner {
        grid-template-columns: 1fr;
        gap: 40px 0;
        text-align: center;
    }

    .lfg-hook__copy {
        align-items: center;
    }

    .lfg-hook__copy .lfg-section-label {
        text-align: center;
    }

    .lfg-hook__visual {
        order: -1;
    }

    /* Steps â€” stack on tablet */
    .lfg-steps__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .lfg-steps__step:first-child {
        border-radius: var(--lfg-radius) var(--lfg-radius) 0 0;
    }

    .lfg-steps__step:last-child {
        border-radius: 0 0 var(--lfg-radius) var(--lfg-radius);
    }

    .lfg-steps__step + .lfg-steps__step {
        border-left: 1px solid var(--lfg-border);
        border-top: none;
    }

    .lfg-steps__arrow {
        display: none;
    }

    /* Features â€” stack */
    .lfg-feature__inner {
        grid-template-columns: 1fr;
        gap: 40px 0;
    }

    .lfg-feature__inner--img-left .lfg-feature__visual,
    .lfg-feature__inner--img-right .lfg-feature__visual {
        order: -1;
    }

    .lfg-feature__copy .lfg-section-label {
        text-align: center;
    }

    .lfg-feature__copy {
        align-items: center;
        text-align: center;
    }

    .lfg-feature__title {
        text-align: center;
    }

    .lfg-feature__list {
        align-items: flex-start;
        max-width: 420px;
    }

    .lfg-feature__visual {
        min-height: 300px;
    }

    /* Tiers */
    .lfg-tiers {
        max-width: 420px;
    }

    /* Reviews â€” 2 col on tablet */
    .lfg-reviews {
        grid-template-columns: 1fr 1fr;
    }

    .lfg-review:last-child {
        grid-column: 1 / -1;
    }

    /* Pricing */
    .lfg-pricing__plans {
        max-width: 560px;
    }
}

/* ================================================================
   RESPONSIVE â€” MOBILE (â‰¤ 640px)
   ================================================================ */
@media (max-width: 640px) {

    :root {
        --lfg-pad: 20px;
        --lfg-section-pad: 52px 20px;
    }

    /* Stats bar */
    .lfg-statsbar__stat {
        padding: 0 18px;
    }

    .lfg-statsbar__num {
        font-size: 18px;
    }

    .lfg-statsbar__lbl {
        font-size: 8px;
    }

    /* Free banner â€” 2 cols */
    .lfg-freebanner__inner {
        gap: 6px 12px;
    }

    .lfg-freebanner__sep--hide,
    .lfg-freebanner__pill--hide {
        display: none;
    }

    .lfg-freebanner__pill {
        font-size: 12px;
    }

    /* Hero */
    .lfg-hero {
        padding: 40px 20px 56px;
    }

    .lfg-hero__hl-white,
    .lfg-hero__hl-green {
        font-size: clamp(34px, 9vw, 48px);
    }

    /* CTAs â€” full width stacked on mobile */
    .lfg-hero__ctas {
        flex-direction: column;
        width: 100%;
    }

    .lfg-cta {
        justify-content: center;
        width: 100%;
    }

    .lfg-final__ctas {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .lfg-final__ctas .lfg-cta {
        width: 100%;
        max-width: 360px;
    }

    /* Hero img */
    .lfg-hero__img {
        max-width: 240px;
    }

    .lfg-hero__visual {
        min-height: 260px;
    }

    /* Feature images */
    .lfg-feature__visual img {
        max-width: 240px;
    }

    .lfg-feature__visual {
        min-height: 260px;
    }

    /* Tiers â€” stack on mobile */
    .lfg-tiers {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    /* Reviews â€” single column */
    .lfg-reviews {
        grid-template-columns: 1fr;
    }

    .lfg-review:last-child {
        grid-column: auto;
    }

    /* Pricing â€” stack */
    .lfg-pricing__plans {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    /* Final */
    .lfg-final__hl-white,
    .lfg-final__hl-green {
        font-size: clamp(32px, 8vw, 48px);
    }

    /* Section titles */
    .lfg-section-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    /* Sportsbooks grid â€” 4 across */
    .lfg-books__grid {
        gap: 12px 16px;
    }

    .lfg-books__book img {
        width: 48px;
        height: 48px;
    }

    /* Hook */
    .lfg-hook__amt {
        font-size: clamp(52px, 14vw, 72px);
    }

    /* Steps */
    .lfg-steps__step {
        padding: 24px 20px;
    }

    /* Footer */
    .lfg-footer-legal {
        padding: 20px;
    }

    /* Partners */
    .lfg-partners {
        gap: 14px;
    }
}

/* ================================================================
   RESPONSIVE â€” SMALL MOBILE (â‰¤ 390px)
   ================================================================ */
@media (max-width: 390px) {

    .lfg-statsbar__stat {
        padding: 0 12px;
    }

    .lfg-statsbar__divider {
        display: none;
    }

    .lfg-statsbar__inner {
        gap: 0;
    }

    .lfg-hero__hl-white,
    .lfg-hero__hl-green {
        font-size: 32px;
    }

    .lfg-hero__img {
        max-width: 200px;
    }

    .lfg-books__book img {
        width: 42px;
        height: 42px;
    }
}
main.winning.wrap {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.strip-bg {
    display: none !important;
}

.black-bottom,
.three-phones,
.casual-bettors,
.dark-section {
    display: none !important;
}
body {
    background-color: #0A0B0C !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* Blog / Press page resets */
.blog-single-container {
  max-width: 820px;
  margin: 40px auto;
  padding: 0 24px 60px;
  color: #ffffff;
}
.blog-featured-image {
  max-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.blog-single-content {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}
.blog-single-content h2 {
  font-size: 1.375rem;
  font-weight: 800;
  color: #84C225;
  margin: 2rem 0 .75rem;
  text-transform: uppercase;
}
/* =============================================
   INNER PAGES — press, blog, legal
   ============================================= */
.lfg-page-content,
.blog-single-container,
.wp-page-wrapper {
  background-color: #0A0B0C;
  color: #ffffff !important;
}

.lfg-page-content__body,
.blog-single-content,
.wp-page-content {
  color: rgba(255,255,255,0.85) !important;
}

.lfg-page-content__body *,
.blog-single-content *,
.wp-page-content * {
  color: rgba(255,255,255,0.85);
}

.lfg-page-content__body h2,
.blog-single-content h2 {
  color: #84C225 !important;
}

.lfg-page-content__body a,
.blog-single-content a {
  color: #84C225 !important;
}

.blog-featured-image img,
.blog-single .post-thumbnail img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.lfg-page-content { max-width: 800px !important; margin: 80px auto !important; padding: 0 32px 80px !important; }
.wp-page-wrapper {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 32px 80px;
}
.wp-page-container {
  width: 100%;
}
.wp-page-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.post-meta {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
}
.wp-page-content {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
}
.wp-page-content h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #84C225;
  text-transform: uppercase;
  margin: 2rem 0 0.75rem;
}
.wp-page-content p { margin-bottom: 1rem; }
.wp-page-content ul { padding-left: 1.5rem; list-style: disc; }
.wp-page-content a { color: #84C225; }
.back-link {
  display: inline-block;
  margin-top: 3rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  text-decoration: none;
}
.back-link:hover { color: #84C225; }
.lfg-hero__hl-white,
.lfg-hero__hl-green {
  font-size: clamp(36px, 4.5vw, 58px) !important;
}
.lfg-hook__copy {
  text-align: center !important;
  align-items: center !important;
}
.lfg-hook__claim {
  text-align: center !important;
}
.lfg-hook__detail {
  text-align: center !important;
}
.lfg-hook__card-label {
  text-align: center !important;
}
.lfg-hero__features {
  align-items: center !important;
  text-align: center !important;
}
.lfg-hero__sub {
  text-align: center !important;
}
@media (max-width: 960px) {
  .lfg-hook__visual {
    order: 2 !important;
  }
  .lfg-hook__copy {
    order: 1 !important;
  }
}
.lfg-steps__step {
  text-align: center !important;
  align-items: center !important;
}
.lfg-steps__icon {
  margin: 0 auto !important;
}
.lfg-steps__title {
  text-align: center !important;
}
.lfg-steps__desc {
  text-align: center !important;
}
.lfg-steps__step {
  box-shadow: 0 0 20px rgba(132, 194, 37, 0.08) !important;
  border-color: rgba(132, 194, 37, 0.15) !important;
}

.lfg-steps__step:hover {
  box-shadow: 0 0 32px rgba(132, 194, 37, 0.18) !important;
  border-color: rgba(132, 194, 37, 0.3) !important;
}
.lfg-feature__copy {
  text-align: center !important;
  align-items: center !important;
}
.lfg-feature__list {
  text-align: left !important;
}
.lfg-reviews {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
}

@media (max-width: 768px) {
    .lfg-reviews {
        grid-template-columns: 1fr;
    }
}
/* ── PRICING ADDITIONS ── */
.lfg-plan--pro {
    background: #141a0b;
    border-color: var(--lfg-green) !important;
    box-shadow: 0 0 40px rgba(132,194,37,0.15);
}
.lfg-plan__annual-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin: 0.5rem 0 0.75rem;
}
.lfg-plan__save-pill {
    display: inline-block;
    background: rgba(255,60,60,0.2);
    border: 1px solid rgba(255,60,60,0.45);
    color: #ff6b6b;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 20px;
}
.lfg-plan__value-line {
    display: block;
    background: rgba(132,194,37,0.08);
    border: 1px solid rgba(132,194,37,0.25);
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    margin: 0 0 1.25rem;
    line-height: 1.5;
}
.lfg-plan__check::before {
    content: '✓';
    color: #84C225;
    font-weight: 900;
    font-size: 0.85rem;
    margin-right: 0.5rem;
}
.lfg-plan__dash::before {
    content: '—';
    color: rgba(255,255,255,0.2);
    font-size: 0.85rem;
    margin-right: 0.5rem;
}
a.lfg-btn-primary {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    background: #84C225;
    color: #0A0B0C !important;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    transition: opacity 0.2s;
}
a.lfg-btn-primary:hover { opacity: 0.88; }
a.lfg-btn-outline {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    background: transparent;
    color: rgba(255,255,255,0.7) !important;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.2);
    margin-top: 1rem;
    transition: border-color 0.2s, color 0.2s;
}
a.lfg-btn-outline:hover {
    border-color: #84C225;
    color: #84C225 !important;
}
/* ── PRICING EQUAL HEIGHT ── */
.lfg-pricing__plans {
    align-items: stretch !important;
}
.lfg-plan {
    display: flex !important;
    flex-direction: column !important;
}
.lfg-plan__features {
    flex: 1 !important;
}
.lfg-plan a.lfg-btn-primary,
.lfg-plan a.lfg-btn-outline {
    margin-top: auto !important;
}
/* ── PRICING EQUAL HEIGHT ── */
.lfg-pricing__plans {
    align-items: stretch !important;
}
.lfg-plan {
    display: flex !important;
    flex-direction: column !important;
}
.lfg-plan__features {
    flex: 1 !important;
}
.lfg-plan a.lfg-btn-primary,
.lfg-plan a.lfg-btn-outline {
    margin-top: auto !important;
}
/* ── PRICING DUAL BUTTONS ── */
.lfg-plan__cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
    padding-top: 1rem;
}
.lfg-plan__cta-row .lfg-btn-primary,
.lfg-plan__cta-row .lfg-btn-outline {
    margin-top: 0 !important;
    font-size: 0.78rem;
    padding: 0.75rem 0.5rem;
    text-align: center;
}