:root {
    --pink: #FF557B;
    --pink-light: #fff0f3;
    --bg: #F1F1F1;
    --text: #434343;
    --text-muted: #B5B5B5;
    --text-grey: #A4A4A4;
    --sidebar-w: 250px;
    --sidebar-w-collapsed: 65px;
    --white: #ffffff;
    --card-radius: 14px;
    --transition: 0.22s ease;
}

* {
    box-sizing: border-box;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.text-grey {
    color: var(--text-grey)
}

.font10 {
    font-size: 10px
}

.text-color {
    color: var(--text) !important
}

body {
    font-family: 'Work Sans', sans-serif;
    background: var(--bg);
    font-weight: 400;
    color: var(--text);
    margin: 0;
    min-height: 100vh;
}

b,
strong {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500
}

/* ── SIDEBAR ── */
#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--sidebar-w);
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 24px 20px 20px;
    transition: width var(--transition);
    z-index: 100;
    overflow-x: hidden;
    box-shadow: 2px 0 12px rgba(0, 0, 0, .05);
}

#sidebar.collapsed {
    width: var(--sidebar-w-collapsed);
    padding: 24px 0 20px;
}

/* Logo area */
.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px 28px;
    white-space: nowrap;
}

/* Estado expandido (default) */
.logo-iso {
    display: none;
}

.logo-full {
    display: block;
    width: 140px;
}

/* Estado colapsado */
#sidebar.collapsed .logo-iso {
    display: block;
    width: 36px;
}

#sidebar.collapsed .logo-full {
    display: none;
}

.local-onboarding-copy h1 {
    font-size: 29px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.bg-local {
    background-color: #2E2E2E;
}

.bg-gris {
    background-color: var(--bg) !important
}

#sidebar.collapsed .logo-text {
    opacity: 0;
    pointer-events: none;
}

/* Nav */
.sidebar-nav {
    flex: 1;
    min-height: 0;
    padding: 0;
    list-style: none;
    margin: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-nav::-webkit-scrollbar {
    width: 3px;
}

.sidebar-nav::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 99px;
}

.sidebar-nav li a {
    margin: 7px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 18px;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    border-radius: 10px;
    transition: color .15s, background .15s;
}

.sidebar-nav li a:hover {
    color: var(--pink);
}

#sidebar.collapsed .sidebar-nav li a {
    margin: 10px 0;
}

.sidebar-nav li.active a {
    color: var(--pink);
    border-radius: 10px;
}

.sidebar-nav li.active a i {
    color: var(--pink);
}

.sidebar-nav li a i {
    font-size: 20px;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
}

.nav-label {
    opacity: 1;
    transition: opacity var(--transition);
}

#sidebar.collapsed .nav-label {
    opacity: 0;
    pointer-events: none;
}

#sidebar.collapsed .sidebar-nav li.active a {
    border-radius: 8px;
}

/* Plan box */
.sidebar-plan {
    padding: 16px 18px 0;
    white-space: nowrap;
    overflow: hidden;
}

.plan-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--pink);
    text-transform: uppercase;
    opacity: 1;
    transition: opacity var(--transition);
}

#sidebar.collapsed .plan-label,
#sidebar.collapsed .plan-info {
    opacity: 0;
}

.plan-info {
    transition: opacity var(--transition);
}

.plan-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1;
}

.plan-days {
    font-size: 12px;
    color: var(--text-grey);
    margin-bottom: 10px;
}

.btn-upgrade {
    background: var(--pink);
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 500;
    padding: 3px 27px;
    cursor: pointer;
    transition: opacity .15s;
}

.btn-upgrade:hover {
    opacity: .85;
}

/* Toggle button */
.sidebar-toggle {
    position: fixed;
    top: 70px;
    left: calc(var(--sidebar-w) - 16px);
    width: 28px;
    height: 28px;
    background: var(--white);
    border: 1.5px solid #e8e8e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 200;
    transition: left var(--transition);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
}

.sidebar-user-plan {
    font-size: 11px;
    color: #A4A4A4;
}

.sidebar-toggle.collapsed {
    left: calc(var(--sidebar-w-collapsed) - 16px);
}

.sidebar-toggle i {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform .22s;
}

.sidebar-toggle.collapsed i {
    transform: rotate(180deg);
}

/* ── MAIN ── */
#main {
    margin-left: var(--sidebar-w);
    transition: margin-left var(--transition);
    padding: 32px 8%;
    min-height: 100vh;
}

#main.expanded {
    margin-left: var(--sidebar-w-collapsed);
}

#main>.report-business-switcher {
    position: relative;
    top: auto;
    right: auto;
    z-index: auto;
    margin-bottom: 20px;
    box-shadow: none;
}

@media (min-width: 1200px) {
    #main>.report-business-switcher {
        width: calc(25% - 12px);
    }
}

body.no-business-nav #sidebar,
body.no-business-nav .mobile-topbar,
body.no-business-nav .sidebar-toggle,
body.no-business-nav .offcanvas {
    display: none !important;
}

body.no-business-nav #main,
body.no-business-nav #main.expanded {
    margin-left: 0;
}

/* ── STAT CARDS ── */
.stat-card {
    box-shadow: 0 4px 15px rgb(222 165 219 / 25%);
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 22px 22px 18px;
    border: 1.5px solid #efefef;
    height: 100%;
    position: relative;
    transition: transform .15s ease, box-shadow .15s ease;
}

.stat-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 22px rgb(222 165 219 / 35%);
}

.stat-card[data-membership-locked="1"],
.stat-card[data-membership-locked="1"]:hover {
    background: #bfc0c5;
    border-color: #bfc0c5;
    cursor: not-allowed;
    transform: none;
}

.stat-card[data-membership-locked="1"] .stat-label,
.stat-card[data-membership-locked="1"] .stat-number,
.stat-card[data-membership-locked="1"] .stat-sub,
.stat-card[data-membership-locked="1"] .stat-link {
    color: #fff;
}

.stat-card[data-membership-locked="1"] .stat-label i {
    color: #f2c94c;
}

.stat-card[data-membership-locked="1"] .stat-link {
    cursor: not-allowed;
}

.rosa {
    color: var(--pink);
}

.font13 {
    font-size: 13px;
}

.font14 {
    font-size: 14px;
}

.btn-upgrade {
    background: linear-gradient(90deg, #FF557B 0%, #F991F3 50%, #FF557B 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 12px;
    letter-spacing: 0.2px;
    font-weight: 500;
    padding: 5px 17px;
    cursor: pointer;
    transition: background-position .35s ease, transform .2s ease, opacity .2s ease;
}

.btn-upgrade:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
}

.stat-label {
    line-height: 13px;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--pink);
    display: flex;
    align-items: start;
    margin-bottom: 14px;
}

.stat-label i {
    font-size: 15px;
}

.stat-number {
    font-size: 68px;
    font-weight: 600;
    color: var(--text);
    line-height: 1;
}

.dashboard-stat-loader {
    display: inline-block;
    font-size: 42px;
}

.stat-sub {
    font-size: 14px;
    line-height: 1;
    color: var(--text);
    margin-bottom: 5px;
}



.stat-link {
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    transition: color .15s;
}

.stat-link:hover {
    color: var(--pink);
}

/* ── RATING BLOCK ── */
.rating-block {
    background: #2C2C2C;
    border-radius: var(--card-radius) 0 0 var(--card-radius);
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rating-eyebrow {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #FFFCFC;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.rating-score {
    font-size: 58px;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.rating-score i {
    font-size: 40px;
    color: var(--white);
}

.business-block {
    background: linear-gradient(90deg, #FF557B 0%, #F991F3 100%);
    border-radius: 0 var(--card-radius) var(--card-radius) 0;
    padding: 20px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.business-eyebrow {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.business-name {
    font-size: 30px;
    font-weight: 600;
    color: var(--white);
}

.business-addr {
    font-size: 14px;
    line-height: 1;
    color: rgba(255, 255, 255);
    display: flex;
    align-items: start;
    gap: 6px;
    margin-bottom: 15px;
}

.business-reviews {
    font-size: 12px;
    color: rgba(255, 255, 255);
}

/* ── REVIEWS TABLE ── */
.reviews-card {
    background: #FCFBFF;
    border-radius: var(--card-radius);
    padding: 24px 26px;
    border: 1.5px solid #efefef;
    box-shadow: 0 4px 15px rgb(222 165 219 / 20%);
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.reviews-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
    pointer-events: none;
}

.search-box .form-control {
    height: 35px;
    border-radius: 999px;
    border: 1px solid #e7e2e8;
    background: #fff;
    padding-left: 40px;
    font-size: 12px;
    box-shadow: none;
}

.search-box .form-control:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 0.15rem rgba(255, 85, 123, 0.12);
}

.reviews-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 10px;
    transition: .2s ease;
    min-width: 90px;
}

.filter-btn.active {
    background: var(--pink);
    color: #fff;
}

.filter-btn:hover {
    background: #F991F3;
    color: #FFFFFF
}

.filter-btn[data-membership-locked="1"],
.filter-btn[data-membership-locked="1"]:hover {
    background: #bfc0c5;
    color: #fff;
    cursor: not-allowed;
}

.filter-btn[data-membership-locked="1"] i {
    color: #f2c94c;
}

.reviews-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--pink);
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-row {
    padding: 14px 0;
    border-bottom: 1px solid #f2f2f2;
}

.review-row:last-child {
    border-bottom: none;
}

.review-user {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-date {
    font-size: 12px;
    color: var(--text-grey);
}

.review-text {
    font-size: 13px;
    color: var(--text);
    margin-top: 3px;
}

.stars {
    color: var(--pink);
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 10px;
}

.stars .empty {
    color: #ddd;
}

/* ── BOTTOM CTA CARDS ── */
.cta-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 17px 24px;
    border: 1.5px solid #efefef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    transition: box-shadow .15s, border-color .15s;
    box-shadow: 0 4px 15px rgb(222 165 219 / 20%);
}

.cta-card:hover {
    border-color: var(--pink);
    box-shadow: 0 4px 18px rgba(255, 85, 123, .1);
    color: var(--text);
}

.cta-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--pink);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-label i {
    font-size: 15px
}

.cta-arrow {
    color: var(--text-muted);
    font-size: 18px;
}

/* Section spacing */
.section-gap {
    margin-bottom: 20px;
}

.font12 {
    font-size: 12px !important;
    line-height: 1.4;
}

.font13 {
    font-size: 13px !important
}

.font10 {
    font-size: 10px !important
}

::selection {
    background-color: var(--pink);
    color: var(--white)
}

.mobile-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

header button {
    border: 0;
    background-color: white;
    font-size: 24px;
    line-height: 1;
}

.offcanvas.offcanvas-end {
    width: 260px;
    z-index: 9999;
}

.offcanvas-header button {
    border: 0;
    background: none;
    font-size: 20px;
    line-height: 15px;
}

/* ── REPORTES ── */
.page-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.btn-pdf {
    background: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity .15s;
}

.btn-pdf:hover {
    opacity: .8;
}

.btn-pdf i {
    font-size: 15px;
}

.btn-pdf[data-membership-locked="1"],
.btn-pdf[data-membership-locked="1"]:hover {
    background: #bfc0c5;
    color: #fff;
    cursor: not-allowed;
    opacity: 1;
}

.btn-pdf[data-membership-locked="1"] i {
    color: #f2c94c;
}

/* Pink stat card */
.stat-card--pink {
    background: linear-gradient(135deg, #FF557B 0%, #F991F3 100%);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(255, 85, 123, .25);
}

.stat-label--white {
    color: #F1F1F1 !important;
}

.stat-number--white {
    color: #fff !important;
}

.stat-sub--white {
    color: #F1F1F1 !important;
    font-size: 14px;
}

/* Rating distribution */
.rating-dist-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-dist-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-dist-label {
    display: flex;
    align-items: center;
    min-width: 36px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    flex-shrink: 0;
}

.rating-dist-num {
    font-size: 14px;
    font-weight: 600;
}

.rating-dist-bar {
    flex: 1;
    height: 12px;
    background: #ffffff;
    border-radius: 99px;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(222 165 219 / 25%)
}

.rating-dist-bar .progress-bar {
    background: #434343;
    border-radius: 99px;
}

.bg-text {
    background: #434343;
}

.rating-dist-pct {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    min-width: 32px;
    text-align: right;
    flex-shrink: 0;
}

/* Palabras destacadas empty state */
.palabras-empty {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    padding: 10px 0 4px;
}

.palabras-empty i {
    font-size: 18px;
}

/* AI generated response (reviews) */
.ai-response-card {
    background: var(--pink-light);
    border: 1px solid #ffd9e3;
    border-radius: var(--card-radius);
    padding: 16px 18px;
    margin-top: 14px;
}

.ai-response-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
}

.ai-response-loading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 13px;
    padding: 4px 0 6px;
}

