/* =============================================================================
   AgentRank Landing — Premium SaaS B2B (v3)
   ============================================================================= */

.lp {
    --lp-navy-950: #050b14;
    --lp-navy-900: #07111f;
    --lp-navy-850: #0b1628;
    --lp-navy-800: #111c31;
    --lp-cyan-500: #25bfd3;
    --lp-cyan-400: #38d6e8;
    --lp-blue-600: #2563eb;
    --lp-blue-700: #1d4ed8;
    --lp-bg: #f4f7fb;
    --lp-surface: #ffffff;
    --lp-border: #e2e8f0;
    --lp-text: #0f172a;
    --lp-muted: #64748b;
    --lp-radius: 16px;
    --lp-radius-sm: 8px;
    --lp-radius-md: 12px;
    --lp-radius-lg: 24px;
    --lp-header-h: 72px;
    --lp-shadow: 0 24px 64px rgba(5, 11, 20, 0.35);
    --lp-shadow-soft: 0 16px 48px rgba(15, 23, 42, 0.08);
    --lp-glass: rgba(255, 255, 255, 0.06);
    --lp-glass-border: rgba(255, 255, 255, 0.1);
    font-family: var(--ar-font-sans, "Inter", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
    color: var(--lp-text);
    background: var(--lp-navy-950);
    overflow-x: hidden;
}

.ar-body-landing {
    background: var(--lp-navy-950);
    margin: 0;
    min-height: 100vh;
}

.ar-body-landing > main {
    margin: 0;
    padding: 0;
    max-width: none;
    width: 100%;
}

.lp-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
.lp-h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 1rem;
    color: var(--lp-text);
}

.lp-h2--light { color: #f8fafc; }

.lp-lead {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--lp-muted);
    margin: 0;
    max-width: 640px;
}

.lp-lead--light { color: rgba(248, 250, 252, 0.72); }

.lp-eyebrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.65rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lp-cyan-400);
    margin: 0 0 1rem;
}

.lp-eyebrow--soft {
    color: var(--lp-blue-600);
    justify-content: center;
}

.lp-text-gradient {
    background: linear-gradient(135deg, var(--lp-cyan-400), var(--lp-blue-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lp-section-head { margin-bottom: 3rem; }
.lp-section-head--center { text-align: center; }
.lp-section-head--center .lp-lead { margin-left: auto; margin-right: auto; }

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    box-sizing: border-box;
    max-width: 100%;
}

.lp-btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.lp-btn--lg { padding: 0.9rem 1.75rem; font-size: 1rem; }
.lp-btn--block { width: 100%; }

.lp-btn--primary {
    background: linear-gradient(135deg, var(--lp-cyan-500), var(--lp-blue-600));
    color: #fff;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.35);
}

.lp-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 191, 211, 0.4);
    color: #fff;
}

