/* ============================================================
   COLE Landing — Clean Design System
   Scope: Landing page only
   ============================================================ */

/* === TOKENS === */
:root {
    --font: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --primary: #E8A317;
    --primary-light: #818CF8;
    --primary-dark: #CC8F0E;
    --secondary: #06B6D4;
    --accent: #F59E0B;
    --bg: #FAFBFF;
    --bg-alt: #F1F3FB;
    --bg-dark: #0B0F19;
    --bg-card: rgba(255,255,255,0.85);
    --text: #111827;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --border: rgba(148,163,184,0.18);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 36px rgba(0,0,0,0.10);
    --radius: 16px;
    --radius-pill: 980px;
    --ease: cubic-bezier(0.22,1,0.36,1);
}


/* Hero - fondo blanco, 2 columnas */
.lp-hero {
    background: #ffffff !important;
    padding: 5rem 2rem;
    min-height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #0B0F19;
        --bg-alt: #111827;
        --bg-card: rgba(30,41,59,0.85);
        --text: #F1F5F9;
        --text-secondary: #94A3B8;
        --text-muted: #64748B;
        --border: rgba(148,163,184,0.12);
        --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
        --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
        --shadow-lg: 0 12px 36px rgba(0,0,0,0.4);
    }
}

/* === RESET === */
.lp { font-family: var(--font); color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; line-height: 1.6; scroll-behavior: smooth; }
.lp *, .lp *::before, .lp *::after { box-sizing: border-box; margin: 0; padding: 0; }
.lp img { max-width: 100%; height: auto; display: block; }
.lp a { color: inherit; text-decoration: none; }
.lp ul { list-style: none; }

/* === CONTAINER === */
.lp-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .lp-container { padding: 0 40px; } }

/* === BUTTONS === */
.lp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border: none; border-radius: var(--radius-pill);
    font-family: var(--font); font-size: 0.875rem; font-weight: 600;
    cursor: pointer; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    white-space: nowrap; line-height: 1.4;
}
.lp-btn:active { transform: scale(0.97); }

.lp-btn--primary {
    background: #E8A317;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.lp-btn--primary:hover {
    background: #CC8F0E;
    transform: scale(1.03);
}

.lp-btn--secondary {
    background: #ffffff;
    color: #0b2a42;
    border: 2px solid #0b2a42;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.lp-btn--secondary:hover {
    border-color: #E8A317;
    color: #E8A317;
}

.lp-btn--ghost {
    background: transparent;
    color: #0b2a42;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s;
}
.lp-btn--ghost:hover { color: var(--primary); background: rgba(79,70,229,0.06); }

.lp-btn--white { background: #fff; color: var(--primary-dark); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.lp-btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }

.lp-btn--lg { padding: 16px 40px; font-size: 1rem; }
.lp-btn--sm { padding: 8px 20px; font-size: 0.8125rem; }

/* === NAV === */
.lp-nav {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 0 2rem;
}
.lp-nav.scrolled {
    background: rgba(250,251,255,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); padding: 8px 0; box-shadow: var(--shadow-sm);
}
@media (prefers-color-scheme: dark) {
    .lp-nav.scrolled { background: rgba(11,15,25,0.85); }
}
.lp-nav__inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
@media (min-width: 768px) { .lp-nav__inner { padding: 0 40px; } }

.lp-nav__logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0b2a42;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lp-nav__logo img { height: 32px; width: auto; }

.lp-nav__links { display: none; gap: 32px; align-items: center; }
@media (min-width: 768px) { .lp-nav__links { display: flex; } }
.lp-nav__links a {
    color: #0b2a42;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.lp-nav__links a:hover { color: var(--primary); }

.lp-nav__actions { display: none; gap: 12px; align-items: center; }
@media (min-width: 768px) { .lp-nav__actions { display: flex; } }

.lp-nav__hamburger {
    display: flex; background: none; border: none; cursor: pointer; padding: 8px;
    color: var(--text); border-radius: 10px;
}
@media (min-width: 768px) { .lp-nav__hamburger { display: none; } }

.lp-nav__mobile {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: rgba(250,251,255,0.95); backdrop-filter: blur(20px);
    padding: 100px 32px 40px; flex-direction: column; gap: 8px;
}
@media (prefers-color-scheme: dark) {
    .lp-nav__mobile { background: rgba(11,15,25,0.95); }
}
.lp-nav__mobile.open { display: flex; }
.lp-nav__mobile a {
    font-size: 1.25rem; font-weight: 600; color: var(--text);
    padding: 16px 0; border-bottom: 1px solid var(--border);
}
.lp-nav__mobile a:hover { color: var(--primary); }
.lp-nav__mobile hr { border: none; border-top: 1px solid var(--border); margin: 8px 0; }

/* === HERO === */

.lp-hero__bg { display: none; }



.lp-hero__content { position: relative; z-index: 1; flex: 1; min-width: 300px; }

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    background: #fffbf0;
    color: #E8A317;
    border: 1px solid #f0e0c0;
    margin-bottom: 1rem;
}
.lp-hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: #E8A317;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.lp-hero__title .gradient-text {
    color: #E8A317;
}
.lp-hero__subtitle {
    font-size: 1.1rem;
    color: #545454;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.lp-hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.lp-hero__stats { display: flex; gap: 48px; justify-content: center; margin-top: 32px; }
.lp-hero__stat { text-align: center; }
.lp-hero__stat-number { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; color: var(--primary); line-height: 1.1; }
.lp-hero__stat-label { font-size: 0.8125rem; color: var(--text-muted); margin-top: 4px; }

@media (max-width: 640px) {
    
    .lp-hero__stats { gap: 24px; }
    .lp-hero__stat-number { font-size: 1.8rem; }
}

/* === TRUST BAR === */
.lp-trust {
    padding: 24px 0; text-align: center;
}
.lp-trust__label { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 24px; }
.lp-trust__logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; opacity: 0.5; }
.lp-trust__logos span { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); }

