/* =========================================================
   GLP-1 PAGE — glp1.css (Enhanced Production Build)
   All page-specific classes namespaced glp1-*
   Depends on: ../styles.css
   ========================================================= */

/* ── TICKER ─────────────────────────────────────────────── */
.glp1-ticker {
    background: var(--forest);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}
.glp1-ticker-track {
    display: inline-flex;
    animation: glp1-tick 38s linear infinite;
}
.glp1-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 28px;
    font-size: var(--type-caption);
    font-weight: 500;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
}
.glp1-ticker-item::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--teal);
    opacity: .7;
    flex-shrink: 0;
}
@keyframes glp1-tick {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── HERO — Interactive Tabs (Concept B) ──────────────────── */
.glp1-hero {
    background: var(--forest);
    min-height: 90vh;
    padding-top: 121px;
    position: relative;
    overflow: hidden;
}
body.has-announcement .glp1-hero { padding-top: 121px; }

.glp1-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 48px;
    min-height: 90vh;
}

.glp1-hero-geo { position: absolute; inset: 0; pointer-events: none; }
.glp1-hero-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(49,184,152,.07); }
.glp1-ring-1 { width: 820px; height: 820px; top: -35%; right: -18%; }
.glp1-ring-2 { width: 580px; height: 580px; top: -18%; right: -6%; }
.glp1-ring-3 { width: 280px; height: 280px; top: 8%; right: 12%; }
.glp1-glow { position: absolute; border-radius: 50%; }
.glp1-glow-1 { width: 520px; height: 520px; top: -25%; right: -10%; background: radial-gradient(circle, rgba(49,184,152,.07) 0%, transparent 70%); }
.glp1-glow-2 { width: 300px; height: 300px; bottom: 5%; left: -8%; background: radial-gradient(circle, rgba(49,184,152,.05) 0%, transparent 70%); }
.glp1-hero-watermark {
    position: absolute; bottom: -80px; left: -20px;
    font-family: var(--font-serif); font-size: 380px; font-weight: 600;
    color: rgba(255,255,255,.022); line-height: 1;
    pointer-events: none; user-select: none;
}

.glp1-hero-left {
    position: relative; z-index: 2;
    opacity: 0; animation: glp1-fade-up .7s .1s forwards;
}
.glp1-hero-right {
    position: relative; z-index: 1;
    opacity: 0; animation: glp1-fade-in .8s .28s forwards;
}
@keyframes glp1-fade-up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes glp1-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.glp1-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: var(--type-caption); text-transform: uppercase; letter-spacing: .08em;
    color: rgba(255,255,255,.55); margin-bottom: 28px;
}
.glp1-breadcrumb a { color: inherit; text-decoration: none; transition: color .2s; }
.glp1-breadcrumb a:hover { color: rgba(255,255,255,.5); }
.glp1-breadcrumb-sep { opacity: .3; }

.glp1-hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.glp1-eyebrow-pip { width: 28px; height: 1.5px; background: var(--teal-light); opacity: .7; }
.glp1-eyebrow-label { font-size: var(--type-caption); font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-light); }

.glp1-hero h1 {
    font-family: var(--font-serif);
    font-size: var(--type-display);
    font-weight: 400; line-height: 1.04; color: white; margin-bottom: 16px;
}
.glp1-hero h1 em { font-style: italic; color: var(--teal-light); }

.glp1-hero-lead {
    font-size: var(--type-body); font-weight: 400; line-height: var(--lh-body);
    color: rgba(255,255,255,.82); max-width: 440px; margin-bottom: 16px;
}

.glp1-price-pill {
    display: inline-flex; align-items: baseline; gap: 8px;
    background: rgba(49,184,152,.11); border: 1px solid rgba(49,184,152,.22);
    border-radius: 100px; padding: 7px 18px; margin-bottom: 28px;
    transition: background .3s, transform .2s;
}
.glp1-price-pill:hover { background: rgba(49,184,152,.2); transform: scale(1.02); }
.glp1-price-val { font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: var(--teal-light); }
.glp1-price-sub { font-size: var(--type-caption); font-weight: 400; color: rgba(255,255,255,.65); }

.glp1-hero-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.glp1-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--teal); color: white; padding: 14px 30px;
    border-radius: 100px; font-size: 13px; font-weight: 500;
    text-decoration: none; box-shadow: 0 6px 20px rgba(49,184,152,.35);
    transition: background .25s, transform .2s, box-shadow .3s;
    position: relative; overflow: hidden;
}
.glp1-btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
    transform: translateX(-100%); transition: transform .6s;
}
.glp1-btn-primary:hover::before { transform: translateX(100%); }
.glp1-btn-primary:hover { background: var(--teal-dim); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(49,184,152,.45); }