.lp-btn--ghost {
    background: transparent;
    color: rgba(248, 250, 252, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

.lp-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.lp-btn--glass {
    background: rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.lp-btn--glass:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Secundário em fundo escuro — borda visível (mobile + hero) */
.lp-btn--outline-light {
    background: rgba(255, 255, 255, 0.06);
    color: #f8fafc;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    box-shadow: none;
}

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

.lp-btn--outline {
    background: var(--lp-surface);
    color: var(--lp-blue-600);
    border-color: var(--lp-border);
    box-shadow: var(--lp-shadow-soft);
}

.lp-btn--outline:hover {
    border-color: rgba(37, 99, 235, 0.35);
    color: var(--lp-blue-700);
    transform: translateY(-1px);
}

/* Utilities (sem Bootstrap na landing) */
.lp-w-full { width: 100%; box-sizing: border-box; }
.lp-text-center { text-align: center; }
.lp-mt-4 { margin-top: 1.5rem; }

/* Header */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lp-header.is-scrolled {
    background: rgba(5, 11, 20, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.lp-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lp-header__brand img { height: 40px; width: auto; }

.lp-header__nav {
    display: flex;
    gap: 1.75rem;
    margin: 0 auto;
}

.lp-header__nav a {
    color: rgba(248, 250, 252, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.15s;
}

.lp-header__nav a:hover { color: var(--lp-cyan-400); }

.lp-header__actions {
    display: flex;
    gap: 0.625rem;
    align-items: center;
}

.lp-header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    margin-left: auto;
}

.lp-header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #f8fafc;
    transition: transform 0.2s;
}

.lp-header__mobile {
    display: none;
    padding: 1rem 1.5rem 1.5rem;
    background: rgba(5, 11, 20, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-header__mobile:not([hidden]) { display: block; }

.lp-header__mobile a {
    display: block;
    padding: 0.75rem 0;
    color: rgba(248, 250, 252, 0.85);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-header__mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Hero */
.lp-hero {
    position: relative;
    padding: calc(var(--lp-header-h) + 2.5rem) 0 4rem;
    min-height: min(92vh, 920px);
    display: flex;
    align-items: center;
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.lp-hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(37, 191, 211, 0.18), transparent 55%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(37, 99, 235, 0.15), transparent 50%),
        linear-gradient(180deg, var(--lp-navy-950) 0%, var(--lp-navy-900) 50%, var(--lp-navy-850) 100%);
}

.lp-hero__grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.lp-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
    align-items: center;
}

.lp-hero__title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: #f8fafc;
    margin: 0 0 1.25rem;
    max-width: 36rem;
    text-wrap: balance;
}

.lp-hero__subtitle {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(248, 250, 252, 0.72);
    margin: 0 0 2rem;
    max-width: 38rem;
    text-wrap: pretty;
}

.lp-hero__cta-primary-label--short {
    display: none;
}

.lp-hero__cta {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
    width: 100%;
    max-width: 100%;
}

.lp-hero__free-pill {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ecfdf5;
    background: rgba(34, 197, 94, 0.22);
    border: 1px solid rgba(74, 222, 128, 0.45);
    border-radius: 999px;
    vertical-align: middle;
    white-space: nowrap;
}

.lp-hero__cta-primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    text-align: center;
    line-height: 1.25;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
}

.lp-hero__cta-primary-label {
    font-size: inherit;
    font-weight: inherit;
    white-space: normal;
    line-height: 1.2;
}

.lp-hero__cta-primary-badge {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.92;
    letter-spacing: 0.01em;
    white-space: normal;
    line-height: 1.3;
    max-width: 100%;
}

.lp-hero__cta-primary--sm {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}

.lp-hero__cta-primary--sm .lp-hero__cta-primary-badge {
    font-size: 0.65rem;
}

.lp-hero__micro {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgba(248, 250, 252, 0.45);
    margin: 0;
    max-width: 34rem;
}

.lp-hero__visual {
    position: relative;
    min-height: 420px;
    padding: 0.5rem 0;
}

.lp-hero__visual .lp-dash {
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transform-origin: center right;
}

@media (max-width: 1100px) {
    .lp-hero__visual .lp-dash {
        transform: none;
    }
}

/* Dashboard mockup */
.lp-dash {
    position: relative;
    width: 100%;
}

.lp-dash-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(37, 191, 211, 0.2), transparent 65%);
    pointer-events: none;
}

.lp-dash-frame {
    position: relative;
    background: linear-gradient(145deg, rgba(17, 28, 49, 0.95), rgba(11, 22, 40, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow);
    overflow: hidden;
}

.lp-dash--product .lp-dash-frame {
    box-shadow: var(--lp-shadow-soft);
    border-color: var(--lp-border);
    background: var(--lp-surface);
}

.lp-dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}

.lp-dash--product .lp-dash-top {
    background: var(--lp-bg);
    border-color: var(--lp-border);
}

.lp-dash-dots { display: flex; gap: 6px; }
.lp-dash-dots span {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.lp-dash--product .lp-dash-dots span { background: #cbd5e1; }

.lp-dash-url {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

.lp-dash--product .lp-dash-url { color: var(--lp-muted); }

.lp-dash-layout {
    display: grid;
    grid-template-columns: 56px 1fr;
    min-height: 280px;
}

.lp-dash-sidebar {
    padding: 1rem 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lp-dash--product .lp-dash-sidebar { border-color: var(--lp-border); }

.lp-dash-nav-item {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 0.5rem;
}

.lp-dash-nav-item.is-active {
    background: linear-gradient(90deg, var(--lp-cyan-500), var(--lp-blue-600));
}

.lp-dash-main { padding: 1rem; }

.lp-dash-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lp-dash-kpi {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
}

.lp-dash--product .lp-dash-kpi {
    background: var(--lp-bg);
    border-color: var(--lp-border);
}

.lp-dash-kpi--primary {
    border-color: rgba(37, 191, 211, 0.35);
    background: rgba(37, 191, 211, 0.08);
}

.lp-dash-kpi-ring-wrap {
    position: relative;
    width: 52px;
    height: 52px;
    margin-top: 0.15rem;
}

.lp-dash-kpi-ring {
    width: 52px;
    height: 52px;
    display: block;
}

.lp-dash-kpi-ring-wrap .lp-dash-kpi-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.lp-dash-kpi-trend {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 999px;
}

.lp-dash-kpi-trend--up {
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.15);
}

.lp-dash--product .lp-dash-kpi-trend--up {
    color: #15803d;
    background: #ecfdf5;
}

.lp-dash-kpi-label {
    display: block;
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.25rem;
}

.lp-dash--product .lp-dash-kpi-label { color: var(--lp-muted); }

.lp-dash-kpi-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--lp-cyan-400);
    line-height: 1;
}

.lp-dash-kpi-value--text {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.lp-dash-kpi-bar {
    display: block;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 0.5rem;
}

.lp-dash-kpi-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--lp-cyan-500), var(--lp-blue-600));
    border-radius: 2px;
}

.lp-dash-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 0.75rem 0.85rem 0.65rem;
    margin-bottom: 0.75rem;
}

.lp-dash--product .lp-dash-chart {
    background: var(--lp-bg);
    border-color: var(--lp-border);
}

.lp-dash-chart__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-dash--product .lp-dash-chart__head {
    color: var(--lp-muted);
}

.lp-dash-chart__legend {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
}

.lp-dash-chart__legend i {
    width: 10px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--lp-cyan-400), var(--lp-blue-600));
}

.lp-dash-chart-svg {
    display: block;
    width: 100%;
    height: 88px;
}

.lp-dash-chart__axis {
    display: flex;
    justify-content: space-between;
    margin-top: 0.35rem;
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.35);
}

.lp-dash--product .lp-dash-chart__axis {
    color: var(--lp-muted);
}

