/* ==========================================================================
   GESTÃO MEI — Landing Page
   Design system: clean, premium SaaS (Linear/Stripe/Vercel inspired)
   ========================================================================== */

/* ----- Reset & base ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

:root {
    --lp-primary: #2563eb;
    --lp-primary-hover: #1d4ed8;
    --lp-primary-soft: #eff6ff;
    --lp-primary-soft-hover: #dbeafe;
    --lp-accent: #f59e0b;
    --lp-success: #10b981;
    --lp-danger: #ef4444;
    --lp-bg: #ffffff;
    --lp-bg-alt: #f8fafc;
    --lp-bg-dark: #0b1220;
    --lp-text-strong: #0f172a;
    --lp-text: #334155;
    --lp-text-muted: #64748b;
    --lp-text-light: #94a3b8;
    --lp-border: #e2e8f0;
    --lp-border-soft: #eef0f3;
    --lp-shadow-xs: 0 0 0 1px rgba(15, 23, 42, 0.04);
    --lp-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
    --lp-shadow-md: 0 2px 4px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.06);
    --lp-shadow-lg: 0 8px 24px rgba(15, 23, 42, 0.08), 0 16px 48px rgba(15, 23, 42, 0.10);
    --lp-shadow-product: 0 24px 64px -16px rgba(15, 23, 42, 0.18), 0 8px 24px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.06);
    --lp-radius-sm: 6px;
    --lp-radius: 10px;
    --lp-radius-md: 12px;
    --lp-radius-lg: 16px;
    --lp-radius-xl: 20px;
    --lp-nav-height: 64px;
    --lp-container: 1200px;
    --lp-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --lp-motion-fast: 150ms;
    --lp-motion: 200ms;
}

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; scroll-padding-top: calc(var(--lp-nav-height) + 16px); }
}

html { -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--lp-text);
    background: var(--lp-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: -0.005em;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11', 'ss01';
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--lp-primary-soft); color: var(--lp-primary-hover); }

.lp-container {
    width: 100%;
    max-width: var(--lp-container);
    margin: 0 auto;
    padding: 0 24px;
}
.lp-container--narrow { max-width: 760px; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.625rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.005em;
    border-radius: var(--lp-radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background var(--lp-motion) var(--lp-ease), border-color var(--lp-motion) var(--lp-ease), color var(--lp-motion) var(--lp-ease);
    text-decoration: none;
    white-space: nowrap;
}
.lp-btn:focus-visible { outline: 2px solid var(--lp-primary); outline-offset: 2px; }

.lp-btn--primary { background: var(--lp-primary); color: #fff; }
.lp-btn--primary:hover { background: var(--lp-primary-hover); }

.lp-btn--ghost { background: transparent; color: var(--lp-text-strong); border-color: var(--lp-border); }
.lp-btn--ghost:hover { background: var(--lp-bg-alt); border-color: #cbd5e1; }

.lp-btn--soft { background: var(--lp-primary-soft); color: var(--lp-primary-hover); }
.lp-btn--soft:hover { background: var(--lp-primary-soft-hover); }

.lp-btn--white { background: #fff; color: var(--lp-text-strong); }
.lp-btn--white:hover { background: var(--lp-bg-alt); }

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

.lp-btn .lp-btn__icon-right { transition: transform var(--lp-motion) var(--lp-ease); }
.lp-btn:hover .lp-btn__icon-right { transform: translateX(2px); }

/* ==========================================================================
   NAV
   ========================================================================== */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--lp-motion) var(--lp-ease), background var(--lp-motion) var(--lp-ease);
}
.lp-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--lp-border-soft);
}
.lp-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--lp-nav-height);
    gap: 24px;
}
.lp-nav__logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--lp-text-strong);
    letter-spacing: -0.015em;
}
.lp-nav__logo img { height: 30px; width: auto; }
.lp-nav__links {
    display: none;
    gap: 28px;
    align-items: center;
}
.lp-nav__links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--lp-text);
    transition: color var(--lp-motion) var(--lp-ease);
}
.lp-nav__links a:hover { color: var(--lp-text-strong); }
.lp-nav__actions {
    display: none;
    align-items: center;
    gap: 12px;
}
.lp-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    color: var(--lp-text-strong);
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--lp-motion) var(--lp-ease);
}
.lp-nav__toggle:hover { background: var(--lp-bg-alt); }