.glp1-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid rgba(255,255,255,.18); color: rgba(255,255,255,.58);
    padding: 13px 26px; border-radius: 100px; font-size: 13px;
    text-decoration: none; transition: all .25s;
}
.glp1-btn-outline:hover { border-color: rgba(255,255,255,.40); color: white; }

/* Hero proof row */
.glp1-hero-proof {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.07);
}
.glp1-proof-item {
    padding: 22px 18px;
    border-right: 1px solid rgba(255,255,255,.06);
    transition: transform .3s;
}
.glp1-proof-item:last-child { border-right: none; }
.glp1-proof-item:hover { transform: translateY(-3px); }
.glp1-proof-val { font-family: var(--font-serif); font-size: 24px; font-weight: 500; color: white; line-height: 1; margin-bottom: 4px; }
.glp1-proof-lbl { font-size: var(--type-caption); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.60); }

/* ── Hero Right — Interactive Tabs ── */
.glp1-hero-tabs { display: flex; flex-direction: column; gap: 0; }
.glp1-hero-tab {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
    padding: 20px 22px; cursor: pointer;
    display: grid; grid-template-columns: 12px 1fr auto; gap: 16px; align-items: center;
    transition: background .3s, border-color .3s;
}
.glp1-hero-tab:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.glp1-hero-tab:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.glp1-hero-tab.active { background: rgba(49,184,152,.1); border-color: rgba(49,184,152,.3); }
.glp1-hero-tab:hover:not(.active) { background: rgba(255,255,255,.07); }

.glp1-tab-dot {
    width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
    transition: transform .3s, box-shadow .3s;
}
.glp1-hero-tab.active .glp1-tab-dot { transform: scale(1.3); box-shadow: 0 0 12px currentColor; }
.glp1-tab-name { font-family: var(--font-serif); font-size: 17px; font-weight: 500; color: #fff; }
.glp1-tab-price { font-family: 'Courier New', monospace; font-size: var(--type-small); font-weight: 500; color: var(--teal-light); }

/* Tab detail panel */
.glp1-tab-detail {
    background: rgba(255,255,255,.06); border: 1px solid rgba(49,184,152,.2);
    border-radius: var(--radius-lg); padding: 24px 26px; margin-top: 14px;
    min-height: 120px;
}
.glp1-tab-detail-brand { font-size: var(--type-caption); font-weight: 400; color: rgba(255,255,255,.60); margin-bottom: 10px; }
.glp1-tab-detail-desc { font-size: var(--type-body); font-weight: 400; color: rgba(255,255,255,.80); line-height: var(--lh-body); margin-bottom: 12px; }
.glp1-tab-detail-best {
    font-size: var(--type-caption); font-weight: 400; font-style: italic; color: rgba(255,255,255,.65);
    border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 10px 14px;
}

/* Hero rl header */
.glp1-hero-rl { margin-bottom: 10px; }
.glp1-hero-rl-eye { font-size: var(--type-caption); font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--teal-light); margin-bottom: 6px; opacity: .8; }
.glp1-hero-rl-sub { font-family: var(--font-serif); font-size: 17px; font-weight: 400; color: rgba(255,255,255,.75); line-height: 1.25; }

/* Hero badge */
.glp1-hero-badge {
    margin-top: 14px; display: inline-flex; flex-direction: column; align-items: center;
    background: rgba(26,36,32,.85); backdrop-filter: blur(14px);
    border: 1px solid rgba(49,184,152,.22); border-radius: var(--radius-lg);
    padding: 14px 20px; text-align: center;
    transition: transform .35s, box-shadow .35s, border-color .35s;
}
.glp1-hero-badge:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.2); border-color: rgba(49,184,152,.4); }
.glp1-badge-val { font-family: var(--font-serif); font-size: 34px; font-weight: 500; color: var(--teal-light); line-height: 1; margin-bottom: 4px; animation: glp1-badge-pulse 3s ease-in-out infinite; }
@keyframes glp1-badge-pulse { 0%,100% { opacity: 1; } 50% { opacity: .7; } }
.glp1-badge-lbl { font-size: var(--type-caption); font-weight: 500; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.60); }


/* ── SECTION TAG / H2 ─────────────────────────────────────── */
.section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: var(--type-caption); font-weight: 500; letter-spacing: .15em;
    text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.section-tag-line { width: 26px; height: 1.5px; background: currentColor; opacity: .6; transition: width .5s cubic-bezier(.22,1,.36,1); }
.section-tag-light { color: var(--teal-light); }

