/* EduSBA Cloud — marketing landing (standalone) */

:root {
    --lp-teal: #0fbf82;
    --lp-teal-dark: #0ba66f;
    --lp-teal-soft: #eafdf5;
    --lp-navy: #0f172a;
    --lp-navy-soft: #1e293b;
    --lp-slate: #475569;
    --lp-muted: #94a3b8;
    --lp-border: #e2e8f0;
    --lp-bg: #f8fafc;
    --lp-white: #ffffff;
    --lp-gold: #fbbf24;
    --lp-header-h: 4.75rem;
    --lp-radius: 12px;
    --lp-radius-lg: 20px;
    --lp-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --lp-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
    --lp-font: 'Inter', system-ui, -apple-system, sans-serif;
    --lp-display: 'Manrope', var(--lp-font);
    --lp-max: 72rem;
    --lp-gutter: 1.25rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--lp-header-h) + 1rem);
}

body.lp-page {
    margin: 0;
    font-family: var(--lp-font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--lp-navy);
    background: var(--lp-bg);
    -webkit-font-smoothing: antialiased;
}

body.lp-page.lp-nav-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
    .lp-reveal,
    .lp-hero-visual__frame,
    .lp-hero-visual__glow {
        animation: none !important;
        transition: none !important;
    }
    .lp-reveal { opacity: 1; transform: none; }
}

/* Scroll reveal */
.lp-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-reveal--delay { transition-delay: 0.12s; }

.lp-features .lp-feature:nth-child(1) { transition-delay: 0.05s; }
.lp-features .lp-feature:nth-child(2) { transition-delay: 0.1s; }
.lp-features .lp-feature:nth-child(3) { transition-delay: 0.15s; }
.lp-features .lp-feature:nth-child(4) { transition-delay: 0.2s; }
.lp-features .lp-feature:nth-child(5) { transition-delay: 0.25s; }
.lp-features .lp-feature:nth-child(6) { transition-delay: 0.3s; }

.lp-container {
    width: 100%;
    max-width: var(--lp-max);
    margin: 0 auto;
    padding-left: var(--lp-gutter);
    padding-right: var(--lp-gutter);
}

/* ── Header ── */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--lp-header-h);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 14px -2px rgba(15, 23, 42, 0.18), 0 8px 24px -4px rgba(15, 23, 42, 0.12);
}

.lp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    height: var(--lp-header-h);
    min-width: 0;
}

.lp-header__inner .app-brand-logo-wrap--header {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.lp-logo__icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--lp-teal) 0%, var(--lp-teal-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(15, 191, 130, 0.35);
}

.lp-logo__icon svg { width: 1.25rem; height: 1.25rem; }

.lp-logo__text {
    font-family: var(--lp-display);
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.lp-logo__tag {
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lp-teal-dark);
}

.lp-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

.lp-nav a {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lp-slate);
    text-decoration: none;
    border-radius: 999px;
    transition: color 0.15s, background 0.15s;
}

.lp-nav a:hover { color: var(--lp-navy); background: var(--lp-bg); }
.lp-nav a.is-active { color: var(--lp-teal-dark); background: var(--lp-teal-soft); font-weight: 600; }

.lp-header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    white-space: nowrap;
}

.lp-btn--ghost {
    color: var(--lp-navy);
    background: transparent;
}

.lp-btn--ghost:hover { background: var(--lp-bg); }

.lp-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--lp-teal) 0%, var(--lp-teal-dark) 100%);
    box-shadow: 0 4px 14px rgba(15, 191, 130, 0.35);
}

.lp-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15, 191, 130, 0.4);
}

.lp-btn--outline {
    color: var(--lp-navy);
    background: var(--lp-white);
    border: 1.5px solid var(--lp-border);
}

.lp-btn--outline:hover { border-color: var(--lp-teal); color: var(--lp-teal-dark); }

.lp-btn--lg { padding: 0.875rem 1.5rem; font-size: 1rem; }

.lp-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    background: var(--lp-white);
    color: var(--lp-navy);
    cursor: pointer;
}

