/* ==========================================================
   CartaBar Landing — Tech Gastronómico Luminoso
   ========================================================== */

:root {
    --bg: #FAFAF8;
    --bg-subtle: #F4F1EC;
    --surface: #FFFFFF;
    --accent: #E8390E;
    --accent-hover: #C42D08;
    --accent-light: #FFF0EC;
    --text: #1A1714;
    --text-muted: #8C8070;
    --border: #E8E2D9;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* ===== LAYOUT OVERRIDES ===== */
.landing-wrap { background: var(--bg); color: var(--text); }
.landing-wrap .pub-body { padding-top: 0; }

/* Nav */
.landing-wrap .pub-nav {
    background: rgba(250,250,248,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(232,226,217,0.5);
    height: 60px;
    transition: border-color 0.3s;
}
.landing-wrap .pub-nav.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.landing-wrap .pub-nav__logo-img { height: 1.5rem; }
.landing-wrap .pub-nav__link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.2s;
}
.landing-wrap .pub-nav__link:hover { color: var(--text); }
.landing-wrap .pub-nav__cta {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    transition: background 0.2s, transform 0.2s;
}
.landing-wrap .pub-nav__cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* Footer override */
.landing-wrap .pub-footer {
    background: var(--bg);
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}
.landing-wrap .pub-footer__brand { color: var(--text); }
.landing-wrap .pub-footer__brand-img { filter: none; }
.landing-wrap .pub-footer__link { color: var(--text-muted); }
.landing-wrap .pub-footer__link:hover { color: var(--text); }
.landing-wrap .pub-footer__bottom { border-top-color: var(--border); color: var(--text-muted); }
.landing-wrap .pub-footer__dev { border-top-color: var(--border); color: var(--text-muted); }
.landing-wrap .pub-footer__dev-logo { filter: none; opacity: 0.5; }
.landing-wrap .pub-footer__dev a { color: var(--text-muted); }
.landing-wrap .pub-footer__dev a:hover { color: var(--text); }
.landing-wrap .pub-footer__dev a:hover .pub-footer__dev-logo { opacity: 0.8; }

/* ===== REVEALS ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 80ms; }
.reveal.d2 { transition-delay: 160ms; }
.reveal.d3 { transition-delay: 240ms; }
.reveal.d4 { transition-delay: 320ms; }

html { scroll-behavior: smooth; }

/* ===== SECTION ===== */
.lp-sec { padding: 5rem 1.5rem; }
.lp-sec--subtle { background: var(--bg-subtle); }
.lp-inner { max-width: 72rem; margin: 0 auto; }

/* ===== HERO ===== */
.lp-hero { padding: 8rem 1.5rem 4rem; text-align: center; }

/* Chip */
.lp-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-light);
    border: 1px solid rgba(232,57,14,0.18);
    border-radius: 100px;
    padding: 0.375rem 1rem 0.375rem 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.lp-chip__dot {
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.lp-hero__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--text);
    max-width: 44rem;
    margin: 0 auto 1.25rem;
}
.lp-hero__title em { font-style: normal; color: var(--accent); }

