/* ============================================================
   NEXTSET — AD LANDING PAGES
   ============================================================ */

body.landing-page {
    background: var(--off-white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding-top: 0 !important;
}

/* Override general.css h1 color (default is orange) */
body.landing-page h1 {
    color: var(--black);
}

/* ── Nav ── */
.lp-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.lp-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.lp-nav-logo img { height: 45px; width: auto; }

.lp-nav-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
}

.lp-nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.lp-nav-login {
    font-size: 0.875rem;
    color: var(--gray);
    text-decoration: none;
}

/* ── Hero ── */
.lp-hero {
    background: var(--white);
    padding: 5rem 2rem 4rem;
}

.lp-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lp-hero-badge {
    display: inline-block;
    background: var(--orange-bg);
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255,165,0,0.2);
}

.lp-hero-text h1 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 1.125rem;
    letter-spacing: -0.025em;
}

.lp-hero-text h1 .accent { color: var(--orange); }

.lp-hero-text > p {
    font-size: 1.0625rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 480px;
}

.lp-hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.375rem;
    align-items: center;
}

.lp-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.lp-trust-item {
    font-size: 0.8125rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.lp-trust-item::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 0.75rem;
}

.lp-hero-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    display: block;
}

/* ── Generic section ── */
.lp-section {
    padding: 4.5rem 2rem;
}

.lp-section.bg-white { background: var(--white); }

.lp-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.lp-eyebrow {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.625rem;
}

.lp-section-title {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.625rem;
    letter-spacing: -0.01em;
}

.lp-section-sub {
    text-align: center;
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 2.5rem;
}

/* ── Feature cards — same visual as index.php ── */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.lp-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: border-color 0.2s, transform 0.2s;
}

.lp-card:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
}

.lp-card-icon {
    width: 42px;
    height: 42px;
    color: var(--orange);
    margin-bottom: 0.875rem;
}

.lp-card-icon svg { width: 28px; height: 28px; }

.lp-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.375rem;
}

.lp-card p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* ── Pricing ── */
.lp-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.lp-plan {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}

.lp-plan:hover { transform: translateY(-3px); }

.lp-plan.featured {
    border-color: var(--orange);
    border-width: 3px;
}

.lp-plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.875rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lp-plan-head {
    text-align: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 1.25rem;
}

.lp-plan-head h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.lp-plan-price .amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
}

.lp-plan-price .period {
    font-size: 0.875rem;
    color: var(--gray);
    margin-left: 0.2rem;
}

.lp-plan-tagline {
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 0.375rem;
}

.lp-plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
}

.lp-plan-features li {
    font-size: 0.875rem;
    color: var(--gray-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.lp-plan-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.8rem;
    margin-top: 0.1em;
}

.lp-plan-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* ── FAQ ── */
.lp-faq-list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lp-faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
}

.lp-faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--black);
    gap: 1rem;
    font-family: 'Inter', inherit;
}

.lp-faq-icon {
    font-style: normal;
    font-size: 1.25rem;
    color: var(--gray-light);
    transition: transform 0.2s, color 0.2s;
    line-height: 1;
    flex-shrink: 0;
}

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

.lp-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.lp-faq-item.open .lp-faq-body { max-height: 200px; }

.lp-faq-body p {
    padding: 0 1.25rem 1.125rem;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.75;
    margin: 0;
}

/* ── Dark CTA ── */
.lp-cta {
    background: var(--dark-blue);
    padding: 5rem 2rem;
    text-align: center;
}

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

.lp-cta h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.875rem;
    letter-spacing: -0.02em;
}

.lp-cta p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.lp-cta-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

/* Override btn-primary/secondary inside dark CTA */
.lp-cta .btn-primary {
    background: var(--orange);
    border-color: var(--orange);
}

.lp-cta .btn-primary:hover {
    background: #e69500;
    border-color: #e69500;
    transform: translateY(-2px);
}

.lp-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.lp-cta .btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
    transform: translateY(-2px);
}

.lp-cta-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ── Footer ── */
.lp-footer {
    background: #111;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.lp-footer p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

.lp-footer-links {
    display: flex;
    gap: 1.5rem;
}

.lp-footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.15s;
}

.lp-footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ── Feature rows (screenshot + text) ── */
.lp-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.lp-feature-row:last-child { margin-bottom: 0; }

.lp-feature-row-reverse {
    direction: rtl;
}

.lp-feature-row-reverse > * {
    direction: ltr;
}

.lp-feature-screenshot img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
    display: block;
    border: 1px solid var(--border-light);
}