/* === SECTIONS === */
.lp-section { padding: 48px 0; position: relative; }
.lp-section--alt { background: #f9f9ff; }
.lp-section__header { text-align: center; max-width: 640px; margin: 0 auto 32px; }
.lp-section__badge {
    display: inline-block; padding: 6px 16px;
    background: rgba(79,70,229,0.07); border-radius: var(--radius-pill);
    font-size: 0.75rem; font-weight: 600; color: var(--primary);
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px;
}
.lp-section__title {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
    line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 16px;
}
.lp-section__subtitle { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7; }

/* === FEATURE CARDS === */
.lp-features-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .lp-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-features-grid { grid-template-columns: repeat(3, 1fr); } }

.lp-feature {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 36px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.lp-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lp-feature__icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; color: #fff;
    background: #E8A317;
}
.lp-feature__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.lp-feature__text { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.65; }

/* === SERVICE CARDS === */
.lp-services-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .lp-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-services-grid { grid-template-columns: repeat(4, 1fr); } }

.lp-service {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px; text-align: center;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.lp-service:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lp-service__icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(79,70,229,0.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.lp-service__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.lp-service__text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }

/* === STEPS === */
.lp-steps-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .lp-steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-steps-grid { grid-template-columns: repeat(4, 1fr); } }