.lp-hero__sub {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 32rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.lp-hero__actions { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.lp-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem;
    text-decoration: none; border-radius: 10px; height: 48px; padding: 0 1.75rem;
    transition: all 0.2s ease; cursor: pointer;
}
.lp-btn--primary { background: var(--accent); color: #fff; }
.lp-btn--primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.lp-btn--secondary {
    background: transparent; color: var(--text);
    border: 1.5px solid var(--border);
}
.lp-btn--secondary:hover { border-color: var(--text); }

/* Stats */
.lp-hero__stats {
    display: flex; justify-content: center; align-items: center; gap: 2.5rem;
    margin-top: 3rem; padding-top: 2.5rem;
}
.lp-stat { text-align: center; }
.lp-stat__num { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--text); display: block; }
.lp-stat__label { font-family: var(--font-body); font-size: 0.75rem; color: var(--text-muted); }
.lp-stat-sep { width: 1px; height: 2.5rem; background: var(--border); }

/* Browser mockup */
.lp-hero__mockup { margin-top: 4rem; }
.lp-browser {
    max-width: 60rem; margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03), 0 12px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.8);
}
.lp-browser__bar {
    display: flex; align-items: center; gap: 6px;
    padding: 12px 16px;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border);
}
.lp-browser__dot { width: 10px; height: 10px; border-radius: 50%; }
.lp-browser__dot--r { background: #FF5F57; }
.lp-browser__dot--y { background: #FFBD2E; }
.lp-browser__dot--g { background: #28C840; }
.lp-browser__url {
    flex: 1; text-align: center;
    font-family: var(--font-mono); font-size: 0.6875rem; color: var(--text-muted);
}

/* Dashboard inside browser */
.lp-dash { display: grid; grid-template-columns: 180px 1fr; min-height: 340px; }
.lp-dash__side {
    background: #0F172A; padding: 1rem 0;
    display: flex; flex-direction: column;
}
.lp-dash__side-brand {
    font-family: var(--font-display); font-weight: 700; font-size: 0.875rem;
    color: #fff; padding: 0 0.875rem 0.875rem;
    border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 0.5rem;
}
.lp-dash__side-item {
    padding: 0.4rem 0.875rem;
    font-family: var(--font-body); font-size: 0.6875rem; color: #64748B;
    display: flex; align-items: center; gap: 0.4rem;
}
.lp-dash__side-item.active {
    color: #fff; border-left: 3px solid #EA580C; padding-left: calc(0.875rem - 3px);
}
.lp-dash__main { padding: 1rem 1.25rem; background: #F8FAFC; overflow: hidden; }
.lp-dash__topbar {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem;
}
.lp-dash__topbar h3 { font-family: var(--font-body); font-weight: 600; font-size: 0.8125rem; color: var(--text); }
.lp-dash__avatar {
    width: 26px; height: 26px; border-radius: 50%; background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem; font-weight: 700; color: #fff;
}
.lp-dash__cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.625rem; margin-bottom: 1rem; }
.lp-dash__card {
    background: #fff; border: 1px solid #E2E8F0; border-radius: 8px; padding: 0.625rem;
}
.lp-dash__card-label { font-family: var(--font-body); font-size: 0.5625rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.lp-dash__card-val { font-family: var(--font-mono); font-size: 1.125rem; font-weight: 500; color: var(--text); margin-top: 2px; }
.lp-dash__card-val.accent { color: var(--accent); }
.lp-dash__table { width: 100%; border-collapse: collapse; }
.lp-dash__table th {
    font-family: var(--font-body); font-size: 0.5625rem; font-weight: 500;
    color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em;
    text-align: left; padding: 0.35rem 0.5rem; border-bottom: 1px solid #E2E8F0;
}
.lp-dash__table td {
    font-family: var(--font-body); font-size: 0.6875rem; color: var(--text);
    padding: 0.35rem 0.5rem; border-bottom: 1px solid #F1F5F9;
}
.lp-badge { display: inline-block; padding: 2px 6px; border-radius: 4px; font-size: 0.5625rem; font-weight: 600; }
.lp-badge--green { background: #DCFCE7; color: #16A34A; }
.lp-badge--amber { background: #FEF3C7; color: #D97706; }

/* ===== MARQUEE ===== */
.lp-marquee-sec { padding: 2rem 0; background: var(--bg-subtle); overflow: hidden; }
.lp-marquee__label {
    font-family: var(--font-body); font-size: 0.6875rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted);
    text-align: center; margin-bottom: 1rem;
}
.lp-marquee { white-space: nowrap; overflow: hidden; }
.lp-marquee__track { display: inline-flex; animation: marquee 45s linear infinite; }
.lp-marquee__item {
    font-family: var(--font-body); font-weight: 500; font-size: 0.9375rem;
    color: var(--text-muted); padding: 0 1.25rem; flex-shrink: 0;
}
.lp-marquee__dot { color: var(--border); padding: 0 0.25rem; flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== FEATURES ===== */
.lp-feat {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: center; padding: 5rem 1.5rem;
    max-width: 72rem; margin: 0 auto;
    position: relative;
}
.lp-feat--flip .lp-feat__content { order: 2; }
.lp-feat--flip .lp-feat__visual { order: 1; }
.lp-feat__content { position: relative; }
.lp-feat__watermark {
    font-family: var(--font-display); font-weight: 800;
    font-size: 8rem; color: var(--border); opacity: 0.5;
    position: absolute; top: -2.5rem; left: -0.5rem;
    line-height: 1; pointer-events: none; user-select: none;
}
.lp-feat__title {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--text);
    margin-bottom: 0.75rem; position: relative;
}
.lp-feat__desc {
    font-family: var(--font-body); font-weight: 300;
    font-size: 1rem; color: var(--text-muted); line-height: 1.7;
    max-width: 28rem; position: relative;
}
.lp-feat__visual {
    background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
    padding: 1.5rem; overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 6px 16px rgba(0,0,0,0.04);
}

/* Feature UI components */
.lp-fui-menu { font-family: var(--font-body); }
.lp-fui-menu__header { font-weight: 600; font-size: 0.75rem; color: var(--text); margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.lp-fui-menu__item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.03);
}
.lp-fui-menu__name { font-size: 0.8125rem; color: var(--text); }
.lp-fui-menu__price { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); }
.lp-fui-menu__badge-live {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.625rem; font-weight: 600; color: #16A34A;
    background: #DCFCE7; padding: 2px 8px; border-radius: 4px;
}
.lp-fui-menu__badge-live::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: #16A34A; animation: pulse 2s infinite;
}

.lp-fui-chart { display: flex; align-items: flex-end; gap: 6px; height: 100px; padding-top: 1rem; }
.lp-fui-chart__bar {
    flex: 1; background: var(--accent-light); border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
}
.lp-fui-chart__bar:nth-child(3),
.lp-fui-chart__bar:nth-child(5),
.lp-fui-chart__bar:nth-child(7) { background: var(--accent); opacity: 0.6; }

.lp-fui-brand { text-align: center; padding: 1rem; }
.lp-fui-brand__swatch { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 1rem; }
.lp-fui-brand__color {
    width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border);
}
.lp-fui-brand__font { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.lp-fui-brand__label { font-size: 0.6875rem; color: var(--text-muted); }

.lp-fui-qr { text-align: center; padding: 1rem; }
.lp-fui-qr__code {
    width: 120px; height: 120px; margin: 0 auto 0.75rem;
    background: var(--text); border-radius: 12px;
    display: grid; grid-template-columns: repeat(7,1fr); grid-template-rows: repeat(7,1fr); gap: 2px; padding: 8px;
}
.lp-fui-qr__cell { background: var(--surface); border-radius: 1px; }
.lp-fui-qr__cell--dark { background: var(--text); }
.lp-fui-qr__label { font-family: var(--font-mono); font-size: 0.6875rem; color: var(--text-muted); }

/* ===== HOW IT WORKS ===== */
.lp-steps { padding: 5rem 1.5rem; }
.lp-steps__header { text-align: center; margin-bottom: 4rem; }
.lp-overline {
    font-family: var(--font-body); font-size: 0.6875rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted);
    display: block; margin-bottom: 0.75rem;
}
.lp-sec__title {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 2.75rem); color: var(--text);
    letter-spacing: -0.02em;
}
.lp-sec__title em { font-style: normal; color: var(--accent); }