.lp-mobile-menu {
    display: none;
    position: fixed;
    top: var(--lp-nav-height);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--lp-border-soft);
    z-index: 49;
    padding: 16px 24px 24px;
    box-shadow: var(--lp-shadow-md);
}
.lp-mobile-menu.is-open { display: block; }
.lp-mobile-menu__links { display: flex; flex-direction: column; gap: 4px; }
.lp-mobile-menu__links a {
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--lp-text-strong);
    border-bottom: 1px solid var(--lp-border-soft);
}
.lp-mobile-menu__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
}
.lp-mobile-menu__actions .lp-btn { width: 100%; }

@media (min-width: 900px) {
    .lp-nav__links, .lp-nav__actions { display: flex; }
    .lp-nav__toggle { display: none; }
    .lp-mobile-menu { display: none !important; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.lp-hero {
    position: relative;
    padding: 80px 0 64px;
    overflow: hidden;
}
.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 60% at 50% 0%, rgba(37, 99, 235, 0.06), transparent 70%),
        radial-gradient(40% 40% at 90% 30%, rgba(16, 185, 129, 0.04), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.lp-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
.lp-hero__copy { max-width: 640px; }
.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--lp-primary-soft);
    color: var(--lp-primary-hover);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}
.lp-eyebrow__dot { width: 6px; height: 6px; background: var(--lp-primary); border-radius: 50%; }
.lp-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--lp-text-strong);
    margin-bottom: 16px;
}
.lp-hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--lp-primary), #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp-hero__sub {
    font-size: 1.125rem;
    line-height: 1.55;
    color: var(--lp-text);
    margin-bottom: 28px;
    max-width: 540px;
}
.lp-hero__sub strong { color: var(--lp-text-strong); font-weight: 600; }
.lp-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.lp-hero__notice {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 0.8125rem;
    color: var(--lp-text-muted);
}
.lp-hero__notice span { display: inline-flex; align-items: center; gap: 6px; }
.lp-hero__notice i { color: var(--lp-success); font-size: 0.7rem; }