.lp-step { text-align: center; }
.lp-step__number {
    width: 56px; height: 56px; border-radius: 50%;
    background: #E8A317;
    color: #fff; font-size: 1.25rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.lp-step__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.lp-step__text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* === PRICING CARDS === */
.lp-pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
@media (min-width: 768px) { .lp-pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.lp-pricing {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 36px; position: relative;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.lp-pricing:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lp-pricing--featured {
    border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
    transform: scale(1.03);
}
.lp-pricing--featured:hover { transform: scale(1.03) translateY(-4px); }
.lp-pricing__popular {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: #E8A317;
    color: #fff; padding: 4px 20px; border-radius: var(--radius-pill);
    font-size: 0.75rem; font-weight: 700; white-space: nowrap;
}
.lp-pricing__name { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.lp-pricing__price { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 8px; }
.lp-pricing__price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.lp-pricing__desc { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 24px; }
.lp-pricing__features { margin-bottom: 32px; }
.lp-pricing__features li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-size: 0.875rem; color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}
.lp-pricing__features li svg { color: var(--primary); flex-shrink: 0; }
.lp-pricing .lp-btn { width: 100%; }

/* === TESTIMONIALS === */
.lp-testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .lp-testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.lp-testimonial {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px;
}
.lp-testimonial__stars { display: flex; gap: 2px; margin-bottom: 16px; }
.lp-testimonial__text { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px; }
.lp-testimonial__author { display: flex; flex-direction: column; }
.lp-testimonial__name { font-weight: 600; font-size: 0.875rem; }
.lp-testimonial__role { font-size: 0.8125rem; color: var(--text-muted); }

/* === FAQ === */
.lp-faq { max-width: 800px; margin: 0 auto; }
.lp-faq__item { border-bottom: 1px solid var(--border); }
.lp-faq__question {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    width: 100%; padding: 20px 0; background: none; border: none; cursor: pointer;
    font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--text); text-align: left;
}
.lp-faq__question svg { flex-shrink: 0; transition: transform 0.3s var(--ease); }
.lp-faq__item.open .lp-faq__question svg { transform: rotate(180deg); }
.lp-faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.lp-faq__answer p { padding: 0 0 20px; font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; }

/* === CTA === */
.lp-cta {
    background: #0b2a42;
    padding: 4rem 2rem;
    text-align: center;
}
.lp-cta__bg {
    position: absolute; inset: 0; z-index: 0;
    background: #E8A317;
}
.lp-cta__content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; color: #fff; }
.lp-cta__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.12; margin-bottom: 16px; }
.lp-cta__subtitle { font-size: 1.1rem; opacity: 0.85; line-height: 1.7; margin-bottom: 32px; }

/* === FOOTER === */
.lp-footer {
    background: #0b2a42;
    color: #fff;
    padding: 3rem 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.lp-footer a { color: rgba(255,255,255,0.7); transition: color 0.3s var(--ease); }
.lp-footer a:hover { color: #fff; }
.lp-footer__inner { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
@media (min-width: 768px) { .lp-footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.lp-footer__logo {
    font-size: 1.25rem; font-weight: 800; color: #fff;
    display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.lp-footer__tagline { font-size: 0.875rem; margin-bottom: 8px; }
.lp-footer__col-title { color: #fff; font-size: 0.875rem; font-weight: 700; margin-bottom: 16px; }
.lp-footer__col li { margin-bottom: 10px; }
.lp-footer__col a { font-size: 0.875rem; }
.lp-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
    gap: 16px; font-size: 0.8125rem;
}
.lp-footer__legal { display: flex; gap: 24px; }

/* === COOKIE BANNER === */
.lp-cookie {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: rgba(11,15,25,0.92); backdrop-filter: blur(20px);
    color: var(--text-muted); padding: 16px 24px;
    display: flex; align-items: center; justify-content: center;
    gap: 20px; flex-wrap: wrap; font-size: 0.8125rem;
    transform: translateY(100%); transition: transform 0.5s var(--ease);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.lp-cookie.visible { transform: translateY(0); }
.lp-cookie a { color: var(--primary-light); text-decoration: underline; text-underline-offset: 2px; }

/* === BANNER === */
.lp-banner {
    padding: 10px 24px; text-align: center; font-size: 0.8125rem; font-weight: 500;
    background: #E8A317; color: #fff;
}
.lp-banner a { color: inherit; text-decoration: underline; margin-left: 8px; font-weight: 700; }

/* === AUTH PAGES === */
.lp-auth {
    font-family: var(--font); min-height: 100vh;
    background: #0b2a42;
    display: flex; align-items: center; justify-content: center;
    padding: 24px; color: var(--text); position: relative; overflow: hidden;
}
.lp-auth::before, .lp-auth::after {
    content: ''; position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35;
}
.lp-auth::before {
    width: 420px; height: 420px; background: var(--primary); top: -100px; right: -100px;
}
.lp-auth::after {
    width: 360px; height: 360px; background: #8B5CF6; bottom: -80px; left: -80px;
}

/* === PRINT === */
@media print {
    .lp-nav, .lp-cookie, .lp-cta__bg { display: none; }
    .lp-section, 
    .lp-feature, .lp-service, .lp-pricing, .lp-testimonial { border: 1px solid #ddd; break-inside: avoid; }
}

/* Eginary-style floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Gradient text Eginary */
.gradient-text {
    color: #E8A317;background:none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero responsive */
@media (max-width: 768px) {
    
    .lp-hero__image { order: -1; max-width: 300px !important; margin: 0 auto; }
}

/* Títulos de secciones: amarillo dorado */
.lp-section h2,
.lp-section h3,
.lp-cta h2 {
    color: #E8A317 !important;
}
.lp-hero__title {
    color: #0b2a42 !important;
}

@media (max-width: 768px) {
    .lp-hero { flex-direction: column; text-align: center; padding: 2rem 1rem !important; }
    .lp-hero__image { order: -1; max-width: 300px; margin: 0 auto; }
}