.section-h2 {
    font-family: var(--font-serif);
    font-size: var(--type-h1);
    font-weight: 400; line-height: 1.08; color: var(--dark); margin-bottom: 12px;
}
.section-h2 em { font-style: italic; color: var(--teal); }
.section-h2-inv { color: white !important; }
.section-h2-inv em { color: var(--teal-light) !important; }

/* ── REVEAL ──────────────────────────────────────────────── */
.reveal {
    opacity: 0; transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

/* ── SHARED SECTION ──────────────────────────────────────── */
.glp1-section { padding: 96px 0; }
.glp1-wrap { max-width: 1200px; margin: 0 auto; padding: 0 64px; }
.glp1-section-lead { font-size: var(--type-body); font-weight: 400; line-height: var(--lh-body); color: var(--text-medium); max-width: 580px; margin-bottom: 44px; }
.glp1-section-lead-inv { color: rgba(255,255,255,.78); }


/* ── SECTION 2: HOW IT WORKS — Progress Stepper ──────────── */
.glp1-stepper-header { text-align: center; max-width: 680px; margin: 0 auto 20px; }
.glp1-stepper-header .section-tag { justify-content: center; }
.glp1-stepper-lead { font-size: var(--type-body); font-weight: 400; line-height: var(--lh-body); color: var(--text-medium); max-width: 580px; margin: 0 auto 48px; text-align: center; }

.glp1-progress { display: flex; align-items: center; justify-content: center; margin-bottom: 48px; position: relative; padding: 0 60px; }
.glp1-progress::before {
    content: ''; position: absolute; top: 50%; left: 15%; right: 15%; height: 2px;
    background: var(--sand-deep); transform: translateY(-50%);
}
.glp1-progress-fill {
    position: absolute; top: 50%; left: 15%; height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    transform: translateY(-50%); transition: width .6s cubic-bezier(.22,1,.36,1); width: 0;
}
.glp1-progress-dots {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; max-width: 600px; position: relative; z-index: 1;
}
.glp1-progress-dot {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-size: 22px; font-weight: 500;
    cursor: pointer; transition: all .35s cubic-bezier(.22,1,.36,1);
    border: 2px solid var(--sand-deep); background: #fff; color: var(--muted);
}
.glp1-progress-dot.active {
    background: var(--teal); border-color: var(--teal); color: #fff;
    transform: scale(1.12); box-shadow: 0 6px 24px rgba(49,184,152,.35);
}
.glp1-progress-dot:hover:not(.active) { border-color: rgba(49,184,152,.4); color: var(--teal); transform: scale(1.06); }

.glp1-step-panel {
    background: #fff; border: 1px solid var(--sand-deep); border-radius: var(--radius-lg);
    padding: 44px 48px; max-width: 720px; margin: 0 auto; position: relative; overflow: hidden;
    min-height: 180px; transition: border-color .35s, box-shadow .35s;
}
.glp1-step-panel::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
}
.glp1-step-panel:hover { border-color: rgba(49,184,152,.18); box-shadow: 0 12px 40px rgba(26,36,32,.08); }
.glp1-step-panel-label { font-size: var(--type-caption); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.glp1-step-panel-title { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500; color: var(--text-dark); margin-bottom: 12px; line-height: 1.2; }
.glp1-step-panel-desc { font-size: var(--type-body); font-weight: 400; color: var(--text-medium); line-height: var(--lh-body); }

.glp1-step-nav { display: flex; align-items: center; justify-content: space-between; max-width: 720px; margin: 20px auto 0; }
.glp1-step-nav-btn {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500; color: var(--teal);
    cursor: pointer; background: none; border: none; padding: 8px 16px;
    border-radius: 100px; transition: background .25s;
}
.glp1-step-nav-btn:hover { background: var(--teal-pale); }
.glp1-step-nav-btn:disabled { opacity: .3; cursor: default; }
.glp1-step-nav-btn:disabled:hover { background: none; }
.glp1-step-nav-dots { display: flex; gap: 6px; }
.glp1-step-nav-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sand-deep); transition: background .25s, transform .25s; }
.glp1-step-nav-dot.active { background: var(--teal); transform: scale(1.2); }