.lp-hero__visual { position: relative; z-index: 1; }
.lp-browser {
    background: #fff;
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-product);
    overflow: hidden;
}
.lp-browser__bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: linear-gradient(180deg, #fafbfc, #f4f6f9);
    border-bottom: 1px solid var(--lp-border-soft);
}
.lp-browser__dots { display: inline-flex; gap: 6px; }
.lp-browser__dots span { width: 11px; height: 11px; border-radius: 50%; }
.lp-browser__dots span:nth-child(1) { background: #fb7185; }
.lp-browser__dots span:nth-child(2) { background: #fbbf24; }
.lp-browser__dots span:nth-child(3) { background: #34d399; }
.lp-browser__url {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: var(--lp-text-muted);
    background: #fff;
    border: 1px solid var(--lp-border-soft);
    border-radius: 6px;
    padding: 4px 10px;
    max-width: 360px;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.lp-browser__url i { color: var(--lp-success); font-size: 0.7rem; }
.lp-browser__frame {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    overflow: hidden;
}
.lp-browser__shot { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.lp-mockup {
    width: 100%;
    height: 100%;
    padding: 24px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 16px;
    font-size: 12px;
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
}
.lp-mockup__sidebar {
    background: #fff;
    border-radius: 8px;
    padding: 14px 10px;
    border: 1px solid var(--lp-border-soft);
}
.lp-mockup__sidebar-item {
    height: 22px;
    background: var(--lp-bg-alt);
    border-radius: 4px;
    margin-bottom: 6px;
}
.lp-mockup__sidebar-item:nth-child(1) { background: var(--lp-primary-soft); }
.lp-mockup__main { display: flex; flex-direction: column; gap: 12px; }
.lp-mockup__title {
    height: 24px;
    width: 200px;
    background: #cbd5e1;
    border-radius: 4px;
}
.lp-mockup__kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.lp-mockup__kpi {
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--lp-border-soft);
    padding: 12px;
}
.lp-mockup__kpi-label { height: 8px; width: 60%; background: var(--lp-bg-alt); border-radius: 2px; margin-bottom: 8px; }
.lp-mockup__kpi-value { height: 18px; width: 75%; background: #cbd5e1; border-radius: 3px; }
.lp-mockup__chart {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--lp-border-soft);
    min-height: 140px;
    background-image:
        linear-gradient(to top, rgba(37, 99, 235, 0.18), transparent 70%),
        repeating-linear-gradient(to right, transparent 0 19%, var(--lp-border-soft) 19% calc(19% + 1px));
}

@media (min-width: 980px) {
    .lp-hero { padding: 96px 0 80px; }
    .lp-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        gap: 64px;
    }
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.lp-trust {
    border-top: 1px solid var(--lp-border-soft);
    border-bottom: 1px solid var(--lp-border-soft);
    background: var(--lp-bg-alt);
    padding: 24px 0;
}
.lp-trust__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 32px;
}
.lp-trust__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--lp-text-muted);
    font-weight: 500;
}
.lp-trust__item strong {
    color: var(--lp-text-strong);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.lp-trust__item i { color: var(--lp-text-muted); font-size: 0.875rem; }
.lp-trust__divider { width: 1px; height: 16px; background: var(--lp-border); }
@media (max-width: 768px) { .lp-trust__divider { display: none; } }

/* ==========================================================================
   SECTIONS GENERIC
   ========================================================================== */
.lp-section { padding: 80px 0; }
.lp-section--alt { background: var(--lp-bg-alt); }
.lp-section--dark { background: var(--lp-bg-dark); color: rgba(255, 255, 255, 0.85); }
.lp-section--dark .lp-section__title { color: #fff; }
.lp-section--dark .lp-section__sub { color: rgba(255, 255, 255, 0.65); }
.lp-section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.lp-section__eyebrow {
    display: inline-block;
    color: var(--lp-primary-hover);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
.lp-section__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--lp-text-strong);
    margin-bottom: 12px;
}
.lp-section__sub {
    font-size: 1.0625rem;
    line-height: 1.55;
    color: var(--lp-text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ==========================================================================
   PROBLEM → SOLUTION
   ========================================================================== */
.lp-compare {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}
.lp-compare__col {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 32px;
    transition: border-color var(--lp-motion) var(--lp-ease);
}
.lp-compare__col--good {
    border-color: rgba(37, 99, 235, 0.2);
    background: linear-gradient(180deg, #fff 0%, var(--lp-primary-soft) 100%);
}
.lp-compare__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.lp-compare__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 0.875rem;
}
.lp-compare__col--bad .lp-compare__icon { background: #fee2e2; color: #b91c1c; }
.lp-compare__col--good .lp-compare__icon { background: var(--lp-primary-soft); color: var(--lp-primary-hover); }
.lp-compare__col h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--lp-text-strong);
    letter-spacing: -0.01em;
    margin: 0;
}
.lp-compare__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lp-compare__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--lp-text);
}
.lp-compare__list li i { flex-shrink: 0; margin-top: 4px; font-size: 0.75rem; }
.lp-compare__col--bad .lp-compare__list li i { color: var(--lp-text-light); }
.lp-compare__col--good .lp-compare__list li i { color: var(--lp-success); }

@media (min-width: 768px) {
    .lp-compare { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ==========================================================================
   FEATURES (recursos)
   ========================================================================== */
.lp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.lp-feature {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 28px 24px;
    transition: border-color var(--lp-motion) var(--lp-ease);
}
.lp-feature:hover { border-color: #cbd5e1; }
.lp-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--lp-primary-soft);
    color: var(--lp-primary-hover);
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 16px;
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.15);
}
.lp-feature--success .lp-feature__icon { background: #ecfdf5; color: #059669; box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.15); }
.lp-feature--warning .lp-feature__icon { background: #fffbeb; color: #d97706; box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.15); }
.lp-feature--danger  .lp-feature__icon { background: #fef2f2; color: #dc2626; box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.15); }
.lp-feature--info    .lp-feature__icon { background: #ecfeff; color: #0891b2; box-shadow: inset 0 0 0 1px rgba(8, 145, 178, 0.15); }
.lp-feature--violet  .lp-feature__icon { background: #f5f3ff; color: #6d28d9; box-shadow: inset 0 0 0 1px rgba(109, 40, 217, 0.15); }
.lp-feature h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--lp-text-strong);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}
.lp-feature p {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--lp-text-muted);
    margin: 0;
}

/* ==========================================================================
   STEPS (como funciona)
   ========================================================================== */
.lp-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}
.lp-step {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 32px 28px;
    position: relative;
}
.lp-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--lp-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.9375rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.lp-step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--lp-text-strong);
    letter-spacing: -0.015em;
    margin-bottom: 8px;
}
.lp-step p { font-size: 0.9375rem; line-height: 1.55; color: var(--lp-text-muted); margin: 0; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.lp-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
}
.lp-plan {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: border-color var(--lp-motion) var(--lp-ease);
}
.lp-plan:hover { border-color: #cbd5e1; }
.lp-plan--featured {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
    position: relative;
}
.lp-plan__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.lp-plan__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
.lp-plan__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
}
.lp-plan__amount {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--lp-text-strong);
    letter-spacing: -0.025em;
    font-variant-numeric: tabular-nums;
}
.lp-plan__amount-currency { font-size: 1.25rem; font-weight: 600; color: var(--lp-text-muted); }
.lp-plan__period { font-size: 0.9375rem; color: var(--lp-text-muted); }
.lp-plan__desc {
    font-size: 0.9375rem;
    color: var(--lp-text-muted);
    margin-bottom: 24px;
    min-height: 2.8em;
}
.lp-plan__features {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.lp-plan__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    line-height: 1.4;
    color: var(--lp-text);
}
.lp-plan__features li i { flex-shrink: 0; color: var(--lp-success); margin-top: 4px; font-size: 0.75rem; }
.lp-plan__cta { width: 100%; }