.lp-dash-issues {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.lp-dash-issue {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.55rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.6875rem;
}

.lp-dash--product .lp-dash-issue {
    background: var(--lp-bg);
    border-color: var(--lp-border);
}

.lp-dash-issue__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.lp-dash-issue--crit .lp-dash-issue__dot { background: #f87171; }
.lp-dash-issue--warn .lp-dash-issue__dot { background: #fb923c; }

.lp-dash-issue__text {
    color: rgba(248, 250, 252, 0.75);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-dash--product .lp-dash-issue__text {
    color: var(--lp-text);
}

.lp-dash-issue__badge {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(248, 250, 252, 0.45);
    padding: 0.15rem 0.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-dash-issue--crit .lp-dash-issue__badge {
    color: #fecaca;
    border-color: rgba(248, 113, 113, 0.35);
    background: rgba(239, 68, 68, 0.12);
}

.lp-dash-issue--warn .lp-dash-issue__badge {
    color: #fed7aa;
    border-color: rgba(251, 146, 60, 0.35);
    background: rgba(249, 115, 22, 0.12);
}

.lp-dash--product .lp-dash-issue--crit .lp-dash-issue__badge {
    color: #b91c1c;
    background: #fef2f2;
    border-color: rgba(239, 68, 68, 0.25);
}

.lp-dash--product .lp-dash-issue--warn .lp-dash-issue__badge {
    color: #c2410c;
    background: #fff7ed;
    border-color: rgba(249, 115, 22, 0.25);
}

/* Floating cards */
.lp-float-card {
    position: absolute;
    background: rgba(17, 28, 49, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.65rem 0.9rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    animation: lp-float 6s ease-in-out infinite;
}

.lp-float-label {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.15rem;
}

.lp-float-card strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lp-cyan-400);
}

.lp-float-pill {
    font-size: 0.75rem;
    font-weight: 600;
    color: #f8fafc;
    background: rgba(37, 191, 211, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.lp-float-card--score { top: 8%; left: -4%; animation-delay: 0s; }
.lp-float-card--citation { top: 35%; right: -6%; animation-delay: 1s; }
.lp-float-card--llms { bottom: 28%; left: -8%; animation-delay: 2s; }
.lp-float-card--gaps { bottom: 8%; right: 4%; animation-delay: 0.5s; }

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

/* Context bar */
.lp-context {
    background: var(--lp-navy-850);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.25rem 0;
}

.lp-context__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 960px;
    margin: 0 auto;
}

.lp-context__pill {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(248, 250, 252, 0.9);
    padding: 0.65rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(37, 191, 211, 0.4);
    background: rgba(37, 191, 211, 0.08);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

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

.lp-section--light {
    background: var(--lp-bg);
    background-image: linear-gradient(180deg, #f8fafc 0%, var(--lp-bg) 100%);
}

.lp-section--soft {
    background: #eef2f8;
    background-image: linear-gradient(180deg, #f1f5f9 0%, #eef2f8 100%);
}
.lp-section--dark {
    background: linear-gradient(180deg, var(--lp-navy-900), var(--lp-navy-950));
}

/* Editorial split */
.lp-split-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lp-list-check {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.lp-list-check li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--lp-text);
}

.lp-list-check li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-cyan-500), var(--lp-blue-600));
}

.lp-list-check--light li { color: rgba(248, 250, 252, 0.85); }

/* Why section — split + agentic flow panel */
.lp-why-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3.5rem;
    align-items: stretch;
}

.lp-why-split__copy {
    padding-right: 0.5rem;
}

.lp-why-panel {
    position: relative;
    background: linear-gradient(165deg, var(--lp-navy-900) 0%, var(--lp-navy-850) 55%, #0d1a30 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--lp-radius-lg);
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: var(--lp-shadow), 0 0 0 1px rgba(37, 191, 211, 0.06);
    overflow: hidden;
}

.lp-why-panel__glow {
    position: absolute;
    top: -40%;
    right: -25%;
    width: 70%;
    height: 80%;
    background: radial-gradient(circle, rgba(37, 191, 211, 0.14), transparent 68%);
    pointer-events: none;
}

.lp-why-panel__head {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-why-panel__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-cyan-400);
    background: rgba(37, 191, 211, 0.12);
    border: 1px solid rgba(37, 191, 211, 0.35);
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    margin-bottom: 0.85rem;
}

.lp-why-panel__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
    line-height: 1.25;
}

.lp-why-panel__subtitle {
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(248, 250, 252, 0.62);
    margin: 0;
}

.lp-why-flow {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.lp-why-flow__item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 0.85rem;
    align-items: start;
}

.lp-why-flow__track {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
}

.lp-why-flow__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-cyan-500), var(--lp-blue-600));
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(37, 191, 211, 0.35);
}

.lp-why-flow__line {
    flex: 1;
    width: 2px;
    min-height: 12px;
    margin-top: 0.35rem;
    background: linear-gradient(180deg, rgba(37, 191, 211, 0.65), rgba(37, 99, 235, 0.25));
    border-radius: 2px;
}

.lp-why-flow__card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    transition: border-color 0.2s, background 0.2s;
}

.lp-why-flow__item:hover .lp-why-flow__card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(37, 191, 211, 0.28);
}

.lp-why-flow__card-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.45rem;
}

.lp-why-flow__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(37, 191, 211, 0.12);
    border: 1px solid rgba(37, 191, 211, 0.25);
    color: var(--lp-cyan-400);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-why-flow__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.65rem;
}

.lp-why-flow__meta strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #f8fafc;
}