.ai-response-loading--dark {
    color: #fff;
    font-size: 15px;
}

.ai-spin {
    color: var(--pink);
    font-size: 16px;
    animation: ai-spin-rotate .8s linear infinite;
}

.stat-number .dashboard-stat-loader {
    font-size: 52px;
}

@keyframes ai-spin-rotate {
    to {
        transform: rotate(360deg);
    }
}

.ai-response-box {
    background: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 13px;
    color: var(--text);
    line-height: 1.55;
}

.ai-response-text {
    cursor: text;
    outline: none;
    border-radius: 6px;
    padding: 4px 6px;
    margin: -4px -6px;
    transition: box-shadow .15s;
}

.ai-response-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.btn-copy-google {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .15s;
}

.btn-copy-google:hover {
    opacity: .85;
}

.btn-copy-google--success {
    background: #000;
    opacity: .7;
}

.ai-cancel-btn {
    background: none;
    border: none;
    color: var(--text);
    font-size: 12px;
    cursor: pointer;
    padding: 8px 4px;
    transition: color .15s;
}

.ai-cancel-btn:hover {
    color: var(--text);
}

/* Word tags */
.word-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.word-tag {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--text);
    color: var(--text);
    background: transparent;
    border-radius: 8px;
    padding: 4px 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Keywords */
.keyword-add-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.keyword-input {
    flex: 1;
}

.btn-keyword-add {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    padding: 5px 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color .15s, color .15s;
    height: 40px;
    min-width: 110px;
}

.btn-keyword-add:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.keyword-list {
    display: flex;
    flex-direction: column;
}

.keyword-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f2f2f2;
}

.keyword-item:last-child {
    border-bottom: none;
}

.keyword-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.keyword-meta {
    font-size: 13px;
    color: var(--text);
    margin-top: 0px;
}

.keyword-delete {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    transition: color .15s, background .15s;
    line-height: 1;
    flex-shrink: 0;
}

.keyword-delete:hover {
    color: var(--pink);
    background: var(--pink-light);
}

/* ── UPGRADE PLAN MODAL ── */
.upgrade-modal-content {
    border-radius: 20px;
    border: none;
    background: var(--bg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.btn-cancelar {
    border: 1px solid #ACA1A1;
    color: #ACA1A1;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    background-color: inherit;
}

.form-control:focus {
    box-shadow: none;
}

textarea#personalizeTemplateText {
    background-color: #F4F2FB;
    font-size: 13px;
    color: #434343;
    padding: 15px;
    border-radius: 10px;
}

button#personalizeTemplateRegenerate {
    color: #ACA1A1;
    font-size: 13px;
    background-color: #F6F6F6;
    border: 1px solid #DADADA;
    border-radius: 10px;
    padding: 5px 25px;
}

button#personalizeTemplateRegenerate:hover {
    background-color: #edebeb;
}

#personalizeTemplateModal .modal-content {
    background-color: #FCFBFF !important;
    border: 0;
    border-radius: 20px;
}

.upgrade-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: color .15s;
}

.upgrade-modal-close:hover {
    color: var(--text);
}

.upgrade-title {
    font-size: 44px;
    font-weight: 600;
    color: #000000;
    letter-spacing: -2px;
}

.upgrade-subtitle {
    font-size: 16px;
    color: var(--text);
    letter-spacing: -0.2px;
}

.billing-toggle-wrap {
    display: inline-flex;
    background: #f2f2f2;
    border-radius: 999px;
    padding: 3px;
    margin-bottom: 25px;
}

.billing-tab {
    border: none;
    background: transparent;
    border-radius: 999px;
    padding: 6px 22px;
    font-size: 13px;
    font-weight: 400;
    color: var(--text);
    cursor: pointer;
    transition: background .2s, color .2s;
}

.billing-tab.active {
    background: var(--pink);
    color: #fff;
}

/* Plan cards */
.plan-card {
    background: #F8F7FB;
    border-radius: 10px;
    border: 1.5px solid #b5b5b5;
    padding: 22px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card--featured {
    border: 3px solid var(--pink);
    background-color: #FFFFFF;
    margin-top: -20px;
}

.plan-card-name {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 6px;
}

.plan-card-desc {
    font-size: 13px;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 14px;
    flex-grow: 0;
}

.plan-card-price {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 2px;
    line-height: 1;
}

.plan-currency {
    font-size: 13px;
    font-weight: 400;
    color: var(--text);
    margin-right: 2px;
}

.plan-amount {
    font-size: 50px;
    font-weight: 600;
    color: #000000;
    line-height: 1;
    letter-spacing: -2px;
}

.plan-period {
    font-size: 12px;
    color: var(--text);
    margin-left: 4px;
    font-weight: 400;
}

.plan-billing-note {
    font-size: 13px;
    color: var(--pink);
    font-weight: 400;
    min-height: 18px;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.note-fixed {
    font-size: 12px;
    color: var(--pink);
    font-weight: 500;
}

.plan-limit {
    font-size: 10px;
    color: var(--text);
    background: #F8F7FB;
    border-radius: 12px;
    padding: 7px 5px;
    margin-bottom: 7px;
    display: inline-block;
    border: 1px solid #E3E3E3;
    font-weight: 600;
    text-align: center;
}

.bg-grey-light {
    background-color: #F8F7FB !important
}

.bg-grey {
    background-color: #2c2c2c !important
}

/* CTA buttons */
.plan-cta {
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    padding: 9px 16px;
    cursor: pointer;
    border: none;
    transition: opacity .2s, transform .15s;
    margin-bottom: 16px;
}

.plan-cta:hover {
    opacity: .85;
    transform: translateY(-1px);
}

.plan-cta--pink {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #FF557B 0%, #F991F3 50%, #FF557B 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: #fff;
}

.plan-cta--pink::before,
.plan-cta--dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .25) 50%, transparent 100%);
    transform: skewX(-20deg);
    pointer-events: none;
}

.plan-cta--pink:hover {
    background-position: 100% 50%;
    opacity: 1;
}

.plan-cta--pink:hover::before,
.plan-cta--dark:hover::before {
    left: 125%;
    transition: left .55s ease;
}

.plan-cta--outline {
    background: #FFFFFF;
    border: 1.5px solid #ddd;
    color: var(--text);
}

.plan-cta--outline:hover {
    border-color: var(--pink);
    color: var(--pink);
    opacity: 1;
}

.plan-cta--dark {
    position: relative;
    overflow: hidden;
    background: var(--text);
    color: #fff;
}

.plan-cta--dark:hover {
    background: #565656;
    opacity: 1;
}

/* Feature list */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.plan-features li {
    font-size: 11.5px;
    color: var(--text);
    padding: 4px 0 4px 20px;
    position: relative;
    line-height: 1.3;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pink);
    font-weight: 700;
}

.upgrade-footer-note {
    font-size: 13px;
    color: #000000;
}

.upgrade-footer-note a {
    color: var(--pink);
    text-decoration: none;
}

.upgrade-footer-note a:hover {
    text-decoration: underline;
}

/* ── INSIGHTS IA ── */
.btn-embed {
    background: none;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 18px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .15s, color .15s;
}

.btn-embed:hover {
    border-color: var(--pink);
    color: var(--pink);
}

/* Main dark card */
.insights-main-card {
    background: var(--text);
    border-radius: var(--card-radius);
    padding: 22px 28px 28px;
    position: relative;
    overflow: hidden;
}