.lp-steps__grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
    max-width: 52rem; margin: 0 auto; position: relative;
}
.lp-steps__line {
    position: absolute; top: 20px; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), var(--border), transparent);
    z-index: 0;
}
.lp-steps__line-fill {
    height: 100%; width: 0; background: var(--accent); opacity: 0.4;
    transition: width 1s ease;
}
.lp-step { text-align: center; position: relative; z-index: 1; }
.lp-step__num {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid var(--border); background: var(--surface);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 0.875rem;
    color: var(--text-muted); margin-bottom: 1.25rem;
    transition: border-color 0.2s, color 0.2s;
}
.lp-step:hover .lp-step__num { border-color: var(--accent); color: var(--accent); }
.lp-step__title { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-bottom: 0.5rem; }
.lp-step__desc { font-family: var(--font-body); font-weight: 300; font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ===== PRICING ===== */
.lp-pricing { padding: 5rem 1.5rem; }
.lp-pricing__header { text-align: center; margin-bottom: 3rem; }
.lp-pricing__toggle {
    display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 1.25rem;
}
.lp-toggle-label {
    font-family: var(--font-body); font-size: 0.875rem; font-weight: 400;
    color: var(--text-muted); cursor: pointer; transition: color 0.2s;
}
.lp-toggle-label.active { color: var(--text); font-weight: 500; }
.lp-switch {
    width: 44px; height: 24px; background: var(--border); border-radius: 12px;
    position: relative; cursor: pointer; transition: background 0.3s;
}
.lp-switch::after {
    content: ''; position: absolute; width: 18px; height: 18px;
    background: #fff; border-radius: 50%; top: 3px; left: 3px;
    transition: transform 0.25s; box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.lp-switch.on { background: var(--accent); }
.lp-switch.on::after { transform: translateX(20px); }
input#billingToggle { display: none; }

.lp-pricing__grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem;
    max-width: 72rem; margin: 0 auto; align-items: start;
}
.lp-price-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
    padding: 2rem; position: relative; transition: transform 0.2s, box-shadow 0.2s;
}
.lp-price-card:hover { transform: translateY(-4px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.lp-price-card--feat { border: 2px solid var(--accent); }
.lp-price-card__chip {
    position: absolute; top: 1rem; right: 1rem;
    font-family: var(--font-mono); font-size: 0.625rem; font-weight: 500;
    background: var(--accent-light); color: var(--accent);
    padding: 3px 10px; border-radius: 100px;
}
.lp-price-card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-bottom: 0.25rem; }
.lp-price-card__desc { font-family: var(--font-body); font-weight: 300; font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.lp-price-card__amount { font-family: var(--font-display); font-weight: 700; font-size: 2.5rem; letter-spacing: -0.02em; }
.lp-price-card__period { font-family: var(--font-body); font-weight: 300; font-size: 0.875rem; color: var(--text-muted); }
.lp-price__save {
    display: none; font-family: var(--font-mono); font-size: 0.625rem;
    color: var(--accent); margin-top: 0.125rem;
}
.lp-price__note { font-family: var(--font-body); font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; min-height: 1rem; }
.lp-price-card__list {
    list-style: none; padding: 0; margin: 1.25rem 0;
    border-top: 1px solid var(--border); padding-top: 1.25rem;
}
.lp-price-card__list li {
    font-family: var(--font-body); font-size: 0.8125rem; color: var(--text-muted);
    padding: 0.3rem 0; display: flex; align-items: center; gap: 0.5rem;
}
.lp-price-card__list li svg { flex-shrink: 0; }
.lp-price-card__cta {
    display: block; text-align: center; padding: 0.75rem;
    font-family: var(--font-body); font-weight: 600; font-size: 0.875rem;
    text-decoration: none; border-radius: 10px; transition: all 0.2s;
    border: 1.5px solid var(--border); color: var(--text);
}
.lp-price-card__cta:hover { border-color: var(--text); }
.lp-price-card--feat .lp-price-card__cta {
    background: var(--accent); border-color: var(--accent); color: #fff;
}
.lp-price-card--feat .lp-price-card__cta:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.lp-price-banner {
    max-width: 72rem;
    margin: 1.5rem auto 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* ===== FAQ ===== */
.lp-faq { padding: 5rem 1.5rem; }
.lp-faq__header { text-align: center; margin-bottom: 3rem; }
.lp-faq__list { max-width: 44rem; margin: 0 auto; }
.lp-faq__item { border-bottom: 1px solid var(--border); }
.lp-faq__q {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    width: 100%; padding: 1.25rem 0; background: none; border: none;
    cursor: pointer; text-align: left; color: var(--text);
}
.lp-faq__q-text { font-family: var(--font-body); font-weight: 500; font-size: 1.0625rem; flex: 1; }
.lp-faq__q-icon {
    width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; color: var(--text-muted);
}
.lp-faq__item.active .lp-faq__q-icon { transform: rotate(45deg); color: var(--accent); }
.lp-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.lp-faq__a-inner {
    padding: 0 0 1.25rem; font-family: var(--font-body); font-weight: 300;
    font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7;
}

/* ===== CTA FINAL ===== */
.lp-cta-final {
    padding: 6rem 1.5rem; text-align: center;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232,57,14,0.05) 0%, transparent 70%), var(--bg-subtle);
}
.lp-cta-final__title {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.1;
    color: var(--text); max-width: 32rem; margin: 0 auto 1rem;
    letter-spacing: -0.02em;
}
.lp-cta-final__title em { font-style: normal; color: var(--accent); }
.lp-cta-final__sub {
    font-family: var(--font-body); font-weight: 300; font-size: 1rem;
    color: var(--text-muted); margin-bottom: 2rem;
}
.lp-cta-final__btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--accent); color: #fff;
    font-family: var(--font-body); font-weight: 600; font-size: 1rem;
    padding: 1rem 2.5rem; border-radius: 10px;
    text-decoration: none; transition: all 0.2s;
}
.lp-cta-final__btn:hover { background: var(--accent-hover); transform: translateY(-1px); }
.lp-cta-final__note {
    font-family: var(--font-body); font-weight: 300; font-size: 0.8125rem;
    color: var(--text-muted); margin-top: 1.25rem;
}