.lp-menu-btn svg { width: 1.25rem; height: 1.25rem; }
.lp-menu-btn .lp-icon-close { display: none; }
.lp-menu-btn[aria-expanded="true"] .lp-icon-menu { display: none; }
.lp-menu-btn[aria-expanded="true"] .lp-icon-close { display: block; }

.lp-mobile-nav {
    display: none;
    position: fixed;
    top: var(--lp-header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: var(--lp-white);
    padding: 1rem var(--lp-gutter) 2rem;
    overflow-y: auto;
    border-top: 1px solid var(--lp-border);
}

.lp-mobile-nav.is-open { display: block; }

.lp-mobile-nav a {
    display: block;
    padding: 0.875rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--lp-navy);
    text-decoration: none;
    border-bottom: 1px solid var(--lp-border);
}

.lp-mobile-nav__cta {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.lp-mobile-nav__cta .lp-btn { width: 100%; }

.lp-header-spacer { height: var(--lp-header-h); }

@media (min-width: 900px) {
    .lp-nav { display: flex; }
    .lp-header__inner { gap: 1rem; }
    .lp-header__inner .app-brand-logo-wrap--header { flex: 0 1 auto; }
    .lp-header__actions .lp-btn--ghost:not(.lp-hide-desktop) { display: inline-flex; }
    .lp-menu-btn { display: none; }
    .lp-hide-mobile { display: inline-flex !important; }
}

@media (max-width: 899px) {
    .lp-hide-mobile { display: none !important; }
    .lp-header__actions .lp-btn--ghost { display: none; }
}

/* ── Hero ── */
.lp-hero {
    position: relative;
    padding: 3rem 0 4rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 70% at 100% 0%, rgba(15, 191, 130, 0.14), transparent 55%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(15, 23, 42, 0.04), transparent 50%),
        linear-gradient(180deg, #fff 0%, var(--lp-bg) 100%);
}

.lp-hero::before {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lp-border), transparent);
    pointer-events: none;
}

.lp-hero__grid {
    position: relative;
    display: grid;
    gap: 2.5rem;
    align-items: center;
    z-index: 1;
}

@media (min-width: 960px) {
    .lp-hero__grid { grid-template-columns: 0.95fr 1.05fr; gap: 3rem; }
    .lp-hero { padding: 4.5rem 0 5rem; }
}

/* Hero product image */
.lp-hero-visual {
    position: relative;
    isolation: isolate;
}

.lp-hero-visual__glow {
    position: absolute;
    inset: 8% 5% 5% 10%;
    background: radial-gradient(circle, rgba(15, 191, 130, 0.35), transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: lp-glow-pulse 6s ease-in-out infinite;
}

@keyframes lp-glow-pulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.05); }
}

.lp-hero-visual__frame {
    position: relative;
    z-index: 1;
    padding: 3px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--lp-teal) 0%, var(--lp-navy) 100%);
    box-shadow: var(--lp-shadow-lg);
    animation: lp-float 7s ease-in-out infinite;
}

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

.lp-hero-visual__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px;
    background: #fff;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lp-teal-dark);
    background: var(--lp-teal-soft);
    border: 1px solid rgba(15, 191, 130, 0.25);
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.lp-badge svg { width: 0.875rem; height: 0.875rem; }

.lp-hero h1 {
    font-family: var(--lp-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
    color: var(--lp-navy);
}

.lp-hero h1 span { color: var(--lp-teal-dark); }

.lp-hero__lead {
    font-size: 1.0625rem;
    color: var(--lp-slate);
    max-width: 32rem;
    margin: 0 0 1.75rem;
}

.lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.lp-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--lp-slate);
}

.lp-trust-item svg {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--lp-teal);
    flex-shrink: 0;
}

/* Product preview card */
.lp-preview {
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow-lg);
    overflow: hidden;
}

.lp-preview__bar {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 1rem;
    background: var(--lp-navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lp-preview__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.lp-preview__dot:first-child { background: #f87171; }
.lp-preview__dot:nth-child(2) { background: var(--lp-gold); }
.lp-preview__dot:nth-child(3) { background: var(--lp-teal); }

.lp-preview__title {
    margin-left: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}

.lp-preview__body { padding: 1rem; }

.lp-preview__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    background: var(--lp-bg);
}

.lp-preview__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.lp-preview__stat {
    padding: 0.625rem;
    background: var(--lp-bg);
    border-radius: 8px;
    text-align: center;
}

.lp-preview__stat strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--lp-navy);
}