.insights-main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.insights-eyebrow {
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0;
    color: rgb(255 255 255);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.insights-eyebrow i {
    font-size: 14px;
}

.btn-regenerar {
    background: rgba(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    color: var(--text);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 21px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .2s;
}

.btn-regenerar:hover {
    background: var(--pink);
    color: rgb(255, 255, 255);
}

.btn-regenerar i {
    font-size: 13px;
}

.insights-quote {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    line-height: 1.35;
    margin: 0;
    flex: 1;
    letter-spacing: -0.2px;
}

.insights-mascot {
    width: 100%;
    object-fit: contain;
    margin-bottom: -28px;
    display: inline-block;
}

/* Unique card (pink) */
.insights-unique-card {
    background: linear-gradient(135deg, #FF557B 0%, #F991F3 100%);
    border-radius: var(--card-radius);
    padding: 22px 26px;
}

.insights-unique-label {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0;
    color: rgb(255 255 255);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.insights-unique-label i {
    font-size: 14px;
}

.insights-unique-text {
    font-size: 14px;
    color: rgba(255, 255, 255);
    line-height: 1.6;
    margin: 0;
}

/* Lo que aman / A mejorar items */
.insight-item {
    display: flex;
    gap: 10px;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 11px;
}

.insight-item:last-child {
    margin-bottom: 0;
}

.insight-bullet {
    font-size: 17px;
    flex-shrink: 0;
    margin-top: 1px;
    line-height: 1;
}

.insight-bullet--check {
    color: var(--pink);
}

.insight-bullet--cross {
    color: #f05;
}

.insight-item-title {
    font-weight: 600;
    color: var(--text);
}

/* Plan de acción */
.impact-section {
    margin-bottom: 16px;
}

.impact-level {
    font-size: 13px;
    margin-top: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--text);
}

.local-action-label {
    display: block;
    text-decoration: underline;
    text-decoration-color: #f4d03f;
    text-decoration-thickness: 3px;
    text-underline-offset: 2px;
}

.local-action-card {
    display: block;
    margin-bottom: 18px;
}

.local-action-card:last-child {
    margin-bottom: 0;
}

.local-action-finding,
.local-action-checklist,
.local-action-checklist-item,
.local-action-meta {
    display: block;
}

.local-action-finding {
    margin-top: 6px;
}

.local-action-checklist {
    margin-top: 8px;
}

.local-action-checklist-item {
    position: relative;
    padding-left: 20px;
    margin-top: 4px;
}

.local-action-checkbox {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--pink);
    font-weight: 700;
}

.local-action-checkbox::before {
    content: "\2192";
}

.local-action-meta {
    margin-top: 5px;
    color: #6f6f6f;
}

.insights-comparison-list {
    display: flex;
    flex-direction: column;
}

.insights-comparison-item {
    padding: 14px 0;
    border-top: 1px solid #eceaf0;
}

.insights-comparison-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.insights-comparison-item:last-child {
    padding-bottom: 0;
}

.insights-comparison-item-header,
.insights-comparison-identity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.insights-comparison-item-header {
    justify-content: space-between;
}

.insights-comparison-identity strong,
.insights-comparison-identity small {
    display: block;
}

.insights-comparison-identity strong {
    font-size: 13px;
    color: var(--text);
}

.insights-comparison-identity small,
.insights-comparison-meta,
.insights-comparison-empty {
    font-size: 11px;
    color: var(--text-muted);
}

.insights-comparison-rank {
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff0f5;
    color: var(--pink);
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.insights-comparison-metric {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

.insights-comparison-meta {
    margin: 7px 0 0 40px;
}

.insights-comparison-reasons {
    margin: 7px 0 0 40px;
    font-size: 11px;
    color: var(--text-muted);
}

.insights-comparison-reasons summary {
    width: max-content;
    color: var(--pink);
    cursor: pointer;
    font-weight: 600;
}

.insights-comparison-reasons span {
    display: block;
    margin-top: 5px;
}

.insights-trend--up {
    color: #2f9e68;
}

.insights-trend--down {
    color: #d84a5f;
}

.insights-trend--stable {
    color: var(--text-muted);
}

.insights-trend--insufficient {
    color: var(--text-muted);
}

.insights-comparison-conclusion {
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 9px;
}

.insights-comparison-conclusion::before {
    content: '•';
    color: var(--pink);
    margin-right: 8px;
}

.insights-comparison-action {
    display: grid;
    gap: 4px;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #eceaf0;
    font-size: 13px;
    line-height: 1.6;
}

.insights-comparison-action strong {
    color: var(--pink);
}


.impact-text {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

.impact-divider {
    border-color: #E3E3E3;
    margin: 8px 0;
    opacity: 1;
}

/* Floating mascot (bottom right) */
.mascot-float {
    position: fixed;
    bottom: 0;
    right: 24px;
    width: 90px;
    pointer-events: none;
    z-index: 50;
}

/* ── COMPETIDORES ── */
.btn-add-competitor {
    letter-spacing: 0.2px;
    background: linear-gradient(90deg, #FF557B 0%, #F991F3 50%, #FF557B 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: background-position .35s ease, transform .15s ease;
    flex-shrink: 0;
}

.btn-add-competitor:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
}

.btn-add-competitor i {
    font-size: 13px;
}

/* ── Tooltip "Mejorá tu plan" (feature bloqueada por plan) ── */
.tooltip.plan-locked-tooltip {
    --bs-tooltip-bg: var(--white);
    --bs-tooltip-color: var(--text);
    --bs-tooltip-opacity: 1;
    --bs-tooltip-max-width: 230px;
    --bs-tooltip-padding-x: 16px;
    --bs-tooltip-padding-y: 14px;
    --bs-tooltip-border-radius: var(--card-radius);
}

.plan-locked-tooltip .tooltip-inner {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
    background-color: #FCFBFF;
    text-align: center;
    font-size: 12px;
    line-height: 1.3;
}

.plan-locked-tooltip .tooltip-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 4px;
    font-family: 'Work Sans', sans-serif;
}

.plan-locked-tooltip .tooltip-body {
    font-size: 11px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.3;
    font-family: 'Work Sans', sans-serif;
}

.plan-locked-tooltip .tooltip-body i {
    font-size: 14px;
    line-height: 1.45;
    color: var(--text-grey);
    flex-shrink: 0;
}

/* Tabla responsive: scrollea horizontal en vez de romper el layout */
.competitor-table-scroll {
    overflow-x: auto;
}

/* La card pierde el padding horizontal: lo asumen el header y las filas,
   así la fila destacada (degradé) puede llegar borde a borde. */

/* Table header */
.competitor-header-row {
    display: grid;
    grid-template-columns: 1fr 80px 90px 80px;
    padding: 6px 40px;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text-muted);
    gap: 10px;
    min-width: 472px;
}

/* Rows */
.competitor-row {
    display: grid;
    grid-template-columns: 1fr 80px 90px 80px;
    align-items: center;
    padding: 12px 40px;
    gap: 10px;
    border-bottom: 1px solid #E3E3E3;
    transition: background .15s;
    min-width: 472px;
}

.btn-regenerar.rosa {
    color: var(--pink);
    border-radius: 6px;
}

.btn-regenerar.rosa:hover {
    background-color: var(--pink);
    color: #FFFFFF;
}

.btn-regenerar.rosa[data-membership-locked="1"],
.btn-regenerar.rosa[data-membership-locked="1"]:hover {
    background: #bfc0c5;
    border-color: #bfc0c5;
    border-radius: 8px;
    color: #fff;
    cursor: not-allowed;
    padding: 7px 16px;
    transform: none;
}


.insights-quote.competencia {
    font-size: 18px;
}

.competitor-row:not(.competitor-row--featured):hover {
    background: #fafafa;
}

.competitor-row--featured {
    background: linear-gradient(90deg, #FF557B 0%, #F991F3 100%);
    border: none;
}

.competitor-row--featured .comp-name,
.competitor-row--featured .comp-addr,
.competitor-row--featured .comp-col-rating,
.competitor-row--featured .comp-col-reviews,
.competitor-row--featured .comp-rating-num {
    color: #fff;
}

/* Columns */
.comp-col-negocio {
    min-width: 0;
}

.comp-col-rating {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 4px;
}

.comp-col-reviews {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}


.comp-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.comp-addr {
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.comp-rating-num {
    font-size: 13px;
    font-weight: 600;
}

/* VS badge */
.vs-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
}

.vs-badge--above {
    background: #fde8e8;
    color: #d32f2f;
}

.vs-badge--equal {
    background: #f2f2f2;
    color: #6c757d;
}

.vs-badge--below {
    background: #e8f5e9;
    color: #43a047;
}

/* ── MI MARCA ── */
.marca-input {
    width: 100%;
    height: 44px;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 13px;
    color: var(--text);
    background: #F8F7FB;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}

.marca-input::placeholder {
    color: var(--text-muted);
}

.marca-input:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 85, 123, .1);
}

.btn-guardar {
    background: linear-gradient(90deg, #FF557B 0%, #F991F3 50%, #FF557B 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 24px;
    cursor: pointer;
    transition: background-position .35s ease, transform .15s ease;
}

.btn-guardar:hover:not(:disabled) {
    background-position: 100% 50%;
    transform: translateY(-1px);
}

.btn-guardar:disabled {
    opacity: .5;
    cursor: not-allowed;
}

/* Adjuntar button */
.btn-adjuntar {
    background: #F8F7FB;
    border: 1.5px solid #E3E3E3;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    padding: 5px 48px;
    cursor: pointer;
    transition: border-color .15s, color .15s;
    flex-shrink: 0;
}

.btn-adjuntar:hover:not(:disabled) {
    border-color: var(--pink);
    color: var(--pink);
}

.btn-adjuntar:disabled {
    opacity: .45;
    cursor: not-allowed;
}

/* Logo upload area */
.logo-upload-area {
    width: 150px;
    height: 120px;
    border: 2px dashed #ddd;
    border-radius: 10px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-upload-placeholder {
    font-size: 13px;
    color: var(--text-muted);
}

.logo-upload-image {
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
}

/* Logo card with overlay */
.marca-logo-card {
    position: relative;
    overflow: hidden;
}

.marca-logo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    border-radius: var(--card-radius);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marca-logo-overlay-inner {
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.marca-logo-overlay-inner i {
    font-size: 32px;
    opacity: .9;
}

.marca-logo-overlay-inner p {
    font-size: 14px;
    margin: 0;
    opacity: .9;
}

/* ── PLANTILLAS ── */
.template-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}


/* Badge */
.template-badge {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    align-self: flex-start;
}

.template-badge--positiva {
    background: var(--pink);
    color: var(--white);
    font-weight: 500;
}

.template-badge--negativa {
    background: #e05252;
    color: #ffffff;
    font-weight: 500;
}

.template-badge--neutral {
    background: #dfdfdf;
    color: var(--text);
    font-weight: 500;
}

/* Card text */
.template-title {
    font-size: 15px;
    font-weight: 400;
    color: var(--pink);
    text-transform: uppercase;
    /* letter-spacing: .2px; */
    line-height: 1.35;
}

.template-subtitle {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 2px;
}

.template-text {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
    background: #F8F7FB;
    border-left: 3px solid #e8e8e8;
    border-radius: 0 6px 6px 0;
    padding: 10px 14px;
    flex: 1;
    outline: none;
    cursor: text;
    transition: border-color .15s, box-shadow .15s;
}

.template-text:focus {
    border-left-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 85, 123, .08);
}

/* Buttons row */
.template-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.btn-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    background: var(--text);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 12px;
    cursor: pointer;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}

.btn-copy:hover {
    background: #222;
    transform: translateY(-1px);
}

.btn-copy--success {
    background: #000000;
}

.btn-copy--success:hover {
    background: #000000;
}

.btn-copy i {
    font-size: 14px;
}

.btn-personalize {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 1;
    background: transparent;
    color: var(--pink);
    border: 1.5px solid var(--pink);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 12px;
    cursor: pointer;
    transition: background .15s, color .15s;
    white-space: nowrap;
}

.btn-personalize:hover {
    background: var(--pink-light);
}

.btn-personalize i {
    font-size: 14px;
}

/* ── MI LOCAL ── */
.entity-search-panel {
    margin-top: 32px;
}

.entity-search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.entity-search-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.entity-search-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
    transition: color .15s;
}

.entity-search-close:hover {
    color: var(--pink);
}

.entity-search-results {
    margin: 10px 0;
    overflow-y: auto;
    max-height: 130px;
}

.entity-search-result {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: #f8f7fb;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    padding: 10px 14px;
    text-align: left;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}

.entity-search-result:hover {
    border-color: var(--pink);
    background: var(--pink-light);
}

.entity-search-result i {
    font-size: 18px;
    color: var(--pink);
}

.entity-search-result-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.entity-search-result-addr {
    font-size: 11px;
    color: var(--text-grey);
}

.local-card {
    position: relative;
}

.local-info-block {
    height: 100%;
    min-height: 190px;
    background: #B5B5B5;
    border-radius: var(--card-radius);
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 14px rgb(222 165 219 / 25%);
}

.local-delete-btn {
    position: absolute;
    top: 10px;
    right: 19px;
    background: rgba(255, 255, 255, .4);
    border: none;
    color: #7a7a7a;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s;
}

.local-delete-btn:hover {
    background: rgba(255, 255, 255, .7);
}

.local-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--pink);
    background: #fff;
    padding: 5px 10px;
    border-radius: 25px;
    margin-bottom: 12px;
    line-height: 9px;
}

.local-name {
    font-size: 25px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0px;
}

.local-addr {
    font-size: 13px;
    line-height: 1.3;
    color: var(--text-grey);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
}

.local-stat {
    background: #FEFAFC;
    border-radius: 10px;
    padding: 18px 20px;
    height: 100%;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 14px rgb(222 165 219 / 25%);
}

.local-stat--dark {
    background: var(--text);
}

.local-stat-label {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--pink);
    white-space: nowrap;
}

.local-stat--dark .local-stat-label {
    color: #FFFFFF;
}

.local-stat-value {
    font-size: 45px;
    letter-spacing: -2px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 3px;
    line-height: 1;
}

.local-stat-value i {
    font-size: 33px;
}

.local-stat--dark .local-stat-value {
    color: #fff;
}

.local-divider {
    display: none;
}

.local-sync-text {
    font-size: 11px;
    color: var(--text-grey);
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.local-status-icon {
    display: none;
}

.local-status-icon--approved {
    color: #FFFFFF;
}

.local-status-icon--pending {
    color: #FFFFFF;
}

.local-status-icon--rejected {
    color: #B8B8B8;
}

.local-btn-cargar {
    background: var(--text);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 20px;
    min-width: 160px;
    cursor: pointer;
}

.local-btn-cargar:hover {
    background: black;
}

.local-card.local-activo .local-badge {
    background-color: #FF557B;
    color: #FFFFFF;
}

.local-card.local-activo .local-info-block {
    background-color: #FEFAFC;
}

.local-card.local-activo .local-delete-btn {
    background-color: #f1f1f1;
}

.local-card.local-activo .local-name.text-white {
    color: #FF557B !important;
}

.local-card.local-activo .local-addr.text-white {
    color: #A4A4A4 !important;
}

/* ── LOGIN ── */
.login-body {
    background: #383838;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    margin: 0;
}

.login-page {
    display: flex;
    width: 860px;
    max-width: 100%;
    min-height: 530px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .4);
}

.login-left {
    flex: 1.7;
    background: linear-gradient(180deg, #FF557B 0%, #F991F3 100%);
    position: relative;
    overflow: hidden;
}

form.form-login {
    padding: 0 10%;
}

.login-right {
    flex: 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
}

/* Staggered fade-in */
@keyframes lf-fadein {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lf-el {
    animation: lf-fadein .55s ease both;
    animation-delay: var(--lf-delay, 0s);
}

/* Floating cards */
.lf-card--template .template-subtitle {
    font-size: 10px;
    line-height: 1.2;
}

.lf-card--template .template-text {
    font-size: 10px;
    line-height: 1.5;
}

.lf-card {
    position: absolute;
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
    will-change: transform;
}

.lf-card--template .template-card {
    gap: 7px;
}

.lf-card--template .btn-personalize {
    border-radius: 5px;
    padding: 6px 9px;
    font-size: 10px;
}

.lf-card--template .btn-copy {
    border-radius: 5px;
    padding: 6px 9px;
    font-size: 10px;
}

.lf-card--template {
    position: absolute;
    max-width: 330px;
    top: 7%;
    right: 6%;
}

.lf-card--dark {
    background: rgb(252 251 255 / 90%);
    width: 190px;
    top: 32%;
    left: 6%;
}

.lf-card--stat {
    background: rgba(252, 251, 255, 0.9);
    max-width: 200px;
    bottom: 20%;
    left: 6%;
    padding-bottom: 30px;
}

.lf-review {
    position: absolute;
    background: #F8F7FB;
    border-radius: 12px;
    padding: 10px 13px;
    width: 152px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    right: 6%;
    will-change: transform;
    text-align: center;
    z-index: 9;
}

.lf-review--1 {
    bottom: 24%;
}

.lf-review--2 {
    bottom: 10%;
}

.lf-robot {
    position: absolute;
    max-width: 380px;
    bottom: -1px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* Card internals */
.lf-eyebrow {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 18px;
}


.lf-big {
    font-size: 48px;
    font-weight: 600;
    color: var(--text);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 4px;
}


.lf-big i {
    font-size: 20px;
}

.lf-sub {
    font-size: 9px;
    color: var(--text-grey);
    margin-top: 3px;
}

.lf-stars {
    font-size: 10px;
    color: var(--pink);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.lf-quote {
    font-size: 9px;
    color: var(--text);
    line-height: 1.45;
}

/* Login form */
.login-form-wrap {
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.login-logo {
    height: 63px;
    margin-bottom: 8px;
}

.login-title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 26px;
    line-height: 1.3;
}

.login-field {
    position: relative;
    margin-bottom: 10px;
}

.login-field i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--text-muted);
    pointer-events: none;
}

.login-field input {
    width: 100%;
    height: 40px;
    border: 1.5px solid #ebebeb;
    border-radius: 10px;
    padding: 0 20px 0 40px;
    font-size: 11px;
    color: var(--text);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    text-align: left;
}

.login-field input::placeholder {
    color: var(--text-muted);
}

.login-field input:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 85, 123, .1);
    background: #fff;
}