.lp-why-flow__tag {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(248, 250, 252, 0.45);
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.lp-why-flow__card p {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgba(248, 250, 252, 0.62);
    margin: 0;
}

.lp-why-panel__foot {
    position: relative;
    margin-top: 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: rgba(37, 191, 211, 0.08);
    border: 1px solid rgba(37, 191, 211, 0.22);
}

.lp-why-panel__stat {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--lp-cyan-400);
    margin-bottom: 0.35rem;
}

.lp-why-panel__foot p {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgba(248, 250, 252, 0.75);
    margin: 0;
}

/* Findings grid */
.lp-findings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.lp-finding-card {
    position: relative;
    background: var(--lp-glass);
    border: 1px solid var(--lp-glass-border);
    border-radius: var(--lp-radius);
    padding: 1.75rem;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.lp-finding-card:hover {
    border-color: rgba(37, 191, 211, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
}

.lp-finding-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37, 191, 211, 0.12);
    color: var(--lp-cyan-400);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.lp-finding-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #f8fafc;
    margin: 0 0 0.5rem;
}

.lp-finding-card__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(248, 250, 252, 0.65);
    margin: 0;
}

.lp-finding-card__line {
    position: absolute;
    bottom: 0;
    left: 1.75rem;
    right: 1.75rem;
    height: 2px;
    background: linear-gradient(90deg, var(--lp-cyan-500), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}

.lp-finding-card:hover .lp-finding-card__line { opacity: 1; }

/* Timeline */
.lp-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.lp-timeline__step {
    position: relative;
    padding: 0 1rem;
}

.lp-timeline__num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-cyan-500), var(--lp-blue-600));
    color: #fff;
    font-weight: 800;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.lp-timeline__body h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.lp-timeline__body p {
    font-size: 0.9rem;
    color: var(--lp-muted);
    line-height: 1.55;
    margin: 0;
}

.lp-timeline__connector {
    position: absolute;
    top: 24px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--lp-cyan-500), var(--lp-border));
    z-index: 0;
}

/* Product section */
.lp-product {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.lp-product__visual {
    position: relative;
}

.lp-product-cards {
    position: absolute;
    right: -1rem;
    top: 10%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lp-product-mini {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--lp-shadow-soft);
    white-space: nowrap;
}

.lp-product-mini--crit {
    border-color: rgba(239, 68, 68, 0.4);
    color: #b91c1c;
    background: #fef2f2;
}

.lp-product-mini--win {
    border-color: rgba(34, 197, 94, 0.4);
    color: #15803d;
    background: #f0fdf4;
}

/* Tabs */
.lp-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.lp-tabs__btn {
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(248, 250, 252, 0.75);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.lp-tabs__btn:hover {
    border-color: rgba(37, 191, 211, 0.4);
    color: #fff;
}

.lp-tabs__btn.is-active {
    background: linear-gradient(135deg, var(--lp-cyan-500), var(--lp-blue-600));
    border-color: transparent;
    color: #fff;
}

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

.lp-tabs__panel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--lp-glass);
    border: 1px solid var(--lp-glass-border);
    border-radius: var(--lp-radius-lg);
    padding: 2.5rem;
}

.lp-tabs__content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f8fafc;
    margin: 0 0 0.75rem;
}

.lp-tabs__content p {
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.65;
    margin: 0 0 1rem;
}

.lp-tabs__preview {
    min-height: 280px;
    display: flex;
    align-items: stretch;
}

.lp-tabs__preview-card {
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--lp-radius);
    padding: 1.5rem;
    height: 100%;
    min-height: 200px;
}

.lp-tabs__preview-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--lp-cyan-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-tabs__preview-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.lp-tabs__preview-bars span {
    display: block;
    height: 8px;
    width: var(--w, 50%);
    background: linear-gradient(90deg, var(--lp-cyan-500), var(--lp-blue-600));
    border-radius: 4px;
}

/* Audience */
.lp-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.lp-audience-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 2rem 1.5rem;
    transition: transform 0.25s, box-shadow 0.25s;
}

.lp-audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-soft);
}

.lp-audience-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37, 191, 211, 0.18), rgba(37, 99, 235, 0.12));
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-cyan-500);
    border: 1px solid rgba(37, 191, 211, 0.2);
}

.lp-audience-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.lp-audience-card p {
    font-size: 0.9rem;
    color: var(--lp-muted);
    line-height: 1.55;
    margin: 0;
}

/* Compare v2 */
.lp-compare-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.lp-compare-v2__card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 2rem;
}

.lp-compare-v2__card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 1.25rem;
}

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

.lp-compare-v2__card li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--lp-muted);
    border-bottom: 1px solid var(--lp-border);
}

.lp-compare-v2__card li:last-child { border-bottom: none; }

.lp-compare-v2__card--highlight {
    border: 2px solid rgba(37, 191, 211, 0.5);
    box-shadow: 0 0 48px rgba(37, 191, 211, 0.12), var(--lp-shadow-soft);
    position: relative;
}

.lp-compare-v2__badge {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    background: linear-gradient(135deg, var(--lp-cyan-500), var(--lp-blue-600));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.lp-compare-v2__card--highlight li { color: var(--lp-text); font-weight: 500; }

/* Pricing v2 */
.lp-pricing-v2 {
    background: linear-gradient(180deg, var(--lp-navy-950), var(--lp-navy-900));
    padding: 5rem 0;
}

.lp-pricing-v2__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.lp-price-v2 {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--lp-radius-lg);
    padding: 1.75rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.lp-price-v2:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.16);
}