/* ── SECTION 3: TREATMENT OPTIONS — Comparison Table ─────── */
.glp1-compare-table {
    background: #fff; border: 1px solid var(--sand-deep); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: 0 4px 24px rgba(26,36,32,.06);
}
.glp1-ct-header { display: grid; grid-template-columns: 200px repeat(3, 1fr); border-bottom: 2px solid var(--sand-deep); }
.glp1-ct-hcell {
    padding: 24px 20px; font-family: var(--font-serif); font-size: 18px;
    font-weight: 500; color: var(--text-dark); text-align: center; position: relative;
}
.glp1-ct-hcell:first-child { text-align: left; font-family: var(--font-sans); font-size: var(--type-caption); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; }
.glp1-ct-featured { background: rgba(184,137,122,.06); }
.glp1-ct-featured::before {
    content: 'Most Effective'; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    background: var(--rose-gold); color: #fff; font-family: var(--font-sans);
    font-size: var(--type-caption); font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    padding: 3px 14px; border-radius: 0 0 8px 8px;
}
.glp1-ct-hdot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 8px; vertical-align: middle; }
.glp1-ct-hprice { font-family: 'Courier New', monospace; font-size: var(--type-small); font-weight: 500; color: var(--teal); margin-top: 4px; display: block; }

.glp1-ct-row { display: grid; grid-template-columns: 200px repeat(3, 1fr); border-bottom: 1px solid var(--sand-deep); transition: background .25s; }
.glp1-ct-row:last-child { border-bottom: none; }
.glp1-ct-row:hover { background: var(--teal-mist); }
.glp1-ct-cell {
    padding: 16px 20px; font-size: var(--type-small); font-weight: 400; color: var(--text-medium);
    line-height: 1.55; text-align: center; display: flex; align-items: center; justify-content: center;
}
.glp1-ct-cell:first-child { text-align: left; justify-content: flex-start; font-weight: 500; color: var(--text-dark); }
.glp1-ct-cell-feat { background: rgba(184,137,122,.03); }
.glp1-ct-check { color: var(--teal); font-size: 16px; font-weight: 600; }
.glp1-ct-check-rose { color: var(--rose-gold); }

.glp1-ct-cta-row { display: grid; grid-template-columns: 200px repeat(3, 1fr); padding: 20px 0; border-top: 2px solid var(--sand-deep); }
.glp1-ct-cta-cell { display: flex; align-items: center; justify-content: center; padding: 0 20px; }
.glp1-ct-cta-cell:first-child { justify-content: flex-start; }
.glp1-ct-cta-btn {
    display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px;
    border-radius: 100px; font-size: var(--type-caption); font-weight: 500; text-decoration: none;
    transition: all .25s; white-space: nowrap;
}
.glp1-ct-btn-teal { background: var(--teal); color: #fff; }
.glp1-ct-btn-teal:hover { background: var(--teal-dim); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(49,184,152,.3); }
.glp1-ct-btn-rose { background: var(--rose-gold); color: #fff; }
.glp1-ct-btn-rose:hover { background: #a67968; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,137,122,.3); }
.glp1-ct-btn-outline { background: transparent; border: 1.5px solid var(--sand-deep); color: var(--text-medium); }
.glp1-ct-btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

.glp1-mc-note { text-align: center; font-size: var(--type-small); font-weight: 400; color: var(--muted); padding: 18px 8px 0; }
.glp1-mc-note a { color: var(--teal); text-decoration: none; }


/* ── SECTION 4: WHAT'S INCLUDED — Grouped by Phase ──────── */
.glp1-inc-groups { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 36px; }
.glp1-inc-group {}
.glp1-inc-group-label { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.glp1-inc-group-icon {
    width: 36px; height: 36px; border-radius: 10px; background: var(--teal-pale);
    color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.glp1-inc-group-text { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; color: var(--text-dark); }

.glp1-inc-items { display: flex; flex-direction: column; gap: 8px; padding-left: 48px; }
.glp1-inc-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px; background: var(--card-bg, #fff);
    border: 1px solid var(--sand-deep); border-radius: 14px;
    transition: transform .3s cubic-bezier(.22,1,.36,1), border-color .3s, box-shadow .3s;
}
.glp1-inc-item:hover { transform: translateX(6px); border-color: rgba(49,184,152,.2); box-shadow: 0 4px 16px rgba(26,36,32,.06); }

.glp1-inc-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--teal); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: var(--type-caption); font-weight: 600; flex-shrink: 0;
    transition: transform .3s;
}
.glp1-inc-item:hover .glp1-inc-num { transform: scale(1.1); }

.glp1-inc-main { font-size: var(--type-body); font-weight: 400; color: var(--text-dark); margin-bottom: 2px; }
.glp1-inc-sub { font-size: var(--type-caption); font-weight: 400; color: var(--muted); line-height: 1.5; }


/* ── IMAGE BANNER — Full-bleed with text overlay ─────────── */
.glp1-banner {
    position: relative; height: 540px; overflow: hidden;
}
.glp1-banner img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center 20%;
}
.glp1-banner-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(28,56,50,.82) 0%, rgba(28,56,50,.55) 50%, rgba(28,56,50,.3) 100%);
}
.glp1-banner-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 0 64px;
    height: 100%; display: flex; flex-direction: column; justify-content: center;
}
.glp1-banner h2 {
    font-family: var(--font-serif); font-size: var(--type-h1);
    font-weight: 400; line-height: 1.06; color: #fff; margin-bottom: 16px; max-width: 600px;
}
.glp1-banner h2 em { font-style: italic; color: var(--teal-light); }
.glp1-banner p {
    font-size: var(--type-body); font-weight: 400; line-height: var(--lh-body);
    color: rgba(255,255,255,.82); max-width: 480px; margin-bottom: 28px;
}
.glp1-banner-stats {
    position: absolute; bottom: 40px; right: 64px; z-index: 2;
    display: flex; gap: 32px;
}
.glp1-banner-stat { text-align: right; }
.glp1-banner-stat-val { font-family: var(--font-serif); font-size: 36px; font-weight: 500; color: #fff; line-height: 1; }
.glp1-banner-stat-lbl { font-size: var(--type-caption); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.65); }