.btn-login {
    width: 100%;
    height: 38px;
    background: #FF557B;
    background-position: 0% 50%;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .8px;
    cursor: pointer;
    margin-top: 6px;
    transition: background-position .35s ease, transform .15s;
}

.btn-login:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
}

.login-forgot {
    display: block;
    margin-top: 14px;
    font-size: 11px;
    color: #333333;
    text-decoration: none;
    transition: color .15s;
}

.login-forgot:hover {
    color: var(--pink);
}

/* ══════════════════════════ LANDING PAGE (index.html) ══════════════════════════ */

.lp-page {
    overflow-x: hidden;
}

.lp-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Promo bar */
.lp-promo-bar {
    background: linear-gradient(90deg, #FF557B 0%, #F991F3 100%);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    padding: 7px 16px;
}

.lp-promo-bar i {
    margin-right: 4px;
}

/* Header */
.lp-header {
    background: #fff;
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid transparent;
    transition: padding 0.28s ease, border-color 0.28s ease;
}

.lp-header.scrolled {
    padding: 2px 0;
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.lp-logo img {
    transition: height 0.28s ease;
}

.lp-header.scrolled .lp-logo img {
    height: 38px;
}

.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.lp-nav {
    display: flex;
    gap: 50px;
}

.lp-nav a {
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color .15s;
}

.lp-nav a:hover {
    color: var(--pink);
}

.lp-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile nav toggle + panel */
.lp-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 22px;
    cursor: pointer;
    padding: 0;
}

.lp-mobile-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
    transition: max-height .35s cubic-bezier(0.4, 0, 0.2, 1), border-color .35s ease;
}

.lp-mobile-nav.open {
    border-top-color: #eee;
}

.lp-mobile-nav.closing {
    transition: max-height .22s cubic-bezier(0.4, 0, 1, 1), border-color .22s ease;
}

.lp-mobile-nav a {
    padding: 14px 24px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #f2f2f2;
}

.lp-mobile-nav a:last-child {
    border-bottom: none;
}

.lp-mobile-nav a:hover {
    color: var(--pink);
}

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    padding: 5px 23px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity .2s, transform .35s cubic-bezier(.25, .8, .25, 1), background-position .3s;
    white-space: nowrap;
}

.lp-btn-lg {
    padding: 10px 25px;
    font-size: 13px;
}

.lp-btn-pink {
    position: relative;
    overflow: hidden;
    background: #FF557B;
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: #fff;
}

.lp-btn-pink::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .25) 50%, transparent 100%);
    transform: skewX(-20deg);
    pointer-events: none;
}

.lp-btn-pink:hover {
    background-position: 100% 50%;
    color: #fff;
    transform: translateY(-1px);
}

.lp-btn-pink:hover::before {
    left: 125%;
    transition: left .55s ease;
}

.lp-btn-outline {
    background: #fff;
    border: 1.5px solid #ddd;
    color: var(--text);
}

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

.lp-btn-outline-dark {
    position: relative;
    overflow: hidden;
    background: #A4A4A4;
    color: #fff !important;
}

.lp-btn-outline-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .25) 50%, transparent 100%);
    transform: skewX(-20deg);
    pointer-events: none;
}

.lp-btn-outline-dark:hover {
    background: #939393;
    transform: translateY(-1px);
}

.lp-btn-outline-dark:hover::before {
    left: 125%;
    transition: left .55s ease;
}

.lp-btn-ghost {
    background: transparent;
    color: var(--text);
    padding: 10px 14px;
}

.lp-btn-ghost:hover {
    color: var(--pink);
}

.lp-btn-dark {
    background: #1c1c1c;
    color: #fff;
}

.lp-btn-dark:hover {
    opacity: .85;
    color: #fff;
    transform: translateY(-1px);
}

/* Hero */
.lp-hero {
    background: var(--pink-light);
    padding: 56px 0 64px;
    overflow: hidden;
}

.lp-avatar-chips {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.lp-chip-floating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    background: #fff;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.lp-chip-floating i {
    color: var(--pink);
}

.lp-h1 {
    font-size: 46px;
    font-weight: 600;
    letter-spacing: -1.5px;
    line-height: 1.08;
    color: #1c1c1c;
    margin-bottom: 10px;
}

.lp-hero-question {
    font-size: 20px;
    font-weight: 500;
    color: var(--pink);
    letter-spacing: -1px;
    margin-top: 30px;
    margin-bottom: 14px;
}

.lp-hero-body {
    letter-spacing: -0.4px;
    font-size: 16px;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 26px;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: var(--text);
}

.lp-trust-row i.ph-fill.ph-check-circle {
    color: var(--pink);
    margin-right: 4px;
}

.lp-trust-plus {
    color: var(--text-muted);
    font-size: 11px;
}

.lp-hero-art {
    text-align: center;
}

.lp-hero-robot {
    width: 100%;
    max-width: 320px;
}

/* Generic section */
.lp-section {
    padding: 70px 0;
    background-color: #F8F7FB
}

.lp-section--pink {
    background: var(--pink-light);
}

.lp-eyebrow {
    display: inline-block;
    background: #F991F3;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 5px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.lp-h2 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1;
    color: #000000;
    margin-bottom: 14px;
}

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

.lp-section-sub {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.lp-body {
    font-size: 18px;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 18px;
    letter-spacing: -0.4px;
}

.lp-pink {
    color: var(--pink);
}

.lp-degrade-bold {
    background-image: linear-gradient(to right, #FF557B, #F991F3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
}

/* Toggle (Tengo un:) */
/* ── Tabs section ── */
.lp-tabs-section {
    background: #fff;
    padding: 90px 0 100px;
}

.lp-toggle-row {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 10px;
}

.lp-toggle-label {
    font-size: 26px;
    font-weight: 600;
    color: var(--text);
}

.lp-tab-btns {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lp-tab-btn {
    border: 1px solid #A4A4A4;
    background: transparent;
    border-radius: 7px;
    padding: 8px 12px;
    min-width: 150px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .6px;
    color: #A4A4A4;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lp-tab-btn.active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(90deg, #FF557B 0%, #F991F3 50%, #FF557B 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
}

.lp-tab-btn:not(.active):hover {
    border-color: #FF557B;
    color: #FF557B;
}

.lp-toggle-sub {
    font-size: 17px;
    color: #434343;
    letter-spacing: -0.2px;
}

/* Tab panels */
.lp-tab-stage {
    position: relative;
}

.lp-tab-panel {
    display: none;
}

.lp-tab-panel.active {
    display: block;
}

/* Mockup wrapper — padding makes room for floating cards */
.lp-tab-mockup-wrap {
    position: relative;
    display: inline-block;
    padding: 30px 110px;
}

/* Main dashboard image */
.lp-tab-main {
    max-width: 100%;
    display: block;
    opacity: 0;
}

.lp-tab-panel.active .lp-tab-main {
    animation: tabFade 0.45s ease forwards;
}

/* Floating review cards */
.lp-tf-wrap {
    position: absolute;
}

.lp-tab-float {
    width: 230px;
    display: block;
    opacity: 0;
}

/* Float animation on wrapper, fade on image */
.lp-tab-panel.active .lp-tf-1 {
    animation: floatY 3s 0.2s ease-in-out infinite;
}

.lp-tab-panel.active .lp-tf-2 {
    animation: floatY 3.5s 0.9s ease-in-out infinite;
}

.lp-tab-panel.active .lp-tf-3 {
    animation: floatY 4s 1.6s ease-in-out infinite;
}

.lp-tab-panel.active .lp-tf-1 .lp-tab-float {
    animation: tabFade 0.4s 0.15s ease forwards;
}

.lp-tab-panel.active .lp-tf-2 .lp-tab-float {
    animation: tabFade 0.4s 0.32s ease forwards;
}

.lp-tab-panel.active .lp-tf-3 .lp-tab-float {
    animation: tabFade 0.4s 0.50s ease forwards;
}

/* Card positions (relative to .lp-tab-mockup-wrap) */
.lp-tf-1 {
    top: 21%;
    right: 6%;
}

.lp-tf-2 {
    bottom: -30px;
    left: 9%;
}

.lp-tf-3 {
    top: 0;
    left: 4%;
}



@keyframes tabFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mockup card */
.lp-mockup {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .08);
    overflow: hidden;
    text-align: left;
}

.lp-mockup-tab {
    background: #1c1c1c;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 24px;
}

.lp-mockup-col {
    padding: 24px;
}

.lp-mockup-col--border {
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

.lp-mockup-col-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

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

.lp-bar-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: var(--text);
    margin-bottom: 12px;
}

.lp-bar-list li span:first-child {
    width: 70px;
    flex-shrink: 0;
}

.lp-bar {
    flex: 1;
    height: 7px;
    background: #f0f0f0;
    border-radius: 999px;
    overflow: hidden;
}

.lp-bar i {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #FF557B 0%, #F991F3 100%);
}

.lp-info-card {
    background: var(--pink-light);
    color: var(--pink);
    font-size: 12.5px;
    font-weight: 500;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 10px;
}


/* Dark stat banner */
.lp-stat-dark {
    background: #2C2C2C;
    border-radius: 13px;
    padding: 8% 3%;
}

.lp-stat-dark--features {
    padding: 60px 0;
}

.lp-stat-dark-text {

    font-size: 70px;
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 1;
    color: #fff;
    max-width: 75%;
    margin: 0 auto;
}

.lp-pill-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.lp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 999px;
    padding: 9px 18px;
}

.lp-pill i {
    color: var(--pink);
}

/* ── Signals sticky scroll ── */
.lp-signals-scroll {
    position: relative;
    height: 210vh;
}

.lp-signals-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fff;
}

/* Neutral on tablet/desktop: the whole row (text + media) is pinned via
   .lp-signals-sticky already. On mobile this becomes its own sticky unit
   for the media only — see the max-width:767px override below. */
.lp-sig-media-scroll {
    height: auto;
}

.lp-sig-media-sticky {
    position: static;
}

.lp-sig-stage {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-sig-bot {
    height: 460px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .12));
    pointer-events: none;
    user-select: none;
}

.lp-sig-card {
    position: absolute;
    width: 155px;
    opacity: 0;
    transform: scale(.82) translateY(10px);
    transition: opacity .45s ease, transform .45s ease;
    z-index: 3;
}