.lp-preview__stat span {
    font-size: 0.625rem;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Stats band ── */
.lp-stats {
    background: var(--lp-navy);
    color: #fff;
    padding: 2.5rem 0;
}

.lp-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .lp-stats__grid { grid-template-columns: repeat(4, 1fr); }
}

.lp-stat {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.lp-stat__num {
    font-family: var(--lp-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1;
    color: var(--lp-teal);
}

.lp-stat__label {
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.65);
}

/* ── Sections ── */
.lp-section {
    padding: 4rem 0;
}

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

.lp-section__head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

.lp-section__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lp-teal-dark);
    margin-bottom: 0.75rem;
}

.lp-section__head h2 {
    font-family: var(--lp-display);
    font-size: clamp(1.625rem, 3.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
    color: var(--lp-navy);
}

.lp-section__head p {
    margin: 0;
    color: var(--lp-slate);
    font-size: 1.0625rem;
}

/* Features */
#features {
    position: relative;
    overflow: hidden;
}

#features::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(15, 191, 130, 0.08), transparent 40%),
        radial-gradient(circle at 88% 75%, rgba(14, 165, 233, 0.07), transparent 38%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.04), transparent 50%);
    pointer-events: none;
}

#features .lp-container { position: relative; z-index: 1; }

.lp-features {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) { .lp-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .lp-features { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.lp-feature {
    --fc: var(--lp-teal);
    --fc-dark: var(--lp-teal-dark);
    --fc-soft: var(--lp-teal-soft);
    --fc-glow: rgba(15, 191, 130, 0.35);
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --lift: 0px;
    position: relative;
    padding: 1.625rem 1.5rem 1.5rem;
    background: linear-gradient(155deg, var(--lp-white) 0%, var(--fc-soft) 220%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--lp-radius-lg);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    cursor: default;
    outline: none;
    transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift));
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.lp-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fc), var(--fc-dark));
    opacity: 0.9;
    transition: height 0.3s ease;
}

.lp-feature__glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 55%;
    height: 55%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--fc-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.lp-feature:hover,
.lp-feature:focus-visible {
    --lift: -8px;
    border-color: color-mix(in srgb, var(--fc) 35%, white);
    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.1),
        0 0 0 1px color-mix(in srgb, var(--fc) 20%, transparent);
}

.lp-feature:hover::before,
.lp-feature:focus-visible::before {
    height: 5px;
}

.lp-feature:hover .lp-feature__glow,
.lp-feature:focus-visible .lp-feature__glow {
    opacity: 1;
    transform: scale(1.15);
}

.lp-feature:hover .lp-feature__icon,
.lp-feature:focus-visible .lp-feature__icon {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--fc) 40%, transparent);
}

.lp-feature--mint {
    --fc: #0fbf82;
    --fc-dark: #059669;
    --fc-soft: #ecfdf5;
    --fc-glow: rgba(15, 191, 130, 0.4);
}

.lp-feature--sky {
    --fc: #0ea5e9;
    --fc-dark: #0284c7;
    --fc-soft: #f0f9ff;
    --fc-glow: rgba(14, 165, 233, 0.4);
}

.lp-feature--violet {
    --fc: #8b5cf6;
    --fc-dark: #7c3aed;
    --fc-soft: #f5f3ff;
    --fc-glow: rgba(139, 92, 246, 0.4);
}

.lp-feature--amber {
    --fc: #f59e0b;
    --fc-dark: #d97706;
    --fc-soft: #fffbeb;
    --fc-glow: rgba(245, 158, 11, 0.45);
}

.lp-feature--rose {
    --fc: #f43f5e;
    --fc-dark: #e11d48;
    --fc-soft: #fff1f2;
    --fc-glow: rgba(244, 63, 94, 0.4);
}

.lp-feature--emerald {
    --fc: #10b981;
    --fc-dark: #059669;
    --fc-soft: #ecfdf5;
    --fc-glow: rgba(16, 185, 129, 0.4);
}