/* ── SECTION 5: WHY LIVEA — Stats + Features ─────────────── */
.glp1-why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.glp1-why-stats { display: flex; flex-direction: column; gap: 32px; }
.glp1-why-stat { position: relative; padding-left: 24px; }
.glp1-why-stat::before {
    content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
    background: var(--teal); border-radius: 2px; opacity: .4;
}
.glp1-why-stat-val { font-family: var(--font-serif); font-size: 56px; font-weight: 400; color: #fff; line-height: 1; margin-bottom: 6px; }
.glp1-why-stat-val em { color: var(--teal-light); font-style: normal; }
.glp1-why-stat-lbl { font-size: var(--type-small); font-weight: 400; color: rgba(255,255,255,.75); line-height: 1.5; max-width: 280px; }

.glp1-why-features { display: flex; flex-direction: column; gap: 14px; }
.glp1-why-feat {
    display: flex; align-items: flex-start; gap: 16px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md); padding: 22px 24px;
    transition: background .35s, border-color .35s, transform .35s cubic-bezier(.22,1,.36,1);
}
.glp1-why-feat:hover { background: rgba(255,255,255,.1); border-color: rgba(49,184,152,.3); transform: translateX(6px); }
.glp1-why-feat-icon {
    width: 42px; height: 42px; border-radius: 12px; background: rgba(49,184,152,.15);
    display: flex; align-items: center; justify-content: center; color: var(--teal-light); flex-shrink: 0;
    transition: transform .3s, background .3s;
}
.glp1-why-feat:hover .glp1-why-feat-icon { transform: scale(1.08); background: rgba(49,184,152,.25); }
.glp1-why-feat h4 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; color: #fff; margin-bottom: 4px; }
.glp1-why-feat p { font-size: var(--type-small); font-weight: 400; color: rgba(255,255,255,.78); line-height: 1.65; }