.lp-sig-card.on {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.lp-sig-card[data-si="1"] {
    top: 31%;
    left: 22%;
    z-index: -1;
}

.lp-sig-card[data-si="2"] {
    top: 5%;
    left: 23%;
    z-index: -1;
    min-width: 190px;
}

.lp-sig-card[data-si="3"] {
    top: 0;
    right: 23%;
    z-index: -1;
}

.lp-sig-card[data-si="4"] {
    top: 43%;
    left: 15%;
    z-index: -2;
    min-width: 290px;
}

.lp-sig-card[data-si="5"] {
    top: 31%;
    right: 20%;
    min-width: 190px;
}

.lp-sig-card[data-si="6"] {
    bottom: 5%;
    left: 20%;
}

.lp-sig-card[data-si="7"] {
    bottom: 6%;
    right: 5%;
    z-index: -1;
    min-width: 230px;
}

.lp-sig-card[data-si="8"] {
    bottom: 35%;
    right: 20%;
    min-width: 187px;
}

.lp-sig-card[data-si="9"] {
    top: 13%;
    right: 13%;
    z-index: -1;
    min-width: 195px;
}



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

.lp-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.lp-check-list li i {
    color: var(--pink);
    font-size: 15px;
}

.lp-callout {
    font-size: 35px;
    color: #000000;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

/* ── Process section (dark) ── */
.lp-proc-section {
    background: #2C2C2C;
    padding: 100px 0;
}

.lp-proc-sub {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.65;
    margin: 18px 0 0;
}

.lp-proc-wrap {
    height: 100%;
    padding: 2px;
    border-radius: 18px;
    background: #1e1e1e;
    transition: background 0.28s ease, transform 0.28s ease;
}

.lp-proc-wrap:hover {
    background: linear-gradient(135deg, #FF557B 0%, #F991F3 100%);
    transform: scale(1.03);
}

.lp-proc-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    height: 100%;
}

.lp-proc-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: linear-gradient(135deg, #FF557B, #F991F3);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 13px;
}

.lp-proc-title {
    letter-spacing: -0.5px;
    font-size: 18px;
    font-weight: 600;
    color: #434343;
    margin-bottom: 10px;
    line-height: 1.2;
}

.lp-proc-text {
    font-size: 14px;
    color: #434343;
    line-height: 1.4;
    margin: 0;
}

/* Process steps (legacy, unused) */
.lp-step-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 18px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.lp-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.lp-step-icon {
    font-size: 30px;
    color: var(--pink);
    display: block;
    margin-bottom: 10px;
}

.lp-step-title {
    font-size: 14.5px;
    font-weight: 600;
    color: #1c1c1c;
    margin-bottom: 6px;
}

.lp-step-text {
    font-size: 12.5px;
    color: var(--text-grey);
    margin: 0;
}

/* Stats band */
.lp-stat-band {
    background: #2c2c2c;
    padding: 90px 0;
}

.lp-stat-band-title {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-stat-band.visible .lp-stat-band-title {
    opacity: 1;
    transform: translateY(0);
}

.lp-stat-num {
    font-size: 78px;
    font-weight: 500;
    color: #FF557B;
    line-height: 1;
    letter-spacing: -5px;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.lp-stat-label {
    font-size: 15px;
    color: #ffffff;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.lp-stat-star {
    color: #F991F3;
    font-size: 11px;
    vertical-align: middle;
}

.lp-stat-band.visible .lp-stat-num {
    opacity: 1;
    transform: translateY(0);
}

.lp-stat-band.visible .lp-stat-label {
    opacity: 1;
    transform: translateY(0);
}

/* staggered delay per column */
.lp-stat-band.visible .row>div:nth-child(1) .lp-stat-num {
    transition-delay: 0.15s;
}

.lp-stat-band.visible .row>div:nth-child(1) .lp-stat-label {
    transition-delay: 0.25s;
}

.lp-stat-band.visible .row>div:nth-child(2) .lp-stat-num {
    transition-delay: 0.32s;
}

.lp-stat-band.visible .row>div:nth-child(2) .lp-stat-label {
    transition-delay: 0.42s;
}

.lp-stat-band.visible .row>div:nth-child(3) .lp-stat-num {
    transition-delay: 0.49s;
}

.lp-stat-band.visible .row>div:nth-child(3) .lp-stat-label {
    transition-delay: 0.59s;
}

/* Comparison table */
.lp-compare {
    background: #FCFBFF;
    border-radius: 8px;
    overflow: hidden;
}

.lp-compare-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.lp-compare-col {
    padding: 16px 24px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--text);
    background: #FCFBFF;
    text-align: start;
}

.lp-compare-col--pink {
    color: #fff;
    background: var(--pink);
}

.lp-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgb(201 201 201 / 70%);
}

.lp-compare-cell {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 24px;
    text-align: start;
    font-size: 13.5px;
    color: var(--text);
}

.lp-compare-cell i {
    flex-shrink: 0;
    color: #B5B5B5;
    font-size: 18px;
}

.lp-compare-cell--pink {
    color: var(--text);
    background: #ffffff;
}

.lp-compare-cell--pink i {
    color: var(--pink);
}

/* ── Comparison section (pink bg) ── */
.lp-compare-section {
    background: linear-gradient(135deg, #FF557B 0%, #F991F3 100%);
    padding-top: 7%;
}

/* ── Predict CTA (dark, line-by-line) ── */
.lp-predict-section {
    padding: 110px 0 0;
    overflow: hidden;
    position: relative;
}

.lp-predict-title {
    font-size: 74px;
    font-weight: 500;
    letter-spacing: -3px;
    line-height: 1;
    color: #fff;
    margin-bottom: 0;
}

.lp-predict-line {
    display: block;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.lp-predict-section.visible .lp-predict-line:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.lp-predict-section.visible .lp-predict-line:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.92s;
}

.lp-predict-pink {
    color: #FF557B;
}

.lp-predict-btn-wrap {
    position: absolute;
    z-index: 99;
    bottom: 40px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.lp-predict-section.visible .lp-predict-btn-wrap {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.35s;
}

.lp-predict-robot-wrap {
    text-align: center;
    line-height: 0;
}

.lp-predict-robot {
    max-width: 35%;
    display: inline-block;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.lp-predict-section.visible .lp-predict-robot {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.lp-btn-pink.lp-predict-btn {
    background: linear-gradient(90deg, #FF557B 0%, #F991F3 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
}

.lp-btn-pink.lp-predict-btn:hover {
    background-position: 100% 50%;
}

/* ── Testimonial Swiper carousel ── */
.lp-testi-section {
    background: #F1F1F1;
    padding: 90px 0 70px;
    overflow: hidden;
}

.lp-testi-heading {
    font-size: 50px;
    font-weight: 800;
    letter-spacing: -2.5px;
    color: #111;
    margin-bottom: 0;
}

/* Swiper overrides */
.lp-testi-swiper {
    overflow: visible !important;
}

.lp-testi-swiper .swiper-wrapper {
    align-items: center;
}

/* Each slide */
.lp-ts {
    width: 620px;
}

.lp-ts-card {
    height: 300px;
    border-radius: 20px;
    background: #F8F7FB;
    overflow: hidden;
    display: flex;
    transition: box-shadow 0.35s ease;
}

.swiper-slide-active .lp-ts-card {
    background: linear-gradient(135deg, #FF557B 0%, #F991F3 100%);
    box-shadow: 0 28px 70px rgba(255, 85, 123, .28);
}

/* — Photo slide — */
.lp-ts--photo .lp-ts-card {
    display: block;
}

.lp-ts-full-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* — Quote slide — */
.lp-ts-left {
    flex: 1;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.lp-ts-text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    color: #555;
    margin: 0;
    flex: 1;
}

.swiper-slide-active .lp-ts-text {
    color: #fff;
}

.lp-ts-attr {
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    margin-top: 14px;
    line-height: 1.2;
}

.swiper-slide-active .lp-ts-attr {
    color: rgba(255, 255, 255);
}

.lp-ts-right {
    width: 285px;
    flex-shrink: 0;
    padding: 10px;
}

.lp-ts-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* — Stat slide — */
.lp-ts--stat .lp-ts-card {
    flex-direction: column;
    justify-content: end;
    padding: 32px 36px;
}

.lp-ts-stat-num {
    font-size: 58px;
    font-weight: 800;
    letter-spacing: -2px;
    color: #111;
    line-height: 1;
}

.swiper-slide-active .lp-ts-stat-num {
    color: #fff;
}

.lp-ts-stat-desc {
    font-size: 18px;
    color: var(--text);
    margin: 0;
}

.swiper-slide-active .lp-ts-stat-desc {
    color: rgba(255, 255, 255);
}

/* Navigation */
.lp-testi-nav {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 36px;
}

.lp-testi-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #d0d0d0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}

.lp-testi-btn:hover {
    border-color: #FF557B;
    color: #FF557B;
}

/* ── FAQ redesign ── */
.lp-faq-section {
    background: #fff;
    padding: 100px 0 120px;
}

.lp-faq-title {
    font-size: 45px;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 52px;
}

/* Accordion: card style with gaps */
.lp-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-accordion .accordion-item {
    border: 1.5px solid #dadada !important;
    border-radius: 16px !important;
    overflow: hidden;
    background: #fff;
}

/* Override Bootstrap's connected border model */
.lp-accordion>.accordion-item+.accordion-item {
    margin-top: 0;
    border-top: 1.5px solid #e8e8e8 !important;
}

.lp-accordion .accordion-button {
    font-size: 19px !important;
    font-weight: 600 !important;
    letter-spacing: -0.5px;
    color: #434343 !important;
    padding: 22px 24px !important;
    background: #fff !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px;
}

/* Kill Bootstrap's built-in arrow */
.lp-accordion .accordion-button::after {
    display: none !important;
}

.lp-accordion .accordion-button:focus {
    box-shadow: none !important;
    outline: none;
}

.lp-accordion .accordion-button:not(.collapsed) {
    color: #111 !important;
    background: #fff !important;
}

/* Custom icon */
.lp-faq-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
    color: var(--pink);
    background-color: #F8F7FB;
    transition: background 0.22s ease, color 0.22s ease;
}

.lp-accordion .accordion-button:not(.collapsed) .lp-faq-icon {
    background: #FF557B;
    color: #fff;
}

/* Toggle which caret is visible */
.lp-faq-ic-open {
    display: none;
}

.lp-faq-ic-close {
    display: flex;
}

.lp-accordion .accordion-button:not(.collapsed) .lp-faq-ic-open {
    display: flex;
}

.lp-accordion .accordion-button:not(.collapsed) .lp-faq-ic-close {
    display: none;
}

.lp-accordion .accordion-body {
    padding: 0 24px 24px !important;
    font-size: 14px !important;
    color: #434343 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.2px;
}

/* Footer */
.lp-footer {
    background: #1c1c1c;
    padding: 16px 0;
}

.lp-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.lp-footer-left {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 13px;
}

.lp-footer-copy {
    color: #fff;
    font-weight: 500;
}

.lp-footer-terms {
    color: rgba(255, 255, 255);
    text-decoration: none;
    font-weight: 300;
    transition: color .15s;
}

.lp-footer-terms:hover {
    color: #fff;
}

.lp-footer-social {
    display: flex;
    gap: 10px;
}

.lp-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .18);
    color: #393838;
    font-size: 20px;
    transition: background .15s, border-color .15s;
    text-decoration: none;
    background-color: #ffffff;
}

.lp-footer-social a:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: #FFFFFF;
}

.lp-footer-freebie {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #1c1c1c;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 20px 6px 6px;
    border-radius: 999px;
    transition: opacity .15s, transform .15s;
}

.lp-footer-freebie:hover {
    opacity: .85;
    transform: translateY(-1px);
    color: #1c1c1c;
}

.lp-footer-freebie img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.freebie-chat {
    position: fixed;
    right: 2px;
    bottom: 0;
    z-index: 1040;
}

/* The minimized "robot bubble" treatment is desktop-only (matches
   account/freebie/widget.css's own min-width:992px gate) — below that,
   .freebie-chat falls back to the normal panel header (avatar + name),
   instead of this background image fighting with it for the same space. */
@media (min-width: 992px) {
    .freebie-chat.is-minimized {
        width: 140px;
        height: 126px;
    }

    .freebie-chat.is-minimized .freebie-chat-header {
        width: 140px;
        height: 126px;
        padding: 0;
        background: url(../img/robot-review.png) center bottom / contain no-repeat;
    }
}

/* account/freebie/widget.css sets its own unconditional .freebie-chat
   { bottom: 13px } and loads after this stylesheet, so an equal-specificity
   rule here would lose regardless — bumped with `body` to actually win.
   This is just the resting position; a script (see the pages) pushes it
   above the footer via an inline style once the footer scrolls into view,
   which wins over this rule too since inline style beats any stylesheet. */
body .freebie-chat {
    bottom: 0;
}

@media (max-width: 576px) {
    .freebie-chat {
        right: 10px;
    }
}

/* ── Hero centered (index.html redesign) ── */
.lp-hero--c {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: calc(100vh - 72px);
    background: #fff;
    display: flex;
    align-items: center;
}

.lp-hero--c .lp-hero-question {
    color: #1c1c1c;
}

.lp-hero--c .lp-hero-body {
    color: #434343;
}

.lp-hero--c .lp-btn-pink {
    background: #FF557B;
    background-image: none;
    transition: opacity 0.18s ease;
}

.lp-hero--c .lp-btn-pink:hover {
    background-position: 0;
    opacity: 0.86;
}

.lp-hero-content {
    position: relative;
    z-index: 2;
}

.lp-hero-content .lp-h1,
.lp-hero-content .lp-hero-question,
.lp-hero-content .lp-hero-body,
.lp-hero-content .lp-btn {
    opacity: 0;
}

.lp-hero-content .lp-h1 {
    font-size: 60px;
    font-weight: 500;
    letter-spacing: -2.2px;
    z-index: 8;
    position: relative;
}

.lp-hero-content .lp-hero-question {
    font-size: 22px;
}

.lp-hero-content .lp-hero-body {
    color: #434343;
}

/* Headline robot: floats over the top-right of the h1 */
.lp-hero-title-wrap {
    position: relative;
}

.lp-hero-title-robot {
    position: absolute;
    bottom: -27px;
    right: 12%;
    width: 190px;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

body.hero-ready .lp-hero-title-robot {
    animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 1.02s both;
}

/* Reviews: 3 fixed slots in a row. Each slot stacks 2 review images (a/b); JS
   (see index.php) toggles .is-in/.is-out on them every 5s so the set of 3
   rotates through all 6 reviews without ever sliding. Both the first reveal
   and every later swap use the same classes, so there's one animation path:
   the incoming card fades up into place, the outgoing one fades up and out. */
.lp-reviews-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 22px;
    margin: 10px 0 30px;
}

.lp-review-slot {
    position: relative;
    width: 300px;
    max-width: 100%;
    aspect-ratio: 720 / 346;
}

.lp-review-card {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .1);
    opacity: 0;
    transform: translateY(26px);
}

.lp-review-card.is-in {
    animation: reviewCardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lp-review-card.is-out {
    animation: reviewCardOut 0.5s cubic-bezier(0.55, 0, 1, 0.45) both;
}

@keyframes reviewCardIn {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes reviewCardOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-26px);
    }
}

/* Text enters in stages, not all at once: headline, then the subcopy, then the button.
   Gated on body.hero-ready (added by the preloader's kick() in the same statement that
   starts #lp-pre's exit fade — see index.php) so the reveal starts at the exact instant
   the preloader begins to disappear, instead of a hardcoded delay that has to be kept
   in sync with the JS by hand. */
body.hero-ready .lp-hero-content .lp-h1 {
    animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 1.02s both;
}

body.hero-ready .lp-hero-content .lp-hero-question,
body.hero-ready .lp-hero-content .lp-hero-body {
    animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 1.32s both;
}

body.hero-ready .lp-hero-content .lp-btn {
    animation: heroFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 1.62s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ── Clients bar ── */
.lp-clients-bar {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px 0;
    overflow: hidden;
}

.lp-clients-label {
    flex-shrink: 0;
    font-size: 14px;
    color: #B8B8B8;
    white-space: nowrap;
    padding: 0 28px 0 28px;
    border-right: 1px solid #ebebeb;
}

.lp-clients-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.lp-clients-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, transparent, #fff);
    pointer-events: none;
    z-index: 1;
}

.lp-clients-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: clientsScroll 20s linear infinite;
}

.lp-clients-track:hover {
    animation-play-state: paused;
}

@keyframes clientsScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.lp-client-logo {
    height: 22px;
    width: auto;
    flex-shrink: 0;
    display: block;
    margin-right: 64px;
    /* espacio incluido en cada item → -50% es loop perfecto */
}

/* ── Billing toggle ── */
.lp-billing-toggle {
    display: inline-flex;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 4px;
    gap: 2px;
}

.lp-billing-btn {
    border: none;
    background: transparent;
    border-radius: 7px;
    padding: 7px 22px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.2px;
    color: #434343;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.lp-billing-btn.active {
    background: #FF557B;
    color: #fff;
}

.plan-amount {
    transition: opacity 0.18s ease;
}

/* ── Features stacking scroll ── */
.lp-feat-scroll {
    position: relative;
}

.lp-feat-sticky {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}

.lp-feat-header {
    padding: 44px 0 20px;
    flex-shrink: 0;
}

.lp-feat-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.15;
    color: #111;
    margin-bottom: 18px;
}