.lp-feature__icon {
    position: relative;
    z-index: 1;
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--fc) 0%, var(--fc-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
    box-shadow: 0 6px 16px color-mix(in srgb, var(--fc) 35%, transparent);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.lp-feature__icon svg { width: 1.375rem; height: 1.375rem; }

.lp-feature h3 {
    position: relative;
    z-index: 1;
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--lp-navy);
    transition: color 0.25s ease;
}

.lp-feature:hover h3,
.lp-feature:focus-visible h3 {
    color: var(--fc-dark);
}

.lp-feature p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 0.875rem;
    color: var(--lp-slate);
    line-height: 1.6;
}

.lp-feature h3 a {
    color: inherit;
    text-decoration: none;
}

.lp-feature h3 a:hover,
.lp-feature h3 a:focus-visible {
    color: var(--fc-dark);
    text-decoration: underline;
}

.lp-feature__more {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--fc-dark);
    text-decoration: none;
}

.lp-feature__more:hover,
.lp-feature__more:focus-visible {
    text-decoration: underline;
}

.lp-section__foot {
    text-align: center;
    margin: 2rem 0 0;
    font-size: 0.9375rem;
}

.lp-section__foot a {
    color: var(--lp-teal-dark);
    font-weight: 600;
    text-decoration: none;
}

.lp-section__foot a:hover,
.lp-section__foot a:focus-visible {
    text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
    .lp-feature {
        transform: none !important;
        transition: box-shadow 0.2s ease, border-color 0.2s ease;
    }
    .lp-feature:hover,
    .lp-feature:focus-visible {
        --lift: 0;
    }
    .lp-feature__icon { transition: none; }
}

/* Steps */
.lp-steps {
    display: grid;
    gap: 1rem;
    counter-reset: step;
}

@media (min-width: 768px) {
    .lp-steps { grid-template-columns: repeat(4, 1fr); }
}

.lp-step {
    position: relative;
    padding: 1.25rem;
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
}

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

.lp-step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    font-family: var(--lp-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(15, 191, 130, 0.25);
    display: block;
    margin-bottom: 0.5rem;
}

.lp-step h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.375rem;
}

.lp-step p {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--lp-slate);
}

/* Roles */
.lp-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.lp-role-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-slate);
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.15s;
}

.lp-role-btn.is-active,
.lp-role-btn:hover {
    color: #fff;
    background: var(--lp-navy);
    border-color: var(--lp-navy);
}

.lp-role-panel {
    display: none;
    padding: 1.75rem;
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow);
}

.lp-role-panel.is-active { display: block; }

.lp-role-panel h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.lp-role-panel > p {
    color: var(--lp-slate);
    font-size: 0.9375rem;
    margin: 0 0 1rem;
}

.lp-role-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .lp-role-panel ul { grid-template-columns: repeat(2, 1fr); }
}

.lp-role-panel li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--lp-slate);
}

.lp-role-panel li svg {
    width: 1rem;
    height: 1rem;
    color: var(--lp-teal);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* Pricing & estimator */
.lp-pricing-estimator {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 960px) {
    .lp-pricing-estimator {
        grid-template-columns: 1.15fr 0.85fr;
        align-items: stretch;
    }
}

.lp-estimator-panel,
.lp-estimator-result {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 1.5rem;
}

.lp-estimator-result {
    background: var(--lp-navy);
    color: #fff;
    border-color: var(--lp-navy);
    display: flex;
    flex-direction: column;
}

.lp-estimator-panel__head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.lp-estimator-panel__head svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--lp-teal-dark);
}

.lp-estimator-panel__head h3 {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--lp-navy);
}

.lp-estimator-panel__lead {
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    color: var(--lp-slate);
}

.lp-estimator-slider-wrap { margin-bottom: 1.25rem; }

.lp-estimator-slider-labels {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--lp-slate);
}

.lp-estimator-slider-labels strong {
    font-size: 0.875rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--lp-teal-dark);
}

.lp-estimator-slider {
    width: 100%;
    height: 6px;
    accent-color: var(--lp-teal);
    cursor: pointer;
}