.lp-pricing__note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.875rem;
    color: var(--lp-text-muted);
}
.lp-pricing__note i { color: var(--lp-accent); margin-right: 6px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.lp-faq { display: flex; flex-direction: column; gap: 8px; }
.lp-faq__item {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    overflow: hidden;
    transition: border-color var(--lp-motion) var(--lp-ease);
}
.lp-faq__item:hover { border-color: #cbd5e1; }
.lp-faq__item[open] { border-color: var(--lp-primary); box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.06); }
.lp-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp-text-strong);
    list-style: none;
    cursor: pointer;
    user-select: none;
    letter-spacing: -0.005em;
}
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--lp-text-light);
    transition: transform var(--lp-motion) var(--lp-ease);
    flex-shrink: 0;
}
.lp-faq__item[open] summary::after { transform: rotate(180deg); color: var(--lp-primary); }
.lp-faq__answer {
    padding: 0 22px 22px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--lp-text);
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.lp-cta-final {
    padding: 96px 0;
    background: var(--lp-bg-dark);
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lp-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(50% 60% at 50% 0%, rgba(37, 99, 235, 0.25), transparent 70%),
        radial-gradient(40% 40% at 80% 100%, rgba(99, 102, 241, 0.15), transparent 70%);
    pointer-events: none;
}
.lp-cta-final__inner { position: relative; z-index: 1; }
.lp-cta-final h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.lp-cta-final p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto 32px;
}
.lp-cta-final__notice {
    margin-top: 20px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.lp-footer {
    background: #fff;
    border-top: 1px solid var(--lp-border-soft);
    padding: 56px 0 32px;
}
.lp-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    .lp-footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
    }
}
.lp-footer__brand { max-width: 360px; }
.lp-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--lp-text-strong);
    letter-spacing: -0.015em;
    margin-bottom: 12px;
}
.lp-footer__logo img { height: 28px; width: auto; }
.lp-footer__about {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--lp-text-muted);
    margin-bottom: 16px;
}
.lp-footer__social { display: inline-flex; gap: 8px; }
.lp-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--lp-bg-alt);
    color: var(--lp-text-muted);
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: background var(--lp-motion) var(--lp-ease), color var(--lp-motion) var(--lp-ease);
}
.lp-footer__social a:hover { background: var(--lp-primary-soft); color: var(--lp-primary-hover); }
.lp-footer__col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-text-strong);
    margin-bottom: 16px;
}
.lp-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp-footer__col a {
    font-size: 0.875rem;
    color: var(--lp-text-muted);
    transition: color var(--lp-motion) var(--lp-ease);
}
.lp-footer__col a:hover { color: var(--lp-text-strong); }
.lp-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--lp-border-soft);
    font-size: 0.8125rem;
    color: var(--lp-text-light);
}
.lp-footer__bottom-keywords { color: var(--lp-text-muted); }

/* ==========================================================================
   ANIMATIONS (subtle reveal)
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
    .lp-reveal {
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 400ms var(--lp-ease), transform 400ms var(--lp-ease);
    }
    .lp-reveal.is-in {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   PAGE HEADER (blog list, post, etc — para páginas de conteúdo)
   ========================================================================== */
.lp-page-header {
    padding: 64px 0 24px;
    background: var(--lp-bg);
}
.lp-page-header__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.lp-page-header__eyebrow {
    display: inline-block;
    color: var(--lp-primary-hover);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
.lp-page-header__title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--lp-text-strong);
    margin-bottom: 12px;
}
.lp-page-header__sub {
    font-size: 1.0625rem;
    line-height: 1.55;
    color: var(--lp-text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.lp-breadcrumb {
    padding: 16px 0;
    border-bottom: 1px solid var(--lp-border-soft);
    background: var(--lp-bg);
}
.lp-breadcrumb__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--lp-text-muted);
}
.lp-breadcrumb a {
    color: var(--lp-text-muted);
    transition: color var(--lp-motion) var(--lp-ease);
}
.lp-breadcrumb a:hover { color: var(--lp-text-strong); }
.lp-breadcrumb__sep { color: var(--lp-text-light); }
.lp-breadcrumb__current { color: var(--lp-text-strong); font-weight: 500; }