/* ── SECTION 6: PATIENT STORIES — Enhanced ───────────────── */
.glp1-stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.glp1-story-card {
    background: var(--card-bg, #fff); border: 1px solid var(--sand-deep);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s, border-color .35s;
}
.glp1-story-card:hover { transform: translateY(-5px); box-shadow: 0 24px 56px rgba(26,36,32,.12); border-color: rgba(49,184,152,.18); }

.glp1-story-top { height: 84px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; }
.glp1-story-av {
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: white; flex-shrink: 0;
}
.glp1-story-res-val { font-family: var(--font-serif); font-size: 26px; font-weight: 500; color: var(--text-dark); line-height: 1; text-align: right; }
.glp1-story-res-lbl { font-size: var(--type-caption); font-weight: 500; text-transform: uppercase; letter-spacing: .07em; color: var(--text-medium); text-align: right; }
.glp1-story-body { padding: 20px 22px 24px; position: relative; }
/* decorative quote */
.glp1-story-body::before {
    content: '\201C'; position: absolute; top: 6px; right: 18px;
    font-family: var(--font-serif); font-size: 60px; font-weight: 600; line-height: 1;
    color: rgba(49,184,152,.06); pointer-events: none; user-select: none;
}
.glp1-story-quote { font-family: var(--font-serif); font-size: var(--type-body-lg); font-style: italic; color: var(--text-dark); line-height: 1.6; margin-bottom: 14px; position: relative; z-index: 1; }
.glp1-story-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.glp1-story-who { font-size: var(--type-caption); font-weight: 500; color: var(--text-medium); text-transform: uppercase; letter-spacing: .04em; transition: color .3s; }
.glp1-story-card:hover .glp1-story-who { color: var(--teal); }
.glp1-story-tag { font-size: var(--type-caption); font-weight: 500; background: var(--teal-pale); color: var(--teal-dim); padding: 3px 9px; border-radius: 100px; }
.glp1-story-card--photo { padding: 0; }


/* ── SECTION 7: CANDIDACY — Self-Assessment Quiz ─────────── */
.glp1-quiz-card {
    background: #fff; border: 1px solid var(--sand-deep); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: 0 4px 24px rgba(26,36,32,.06); max-width: 680px; margin: 0 auto;
}
.glp1-quiz-header {
    background: var(--forest); padding: 28px 36px;
    display: flex; align-items: center; justify-content: space-between;
}
.glp1-quiz-header-text { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; color: #fff; }
.glp1-quiz-score {
    display: flex; align-items: center; gap: 10px;
    background: rgba(49,184,152,.15); border: 1px solid rgba(49,184,152,.25);
    border-radius: 100px; padding: 6px 18px;
}
.glp1-quiz-score-label { font-size: var(--type-caption); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.glp1-quiz-score-val { font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: var(--teal-light); }

.glp1-quiz-body { padding: 8px 0; }
.glp1-quiz-q {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 36px; border-bottom: 1px solid var(--sand-deep); transition: background .25s;
}
.glp1-quiz-q:last-child { border-bottom: none; }
.glp1-quiz-q:hover { background: var(--teal-mist); }
.glp1-quiz-q-text { font-size: var(--type-body); font-weight: 400; color: var(--text-dark); text-align: left; flex: 1; }

.glp1-quiz-btns { display: flex; gap: 8px; }
.glp1-quiz-btn {
    width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--sand-deep);
    background: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 600; cursor: pointer; transition: all .25s; color: var(--muted);
}
.glp1-quiz-btn:hover { border-color: rgba(49,184,152,.3); color: var(--teal); }
.glp1-quiz-btn.yes-on { background: var(--teal); border-color: var(--teal); color: #fff; }
.glp1-quiz-btn.no-on { background: var(--rose-pale); border-color: var(--rose-gold); color: var(--rose-gold); }

.glp1-quiz-result {
    padding: 24px 36px; border-top: 2px solid var(--sand-deep); text-align: center;
}
.glp1-quiz-result-text { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; color: var(--text-dark); margin-bottom: 12px; }
.glp1-quiz-result-sub { font-size: var(--type-small); font-weight: 400; color: var(--text-medium); line-height: 1.6; margin-bottom: 16px; }
.glp1-quiz-result-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--teal); color: #fff; padding: 12px 28px;
    border-radius: 100px; font-size: 13px; font-weight: 500;
    text-decoration: none; border: none; cursor: pointer;
    transition: background .25s, transform .2s;
}
.glp1-quiz-result-btn:hover { background: var(--teal-dim); transform: translateY(-2px); }

.glp1-quiz-disclaimer {
    padding: 16px 36px; font-size: var(--type-caption); font-weight: 400;
    color: var(--muted); line-height: 1.55; font-style: italic;
    border-top: 1px solid var(--sand-deep); background: var(--teal-mist);
}


/* ── SECTION 8: FORM — Split Photo + Info (Concept D) ────── */
.glp1-form-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: 0 16px 56px rgba(26,36,32,.1); max-width: 960px; margin: 0 auto;
}
.glp1-form-left { display: flex; flex-direction: column; }