.lp-estimator-slider-bounds {
    display: flex;
    justify-content: space-between;
    margin-top: 0.375rem;
    font-size: 0.6875rem;
    color: var(--lp-muted);
}

.lp-estimator-options {
    display: grid;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

@media (min-width: 540px) {
    .lp-estimator-options { grid-template-columns: 1fr 1fr; }
}

.lp-estimator-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.875rem;
    border-radius: var(--lp-radius);
    border: 2px solid var(--lp-border);
    background: var(--lp-bg);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.lp-estimator-option strong {
    display: block;
    font-size: 0.875rem;
    color: var(--lp-navy);
    margin-bottom: 0.25rem;
}

.lp-estimator-option span {
    display: block;
    font-size: 0.75rem;
    color: var(--lp-slate);
    line-height: 1.45;
}

.lp-estimator-option.is-active {
    border-color: var(--lp-teal);
    background: var(--lp-teal-soft);
}

.lp-estimator-note {
    margin: 0;
    padding: 0.75rem;
    font-size: 0.75rem;
    color: var(--lp-slate);
    background: var(--lp-bg);
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    line-height: 1.5;
}

.lp-estimator-note strong { color: var(--lp-navy); }

.lp-estimator-result__eyebrow {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.5rem;
}

.lp-estimator-result__plan {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.65);
}

.lp-estimator-result__price {
    margin: 0.35rem 0 0;
    font-family: var(--lp-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--lp-teal);
    line-height: 1;
}

.lp-estimator-result__period {
    margin: 0.15rem 0 0.75rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
}

.lp-estimator-result__detail {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
}

.lp-estimator-result__features {
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
}

.lp-estimator-result__features li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.85);
}

.lp-estimator-result__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lp-teal);
    font-weight: 700;
}

.lp-estimator-result__contact {
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    text-align: center;
}

.lp-estimator-result__contact a {
    color: var(--lp-teal);
    text-decoration: none;
}

.lp-estimator-custom h4 {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
}

.lp-estimator-custom p {
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
}

.lp-estimator-custom .lp-btn { width: 100%; margin-bottom: 0.5rem; }

.lp-btn--whatsapp {
    background: #25D366;
    color: var(--lp-navy);
    font-weight: 700;
    box-shadow: none;
}

.lp-btn--whatsapp:hover { filter: brightness(0.97); transform: none; }

.lp-btn--outline-dark {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.35);
    color: #fff;
}

.lp-btn--outline-dark:hover {
    background: rgba(255,255,255,0.08);
    border-color: #fff;
}

/* Pricing tiers */
.lp-pricing-tiers {
    display: grid;
    gap: 1rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .lp-pricing-tiers { grid-template-columns: repeat(3, 1fr); }
}

.lp-tier {
    position: relative;
    padding: 1.5rem;
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    display: flex;
    flex-direction: column;
}

.lp-tier--featured {
    border-color: var(--lp-teal);
    box-shadow: 0 12px 40px rgba(15, 191, 130, 0.15);
}

@media (min-width: 768px) {
    .lp-tier--featured { transform: translateY(-0.5rem); }
}

.lp-tier__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.2rem 0.55rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--lp-teal-dark);
    border-radius: 999px;
}

.lp-tier h3 {
    margin: 0 0 0.25rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.lp-tier__desc {
    margin: 0 0 1rem;
    font-size: 0.8125rem;
    color: var(--lp-slate);
}

.lp-tier__price {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    color: var(--lp-slate);
}

.lp-tier__price span {
    font-family: var(--lp-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--lp-navy);
}

.lp-tier--featured .lp-tier__price span { color: var(--lp-teal-dark); }

.lp-tier__price--custom span { font-size: 1.75rem; }

.lp-tier ul {
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
    flex: 1;
}

.lp-tier ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.45rem;
    font-size: 0.8125rem;
    color: var(--lp-slate);
}

.lp-tier ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lp-teal);
    font-weight: 700;
}

.lp-tier__cta { width: 100%; }

.lp-tier--featured .lp-tier__cta {
    background: var(--lp-navy);
    box-shadow: none;
}

.lp-tier--featured .lp-tier__cta:hover {
    background: var(--lp-navy-soft);
    filter: none;
}