/* ==========================================================================
   BLOG LIST: layout 2 colunas + post cards + sidebar
   ========================================================================== */
.lp-blog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 32px 0 64px;
}
@media (min-width: 980px) {
    .lp-blog-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 56px;
    }
}

.lp-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px) { .lp-blog-grid { grid-template-columns: repeat(2, 1fr); } }

.lp-post-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    transition: border-color var(--lp-motion) var(--lp-ease), box-shadow var(--lp-motion) var(--lp-ease);
    color: inherit;
    text-decoration: none;
}
.lp-post-card:hover {
    border-color: #cbd5e1;
    box-shadow: var(--lp-shadow-md);
}
.lp-post-card__image {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--lp-primary-soft), #e0e7ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-primary-hover);
    font-size: 2rem;
    overflow: hidden;
}
.lp-post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lp-post-card__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.lp-post-card__category {
    display: inline-block;
    align-self: flex-start;
    color: var(--lp-primary-hover);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.lp-post-card__title {
    font-size: 1.0625rem;
    line-height: 1.35;
    letter-spacing: -0.015em;
    font-weight: 600;
    color: var(--lp-text-strong);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lp-post-card__excerpt {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--lp-text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lp-post-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    font-size: 0.75rem;
    color: var(--lp-text-light);
}
.lp-post-card__meta span { display: inline-flex; align-items: center; gap: 4px; }
.lp-post-card__meta i { font-size: 0.7rem; }

/* Blog sidebar */
.lp-blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.lp-sidebar-block {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 22px;
}
.lp-sidebar-block__title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-text-strong);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lp-sidebar-block__title i { color: var(--lp-text-muted); font-size: 0.75rem; }
.lp-sidebar-search {
    position: relative;
}
.lp-sidebar-search input {
    width: 100%;
    padding: 9px 12px 9px 36px;
    font-size: 0.875rem;
    color: var(--lp-text-strong);
    background: var(--lp-bg-alt);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    outline: none;
    transition: border-color var(--lp-motion) var(--lp-ease), background var(--lp-motion) var(--lp-ease);
}
.lp-sidebar-search input:focus { border-color: var(--lp-primary); background: #fff; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }
.lp-sidebar-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lp-text-light);
    font-size: 0.8125rem;
}
.lp-cat-list, .lp-tag-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lp-cat-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    font-size: 0.875rem;
    color: var(--lp-text);
    border-radius: var(--lp-radius-sm);
    transition: background var(--lp-motion) var(--lp-ease), color var(--lp-motion) var(--lp-ease);
}
.lp-cat-list a:hover { background: var(--lp-bg-alt); color: var(--lp-text-strong); }
.lp-cat-list .lp-count {
    font-size: 0.75rem;
    color: var(--lp-text-light);
    background: var(--lp-bg-alt);
    padding: 2px 7px;
    border-radius: 999px;
    font-variant-numeric: tabular-nums;
}
.lp-tag-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
}
.lp-tag-list a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 0.75rem;
    color: var(--lp-text-muted);
    background: var(--lp-bg-alt);
    border-radius: 999px;
    transition: background var(--lp-motion) var(--lp-ease), color var(--lp-motion) var(--lp-ease);
}
.lp-tag-list a:hover { background: var(--lp-primary-soft); color: var(--lp-primary-hover); }

/* Pagination */
.lp-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 40px;
}
.lp-pagination a, .lp-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lp-text);
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    transition: background var(--lp-motion) var(--lp-ease), border-color var(--lp-motion) var(--lp-ease);
    font-variant-numeric: tabular-nums;
}
.lp-pagination a:hover {
    background: var(--lp-bg-alt);
    border-color: #cbd5e1;
}
.lp-pagination .current,
.lp-pagination span.current {
    background: var(--lp-primary);
    color: #fff;
    border-color: var(--lp-primary);
}

/* ==========================================================================
   POST: artigo individual
   ========================================================================== */
.lp-article-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 32px 0 80px;
}
@media (min-width: 980px) {
    .lp-article-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 56px;
    }
}

.lp-article {
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
}
.lp-article__hero {
    margin-bottom: 32px;
}
.lp-article__category {
    display: inline-block;
    color: var(--lp-primary-hover);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.lp-article__title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--lp-text-strong);
    margin: 0 0 20px;
}
.lp-article__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 20px;
    color: var(--lp-text-muted);
    font-size: 0.875rem;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--lp-border-soft);
}
.lp-article__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.lp-article__meta-item i { color: var(--lp-text-light); font-size: 0.8125rem; }
.lp-article__cover {
    width: 100%;
    border-radius: var(--lp-radius-lg);
    margin: 32px 0;
    box-shadow: var(--lp-shadow-md);
    overflow: hidden;
}
.lp-article__cover img { width: 100%; display: block; }