.lp-price-v2.is-featured {
    background: linear-gradient(165deg, rgba(37, 191, 211, 0.14), rgba(37, 99, 235, 0.1));
    border: 2px solid rgba(37, 191, 211, 0.5);
    box-shadow: 0 24px 64px rgba(37, 191, 211, 0.18);
    padding-top: 2rem;
}

.lp-price-v2__badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--lp-cyan-500), var(--lp-blue-600));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
}

.lp-price-v2__head h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #f8fafc;
    margin: 0 0 0.35rem;
}

.lp-price-v2__desc {
    font-size: 0.8125rem;
    color: rgba(248, 250, 252, 0.58);
    margin: 0 0 1rem;
    line-height: 1.5;
    min-height: 2.5rem;
}

.lp-price-v2__amount {
    padding: 0.85rem 0 1rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-price-v2.is-featured .lp-price-v2__amount {
    border-bottom-color: rgba(37, 191, 211, 0.2);
}

.lp-price-v2__value {
    font-size: 2.125rem;
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.lp-price-v2__period {
    font-size: 0.875rem;
    color: rgba(248, 250, 252, 0.5);
}

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

.lp-price-v2__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.875rem;
    color: rgba(248, 250, 252, 0.85);
    padding: 0.45rem 0;
    line-height: 1.45;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-price-v2__features li:last-child {
    border-bottom: none;
}

.lp-price-v2__features svg {
    flex-shrink: 0;
    color: var(--lp-cyan-400);
    margin-top: 2px;
}

.lp-price-v2__cta {
    margin-top: auto;
    padding-top: 1rem;
    flex-shrink: 0;
}

.lp-price-v2__cta .lp-btn {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

/* Botões secundários na seção de planos (fundo escuro) */
.lp-btn--pricing-outline {
    background: rgba(255, 255, 255, 0.06);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(6px);
}

.lp-btn--pricing-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(37, 191, 211, 0.55);
    color: #fff;
    transform: translateY(-1px);
}

.lp-pricing-v2 .lp-btn--primary {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 6px 20px rgba(37, 99, 235, 0.35);
    font-weight: 700;
}

.lp-pricing-v2 .lp-btn--primary:hover {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 8px 24px rgba(37, 191, 211, 0.4);
}

/* FAQ */
.lp-faq-v2 { max-width: 720px; margin: 0 auto; }

.lp-accordion__item {
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    margin-bottom: 0.625rem;
    background: var(--lp-surface);
    overflow: hidden;
}

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

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

.lp-accordion__icon {
    flex-shrink: 0;
    transition: transform 0.25s;
    color: var(--lp-muted);
}

.lp-accordion__item[open] .lp-accordion__icon { transform: rotate(180deg); }

.lp-accordion__body {
    padding: 0 1.25rem 1.25rem;
}

.lp-accordion__body p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--lp-muted);
    margin: 0;
}

/* CTA Final */
.lp-cta-final {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.lp-cta-final__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 30% 100%, rgba(37, 191, 211, 0.18), transparent),
        linear-gradient(180deg, var(--lp-navy-900), var(--lp-navy-950));
}

.lp-cta-final__grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: center;
}

.lp-cta-final__visual {
    display: flex;
    justify-content: center;
}

.lp-cta-final__card {
    width: 100%;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--lp-radius-lg);
    padding: 1.75rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 48px rgba(37, 191, 211, 0.08);
}

.lp-cta-final__card-head {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.lp-cta-final__card-score {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--lp-cyan-400);
    line-height: 1;
    letter-spacing: -0.03em;
}

.lp-cta-final__card-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(248, 250, 252, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lp-cta-final__card-bars {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.lp-cta-final__card-bars span {
    display: block;
    height: 8px;
    width: var(--w, 50%);
    background: linear-gradient(90deg, var(--lp-cyan-500), var(--lp-blue-600));
    border-radius: 4px;
}

.lp-cta-final__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.lp-cta-final__card-tags span {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(248, 250, 252, 0.75);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(37, 191, 211, 0.35);
    background: rgba(37, 191, 211, 0.08);
}

.lp-cta-final__copy {
    text-align: left;
}

.lp-cta-final__title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
    max-width: none;
}

.lp-cta-final__text {
    font-size: 1.0625rem;
    color: rgba(248, 250, 252, 0.7);
    max-width: 520px;
    margin: 0 0 2rem;
    line-height: 1.65;
}

.lp-cta-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
}

/* Footer */
.lp-footer {
    background: var(--lp-navy-950);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4rem 0 0;
}

.lp-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.lp-footer__tagline {
    font-size: 1rem;
    font-weight: 600;
    color: #f8fafc;
    margin: 1rem 0 0.25rem;
}

.lp-footer__sub {
    font-size: 0.875rem;
    color: rgba(248, 250, 252, 0.5);
    margin: 0;
}

.lp-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: flex-start;
}

.lp-footer__nav a {
    color: rgba(248, 250, 252, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s;
}

.lp-footer__nav a:hover { color: var(--lp-cyan-400); }

.lp-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.25rem 0;
}

.lp-footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(248, 250, 252, 0.4);
    margin: 0;
    text-align: center;
}

/* Checkout pages (preserved) */
.checkout-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--lp-bg);
}

.checkout-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow-soft);
}

.checkout-icon {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem; font-size: 1.5rem; font-weight: 700;
}