/* CTA band */
.lp-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--lp-navy) 0%, var(--lp-navy-soft) 100%);
    color: #fff;
    text-align: center;
}

.lp-cta h2 {
    font-family: var(--lp-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 0.75rem;
}

.lp-cta p {
    margin: 0 auto 1.5rem;
    max-width: 28rem;
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
}

.lp-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.lp-cta .lp-btn--outline {
    background: transparent;
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}

.lp-cta .lp-btn--outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: #fff;
    color: #fff;
}

/* Testimonials carousel */
.lp-testimonials {
    position: relative;
    padding: 3rem 0 3.25rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(15, 191, 130, 0.22), transparent 55%),
        radial-gradient(ellipse 60% 50% at 90% 100%, rgba(6, 95, 70, 0.35), transparent 50%),
        linear-gradient(145deg, #065f46 0%, #047857 45%, #064e3b 100%);
    color: #fff;
}

.lp-testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

.lp-testimonials .lp-container {
    position: relative;
    z-index: 1;
}

.lp-testimonials__head {
    text-align: center;
    margin-bottom: 1.75rem;
}

.lp-testimonials__head .lp-section__eyebrow {
    color: rgba(167, 243, 208, 0.95);
}

.lp-testimonials__head h2 {
    color: #fff;
}

.lp-testimonials__head p {
    color: rgba(255, 255, 255, 0.78);
    margin-left: auto;
    margin-right: auto;
}

.lp-testimonials__slider {
    width: 100%;
    max-width: none;
    margin: 0;
}

.lp-testimonials__stage {
    position: relative;
}

.lp-tslide {
    --tc: #0fbf82;
    --tc-dark: #059669;
    --tc-soft: #ecfdf5;
    display: none;
    margin: 0;
    opacity: 0;
    transform: translateX(16px);
    transition:
        opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-tslide.is-active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.lp-tslide--mint { --tc: #0fbf82; --tc-dark: #059669; --tc-soft: #ecfdf5; }
.lp-tslide--sky { --tc: #0ea5e9; --tc-dark: #0284c7; --tc-soft: #f0f9ff; }
.lp-tslide--violet { --tc: #8b5cf6; --tc-dark: #7c3aed; --tc-soft: #f5f3ff; }
.lp-tslide--amber { --tc: #f59e0b; --tc-dark: #d97706; --tc-soft: #fffbeb; }
.lp-tslide--rose { --tc: #f43f5e; --tc-dark: #e11d48; --tc-soft: #fff1f2; }
.lp-tslide--emerald { --tc: #10b981; --tc-dark: #059669; --tc-soft: #ecfdf5; }

.lp-tslide__card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--lp-radius-lg);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    color: var(--lp-navy);
}

@media (min-width: 640px) {
    .lp-tslide__card {
        gap: 1.5rem;
        padding: 1.25rem 1.75rem;
    }
}

@media (min-width: 960px) {
    .lp-tslide__card {
        gap: 2rem;
        padding: 1.375rem 2rem;
    }
}

.lp-tslide__photo-col {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: none;
}

.lp-tslide__photo-ring {
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tc), var(--tc-dark));
    box-shadow: 0 8px 20px color-mix(in srgb, var(--tc) 40%, transparent);
}

.lp-tslide__photo {
    display: block;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}

@media (min-width: 640px) {
    .lp-tslide__photo {
        width: 5.25rem;
        height: 5.25rem;
    }
}

@media (min-width: 960px) {
    .lp-tslide__photo {
        width: 5.75rem;
        height: 5.75rem;
    }
}

.lp-tslide__photo--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-display);
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(145deg, var(--tc) 0%, var(--tc-dark) 100%);
}

@media (min-width: 640px) {
    .lp-tslide__photo--initials { font-size: 1.5rem; }
}

.lp-tslide__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-align: left;
}

.lp-tslide__mark {
    position: absolute;
    top: -0.25rem;
    right: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.75rem;
    line-height: 1;
    color: var(--tc);
    opacity: 0.12;
    pointer-events: none;
}

.lp-tslide__quote {
    margin: 0 0 0.625rem;
    position: relative;
    z-index: 1;
}