.lp-feat-pills {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.lp-feat-pill {
    min-width: 190px;
    border: 1px solid #e8e8e8;
    box-shadow: 0px 0px 4px rgb(0 0 0 / 8%);
    background: #F8F7FB;
    border-radius: 7px;
    padding: 7px 18px;
    font-size: 12px;
    font-weight: 600;
    color: #434343;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.lp-feat-pill:hover:not(.active) {
    border-color: #FF557B;
    color: #FF557B;
}

.lp-feat-pill.active {
    background: linear-gradient(135deg, #FF557B, #F991F3);
    color: #fff;
    box-shadow: none;
    border-color: transparent;
}

.lp-feat-stage {
    position: relative;
    padding: 0 0 28px;
}

.lp-feat-card {
    display: none;
}

.lp-feat-card.active {
    display: block;
    animation: featCardIn 0.4s ease both;
}

@keyframes featCardIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-feat-card-inner {
    display: flex;
    gap: 48px;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    padding: 50px 44px;
    overflow: hidden;
}

.lp-feat-left {
    flex: 0 0 46%;
    display: flex;
    flex-direction: column;
}

.lp-feat-right {
    flex: 1;
}

.lp-feat-card-title {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 14px;
}

.lp-feat-card-inner.card-1 {
    background: #FEEFF3;
}

.lp-feat-card-inner.card-2 {
    background: #F3EEFF;
}

.lp-feat-card-inner.card-3 {
    background: #FDEFFC;
}

.lp-feat-card-inner.card-4 {
    background: #FFE9EF;
}

.lp-feat-card-inner.card-5 {
    background: #F3EEFF;
}


.lp-feat-card-body {
    font-size: 14px;
    letter-spacing: -0.2px;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Chat bubbles */
.lp-feat-chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.lp-feat-chat-bubble {
    background: #f5f5f7;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    color: #333;
    line-height: 1.5;
}

.lp-feat-chat-bubble--action {
    background: #fff0f4;
    color: #FF557B;
    font-weight: 600;
    cursor: pointer;
}

/* Review card */
.lp-feat-review-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
}

.lp-feat-stars {
    color: #FF557B;
    font-size: 15px;
    margin-bottom: 6px;
}

.lp-feat-review-text {
    font-size: 13px;
    color: #555;
    margin: 0;
}

.lp-feat-response {
    background: #fff0f4;
    border-radius: 10px;
    padding: 12px 16px;
}

.lp-feat-response-label {
    font-size: 11px;
    font-weight: 700;
    color: #FF557B;
    display: block;
    margin-bottom: 4px;
}

.lp-feat-response p {
    font-size: 13px;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

/* Bar with pink variant */
.lp-bar--pink i {
    background: linear-gradient(90deg, #FF557B, #F991F3) !important;
}

.lp-bar-you {
    font-weight: 700;
    color: #FF557B;
}

/* Local list */
.lp-feat-local-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-feat-local-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.lp-feat-local-name {
    color: #333;
}

.lp-feat-local-rating {
    font-weight: 700;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 999px;
}

.lp-feat-local-rating--ok {
    background: #e8f8f0;
    color: #2ecc71;
}

.lp-feat-local-rating--warn {
    background: #fff8e6;
    color: #f39c12;
}

.lp-feat-local-rating--bad {
    background: #fdecea;
    color: #e74c3c;
}

/* Mockup note */
.lp-feat-mockup-note {
    font-size: 11px;
    color: #888;
    margin-top: 14px;
    line-height: 1.4;
}

.lp-feat-cta {
    flex-shrink: 0;
    text-align: center;
    padding: 18px 0 24px;
}

/* ── Gradient background zone ── */
.lp-grad-bg {
    background-image:
        radial-gradient(circle at 5% 100%, rgb(224 96 214 / 46%) 0%, transparent 45%), radial-gradient(circle at 15% 60%, rgb(217 100 200 / 15%) 0%, transparent 50%), radial-gradient(circle at 30% 100%, rgb(230 80 170 / 0%) 0%, transparent 55%), radial-gradient(circle at 60% 20%, rgb(255 255 255 / 50%) 0%, transparent 50%), radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0) 0%, transparent 60%);
    background-repeat: no-repeat;
    background-color: #fff;
}

.lp-grad-bg .lp-hero {
    background: transparent;
}

.lp-grad-bg .lp-tabs-section {
    background: transparent;
}


.lp-grad-bg .lp-btn-outline-dark {
    border-color: rgba(0, 0, 0, .22);
    color: #111;
}

.lp-grad-bg .lp-btn-outline-dark:hover {
    border-color: #111;
}

/* ── Clients Swiper ticker ── */
.lp-clients-track {
    animation: none;
}

.lp-clients-swiper {
    flex: 1;
    overflow: hidden;
}

.lp-clients-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.lp-client-slide {
    width: auto !important;
    display: flex;
    align-items: center;
}

/* ── Contacto modal ── */
.lp-contact-modal .modal-dialog {
    max-height: calc(100vh - 56px);
}

.lp-contact-modal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    max-height: calc(100vh - 56px);
}

.lp-contact-modal .modal-header {
    border-bottom: none;
    padding: 20px 28px 0;
}

.lp-contact-modal .modal-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #000;
}

.lp-contact-modal .modal-body {
    padding: 12px 28px 24px;
}

.lp-contact-modal .form-label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.lp-contact-modal .form-control {
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    padding: 8px 14px;
    font-size: 14px;
}

.lp-contact-modal .form-control:focus {
    border-color: #FF557B;
    box-shadow: 0 0 0 3px rgba(255, 85, 123, .15);
}

.lp-contact-modal textarea.form-control {
    resize: none;
}

.lp-contact-modal button[type="submit"] {
    margin-top: 6px;
}

/* ── Descarga modal ── */
.lp-download-modal .modal-content {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.lp-download-modal .modal-body {
    padding: 40px 46px 46px;
}

.lp-download-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
}

.lp-download-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.3px;
    color: #434343;
    margin: 0 0 24px;
}

.lp-download-input {
    display: block;
    width: 100%;
    background: #F8F7FB;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 13px;
    color: #1c1c1c;
    margin-bottom: 14px;
}

.lp-download-input::placeholder {
    color: #B5B5B5;
}

.lp-download-input:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 85, 123, .15);
    background: #fff;
}

.lp-download-input.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, .12);
}

.lp-download-field-error {
    margin: -8px 0 14px;
    color: #dc3545;
    font-size: 11px;
}

.lp-download-hint {
    font-size: 11px;
    color: #B5B5B5;
}

.lp-download-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #434343;
    margin-bottom: 24px;
    cursor: pointer;
}

.lp-download-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--pink);
    flex-shrink: 0;
}

.lp-download-btn {
    display: block;
    width: 100%;
    max-width: 170px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: var(--pink);
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: 8px 19px;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-align: center;
    cursor: pointer;
    transition: background-position .3s, transform .35s cubic-bezier(.25, .8, .25, 1);
}

.lp-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .25) 50%, transparent 100%);
    transform: skewX(-20deg);
    pointer-events: none;
}

.lp-download-btn:hover {
    background-position: 100% 50%;
    color: #fff;
    transform: translateY(-1px);
}

.lp-download-btn:hover::before {
    left: 125%;
    transition: left .55s ease;
}

/* ── Reveal por línea (cortina rosa) ── */
.lp-reveal-text {
    position: relative;
}

.lp-reveal-word {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.55s ease;
}

.lp-reveal-word.go {
    opacity: 1;
}

.lp-reveal-line-block {
    position: absolute;
    background: #FF557B;
    border-radius: 4px;
    transform-origin: right center;
    transform: scaleX(1);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    pointer-events: none;
    z-index: 2;
}

.lp-reveal-line-block.go {
    transform: scaleX(0);
}