.checkout-icon--success { background: #ecfdf5; color: #059669; }
.checkout-icon--warn { background: #fff7ed; color: #ea580c; }
.checkout-title { font-size: 1.35rem; font-weight: 800; margin: 0 0 0.75rem; }
.checkout-text { color: var(--lp-muted); margin: 0 0 1.5rem; line-height: 1.6; }
.checkout-hint { font-size: 0.9rem; color: var(--lp-muted); margin-bottom: 1rem; }
.checkout-actions { display: flex; flex-direction: column; gap: 0.5rem; }

/* Legal pages */
.lp-legal__main {
    padding: 3rem 0 0;
    background: var(--lp-bg);
}

.lp-legal__wrap {
    max-width: 760px;
}

.lp-legal__header {
    margin-bottom: 2.5rem;
}

.lp-legal__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-muted);
    margin: 0 0 0.75rem;
}

.lp-legal__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--lp-text);
    letter-spacing: -0.03em;
    margin: 0;
    line-height: 1.15;
}

.lp-legal__intro {
    font-size: 1.0625rem;
    color: var(--lp-muted);
    margin: 1rem 0 0;
    line-height: 1.65;
}

.lp-legal__section {
    margin-bottom: 2rem;
}

.lp-legal__section h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lp-text);
    margin: 0 0 0.75rem;
}

.lp-legal__section p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--lp-muted);
    margin: 0 0 0.75rem;
}

.lp-legal__form-block {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-soft);
}

.lp-legal__form-block h2 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.lp-legal__form-lead {
    font-size: 0.9375rem;
    color: var(--lp-muted);
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

.lp-legal__form {
    display: grid;
    gap: 1rem;
}

.lp-legal__field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-text);
    margin-bottom: 0.35rem;
}

.lp-legal__input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    font-size: 0.9375rem;
    background: #fff;
    color: var(--lp-text);
}

.lp-legal__textarea {
    resize: vertical;
    min-height: 120px;
}

.lp-legal__alert {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.lp-legal__alert--success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.lp-legal__related {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--lp-border);
}

.lp-legal__related a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--lp-blue-600);
    text-decoration: none;
}

.lp-legal__related a:hover { color: var(--lp-cyan-500); }

/* Responsive */
@media (max-width: 1100px) {
    .lp-hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .lp-hero__title { max-width: none; }
    .lp-hero__visual { min-height: 360px; }
    .lp-float-card--score { left: 0; }
    .lp-float-card--citation { right: 0; }
    .lp-findings-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .lp-timeline__connector { display: none; }
    .lp-product { grid-template-columns: 1fr; }
    .lp-product-cards { position: static; flex-direction: row; flex-wrap: wrap; margin-top: 1rem; }
    .lp-tabs__panel-inner { grid-template-columns: 1fr; }
    .lp-audience-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-pricing-v2__grid { grid-template-columns: repeat(2, 1fr); }
    .lp-price-v2.is-featured { transform: none; }
    .lp-split-editorial { grid-template-columns: 1fr; gap: 2rem; }
    .lp-why-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .lp-dash-kpis { grid-template-columns: repeat(2, 1fr); }
    .lp-cta-final__grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .lp-header__nav,
    .lp-header__actions { display: none; }
    .lp-header__toggle { display: flex; }
    .lp-hero { padding-top: 5.5rem; min-height: auto; }
    .lp-hero__cta .lp-btn {
        flex: none;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        white-space: normal;
    }
    .lp-hero__cta-primary-label--long { display: none; }
    .lp-hero__cta-primary-label--short { display: block; }
    .lp-cta-final__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .lp-cta-final__actions .lp-btn {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }
    .lp-header__mobile-cta .lp-hero__cta-primary {
        width: 100%;
    }
    .lp-findings-grid { grid-template-columns: 1fr; }
    .lp-timeline { grid-template-columns: 1fr; }
    .lp-compare-v2 { grid-template-columns: 1fr; }
    .lp-pricing-v2__grid { grid-template-columns: 1fr; }
    .lp-audience-grid { grid-template-columns: 1fr; }
    .lp-context__inner { grid-template-columns: 1fr 1fr; }
    .lp-cta-final__visual { order: 2; }
    .lp-cta-final__copy { order: 1; }
    .lp-tabs__nav { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; }
    .lp-footer__grid { grid-template-columns: 1fr; }
    .lp-float-card { display: none; }
}

/* Battlecard matrix — comparativo performance vs AI Readiness */
.lp-bc-panel {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lp-shadow-soft);
}

.lp-bc-panel__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--lp-border);
}

.lp-bc-legend-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    color: var(--lp-muted);
    font-weight: 500;
}

.lp-bc-matrix-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--lp-surface);
}

.lp-bc-matrix {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.lp-bc-matrix__caption {
    caption-side: top;
    text-align: left;
    font-weight: 600;
    padding: 0 0 0.75rem;
    color: var(--lp-text);
}

.lp-bc-matrix th,
.lp-bc-matrix td {
    padding: 0.7rem 0.85rem;
    border-bottom: 1px solid var(--lp-border);
    text-align: center;
    vertical-align: middle;
}

.lp-bc-matrix thead th {
    background: var(--lp-navy-900);
    color: rgba(248, 250, 252, 0.92);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: none;
    white-space: nowrap;
}

.lp-bc-matrix__feature {
    text-align: left !important;
    font-weight: 600;
    color: var(--lp-text);
    min-width: 12rem;
    max-width: 18rem;
    line-height: 1.35;
    background: var(--lp-surface);
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 4px 0 12px rgba(15, 23, 42, 0.04);
}

.lp-bc-matrix tbody tr:nth-child(even) .lp-bc-matrix__feature {
    background: #f8fafc;
}

.lp-bc-matrix tbody tr:nth-child(even) td {
    background: #f8fafc;
}

.lp-bc-matrix tbody tr:nth-child(even) .lp-bc-matrix__cell--ar {
    background: rgba(37, 191, 211, 0.1);
}

.lp-bc-matrix__tool--ar {
    background: linear-gradient(135deg, var(--lp-cyan-500), var(--lp-blue-600)) !important;
    color: #fff !important;
}

.lp-bc-matrix__cell--ar {
    background: rgba(37, 191, 211, 0.06);
}

.lp-bc-matrix tbody tr:last-child th,
.lp-bc-matrix tbody tr:last-child td {
    border-bottom: none;
}

.lp-bc-cell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.85rem;
    line-height: 1;
}