.glp1-form-photo { position: relative; height: 280px; overflow: hidden; }
.glp1-form-photo img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.glp1-form-photo-badge {
    position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2;
    background: rgba(26,36,32,.8); backdrop-filter: blur(12px);
    border: 1px solid rgba(49,184,152,.2); border-radius: 14px;
    padding: 16px 20px; display: flex; align-items: center; gap: 14px;
}
.glp1-form-photo-badge-icon {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(49,184,152,.2);
    display: flex; align-items: center; justify-content: center; color: var(--teal-light); flex-shrink: 0;
}
.glp1-form-photo-badge-text { font-family: var(--font-serif); font-size: 1rem; font-weight: 400; color: #fff; line-height: 1.3; }
.glp1-form-photo-badge-text em { color: var(--teal-light); font-style: italic; }

.glp1-form-info {
    background: var(--forest); padding: 36px 32px; flex: 1;
    display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;
}
.glp1-form-info::before {
    content: ''; position: absolute; bottom: -40px; right: -40px; width: 200px; height: 200px;
    border-radius: 50%; background: radial-gradient(circle, rgba(49,184,152,.08) 0%, transparent 70%); pointer-events: none;
}
.glp1-form-info-eye { font-size: var(--type-caption); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 12px; position: relative; z-index: 1; }
.glp1-form-info-h2 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: #fff; line-height: 1.1; margin-bottom: 12px; position: relative; z-index: 1; }
.glp1-form-info-h2 em { font-style: italic; color: var(--teal-light); }
.glp1-form-info-p { font-size: var(--type-body); font-weight: 400; color: rgba(255,255,255,.80); line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 1; }

.glp1-form-checks { display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.glp1-form-check { display: flex; align-items: center; gap: 8px; font-size: var(--type-body); font-weight: 400; color: rgba(255,255,255,.85); }
.glp1-form-check-icon {
    width: 18px; height: 18px; border-radius: 50%; background: rgba(49,184,152,.18);
    display: flex; align-items: center; justify-content: center; font-size: var(--type-caption); color: var(--teal-light); flex-shrink: 0;
}

.glp1-form-right-panel { background: var(--sand); padding: 46px 42px; }


/* ── SECTION 9: FAQ — Enhanced ───────────────────────────── */
.glp1-faq-section { padding: 96px 64px; background: var(--white, #FDFAF7); }
.glp1-faq-header { text-align: center; margin-bottom: 48px; }
.glp1-faq-intro { font-size: var(--type-body); font-weight: 400; color: var(--text-medium); line-height: var(--lh-body); max-width: 520px; margin: 0 auto; }

.glp1-faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }
.glp1-faq-item {
    background: var(--card-bg, #fff); border: 1.5px solid var(--sand-deep);
    border-radius: var(--radius-md); overflow: hidden; position: relative;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}
/* left accent on open */
.glp1-faq-item::before {
    content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
    background: var(--teal); border-radius: var(--radius-md) 0 0 var(--radius-md);
    transform: scaleY(0); transform-origin: center;
    transition: transform .35s cubic-bezier(.22,1,.36,1); z-index: 1;
}
.glp1-faq-item:hover { border-color: rgba(49,184,152,.2); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(26,36,32,.05); }
.glp1-faq-item.open::before { transform: scaleY(1); }
.glp1-faq-item.open { border-color: rgba(49,184,152,.3); box-shadow: 0 8px 28px rgba(49,184,152,.08); }

.glp1-faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; background: none; border: none; cursor: pointer;
    font-family: var(--font-sans); font-size: var(--type-body); font-weight: 400;
    color: var(--text-dark); text-align: left; gap: 16px;
    transition: color .25s, padding-left .35s cubic-bezier(.22,1,.36,1);
}
.glp1-faq-question:hover { color: var(--teal); }
.glp1-faq-item.open .glp1-faq-question { color: var(--teal); padding-left: 26px; }

.glp1-faq-icon {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1.5px solid var(--sand-deep); display: flex; align-items: center;
    justify-content: center; font-size: 18px; color: var(--muted); flex-shrink: 0;
    transition: all .3s;
}
.glp1-faq-item.open .glp1-faq-icon { background: var(--teal); border-color: var(--teal); color: white; transform: rotate(45deg); }

.glp1-faq-answer { max-height: 0; overflow: hidden; transition: max-height .42s cubic-bezier(.22,.61,.36,1); }
.glp1-faq-item.open .glp1-faq-answer { max-height: 500px; }
.glp1-faq-answer-inner {
    padding: 0 22px 18px; font-size: var(--type-body); font-weight: 400;
    color: var(--text-medium); line-height: var(--lh-body);
    opacity: 0; transform: translateY(-6px);
    transition: opacity .3s .1s, transform .3s .1s;
}
.glp1-faq-item.open .glp1-faq-answer-inner { opacity: 1; transform: translateY(0); }


/* ── SECTION 10: CTA BAND — Gradient Shift ───────────────── */
.glp1-cta-outer { max-width: 1200px; margin: 0 auto; padding: 0 64px 96px; }
.glp1-cta-band {
    background: linear-gradient(120deg, var(--forest) 0%, var(--forest-mid) 35%, #3A6A60 65%, var(--forest) 100%);
    background-size: 200% 200%; animation: glp1-gradient-shift 10s ease infinite;
    border-radius: var(--radius-lg); padding: 60px 64px;
    display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
    position: relative; overflow: hidden;
}
@keyframes glp1-gradient-shift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.glp1-cta-band::before {
    content: ''; position: absolute; top: -50%; right: 5%;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(49,184,152,.09) 0%, transparent 70%);
}
.glp1-cta-band::after {
    content: ''; position: absolute; bottom: -80px; left: -80px;
    width: 260px; height: 260px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.06); pointer-events: none;
}
.glp1-cta-eyebrow { font-size: var(--type-caption); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.60); margin-bottom: 12px; position: relative; z-index: 1; }
.glp1-cta-h2 { font-family: var(--font-serif); font-size: var(--type-h2); font-weight: 400; line-height: 1.08; color: white; margin-bottom: 10px; position: relative; z-index: 1; }
.glp1-cta-h2 em { font-style: italic; color: var(--teal-light); }
.glp1-cta-sub { font-size: var(--type-body); font-weight: 400; color: rgba(255,255,255,.82); line-height: var(--lh-body); position: relative; z-index: 1; }

.glp1-cta-right { display: flex; flex-direction: column; gap: 10px; align-items: center; position: relative; z-index: 1; flex-shrink: 0; }
.glp1-cta-ghost { font-size: var(--type-caption); font-weight: 400; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.glp1-cta-ghost:hover { color: rgba(255,255,255,.65); }


/* ── IMAGE PLACEHOLDER ───────────────────────────────────── */
.glp1-img-ph {
    background: linear-gradient(135deg, var(--teal) 0%, var(--forest) 100%);
    border-radius: var(--radius-lg); display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 14px;
    color: rgba(255,255,255,.35); min-height: 260px;
    font-size: var(--type-caption); font-weight: 400; text-align: center; padding: 20px;
}
.glp1-img-ph svg { opacity: .45; }


/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    .glp1-hero-inner { grid-template-columns: 55% 45%; gap: 40px; padding: 72px 36px; }
    .glp1-ct-header, .glp1-ct-row, .glp1-ct-cta-row { grid-template-columns: 160px repeat(3, 1fr); }
    .glp1-why-layout { gap: 48px; }
    .glp1-form-grid { max-width: 100%; }
}

@media (max-width: 960px) {
    .glp1-hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 72px 28px 64px; }
    .glp1-hero-right { max-width: 500px; }
    .glp1-hero-proof { grid-template-columns: repeat(2, 1fr); }

    .glp1-progress-dots { max-width: 100%; }
    .glp1-step-panel { padding: 32px 28px; }

    .glp1-ct-header, .glp1-ct-row, .glp1-ct-cta-row { display: block; }
    .glp1-ct-hcell, .glp1-ct-cell, .glp1-ct-cta-cell { display: block; text-align: left; padding: 12px 20px; }
    .glp1-ct-hcell:first-child, .glp1-ct-cell:first-child { font-weight: 600; background: var(--sand); }

    .glp1-inc-items { padding-left: 0; }
    .glp1-why-layout { grid-template-columns: 1fr; gap: 48px; }
    .glp1-why-stats { flex-direction: row; flex-wrap: wrap; gap: 24px; }
    .glp1-why-stat { flex: 1; min-width: 140px; }
    .glp1-why-stat-val { font-size: 40px; }

    .glp1-stories-grid { grid-template-columns: 1fr 1fr; }

    .glp1-form-grid { grid-template-columns: 1fr; }
    .glp1-form-left { display: none; }

    .glp1-cta-band { grid-template-columns: 1fr; }
    .glp1-cta-outer { padding: 0 40px 64px; }
    .glp1-section { padding: 64px 0; }
    .glp1-wrap { padding: 0 40px; }
    .glp1-faq-section { padding: 64px 40px; }

    .glp1-banner { height: 360px; }
    .glp1-banner-stats { position: static; margin-top: 20px; padding: 0 40px 32px; justify-content: flex-start; }
    .glp1-banner-stat { text-align: left; }
    .glp1-banner-content { padding: 0 40px; }

    .glp1-quiz-header { flex-direction: column; gap: 12px; text-align: center; }
    .glp1-quiz-q { padding: 16px 24px; }
}

@media (max-width: 768px) {
    .glp1-hero-inner { padding: 60px 24px 36px; }
    .glp1-hero-btns { flex-direction: column; align-items: flex-start; }
    .glp1-hero-proof { grid-template-columns: repeat(2, 1fr); }

    .glp1-stories-grid { grid-template-columns: 1fr; }

    .glp1-section { padding: 64px 0; }
    .glp1-wrap { padding: 0 24px; }
    .glp1-faq-section { padding: 64px 24px; }
    .glp1-cta-band { padding: 40px 28px; }
    .glp1-cta-outer { padding: 0 24px 52px; }
    .glp1-form-right-panel { padding: 32px 24px; }

    .glp1-banner-content { padding: 0 24px; }
    .glp1-banner-stats { padding: 0 24px 24px; gap: 20px; }
    .glp1-banner { height: auto; min-height: 380px; }

    .glp1-progress { padding: 0 20px; }
    .glp1-progress-dot { width: 44px; height: 44px; font-size: 18px; }
}

@media (max-width: 480px) {
    .glp1-hero-proof { grid-template-columns: 1fr 1fr; }
    .glp1-form-right-panel { padding: 24px 16px; }
    .glp1-why-stats { flex-direction: column; }
}