/* Long-form content (typography for body text) */
.lp-article__content {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--lp-text);
}
.lp-article__content > * + * { margin-top: 1.25em; }
.lp-article__content h2 {
    font-size: 1.625rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--lp-text-strong);
    margin-top: 2em !important;
    margin-bottom: 0.5em;
}
.lp-article__content h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.015em;
    font-weight: 600;
    color: var(--lp-text-strong);
    margin-top: 1.75em !important;
    margin-bottom: 0.4em;
}
.lp-article__content h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--lp-text-strong);
    margin-top: 1.5em !important;
}
.lp-article__content p { margin: 0; }
.lp-article__content a {
    color: var(--lp-primary-hover);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
.lp-article__content a:hover { color: var(--lp-primary); }
.lp-article__content ul,
.lp-article__content ol {
    padding-left: 1.5em;
}
.lp-article__content li + li { margin-top: 0.5em; }
.lp-article__content blockquote {
    margin: 1.5em 0;
    padding: 16px 20px;
    border-left: 3px solid var(--lp-primary);
    background: var(--lp-bg-alt);
    border-radius: 0 var(--lp-radius) var(--lp-radius) 0;
    font-style: italic;
    color: var(--lp-text);
}
.lp-article__content blockquote p:first-child { margin-top: 0; }
.lp-article__content code {
    background: var(--lp-bg-alt);
    border: 1px solid var(--lp-border-soft);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.875em;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.lp-article__content pre {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: var(--lp-radius);
    padding: 16px 20px;
    overflow-x: auto;
    font-size: 0.875rem;
    line-height: 1.55;
}
.lp-article__content pre code {
    background: transparent;
    border: none;
    padding: 0;
    color: inherit;
}
.lp-article__content img {
    border-radius: var(--lp-radius);
    margin: 1.5em 0;
}
.lp-article__content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    margin: 1.5em 0;
}
.lp-article__content th,
.lp-article__content td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--lp-border-soft);
    text-align: left;
}
.lp-article__content th {
    font-weight: 600;
    color: var(--lp-text-strong);
    background: var(--lp-bg-alt);
}

/* Article footer (share + tags) */
.lp-article__footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--lp-border-soft);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.lp-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.lp-share__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-text-muted);
    margin-right: 4px;
}
.lp-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--lp-bg-alt);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    color: var(--lp-text-muted);
    font-size: 0.875rem;
    transition: background var(--lp-motion) var(--lp-ease), color var(--lp-motion) var(--lp-ease), border-color var(--lp-motion) var(--lp-ease);
}
.lp-share__btn:hover { background: #fff; border-color: #cbd5e1; }
.lp-share__btn--facebook:hover { color: #1877f2; }
.lp-share__btn--twitter:hover { color: #1d9bf0; }
.lp-share__btn--whatsapp:hover { color: #25d366; }
.lp-share__btn--linkedin:hover { color: #0a66c2; }

.lp-article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}
.lp-article-tags__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-text-muted);
    margin-right: 6px;
}

/* Article sidebar */
.lp-article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lp-author-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 22px;
    text-align: center;
}
.lp-author-card__avatar {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--lp-primary), #4f46e5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}
.lp-author-card__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp-text-strong);
    margin: 0 0 8px;
}
.lp-author-card__bio {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--lp-text-muted);
    margin: 0;
}

.lp-cta-card {
    background: linear-gradient(180deg, var(--lp-primary), #4338ca);
    color: #fff;
    border-radius: var(--lp-radius-lg);
    padding: 24px 22px;
    text-align: center;
}
.lp-cta-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.015em;
    margin: 0 0 8px;
}
.lp-cta-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 16px;
    line-height: 1.5;
}
.lp-cta-card .lp-btn { width: 100%; }

.lp-related {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 22px;
}
.lp-related__title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-text-strong);
    margin: 0 0 16px;
}
.lp-related__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lp-related__list a {
    display: block;
    padding: 10px 0;
    border-top: 1px solid var(--lp-border-soft);
    transition: color var(--lp-motion) var(--lp-ease);
}
.lp-related__list li:first-child a { border-top: none; padding-top: 0; }
.lp-related__title-text {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lp-text-strong);
    line-height: 1.45;
    margin-bottom: 4px;
    transition: color var(--lp-motion) var(--lp-ease);
}
.lp-related__list a:hover .lp-related__title-text { color: var(--lp-primary-hover); }
.lp-related__date {
    font-size: 0.75rem;
    color: var(--lp-text-light);
}