.lp-bc-cell--full { color: #15803d; background: #ecfdf5; }
.lp-bc-cell--partial { color: #b45309; background: #fffbeb; }
.lp-bc-cell--none { color: #64748b; background: #f1f5f9; }

.lp-bc-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-size: 0.8125rem;
    color: var(--lp-muted);
}

.lp-bc-legend--standalone {
    margin-top: 0.85rem;
    padding: 0 0.25rem;
}

.lp-bc-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.lp-bc-tips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.lp-bc-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.15rem 1.25rem;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-bc-tip:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08);
}

.lp-bc-tip__icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(37, 191, 211, 0.18), rgba(37, 99, 235, 0.14));
    color: var(--lp-blue-700);
    font-size: 0.8125rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-bc-tip__body {
    flex: 1;
    min-width: 0;
}

.lp-bc-tip__title {
    margin: 0 0 0.4rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--lp-text);
    line-height: 1.35;
}

.lp-bc-tip__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--lp-muted);
}

.lp-bc-cta {
    text-align: center;
    margin-top: 2rem;
}

.lp-bc-positioning {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-bc-positioning li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--lp-border);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.lp-bc-positioning li:last-child { border-bottom: none; }

.lp-bc-notes {
    display: grid;
    gap: 1rem;
}

.lp-bc-note {
    padding: 1rem 1.15rem;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    background: var(--lp-surface);
}

.lp-bc-stack {
    padding: 1rem 1.15rem;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--lp-radius-md);
    font-size: 0.9375rem;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .lp-bc-tips { grid-template-columns: 1fr; }
    .lp-bc-panel__legend { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-float-card { animation: none; }
    .lp-btn, .lp-finding-card, .lp-audience-card, .lp-price-v2 { transition: none; }
}

/* ——— Guias SEO / AI Readiness ——— */
.lp-section--hero-lite {
    padding-top: calc(var(--lp-header-h, 72px) + 2.5rem);
    padding-bottom: 2rem;
    background: var(--lp-bg);
}

.lp-h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.15; margin: 0 0 1rem; }

.lp-guide-updated { font-size: 0.875rem; color: var(--lp-muted); margin: 0.5rem 0 0; }

.lp-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.lp-guide-card {
    padding: 1.35rem 1.5rem;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    background: var(--lp-surface);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lp-guide-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
}

.lp-guide-card__title { margin: 0; font-size: 1.05rem; line-height: 1.35; }
.lp-guide-card__title a { color: var(--lp-text); text-decoration: none; }
.lp-guide-card__title a:hover { color: var(--lp-blue-600); }
.lp-guide-card__excerpt { margin: 0; font-size: 0.9375rem; color: var(--lp-muted); line-height: 1.55; flex: 1; }
.lp-guide-card__meta { margin: 0; font-size: 0.8125rem; color: var(--lp-muted); }

.lp-link-arrow {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lp-blue-600);
    text-decoration: none;
}
.lp-link-arrow:hover { text-decoration: underline; }

.lp-guide-article { max-width: 720px; }
.lp-guide-breadcrumb { font-size: 0.875rem; margin-bottom: 1rem; color: var(--lp-muted); }
.lp-guide-breadcrumb a { color: var(--lp-blue-600); text-decoration: none; }
.lp-guide-intro { font-size: 1.125rem; line-height: 1.6; }

.lp-guide-section { margin-bottom: 2rem; }
.lp-guide-section h2 { font-size: 1.35rem; font-weight: 700; margin: 0 0 0.75rem; }
.lp-guide-section p { line-height: 1.65; color: var(--lp-text); margin: 0 0 1rem; }
.lp-guide-section ul { margin: 0 0 1rem; padding-left: 1.25rem; line-height: 1.65; }

.lp-guide-faq .lp-faq-item { border: 1px solid var(--lp-border); border-radius: var(--lp-radius-sm); padding: 0.75rem 1rem; margin-bottom: 0.5rem; }
.lp-guide-faq .lp-faq-q { margin: 0; font-size: 1rem; font-weight: 600; display: inline; }
.lp-guide-faq .lp-faq-a { margin: 0.75rem 0 0; color: var(--lp-muted); }

.lp-guide-related { padding-left: 1.25rem; line-height: 1.8; }
.lp-guide-related a { color: var(--lp-blue-600); }

.lp-guide-cta, .lp-guide-cta-inline { text-align: center; padding: 2rem 0; }
.lp-guide-cta-inline { text-align: left; border-top: 1px solid var(--lp-border); margin-top: 2rem; padding-top: 2rem; }

.lp-section--cta { background: linear-gradient(180deg, var(--lp-bg) 0%, rgba(37, 99, 235, 0.06) 100%); }