.lp-feature-desc h3 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.lp-feature-desc p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.lp-check-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lp-check-list li {
    font-size: 0.9rem;
    color: var(--gray-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.lp-check-list li::before {
    content: '✓';
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Screenshots strip ── */
.lp-screenshots-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.lp-screenshots-strip img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: block;
    border: 1px solid var(--border-light);
    transition: transform 0.2s, box-shadow 0.2s;
}

.lp-screenshots-strip img:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .lp-hero-inner       { grid-template-columns: 1fr; gap: 2.5rem; }
    .lp-hero-image       { max-width: 520px; margin: 0 auto; }
    .lp-features-grid    { grid-template-columns: repeat(2, 1fr); }
    .lp-plans-grid       { grid-template-columns: 1fr; max-width: 420px; }
    .lp-feature-row,
    .lp-feature-row-reverse { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
    .lp-screenshots-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .lp-hero          { padding: 3rem 1.25rem; }
    .lp-section       { padding: 3rem 1.25rem; }
    .lp-features-grid    { grid-template-columns: 1fr; }
    .lp-screenshots-strip { grid-template-columns: 1fr; }
    .lp-hero-actions  { flex-direction: column; align-items: flex-start; }
    .lp-cta           { padding: 3.5rem 1.25rem; }
    .lp-cta-actions   { flex-direction: column; align-items: center; }
    .lp-nav           { padding: 0 1.25rem; }
    .lp-nav-login     { display: none; }
    .lp-footer        { flex-direction: column; text-align: center; }
}

/* =====================================================================
   Coach landing — conversion sections
   Added for for-coaches.php. All new class names (lpc-*) so nothing
   here can collide with the existing .lp-* rules above.
   ===================================================================== */

/* Price anchor under the hero headline */
.lpc-anchor {
    display: inline-flex;
    align-items: baseline;
    gap: .45rem;
    margin: 0 0 1.5rem;
    font-size: .95rem;
    color: var(--gray-dark);
}
.lpc-anchor strong { color: var(--black); font-weight: 700; }

/* The economics bar — replaces the old screenshot strip */
.lpc-proof {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1px;
    background: var(--gray-lightest);
    border: 1px solid var(--gray-lightest);
    border-radius: 14px;
    overflow: hidden;
}
.lpc-proof > div { background: var(--white); padding: 1.5rem 1.4rem; }
.lpc-proof .n {
    font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em;
    color: var(--black); line-height: 1.1;
}
.lpc-proof .n em { font-style: normal; color: var(--orange); }
.lpc-proof p { margin: .5rem 0 0; font-size: .9rem; color: var(--gray); line-height: 1.5; }

/* Problem → outcome pairs */
.lpc-pairs { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.lpc-pair {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.75rem;
    align-items: center;
    padding: 1.7rem 0;
    border-top: 1px solid var(--gray-lightest);
}
.lpc-pair:last-child { border-bottom: 1px solid var(--gray-lightest); }
.lpc-pair .from h3,
.lpc-pair .to h3 {
    margin: 0 0 .4rem;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -.01em;
}
.lpc-pair .from h3 { color: var(--gray-dark); }
.lpc-pair .to h3   { color: var(--black); }
.lpc-pair p { margin: 0; font-size: .93rem; color: var(--gray); line-height: 1.6; }
.lpc-pair .from p { color: var(--gray-light); }
.lpc-arrow {
    flex: none;
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 1rem; font-weight: 700;
    line-height: 1;
}
@media (max-width: 720px) {
    .lpc-pair { grid-template-columns: 1fr; gap: .85rem; }
    .lpc-arrow { transform: rotate(90deg); }
}

/* "Everything on every plan" strip above the pricing cards */
.lpc-included {
    border: 1px solid var(--gray-lightest);
    border-radius: 14px;
    background: var(--off-white);
    padding: 1.4rem 1.6rem;
    margin-bottom: 2rem;
}
.lpc-included h4 {
    margin: 0 0 .9rem;
    font-size: .78rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 700;
}
.lpc-included ul {
    list-style: none; margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: .55rem 1.5rem;
}
.lpc-included li {
    font-size: .92rem; color: var(--gray-dark);
    padding-left: 1.5rem; position: relative;
}
.lpc-included li::before {
    content: "✓";
    position: absolute; left: 0; top: 0;
    color: var(--orange); font-weight: 700;
}

/* Monthly / annual toggle */
.lpc-billing {
    display: flex; justify-content: center; align-items: center;
    gap: .5rem; margin: 0 0 2rem;
}
.lpc-billing button {
    font: inherit; font-size: .92rem; font-weight: 600;
    padding: .55rem 1.15rem;
    border: 1px solid var(--gray-lighter);
    background: var(--white); color: var(--gray-dark);
    border-radius: 999px; cursor: pointer;
    transition: all .15s ease;
}
.lpc-billing button:hover { border-color: var(--orange); color: var(--black); }
.lpc-billing button.active {
    background: var(--orange); border-color: var(--orange); color: var(--white);
}
.lpc-billing button:focus-visible { outline: 2px solid var(--black); outline-offset: 2px; }
.lpc-save {
    font-size: .8rem; font-weight: 700; color: var(--success);
    background: #e9f5ec; border-radius: 999px; padding: .3rem .7rem;
}

/* Plan card differentiator line */
.lpc-plan-diff {
    font-size: .85rem;
    color: var(--gray);
    border-top: 1px solid var(--gray-lightest);
    margin-top: 1rem; padding-top: .9rem;
}

/* The payback argument */
.lpc-math {
    border: 2px solid var(--black);
    border-radius: 16px;
    padding: 2.2rem 2rem;
    background: var(--white);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.lpc-math h3 {
    margin: 0 0 .8rem;
    font-size: 1.45rem; font-weight: 800; letter-spacing: -.02em;
}
.lpc-math p { margin: 0 auto; max-width: 56ch; color: var(--gray-dark); line-height: 1.7; }
.lpc-math .lpc-math-line {
    display: flex; flex-wrap: wrap; justify-content: center;
    align-items: baseline; gap: .6rem;
    margin: 1.4rem 0 1.1rem;
    font-size: 1.05rem; font-weight: 600; color: var(--black);
}
.lpc-math .lpc-math-line span.vs { color: var(--gray-light); font-weight: 500; }
.lpc-math .big { font-size: 1.9rem; font-weight: 800; letter-spacing: -.02em; }
.lpc-math .big.cost { color: var(--gray-dark); }
.lpc-math .big.gain { color: var(--orange); }