/* ==========================================================================
   AUTH (login + register)
   ========================================================================== */
.lp-auth {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    background: var(--lp-bg);
}
@media (min-width: 980px) {
    .lp-auth { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

.lp-auth__form-side {
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
}
@media (min-width: 640px) { .lp-auth__form-side { padding: 40px 48px; } }

.lp-auth__brand-side {
    display: none;
    background: linear-gradient(135deg, #1e293b 0%, #0b1220 100%);
    color: #fff;
    padding: 64px 56px;
    position: relative;
    overflow: hidden;
}
.lp-auth__brand-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 50% at 30% 20%, rgba(37, 99, 235, 0.4), transparent 70%),
        radial-gradient(50% 50% at 80% 90%, rgba(99, 102, 241, 0.25), transparent 70%);
    pointer-events: none;
}
.lp-auth__brand-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    max-width: 480px;
}
.lp-auth__brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 32px;
}
.lp-auth__brand-logo img { height: 30px; }
.lp-auth__brand-headline {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0 0 16px;
}
.lp-auth__brand-sub {
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 32px;
}
.lp-auth__brand-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lp-auth__brand-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    line-height: 1.5;
}
.lp-auth__brand-features i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #34d399;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    margin-top: 2px;
}
.lp-auth__brand-foot {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 32px;
}
@media (min-width: 980px) { .lp-auth__brand-side { display: flex; } }

.lp-auth__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.lp-auth__top-back {
    font-size: 0.875rem;
    color: var(--lp-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--lp-motion) var(--lp-ease);
}
.lp-auth__top-back:hover { color: var(--lp-text-strong); }
.lp-auth__top-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--lp-text-strong);
}
.lp-auth__top-logo img { height: 28px; }

.lp-auth__form-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-auth__form {
    width: 100%;
    max-width: 400px;
}
.lp-auth__title {
    font-size: 1.625rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--lp-text-strong);
    margin: 0 0 8px;
}
.lp-auth__sub {
    font-size: 0.9375rem;
    color: var(--lp-text-muted);
    margin: 0 0 28px;
}
.lp-auth__sub a {
    color: var(--lp-primary-hover);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.lp-auth__sub a:hover { color: var(--lp-primary); }

/* Form fields (auth-style, premium) */
.lp-field {
    margin-bottom: 16px;
}
.lp-field__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--lp-text);
    margin-bottom: 6px;
}
.lp-field__input,
.lp-field input[type="text"],
.lp-field input[type="email"],
.lp-field input[type="tel"],
.lp-field input[type="password"] {
    display: block;
    width: 100%;
    padding: 10px 12px;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--lp-text-strong);
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    outline: none;
    transition: border-color var(--lp-motion) var(--lp-ease), box-shadow var(--lp-motion) var(--lp-ease);
}
.lp-field__input::placeholder,
.lp-field input::placeholder {
    color: var(--lp-text-light);
}
.lp-field__input:focus,
.lp-field input:focus {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.lp-field__input.is-invalid,
.lp-field input.is-invalid {
    border-color: var(--lp-danger);
}
.lp-field__input.is-invalid:focus,
.lp-field input.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}
.lp-field__input.is-valid,
.lp-field input.is-valid {
    border-color: var(--lp-success);
}
.lp-field__hint {
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--lp-text-muted);
}
.lp-field__error {
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--lp-danger);
}

.lp-field-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 480px) { .lp-field-row { grid-template-columns: 1fr 1fr; } }

/* Auth alert */
.lp-auth__alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--lp-radius);
    font-size: 0.875rem;
    margin-bottom: 20px;
    border: 1px solid;
}
.lp-auth__alert--error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}
.lp-auth__alert--success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
}
.lp-auth__alert i { flex-shrink: 0; margin-top: 2px; font-size: 0.875rem; }

.lp-auth__submit {
    width: 100%;
    margin-top: 8px;
}

.lp-auth__divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: var(--lp-text-light);
    font-size: 0.75rem;
}
.lp-auth__divider::before,
.lp-auth__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--lp-border);
}

.lp-auth__foot {
    text-align: center;
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--lp-text-muted);
}
.lp-auth__foot a {
    color: var(--lp-primary-hover);
    font-weight: 500;
    text-decoration: none;
}
.lp-auth__foot a:hover { text-decoration: underline; }