.lp-tslide__quote p {
    margin: 0;
    font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
    line-height: 1.55;
    color: var(--lp-navy);
    font-weight: 500;
}

.lp-tslide__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 0.5rem;
    row-gap: 0.125rem;
    position: relative;
    z-index: 1;
}

.lp-tslide__name {
    font-style: normal;
    font-family: var(--lp-display);
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--lp-navy);
    line-height: 1.3;
}

.lp-tslide__role {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--tc-dark);
}

.lp-tslide__role::after {
    content: ' · ';
    color: var(--lp-muted);
    font-weight: 400;
}

.lp-tslide__school {
    font-size: 0.8125rem;
    color: var(--lp-muted);
    line-height: 1.35;
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .lp-tslide__school {
        flex: 1 1 auto;
    }
}

.lp-testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.lp-testimonials__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.lp-testimonials__arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.45);
    transform: scale(1.05);
}

.lp-testimonials__arrow svg {
    width: 1.125rem;
    height: 1.125rem;
}

.lp-testimonials__dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lp-testimonials__dot {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.lp-testimonials__dot.is-active {
    width: 1.75rem;
    background: #fff;
}

.lp-testimonials__dot:hover {
    background: rgba(255, 255, 255, 0.65);
}

@media (prefers-reduced-motion: reduce) {
    .lp-tslide {
        transition: opacity 0.2s ease;
        transform: none;
    }
    .lp-tslide.is-active { transform: none; }
}

/* FAQ layout — 65 / 35 */
.lp-faq-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .lp-faq-layout {
        flex-direction: row;
        gap: 2.5rem;
        align-items: flex-start;
    }

    .lp-faq-layout .lp-faq {
        flex: 0 0 65%;
        max-width: 65%;
        margin: 0;
    }

    .lp-faq-banner {
        flex: 0 0 calc(35% - 2.5rem);
        max-width: 35%;
        position: sticky;
        top: calc(var(--lp-header-h) + 1.5rem);
    }
}

.lp-faq-banner__frame {
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg);
    border: 1px solid var(--lp-border);
    background: var(--lp-white);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lp-faq-banner__frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.lp-faq-banner__frame img {
    display: block;
    width: 100%;
    height: auto;
}

.lp-faq-banner__caption {
    margin-top: 1rem;
    padding: 1rem 1.125rem;
    background: var(--lp-navy);
    color: #fff;
    border-radius: var(--lp-radius);
}

.lp-faq-banner__caption strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.lp-faq-banner__caption span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.45;
}

/* FAQ accordion */
.lp-faq { max-width: none; margin: 0; }

.lp-faq details {
    border-bottom: 1px solid var(--lp-border);
    padding: 1rem 0;
}

.lp-faq summary {
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--lp-navy);
}

.lp-faq summary::-webkit-details-marker { display: none; }

.lp-faq summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--lp-muted);
    flex-shrink: 0;
}

.lp-faq details[open] summary::after { content: '−'; }

.lp-faq details p {
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
    color: var(--lp-slate);
    line-height: 1.6;
}

/* Footer */
.lp-footer {
    background: var(--lp-navy);
    color: rgba(255,255,255,0.65);
    padding: 3rem 0 1.5rem;
    font-size: 0.875rem;
}

.lp-footer__grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .lp-footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

.lp-footer__logo {
    height: 2.75rem;
    width: auto;
    display: block;
    margin-bottom: 0.75rem;
}

.lp-footer__brand {
    font-family: var(--lp-display);
    font-weight: 800;
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.lp-footer h4 {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}

.lp-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-footer li { margin-bottom: 0.375rem; }

.lp-footer a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}

.lp-footer a:hover { color: var(--lp-teal); }

.lp-footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8125rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .lp-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.lp-footer__admin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.125rem;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.lp-footer__admin-btn:hover {
    border-color: var(--lp-teal);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

/* Debug strip */
.lp-debug {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0.35rem 0.75rem;
    font-size: 0.6875rem;
    text-align: center;
    background: var(--lp-gold);
    color: var(--lp-navy);
}

.lp-debug a { color: inherit; font-weight: 600; }