/* Tab module previews */
.lp-tab-viz {
    width: 100%;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--lp-radius);
    padding: 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 280px;
}

.lp-tab-viz__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.lp-tab-viz__score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--lp-cyan-400);
    line-height: 1;
}

.lp-tab-viz__head strong {
    display: block;
    color: #f8fafc;
    font-size: 0.9375rem;
}

.lp-tab-viz__delta {
    display: block;
    font-size: 0.75rem;
    color: #6ee7b7;
    font-weight: 600;
    margin-top: 0.15rem;
}

.lp-tab-viz__svg {
    width: 100%;
    height: auto;
    display: block;
}

.lp-tab-viz__svg--donut {
    width: 140px;
    margin: 0 auto;
}

.lp-tab-viz__bars,
.lp-tab-viz__bench {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.lp-tab-viz__bar-row,
.lp-tab-viz__bench-row {
    display: grid;
    grid-template-columns: 5.5rem 1fr 2rem;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(248, 250, 252, 0.7);
}

.lp-tab-viz__bar-row em,
.lp-tab-viz__bench-row em {
    font-style: normal;
    font-weight: 700;
    color: var(--lp-cyan-400);
    text-align: right;
}

.lp-tab-viz__bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.lp-tab-viz__bar i {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lp-cyan-500), var(--lp-blue-600));
}

.lp-tab-viz__bench-row.is-you {
    color: #f8fafc;
    font-weight: 600;
}

.lp-tab-viz__file {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.lp-tab-viz__file-bar {
    display: flex;
    gap: 5px;
    padding: 0.5rem 0.65rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-tab-viz__file-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.lp-tab-viz__code {
    display: block;
    padding: 0.85rem 1rem;
    font-family: ui-monospace, monospace;
    font-size: 0.6875rem;
    line-height: 1.55;
    color: rgba(248, 250, 252, 0.75);
}

.lp-tab-viz__checks {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.lp-tab-viz__check {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(248, 250, 252, 0.75);
    padding: 0.4rem 0.55rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.lp-tab-viz__check--ok { color: #6ee7b7; }
.lp-tab-viz__check--warn { color: #fdba74; }

.lp-tab-viz__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    justify-content: center;
    font-size: 0.6875rem;
    color: rgba(248, 250, 252, 0.6);
}

.lp-tab-viz__dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.25rem;
    vertical-align: middle;
}

.lp-tab-viz__dot--high { background: #38d6e8; }
.lp-tab-viz__dot--mid { background: #2563eb; }
.lp-tab-viz__dot--low { background: rgba(255, 255, 255, 0.25); }

.lp-tab-viz__heatmap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
}

.lp-tab-viz__cell {
    aspect-ratio: 1;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
}

.lp-tab-viz__cell--high { background: rgba(56, 214, 232, 0.45); }
.lp-tab-viz__cell--mid { background: rgba(37, 99, 235, 0.35); }
.lp-tab-viz__cell--low { background: rgba(239, 68, 68, 0.25); }

.lp-tab-viz__gaps-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.lp-tab-viz__gap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(248, 250, 252, 0.8);
}

.lp-tab-viz__gap span {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.45);
}

.lp-tab-viz__gap--crit span { color: #fca5a5; }

.lp-tab-viz__export {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.lp-tab-viz__export-head {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    color: #f8fafc;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-tab-viz__export-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.lp-tab-viz__export-list li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    color: rgba(248, 250, 252, 0.75);
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.lp-tab-viz__export-foot {
    margin-top: auto;
    font-size: 0.6875rem;
    color: rgba(248, 250, 252, 0.45);
    text-align: center;
    padding-top: 0.5rem;
}

/* Cookie consent — páginas públicas (landing.css carrega sem components.css) */
.lp-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 1.25rem;
    background: rgba(5, 11, 20, 0.97);
    border-top: 1px solid rgba(37, 191, 211, 0.22);
    backdrop-filter: blur(16px);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
    font-family: var(--ar-font-sans, "Inter", system-ui, sans-serif);
}

.lp-cookie[hidden] {
    display: none !important;
}

.lp-cookie__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.lp-cookie__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #f8fafc;
    margin: 0 0 0.35rem;
}

.lp-cookie__text {
    font-size: 0.8125rem;
    color: rgba(248, 250, 252, 0.68);
    margin: 0;
    line-height: 1.55;
    max-width: 680px;
}

.lp-cookie__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    flex-shrink: 0;
}

.lp-cookie__link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--lp-cyan-400);
    text-decoration: none;
    white-space: nowrap;
}

.lp-cookie__link:hover {
    color: #fff;
    text-decoration: underline;
}

.lp-cookie .lp-btn,
.lp-cookie #ar-cookie-accept {
    background: linear-gradient(135deg, var(--lp-cyan-500), var(--lp-blue-600));
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1.15rem;
    font-weight: 600;
    font-size: 0.8125rem;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.lp-cookie .lp-btn:hover,
.lp-cookie #ar-cookie-accept:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.ar-body-landing.ar-cookie-visible {
    padding-bottom: 5.5rem;
}

@media (max-width: 768px) {
    .lp-cookie {
        padding: 1rem;
    }

    .lp-cookie__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-cookie__actions {
        justify-content: flex-start;
    }

    .lp-cookie .lp-btn,
    .lp-cookie #ar-cookie-accept {
        width: 100%;
        text-align: center;
    }

    .ar-body-landing.ar-cookie-visible {
        padding-bottom: 9rem;
    }
}