/* ===== RESPONSIVE ===== */

/* Pricing 4-col → 2-col */
@media (max-width: 1100px) {
    .lp-pricing__grid { grid-template-columns: repeat(2,1fr); }
}

/* Tablet */
@media (max-width: 900px) {
    .lp-hero { padding: 5.5rem 1.25rem 2.5rem; }
    .lp-hero__title { font-size: clamp(2rem, 5vw, 3rem); }
    .lp-hero__sub { font-size: 1rem; margin-bottom: 2rem; }
    .lp-hero__mockup { margin-top: 2.5rem; }
    .lp-browser { border-radius: 12px; }
    .lp-dash { grid-template-columns: 1fr; min-height: auto; }
    .lp-dash__side { flex-direction: row; overflow-x: auto; padding: 0.5rem 0.75rem; gap: 0.25rem; }
    .lp-dash__side-brand { display: none; }
    .lp-dash__side-item { white-space: nowrap; padding: 0.35rem 0.6rem; font-size: 0.625rem; }
    .lp-dash__side-item.active { border-left: none; border-bottom: 2px solid #EA580C; padding-left: 0.6rem; }
    .lp-dash__cards { grid-template-columns: repeat(2,1fr); }
    .lp-feat { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.25rem; }
    .lp-feat--flip .lp-feat__content { order: 1; }
    .lp-feat--flip .lp-feat__visual { order: 2; }
    .lp-feat__watermark { font-size: 5rem; top: -1.5rem; }
    .lp-steps__grid { grid-template-columns: 1fr; gap: 2rem; }
    .lp-steps__line { display: none; }
    .lp-sec { padding: 3.5rem 1.25rem; }
}

/* Mobile */
@media (max-width: 600px) {
    .lp-hero { padding: 5rem 1rem 2rem; }
    .lp-hero__title { font-size: 2rem; line-height: 1.12; margin-bottom: 1rem; }
    .lp-hero__title br { display: none; }
    .lp-hero__sub { font-size: 0.9375rem; margin-bottom: 1.75rem; }
    .lp-chip { font-size: 0.6875rem; padding: 0.3rem 0.75rem 0.3rem 0.6rem; }
    .lp-btn { height: 44px; font-size: 0.875rem; padding: 0 1.5rem; width: 100%; justify-content: center; }
    .lp-hero__actions { flex-direction: column; align-items: stretch; gap: 0.5rem; }
    .lp-hero__stats { flex-direction: row; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; flex-wrap: wrap; justify-content: center; }
    .lp-stat__num { font-size: 1.5rem; }
    .lp-stat__label { font-size: 0.625rem; }
    .lp-stat-sep { width: 1px; height: 2rem; }
    .lp-hero__mockup { margin-top: 2rem; margin-left: -1rem; margin-right: -1rem; }
    .lp-browser { border-radius: 10px; }
    .lp-browser__bar { padding: 8px 12px; gap: 5px; }
    .lp-browser__dot { width: 8px; height: 8px; }
    .lp-browser__url { font-size: 0.5625rem; }
    .lp-dash__main { padding: 0.75rem; }
    .lp-dash__topbar h3 { font-size: 0.6875rem; }
    .lp-dash__cards { grid-template-columns: 1fr 1fr; gap: 0.4rem; }
    .lp-dash__card { padding: 0.5rem; }
    .lp-dash__card-label { font-size: 0.5rem; }
    .lp-dash__card-val { font-size: 0.9375rem; }
    .lp-dash__table th { font-size: 0.5rem; padding: 0.25rem 0.35rem; }
    .lp-dash__table td { font-size: 0.6rem; padding: 0.25rem 0.35rem; }
    .lp-badge { font-size: 0.5rem; padding: 1px 4px; }
    .lp-fui-chart { height: 60px; }
    .lp-feat { padding: 2.5rem 1rem; gap: 1.5rem; }
    .lp-feat__watermark { font-size: 4rem; top: -1rem; }
    .lp-feat__title { font-size: 1.375rem; }
    .lp-feat__desc { font-size: 0.875rem; }
    .lp-sec { padding: 3rem 1rem; }
    .lp-sec__title { font-size: 1.75rem; }
    .lp-steps__header { margin-bottom: 2.5rem; }
    .lp-step__title { font-size: 1.125rem; }
    .lp-pricing__grid { grid-template-columns: 1fr; max-width: 400px; }
    .lp-price-card { padding: 1.5rem; }
    .lp-price-card__amount { font-size: 2rem; }
    .lp-price-banner { flex-direction: column; text-align: center; }
    .lp-price-banner .lp-price-card__cta { min-width: auto; width: 100%; }
    .lp-faq__q-text { font-size: 0.9375rem; }
    .lp-cta-final { padding: 4rem 1rem; }
    .lp-cta-final__title { font-size: 1.75rem; }
    .lp-cta-final__btn { width: 100%; justify-content: center; }
}

/* Small mobile (375px) */
@media (max-width: 400px) {
    .lp-hero { padding: 4.75rem 0.75rem 1.5rem; }
    .lp-hero__title { font-size: 1.75rem; }
    .lp-hero__mockup { margin-left: -0.75rem; margin-right: -0.75rem; }
    .lp-dash__cards { grid-template-columns: 1fr 1fr; }
    .lp-dash__table { font-size: 0.55rem; }
    .lp-chip { font-size: 0.625rem; }
}

/* Mobile nav */
@media (max-width: 768px) {
    .landing-wrap .pub-nav__links {
        background: rgba(250,250,248,0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    }
    .landing-wrap .pub-nav__link { color: var(--text); }
    .landing-wrap .pub-nav__cta {
        width: 100%;
        justify-content: center;
        border-radius: 8px;
    }
    .landing-wrap .pub-nav__toggle span { background: var(--text); }
}