/* Register: 2-step progress */
.lp-steps-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}
.lp-steps-progress__step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lp-steps-progress__num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--lp-bg-alt);
    color: var(--lp-text-light);
    border: 1px solid var(--lp-border);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all var(--lp-motion) var(--lp-ease);
}
.lp-steps-progress__step.is-active .lp-steps-progress__num {
    background: var(--lp-primary);
    color: #fff;
    border-color: var(--lp-primary);
}
.lp-steps-progress__step.is-completed .lp-steps-progress__num {
    background: var(--lp-success);
    color: #fff;
    border-color: var(--lp-success);
}
.lp-steps-progress__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--lp-text-light);
    transition: color var(--lp-motion) var(--lp-ease);
}
.lp-steps-progress__step.is-active .lp-steps-progress__label,
.lp-steps-progress__step.is-completed .lp-steps-progress__label {
    color: var(--lp-text-strong);
}
.lp-steps-progress__bar {
    flex-shrink: 0;
    width: 32px;
    height: 1px;
    background: var(--lp-border);
}

.lp-form-step { display: none; }
.lp-form-step.is-active { display: block; }

.lp-form-actions {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}
.lp-form-actions .lp-btn { flex: 1; }
.lp-form-actions--single .lp-btn { width: 100%; flex: none; }

.lp-benefits-box {
    margin-top: 24px;
    padding: 16px;
    background: var(--lp-primary-soft);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--lp-radius);
}
.lp-benefits-box strong {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-primary-hover);
    margin-bottom: 8px;
}
.lp-benefits-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.8125rem;
    color: var(--lp-text);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lp-benefits-box ul li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.lp-benefits-box ul li::before {
    content: '✓';
    color: var(--lp-success);
    font-weight: 700;
}

/* ==========================================================================
   HERO — microcopy + social proof
   ========================================================================== */
.lp-hero__microcopy {
    font-size: 0.8125rem;
    color: var(--lp-text-muted);
    margin: -8px 0 16px;
}
.lp-hero__socialproof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--lp-border-soft);
    font-size: 0.875rem;
    color: var(--lp-text-muted);
    max-width: 480px;
}
.lp-hero__socialproof strong { color: var(--lp-text-strong); font-weight: 600; }
.lp-hero__avatars { display: inline-flex; flex-shrink: 0; }
.lp-hero__avatars span {
    width: 32px;
    height: 32px;
    margin-left: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-primary), #4f46e5);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}
.lp-hero__avatars span:first-child { margin-left: 0; }
.lp-hero__avatars span:last-child { background: var(--lp-bg-alt); color: var(--lp-text-muted); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.lp-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 1080px;
    margin: 0 auto;
}
.lp-testimonial {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 28px 26px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lp-testimonial__stars { display: flex; gap: 3px; color: #f59e0b; font-size: 0.8125rem; }
.lp-testimonial blockquote {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--lp-text);
}
.lp-testimonial figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 4px;
}
.lp-testimonial__avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-primary), #4f46e5);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lp-testimonial figcaption strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--lp-text-strong);
    font-weight: 600;
}
.lp-testimonial figcaption small {
    display: block;
    font-size: 0.8125rem;
    color: var(--lp-text-muted);
    margin-top: 2px;
}

/* ==========================================================================
   MOBILE STICKY CTA
   ========================================================================== */
.lp-mobile-cta { display: none; }
@media (max-width: 768px) {
    .lp-mobile-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 60;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: saturate(180%) blur(12px);
        -webkit-backdrop-filter: saturate(180%) blur(12px);
        border-top: 1px solid var(--lp-border);
        box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.08);
        transform: translateY(110%);
        transition: transform var(--lp-motion) var(--lp-ease);
    }
    .lp-mobile-cta.is-visible { transform: translateY(0); }
    .lp-mobile-cta__text { display: flex; flex-direction: column; line-height: 1.25; }
    .lp-mobile-cta__text strong { font-size: 0.9375rem; color: var(--lp-text-strong); }
    .lp-mobile-cta__text small { font-size: 0.75rem; color: var(--lp-text-muted); }
    .lp-mobile-cta .lp-btn { flex-shrink: 0; padding: 0.625rem 1.25rem; }
    body.has-mobile-cta { padding-bottom: 76px; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 640px) {
    .lp-hero { padding: 56px 0 48px; }
    .lp-section { padding: 56px 0; }
    .lp-section__head { margin-bottom: 40px; }
    .lp-cta-final { padding: 64px 0; }
    .lp-hero__ctas { flex-direction: column; align-items: stretch; }
    .lp-hero__ctas .lp-btn { width: 100%; }
    .lp-hero__socialproof { margin-top: 20px; }
}