/* Buttons follow the text reveal with a plain fade, no wipe curtain */
.lp-reveal-btns {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.lp-reveal-btns.go {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════ RECURSOS: "Todo en un mismo lugar" carousel ══════════════════════
   Custom properties and the page-background rule from the source snippet were
   defined on :root/body, which would have clobbered the site-wide --text-muted
   and body background/font — scoped to .lp-hub-section instead so they only
   apply inside this section. */
.lp-hub-section {
    --text-muted: rgba(43, 43, 61, .62);
    --visual-w: 40%;
    background:
        radial-gradient(60% 65% at 6% 96%, rgba(224, 173, 255, .55) 0%, rgba(224, 173, 255, 0) 62%),
        radial-gradient(55% 55% at 22% 78%, rgba(255, 170, 210, .38) 0%, rgba(255, 170, 210, 0) 65%),
        radial-gradient(65% 65% at 96% 4%, #fffaf5 0%, rgba(255, 250, 245, 0) 55%),
        #fffdfb;
    font-family: 'Work Sans', sans-serif;
    color: #1c1c1c;
    padding: 56px 24px;
}

.lp-hub-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 25px;
}

.lp-hub-section .section-header p {
    font-size: 19px;
    color: #434343;
}

.lp-hub-section .section-title {
    font-weight: 600;
    font-size: 3.3rem;
    letter-spacing: -0.04em;
    margin: 0;
    color: #000000;
}

.lp-hub-section .header-arrows {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ---- carousel shell ----
   No overflow:hidden here: cards collapse via flex-basis, not by sliding a
   wider track, so nothing needs edge-clipping — and clipping this wrapper
   was cutting the cards' box-shadow off top/bottom. */
.lp-hub-section .cards-wrap {
    display: flex;
    /* Spacing is done with margin-right per card (below), not gap: a
       collapsed hidden-slot card sitting before the first visible one would
       still count for one gap unit even at 0 width, nudging everything
       right. margin-right can be zeroed out specifically on that card. */
    width: 100%;
    max-height: 250px;
}

.lp-hub-section .carousel-arrow {
    position: relative;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(28, 28, 28, .12);
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(6px);
    color: #FF557B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}

.lp-hub-section .carousel-arrow:hover {
    background: #fff;
    border-color: rgba(28, 28, 28, .25);
}

.lp-hub-section .carousel-arrow svg {
    width: 17px;
    height: 17px;
}

.lp-hub-section .carousel-arrow[disabled] {
    opacity: .6;
    cursor: default;
    pointer-events: none;
}

/* ---- card ----
   overflow:hidden (needed to clip the inner content while the card's flex
   width animates) and box-shadow can't live on the same element — the clip
   cuts the shadow off too. So overflow lives on .card-inner instead, and
   .card-item (the flex participant + shadow/margin owner) stays unclipped. */
.lp-hub-section .card-item {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    border-radius: 12px;
    cursor: pointer;
    margin-right: 16px;
    box-shadow: 0 4px 25px 0 rgba(222, 165, 219, .25);
    transition: flex-grow .55s cubic-bezier(.65, 0, .35, 1), flex-basis .55s cubic-bezier(.65, 0, .35, 1), opacity .4s ease, margin-right .5s cubic-bezier(.65, 0, .35, 1);
}

.lp-hub-section .card-item:last-child {
    margin-right: 0;
}

.lp-hub-section .card-inner {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
    background: #FCFBFF;
    color: #000000;
    transition: background .55s ease, color .35s ease;
}

.lp-hub-section .card-item.active .card-inner,
.lp-hub-section .card-item:hover .card-inner {
    color: #fff;
}

.lp-hub-section .card-item.active .card-inner {
    background: linear-gradient(135deg, #FF557B 0%, #F991F3 100%);
    --text-muted: rgba(255, 255, 255, .78);
}

.lp-hub-section .card-item.active {
    flex-grow: 2;
}

.lp-hub-section .card-item.inactive {
    flex-grow: .62;
}

/* cards outside the visible window: collapsed to zero width, still in the DOM —
   margin-right:0 too, so one sitting before the first visible card doesn't
   leave a stray gap pushing it away from the left edge. */
.lp-hub-section .card-item.hidden-slot {
    flex: 0 0 0;
    width: 0;
    min-width: 0;
    margin-right: 0;
    opacity: 0;
    pointer-events: none;
}

/* text column: takes whatever space the image column (a real flex sibling
   now, not an absolutely-positioned overlay) isn't using — min-width:0 lets
   it actually shrink instead of forcing overflow on the collapsed cards. */
.lp-hub-section .card-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    padding: 40px 36px;
}

/* Collapsed cards are much narrower than the active one — give them just
   enough padding to breathe instead of eating most of the available width. */
.lp-hub-section .card-item:not(.active) .card-content {
    padding: 24px 18px;
}

.lp-hub-section .card-content h2 {
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 22px;
    color: inherit;
    transition: color .35s ease;
}

.lp-hub-section .card-link {
    align-self: flex-start;
    background: none;
    border: 0;
    border-bottom: 1px solid currentColor;
    color: inherit;
    font-family: inherit;
    font-weight: 400;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .02em;
    text-decoration: none;
    padding: 0 0 1px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .2s ease, transform .2s ease, color .35s ease;
}

.lp-hub-section .card-link:hover {
    color: #fff;
    opacity: .8;
    transform: translateY(-1px);
}

/* ---- visual: a normal flex sibling, not an absolutely-positioned overlay —
   collapsed to 0 width on inactive/collapsed cards so it takes no layout
   space there, and grows to --visual-w when the card is active. */
.lp-hub-section .card-visual {
    position: relative;
    flex: 0 0 0;
    width: 0;
    padding: 24px 0;
    z-index: 1;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: flex-basis .5s cubic-bezier(.65, 0, .35, 1), width .5s cubic-bezier(.65, 0, .35, 1), opacity .4s ease, padding .5s cubic-bezier(.65, 0, .35, 1);
}

.lp-hub-section .card-item.active .card-visual {
    flex: 0 0 var(--visual-w);
    width: var(--visual-w);
    padding: 15px;
    opacity: 1;
    transition: flex-basis .55s cubic-bezier(.65, 0, .35, 1) .1s, width .55s cubic-bezier(.65, 0, .35, 1) .1s, opacity .45s ease .18s, padding .55s cubic-bezier(.65, 0, .35, 1) .1s;
}

.lp-hub-section .card-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .lp-hub-section {
        --visual-w: 46%;
        padding: 40px 12px;
    }

    .lp-hub-section .section-header {
        flex-wrap: wrap;
        gap: 14px;
    }

    .lp-hub-section .card-content {
        padding: 28px 22px;
    }

    .lp-hub-section .card-content h2 {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }
}

@media (max-width: 567px) {
    .lp-hub-section .card-visual {
        display: none;
    }
}

/* ── recursos.php page background ── */
body.lp-page--recursos {
    background:
        radial-gradient(60% 65% at 6% 96%, rgba(224, 173, 255, .55) 0%, rgba(224, 173, 255, 0) 62%),
        radial-gradient(55% 55% at 22% 78%, rgba(255, 170, 210, .38) 0%, rgba(255, 170, 210, 0) 65%),
        radial-gradient(65% 65% at 96% 4%, #fffaf5 0%, rgba(255, 250, 245, 0) 55%),
        #fffdfb;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Pins the footer to the bottom of the viewport when the page content is
   short instead of leaving it floating right after the hub section. */
body.lp-page--recursos .lp-footer {
    margin-top: auto;
}

/* ══════════════════════════ RESPONSIVE (media queries) ══════════════════════════ */
@media (max-width: 1400px) {
    .lp-hero-title-robot {
        right: 5%;
    }
}

@media (max-width: 1300px) {
    .chat-bubble-wrap {
        bottom: 10% !important;
    }

    .lp-hub-section .card-content h2 {
        font-size: 1.20rem;
    }

    .lp-hub-section .card-link {
        font-size: .75rem;
    }

    .local-stat-value {
        font-size: 36px !important;
    }

    .local-addr {
        font-size: 13px !important;
    }

    .local-status-value {
        font-size: 21px !important;
        letter-spacing: 0 !important;
    }

    .local-info-block {
        min-height: 175px;
    }

    .local-stat {
        padding: 15px 13px !important;
        min-height: 175px;
    }

    .local-name {
        font-size: 22px;
    }

}

@media (max-width: 1200px) {
    .lp-hero-title-robot {
        right: -20px;
        width: 170px;
    }
.lp-reviews-row {gap: 12px;}
    .lp-hero-content .lp-h1 {
        font-size: 52px;
    }

    .lp-hub-section .cards-wrap {

        max-height: 190px;
    }

    .lp-stat-dark-text {
        max-width: 95%
    }

    .lp-hub-section .card-item:not(.active) .card-content {
        padding: 20px 10px;
    }

    .lp-hub-section .card-content {
        padding: 30px 25px;
    }

    .lp-hub-section .card-content h2 {
        font-size: 1.1rem;
    }

    .lp-hub-section .section-header p {
        font-size: 17px;
    }

    .lp-hub-section .section-title {
        font-size: 2.7rem;
    }

    .local-name {
        font-size: 23px;
    }

    .chat-bubble-wrap {
        left: -6% !important;
    }

    .local-onboarding-mascot {
        width: 100% !important;
    }

    .local-onboarding-copy {
        margin-top: 3%;
    }

    .local-onboarding-copy h1 {
        font-size: 23px;
    }

    .lp-proc-card {
        padding: 23px
    }

    .lp-ts-text {
        font-size: 15px;
    }

    .lp-faq-title {
        font-size: 43px;
    }

    .lp-stat-num {
        font-size: 68px;
        letter-spacing: -4px
    }

    .plan-cta {
        border-radius: 7px;
        font-size: 11px;
    }

    .plan-card {
        padding: 22px 15px 20px;
    }

    .lp-predict-title {
        font-size: 70px;
    }

    .lp-feat-pill {
        min-width: 160px;
    }



    .lp-feat-card-title {
        font-size: 32px;
    }

    .lp-proc-sub {
        font-size: 16px
    }

    .lp-sig-bot {
        height: 370px;
    }

    .lp-sig-card[data-si="1"] {
        left: 16%;
    }

    .lp-sig-card[data-si="4"] {
        left: 6%
    }

    .lp-sig-card[data-si="5"] {
        right: 0%;
        min-width: 170px;
    }

    .lp-sig-card[data-si="7"] {
        bottom: 9%;
        right: -5%;
        min-width: 230px;
    }

    .lp-sig-card[data-si="6"] {
        left: 9%
    }

    .lp-sig-card[data-si="9"] {
        right: 0
    }

    .lp-sig-card[data-si="8"] {
        bottom: 38%;
        right: 0;
        min-width: 167px;
    }

    .lp-h2 {
        font-size: 44px;
    }
}

@media (max-width: 991px) {
    /* Headline robot: no room for it once the layout gets this tight */
    .lp-hero-title-robot {
        display: none;
    }

    .lp-hub-section .card-item.active {
        flex-grow: 1.7;
    }

    .local-stat {
        min-height: 120px !important;
    }

    .sidebar-plan {
        padding-left: 20px !important;
        padding-right: 20px !important
    }

    .lp-hub-section .section-title {
        font-size: 2.5rem;
    }

    .logged-user-menu {
        top: 65px !important
    }

    .lp-sig-stage {
        height: auto;
    }

    .chat-bubble-wrap {
        left: 11% !important;
        bottom: 6% !important;
    }

    .local-onboarding-copy h1 {
        font-size: 27px;
    }

    .local-onboarding {
        display: initial !important;
        min-height: auto !important;
    }

    .locales-card {
        height: auto !important
    }

    .lp-sig-card[data-si="4"] {
        left: 0;
        width: 75%;
        top: 47%;
    }

    .lp-sig-card[data-si="9"] {
        right: -5%;
        width: 50%;
        top: 5%;
    }

    .lp-sig-card[data-si="7"] {
        bottom: 0;
        width: 50%;
        right: 0;
    }

    .lp-sig-card[data-si="8"] {
        bottom: 34%;
        width: 36%;
    }

    .lp-sig-card[data-si="5"] {
        right: 0%;
        width: 36%;
    }

    .lp-sig-card[data-si="3"] {
        top: -10%;
        right: 13%;
        width: 34%;
    }

    .lp-sig-card[data-si="6"] {
        left: 9%;
        width: 31%;
        bottom: -7%;
    }

    .lp-sig-card[data-si="2"] {
        top: 0;
        width: 50%;
        left: 0;
    }

    .lp-sig-card[data-si="1"] {
        left: 7%;
        width: 38%;
    }

    h3.lp-stat-band-title {
        font-size: 28px;
    }

    .lp-feat-right {
        display: none;
    }

    .lp-faq-title {
        font-size: 39px;
    }

    .lp-accordion .accordion-button {
        font-size: 18px !important;
    }

    .lp-ts-stat-num {
        font-size: 54px;
    }

    .lp-predict-robot {
        max-width: 45%;
    }

    .lp-predict-title {
        font-size: 65px;
    }

    .lp-promo-bar {
        font-size: 12px
    }

    /* [dashboard] Sidebar off, topbar space */
    #main {
        margin-left: 0 !important;
        padding: 100px 50px 32px;
        /* espacio para el topbar */
    }

    .sidebar-toggle {
        display: none;
    }

    /* [landing] Industry tabs mockup: floats stay, just shrink with viewport */
    .lp-tab-mockup-wrap {
        display: block;
        width: 100%;
        padding: 22px 58px;
    }

    .lp-tab-float {
        width: 160px;
    }

    .lp-tab-main {
        width: 100%;
        border-radius: 12px;
    }

    /* Signals sticky scroll: keep the pin + reveal effect, just shrink the stage */
    .lp-signals-sticky .row {
        row-gap: 16px;
    }


    .lp-sig-card {
        width: 100px;
        min-width: 0 !important;
    }

    /* Hero: review cards shrink a bit on tablet, and only 2 show per row instead of 3 */
    .lp-review-slot {
        width: 225px;
    }

    .lp-review-slot:nth-child(3) {
        display: none;
    }

    .lp-hero-content {
        opacity: 1;
        animation: none !important;
        padding: 60px 0;
    }

    .lp-hero-content .lp-h1 {
        font-size: 47px;
        letter-spacing: -1px;
    }

    .lp-hero-content .lp-hero-question {
        font-size: 18px;
    }

    .lp-h1 {
        font-size: 36px;
    }

    .lp-cta-title {
        font-size: 32px;
    }

    .lp-stat-dark-text {
        font-size: 53px;
    }

    .lp-body {
        font-size: 17px;
    }

    .lp-h2 {
        font-size: 37px;
    }

    .lp-compare-col {
        padding: 16px 24px;
        font-size: 15px;
    }

    .lp-toggle-sub {
        font-size: 15px;
    }

    .lp-tab-btn {
        min-width: 110px;
        padding: 6px 11px;
        font-size: 10px;
    }

    .lp-clients-label {
        font-size: 13px;
    }

    .lp-tabs-section {
        padding: 50px 0 60px;
    }

    .lp-stat-dark-text {
        font-size: 40px;
    }

    .lp-stat-dark {

        padding: 14% 4%;
    }

    .lp-btn-lg {
        padding: 9px 25px;
        font-size: 12px;
    }

    .lp-mockup-col--border {
        border-left: none;
        border-right: none;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    /* Feature cards: stack image below text */
    .lp-feat-card-inner {
        flex-direction: column;
        min-height: 0;
    }

    .lp-feat-left {
        flex: none;
    }
}

/* Tablet: signals text + image side by side (col-md-6) instead of stacked */
@media (min-width: 768px) and (max-width: 991px) {
    .lp-signals-sticky .row {
        row-gap: 0;
    }


    .lp-sig-bot {
        height: auto;
        width: 100%;
    }

    .lp-sig-card {
        width: 85px;
        min-width: 0 !important;
    }
}

@media (max-width: 767px) {

    .lp-ts-text {
        font-size: 14px;
    }

    .chat-bubble-wrap {
        left: 6% !important;
        bottom: 2% !important;
    }

    .chat-bubble {
        max-width: 280px;
    }

    .lp-ts-stat-num {
        font-size: 44px;
    }

    /* [dashboard] */
    .lp-hero-content .lp-h1 {
        font-size: 45px;
    }

    .lp-ts-attr {
        font-size: 14px;
    }

    .lp-check-list li {
        font-size: 14px
    }

    .lp-stat-dark-text {
        font-size: 42px;
    }

    .lp-compare-cell {
        font-size: 13px
    }

    .lp-h2 {
        font-size: 35px;
    }

    .lp-feat-stage {
        padding: 0;
    }

    .lp-feat-pill {
        min-width: 140px;
        padding: 7px 11px;
    }

    .lp-toggle-label {
        font-size: 22px;
    }

    .lp-proc-card {
        padding: 25px;
    }

    .lp-callout {
        font-size: 31px;
    }

    .reviews-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        max-width: 100%;
    }

    .reviews-filters {
        justify-content: flex-start;
    }

    .rating-block {
        border-radius: var(--card-radius) var(--card-radius) 0 0
    }

    .business-block {
        border-radius: 0 0 var(--card-radius) var(--card-radius)
    }

    #main {
        padding: 100px 20px 32px;
    }

    .insights-quote {
        font-size: 17px;
    }

    .insights-mascot,
    .mascot-float {
        display: none;
    }


    /* Same idea as desktop — bot centered, review cards scattered around
       it — just resized and repositioned to fit a phone-width stage
       without overlapping heavily or getting pushed past the clipped
       (overflow-x:hidden) edge. No scroll-pin here: see the JS
       IntersectionObserver fade instead. */
    .lp-sig-stage {
        height: 560px;
    }

    .lp-sig-bot {
        height: 380px;
        width: auto;
    }

    .lp-sig-card {
        width: auto;
        min-width: 0;
        margin: 0;
    }

    /* The bot is nearly as wide as the stage on phones, so cards that
       overlap it need to float above it — desktop's z-index:-1/-2 relies
       on the bot being narrower than the stage, which isn't true here.
       Each rule needs its own z-index: it matches the base [data-si]
       selector's specificity, which a plain .lp-sig-card override can't beat. */
    .lp-sig-card[data-si="1"] {
        top: 36%;
        left: 2%;
        right: auto;
        bottom: auto;
        width: 100px;
        z-index: 3;
    }

    .lp-sig-card[data-si="2"] {
        top: 4%;
        left: 6%;
        right: auto;
        bottom: auto;
        width: 108px;
        z-index: 3;
    }

    .lp-sig-card[data-si="3"] {
        top: 0;
        right: 4%;
        left: auto;
        bottom: auto;
        width: 100px;
        z-index: 3;
    }

    .lp-sig-card[data-si="4"] {
        top: 48%;
        left: 0;
        right: auto;
        bottom: auto;
        width: 132px;
        z-index: 3;
    }

    .lp-sig-card[data-si="5"] {
        top: 34%;
        right: 2%;
        left: auto;
        bottom: auto;
        width: 108px;
        z-index: 3;
    }

    .lp-sig-card[data-si="6"] {
        bottom: 2%;
        left: 8%;
        top: auto;
        right: auto;
        width: 96px;
        z-index: 3;
    }

    .lp-sig-card[data-si="7"] {
        bottom: 2%;
        right: 2%;
        top: auto;
        left: auto;
        width: 126px;
        z-index: 3;
    }

    .lp-sig-card[data-si="8"] {
        bottom: 32%;
        right: 6%;
        top: auto;
        left: auto;
        width: 100px;
        z-index: 3;
    }

    .lp-sig-card[data-si="9"] {
        top: 14%;
        right: 18%;
        left: auto;
        bottom: auto;
        width: 104px;
        z-index: 3;
    }

    /* Signals: text + image stack in one column here, so they no longer
       fit inside a 100vh pinned panel. Drop the scroll-pin on the row and
       let the title/body/checklist flow normally instead of clipping. */
    .lp-signals-scroll {
        height: auto;
        padding-bottom: 35px;
        background: white;
    }

    .lp-signals-sticky {
        position: static;
        height: auto;
        min-height: 0;
        overflow: visible;
        padding: 60px 0 0;
    }

    /* No scroll-pin on mobile: the bot + cards sit in normal flow and fade
       in with a staggered delay (see the JS IntersectionObserver) the
       moment the section reaches the viewport, instead of animating in
       lockstep with scroll position. */
    .lp-sig-media-scroll {
        height: auto;
    }

    .lp-sig-media-sticky {
        position: static;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* [landing] Industry toggle: wrap instead of overflowing */
    .lp-toggle-row {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 12px;
    }

    .lp-tab-btns {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 8px;
    }

    .lp-tab-mockup-wrap {
        padding: 0
    }

    .lp-tab-float {
        width: 155px;
    }

    /* Predict CTA */
    .lp-predict-title {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .lp-predict-robot {
        max-width: 60%;
    }

    /* Testimonials */
    .lp-testi-heading {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .lp-ts {
        width: 85vw;
    }

    .lp-ts-card {
        height: auto;
        min-height: 260px;
        flex-direction: column;
    }

    .lp-ts-right {
        width: 100%;
        height: 160px;
    }

    /* FAQ */
    .lp-faq-title {
        font-size: 34px;
        letter-spacing: -1.5px;
        margin-bottom: 36px;
    }

    .lp-accordion .accordion-button {
        font-size: 15px !important;
        padding: 18px 18px !important;
    }

    .lp-accordion .accordion-body {
        padding: 0 18px 20px !important;
    }

    /* Footer */
    .lp-footer-row {
        justify-content: center;
        text-align: center;
    }

    .lp-footer-left {
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 576px) {

    .lp-header.scrolled .lp-logo img {
        height: 50px;
    }

    /* The 2 review slots stay side by side on phones, just narrower — with some
       side padding so they don't sit flush against the screen edges */
    .lp-reviews-row {
        gap: 12px;
        padding: 0 20px;
        margin-bottom: 24px;
    }

    .lp-review-slot {
        flex: 1 1 0;
        width: auto;
        max-width: none;
    }

    .local-stat {
        min-height: 120px !important
    }

    .local-badge {
        font-size: 8px;
        padding: 4px 10px;
    }

    .local-status-value {
        font-size: 15px !important;
    }



    .local-stat-label {
        font-size: 11px;
    }

    .local-info-block {
        min-height: 120px !important
    }

    .local-addr {
        font-size: 12px !important;
    }

    .local-name {
        font-size: 21px;
    }

    button#personalizeTemplateRegenerate {
        font-size: 12px;
    }

    .lp-proc-text {
        font-size: 13px;
    }

    .chat-bubble {
        max-width: 90% !important;
    }

    div#freebieBubbleMobile .font12 {
        font-size: 11px !important;
        line-height: 1.3;
    }

    .lp-sig-card {
        width: 68px;
    }

    .lp-tab-mockup-wrap {
        padding: 0px 30px;
    }

    .lp-tab-float {
        width: 135px;
    }

    .lp-footer-row {
        justify-content: space-between;
        text-align: start;
    }

    .lp-callout {
        font-size: 22px;
    }

    .lp-proc-section {
        padding: 70px 0;
    }


    .competitor-header-row,
    .competitor-row {
        grid-template-columns: 1fr 60px 70px 60px;
        padding: 10px 18px;
        font-size: 11px;
        min-width: 0;
    }

    .comp-addr {
        display: none;
    }

    /* Local + login */
    .local-stat-value {
        font-size: 17px;
    }

    .local-stat-value i {
        font-size: 13px;
    }

    .local-btn-cargar {
        max-width: 100%;
        font-size: 15px;
    }

    .login-body {
        padding: 30px;
    }

    .login-page {
        min-height: auto
    }

    .login-field input {
        font-size: 12px
    }

    form.form-login {
        padding: 0;
    }

    .insights-comparison-item-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .insights-comparison-metric,
    .insights-comparison-meta,
    .insights-comparison-reasons {
        margin-left: 40px;
    }

    .login-left {
        display: none;
    }

    .login-right {
        padding: 40px 28px;
    }

    .login-page {
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .lp-hero-content .lp-h1 {
       font-size: 33px;
        line-height: 42px;
    }
    .lp-hero-body {font-size: 14px}
    .lp-promo-bar {
        font-size: 11px;
    }

    .lp-h1 {
        font-size: 30px;
    }

    .plan-card {
        padding: 23px 25px 20px;
    }

    .lp-sig-stage {
        height: auto;
    }

    .lp-sig-bot {
        height: 310px;
    }

    .lp-h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .font12 {
        line-height: 1;
    }

    .lp-proc-card {
        padding: 17px;
    }

    .lp-feat-pill {
        font-size: 13px;
    }

    .lp-compare-section {
        padding-top: 60px
    }

    .lp-stat-band {
        padding: 60px 0;
    }

    h3.lp-stat-band-title {
        font-size: 27px;
    }

    .lp-predict-section {
        padding: 60px 0 0;
        margin: 0 15px;
    }

    .lp-accordion .accordion-button {
        font-size: 17px !important;
        padding: 15px !important;
    }

    .plan-features li {
        font-size: 13px;
    }

    .plan-card--featured {
        margin-top: 0
    }

    .lp-predict-robot {
        max-width: 90%;
    }

    .lp-predict-title {
        font-size: 37px;
    }

    .lp-stat-num {
        font-size: 52px;
    }

    .lp-faq-section {
        padding: 70px 0 70px;
    }


    .lp-faq-title {
        font-size: 31px;
    }

    .lp-stat-dark-text {
        font-size: 38px;
    }

    .lp-body {
        font-size: 16px;
    }

    .lp-feat-card-title {
        font-size: 27px;
    }

    .lp-feat-card-inner {
        border-radius: 19px;
        padding: 40px 30px;
    }

    .lp-compare-cell {
        padding: 6px 7px;
        font-size: 13px;
        line-height: 1.3;
        gap: 8px;
    }

    .lp-compare-col {
        padding: 16px 11px;
        font-size: 14px;
    }

    .lp-testimonial-stat {
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 16px;
        width: 100%;
    }
}

@media (max-width: 560px) {
    .stat-sub {
        font-size: 12px;
    }

    .stat-number {
        font-size: 59px;
    }
}