/* =============================================
   LANDING PAGE - PREMIUM CSS
   HHC Sinergia Profesional SAC
   Inspired by Domestika & Udemy premium design
   ============================================= */

:root {
    --lp-dark:      #09101f;
    --lp-dark2:     #111827;
    --lp-dark3:     #1a2332;
    --lp-accent:    #2e8b80;
    --lp-accent2:   #60a01c;
    --lp-blue:      #114481;
    --lp-green:     #10b981;
    --lp-gold:      #f59e0b;
    --lp-text:      #e2e8f0;
    --lp-muted:     #94a3b8;
    --lp-border:    rgba(255,255,255,0.08);
    --lp-glow:      0 0 40px rgba(46,139,128,0.15);
    --lp-radius:    16px;
    --lp-trans:     all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

/* ===== Reset for landing page ===== */
.landing-page {
    overflow-x: hidden;
    overscroll-behavior-x: none;
    background: var(--lp-dark);
}

/* ===========================
   NAVBAR
   =========================== */
.lp-navbar {
    position: relative !important;
    top: auto !important;
    z-index: 1000;
    padding: 8px;
    transition: var(--lp-trans);
    background: #fff !important;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.lp-navbar-scrolled {
    backdrop-filter: blur(20px);
    padding: 0.75rem 0 !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--lp-border);
}

.lp-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--lp-dark);
    font-size: 1.1rem;
    font-weight: 500;
}
.lp-brand strong { color: var(--lp-accent); }
.lp-brand:hover { color: var(--lp-dark); }

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lp-nav-link {
    color: var(--lp-dark);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--lp-trans);
}
.lp-nav-link:hover, .lp-nav-link.active {
    color: var(--lp-dark);
    background: rgba(0,0,0,0.05);
}

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lp-btn-ghost {
    color: var(--lp-dark);
    text-decoration: none;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--lp-trans);
}
.lp-btn-ghost:hover { color: var(--lp-dark); background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.2); }

.lp-btn-cta {
    color: #fff;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2e8b80, #60a01c);
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(46,139,128,0.35);
    position: relative;
    overflow: hidden;
}
.lp-btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}
.lp-btn-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46,139,128,0.45);
}
.lp-btn-cta:hover::before {
    left: 100%;
}

/* Mobile Hamburger */
.lp-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.lp-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--lp-dark);
    border-radius: 2px;
    transition: var(--lp-trans);
    display: block;
}
.lp-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.lp-hamburger.active span:nth-child(2) { opacity: 0; }
.lp-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.lp-mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid var(--lp-border);
    background: rgba(9,16,31,0.98);
    gap: 0.25rem;
}
.lp-mobile-menu.open { display: flex; }
.lp-mobile-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--lp-trans);
}
.lp-mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.lp-btn-ghost-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2) !important;
    margin-top: 0.5rem;
}
.lp-btn-cta-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2e8b80, #60a01c) !important;
    color: #fff !important;
    font-weight: 700 !important;
    text-align: center;
}

/* ===========================
   HERO SECTION
   =========================== */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.lp-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.lp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(9, 16, 31, 0.96) 0%,
        rgba(9, 16, 31, 0.85) 45%,
        rgba(9, 16, 31, 0.4) 100%
    );
}

/* Floating particles */
.lp-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.particle {
    position: absolute;
    border-radius: 50%;
    animation: floatParticle 8s ease-in-out infinite;
}
.p1 { width:300px; height:300px; background: radial-gradient(circle, rgba(17,68,129,0.1) 0%, transparent 70%); top:-100px; right:10%; animation-delay:0s; }
.p2 { width:200px; height:200px; background: radial-gradient(circle, rgba(46,139,128,0.12) 0%, transparent 70%); bottom:20%; right:30%; animation-delay:2s; }
.p3 { width:150px; height:150px; background: radial-gradient(circle, rgba(96,160,28,0.1) 0%, transparent 70%); top:30%; right:5%; animation-delay:4s; }
.p4 { width:100px; height:100px; background: radial-gradient(circle, rgba(17,68,129,0.1) 0%, transparent 70%); top:60%; left:10%; animation-delay:1s; }
.p5 { width:250px; height:250px; background: radial-gradient(circle, rgba(46,139,128,0.07) 0%, transparent 70%); bottom:-50px; left:20%; animation-delay:3s; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
    padding-bottom: 4rem;
}
.min-vh-hero { min-height: 100vh; }

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.lp-hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.lp-gradient-text {
    background: linear-gradient(135deg, #114481 0%, #2e8b80 50%, #60a01c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.lp-btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: linear-gradient(135deg, #114481, #2e8b80);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--lp-trans);
    box-shadow: 0 8px 30px rgba(17,68,129,0.4);
}
.lp-btn-primary-hero:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(17,68,129,0.5);
}

.lp-btn-outline-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.25);
    transition: var(--lp-trans);
    backdrop-filter: blur(10px);
}
.lp-btn-outline-hero:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
}

/* Hero mini stats */
.lp-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
}
.lp-stat-mini { text-align: center; padding: 0 1.25rem; }
.lp-stat-mini strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.lp-stat-mini span { font-size: 1.5rem; color: #60a01c; font-weight: 800; }
.lp-stat-mini p { margin: 0; font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.lp-stat-mini-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* Scroll indicator */
.lp-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.lp-scroll-dot {
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    position: relative;
}
.lp-scroll-dot::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 3px;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ===========================
   TRUST BAR
   =========================== */
.lp-trust-bar {
    background: var(--lp-dark2);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
}
.lp-trust-bar .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.lp-trust-label {
    color: var(--lp-muted);
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}
.lp-trust-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.35);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--lp-trans);
}
.lp-trust-item:hover { color: rgba(255,255,255,0.65); }
.lp-trust-item i { font-size: 1.2rem; }

/* ===========================
   SECTIONS BASE
   =========================== */
.lp-section {
    padding: 6rem 0;
}
.lp-dark-section {
    background: var(--lp-dark2);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.lp-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.lp-section-tag {
    display: inline-block;
    background: rgba(46,139,128,0.12);
    color: var(--lp-accent);
    border: 1px solid rgba(46,139,128,0.25);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.lp-tag-light {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.12);
}
.lp-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--lp-dark2);
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.lp-dark-section .lp-section-title { color: #fff; }
.lp-section-desc {
    color: var(--lp-muted);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

/* ===========================
   CATEGORY CARDS
   =========================== */
.lp-categories-section {
    background: #f0f4ff;
}
.lp-section-title { color: var(--lp-dark2); }
.lp-categories-section .lp-section-title { color: var(--lp-dark2); }

.lp-cat-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: var(--lp-radius);
    overflow: hidden;
    border: 1px solid #e8eaf0;
    transition: var(--lp-trans);
    height: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.lp-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: var(--cat-color, #2e8b80);
    text-decoration: none;
}
.lp-cat-img-wrap {
    height: 180px;
    overflow: hidden;
}
.lp-cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--lp-trans);
}
.lp-cat-card:hover .lp-cat-img-wrap img {
    transform: scale(1.05);
}
.lp-cat-body {
    padding: 1.5rem;
    position: relative;
}
.lp-cat-icon {
    width: 48px;
    height: 48px;
    background: color-mix(in srgb, var(--cat-color, #2e8b80) 12%, transparent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cat-color, #2e8b80);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}
.lp-cat-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-dark2);
    margin-bottom: 0.4rem;
}
.lp-cat-body p {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 1rem;
}
.lp-cat-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cat-color, #2e8b80);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--lp-trans);
}
.lp-cat-card:hover .lp-cat-link { gap: 0.8rem; }

/* ===========================
   COURSE CARDS
   =========================== */
.lp-course-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
    transition: var(--lp-trans);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.lp-course-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--lp-glow);
}

.lp-course-thumb {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.lp-course-thumb-icon {
    font-size: 3.5rem;
    opacity: 0.6;
    transition: var(--lp-trans);
}
.lp-course-card:hover .lp-course-thumb-icon { opacity: 0.9; transform: scale(1.1); }

.lp-course-badge-mode {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}
.lp-course-badge-hot {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--badge-color, #60a01c);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.lp-course-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.lp-course-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.lp-course-desc {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
    flex-grow: 1;
}
.lp-course-meta { margin-bottom: 1rem; }
.lp-course-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.8rem;
}
.lp-course-rating .fa-star { font-size: 0.75rem; }
.lp-course-rating span { color: rgba(255,255,255,0.7); margin-left: 0.2rem; }
.lp-course-students { color: rgba(255,255,255,0.4) !important; font-size: 0.75rem; }

.lp-course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--lp-border);
}
.lp-course-price {
    display: flex;
    flex-direction: column;
}
.lp-price-old {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    text-decoration: line-through;
}
.lp-price-now {
    font-size: 1.1rem;
    font-weight: 800;
    color: #60a01c;
}
.lp-course-btn {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #2e8b80, #60a01c);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--lp-trans);
    white-space: nowrap;
}
.lp-course-btn:hover {
    color: #fff;
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(46,139,128,0.3);
}

.lp-btn-see-all {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    padding: 0.9rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--lp-trans);
}
.lp-btn-see-all:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.4);
}

/* ===========================
   FEATURES SECTION
   =========================== */
.lp-features-section {
    background: #f8faff;
}
.lp-features-section .lp-section-title { color: var(--lp-dark2); }
.lp-features-section .lp-section-desc { color: #64748b; }
.lp-features-section .lp-section-tag { background: rgba(46,139,128,0.1); }

.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #2e8b80, #60a01c);
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--lp-trans);
    box-shadow: 0 5px 20px rgba(46,139,128,0.25);
}
.lp-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46,139,128,0.35);
}

.lp-feature-card {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: var(--lp-radius);
    padding: 1.5rem;
    transition: var(--lp-trans);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.lp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(46,139,128,0.15);
    border-color: rgba(46,139,128,0.3);
}
.lp-feature-icon {
    width: 52px;
    height: 52px;
    background: color-mix(in srgb, var(--f-color, #2e8b80) 12%, transparent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--f-color, #2e8b80);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.lp-feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-dark2);
    margin-bottom: 0.4rem;
}
.lp-feature-card p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* ===========================
   STATS SECTION
   =========================== */
.lp-stats-section {
    background: var(--lp-dark);
    padding: 4rem 0;
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}
.lp-stats-card {
    padding: 1.5rem;
    transition: var(--lp-trans);
}
.lp-stats-card:hover { transform: translateY(-3px); }
.lp-stats-icon {
    font-size: 1.75rem;
    color: #60a01c;
    opacity: 0.8;
    margin-bottom: 0.75rem;
}
.lp-stats-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.03em;
}
.lp-stats-label {
    font-size: 0.875rem;
    color: var(--lp-muted);
    font-weight: 500;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.lp-testimonials-section {
    background: #f0f4ff;
}
.lp-testimonials-section .lp-section-title { color: var(--lp-dark2); }

.lp-testimonial-card {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: var(--lp-radius);
    padding: 1.75rem;
    transition: var(--lp-trans);
    height: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.lp-testimonial-card:hover, .lp-testi-featured {
    box-shadow: 0 15px 40px rgba(46,139,128,0.12);
    border-color: rgba(46,139,128,0.3);
    transform: translateY(-3px);
}
.lp-testi-featured { border-color: #2e8b80; }

.lp-testi-stars {
    color: #60a01c;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}
.lp-testimonial-card > p {
    color: #334155;
    font-size: 0.93rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
}
.lp-testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.lp-testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.lp-testi-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--lp-dark2);
}
.lp-testi-author small {
    font-size: 0.78rem;
    color: #94a3b8;
}

/* ===========================
   CTA SECTION
   =========================== */
.lp-cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}
.lp-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d1b40 0%, #1a0533 50%, #0d2b1a 100%);
    z-index: 0;
}
.lp-cta-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46,139,128,0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.lp-cta-content { position: relative; z-index: 1; }
.lp-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}
.lp-cta-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}
.lp-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.lp-btn-cta-big {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #2e8b80, #60a01c);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--lp-trans);
    box-shadow: 0 10px 35px rgba(46,139,128,0.4);
}
.lp-btn-cta-big:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(46,139,128,0.5);
}
.lp-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #25d366, #128c7e);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--lp-trans);
    box-shadow: 0 10px 35px rgba(37,211,102,0.3);
}
.lp-btn-whatsapp:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(37,211,102,0.4);
}

/* ===========================
   FOOTER
   =========================== */
.lp-footer {
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding-top: 4rem;
}
.lp-footer-top { padding-bottom: 3rem; border-bottom: 1px solid #e0e0e0; }

.lp-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.lp-footer-brand img { height: 60px; }
.lp-footer-brand strong { color: #2e8b80; }
.lp-footer-brand:hover { color: #333; }

.lp-footer-desc {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.lp-footer-social { display: flex; gap: 0.6rem; }
.lp-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--lp-trans);
}
.lp-social-btn:hover { color: #fff; background: #2e8b80; border-color: #2e8b80; transform: translateY(-2px); }
.lp-social-wa:hover { background: #25d366; border-color: #25d366; }

.lp-footer-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 1rem;
}
.lp-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.lp-footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--lp-trans);
}
.lp-footer-links a:hover { color: #2e8b80; padding-left: 4px; }

.lp-footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.lp-footer-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--lp-trans);
}
.lp-footer-contact i { color: #2e8b80; width: 16px; text-align: center; }
.lp-footer-contact:hover { color: #2e8b80; }

.lp-footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
}
.lp-footer-bottom .d-flex {
    width: 100%;
}
.lp-footer-bottom p {
    margin: 0;
    color: #999;
    font-size: 0.82rem;
}
.lp-footer-bottom p a {
    color: #666;
    text-decoration: none;
}
.lp-footer-bottom p a:hover {
    color: #2e8b80;
}
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.lp-footer-badges i { color: var(--lp-green); }

/* ===========================
   SCROLL REVEAL ANIMATIONS
   =========================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for grid items */
.col-md-4:nth-child(1) .reveal-on-scroll { transition-delay: 0s; }
.col-md-4:nth-child(2) .reveal-on-scroll { transition-delay: 0.1s; }
.col-md-4:nth-child(3) .reveal-on-scroll { transition-delay: 0.2s; }
.col-md-6:nth-child(1) .reveal-on-scroll { transition-delay: 0s; }
.col-md-6:nth-child(2) .reveal-on-scroll { transition-delay: 0.1s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
    .lp-hero-stats { gap: 0; }
    .lp-stat-mini { padding: 0 0.75rem; }
    .lp-stat-mini strong { font-size: 1.4rem; }
    .lp-section { padding: 4rem 0; }
    .lp-cta-section { padding: 4rem 0; }
    .lp-hero-title { font-size: 2.2rem; }
    .lp-course-card { min-height: 340px; }
    .lp-footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    .lp-hero-stats { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .lp-stat-mini-sep { width: 40px; height: 1px; margin: 0; }
    .lp-hero-actions { flex-direction: column; }
    .lp-btn-primary-hero, .lp-btn-outline-hero { text-align: center; justify-content: center; }
}

/* =============================================
   INNER PAGES — COMPONENTES COMPARTIDOS
   ============================================= */

/* ── Page Hero (cursos, nosotros, contacto) ─── */
.lp-page-hero {
    position: relative;
    padding: 6rem 0 5rem;
    background: var(--lp-dark);
    overflow: hidden;
}
.lp-page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, color-mix(in srgb, var(--hero-accent, #2e8b80) 12%, transparent) 0%, transparent 60%),
        linear-gradient(160deg, #0a1628 0%, #111827 100%);
    z-index: 0;
}
.lp-page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234f8ef7' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lp-page-hero-content {
    position: relative;
    z-index: 1;
}
.lp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}
.lp-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--lp-trans); }
.lp-breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.lp-breadcrumb i { color: rgba(255,255,255,0.3); font-size: 0.65rem; }
.lp-breadcrumb span { color: rgba(255,255,255,0.8); font-weight: 500; }
.lp-page-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.lp-page-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ── Search Bar (cursos) ─────────────────────── */
.lp-search-bar {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 0.4rem 0.4rem 0.4rem 1.25rem;
    max-width: 560px;
    backdrop-filter: blur(10px);
    gap: 0.75rem;
}
.lp-search-icon { color: rgba(255,255,255,0.4); font-size: 0.95rem; flex-shrink: 0; }
.lp-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}
.lp-search-input::placeholder { color: rgba(255,255,255,0.35); }
.lp-search-btn {
    background: linear-gradient(135deg, #2e8b80, #60a01c);
    color: #fff;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--lp-trans);
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}
.lp-search-btn:hover { transform: scale(1.03); box-shadow: 0 5px 15px rgba(46,139,128,0.3); }

/* ── Filtros (cursos) ────────────────────────── */
.lp-filter-bar {
    background: #fff;
    border-bottom: 1px solid #e8eaf0;
    padding: 0.75rem 0;
    position: sticky;
    top: 68px;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.lp-filters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.lp-filter-btn {
    background: none;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: var(--lp-trans);
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.lp-filter-btn:hover { border-color: #2e8b80; color: #2e8b80; }
.lp-filter-btn.active {
    background: #2e8b80;
    border-color: #2e8b80;
    color: #fff;
}
.lp-filter-count {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
    padding-left: 1rem;
    border-left: 1px solid #e8eaf0;
}
.lp-filter-count span { font-weight: 700; color: #2e8b80; }

/* ── Course cards (light) ────────────────────── */
.lp-course-card-light {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: var(--lp-radius);
    overflow: hidden;
    transition: var(--lp-trans);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.lp-course-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: rgba(46,139,128,0.25);
}
.lp-course-thumb-light {
    height: 185px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.lp-course-thumb-icon-light {
    font-size: 3.5rem;
    opacity: 0.5;
    transition: var(--lp-trans);
}
.lp-course-card-light:hover .lp-course-thumb-icon-light { opacity: 0.8; transform: scale(1.08); }
.lp-badge-mode {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    color: #334155;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.lp-badge-cat {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    background: var(--cat-c, #60a01c);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.lp-course-body-light {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.lp-course-title-light {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-dark2);
    margin-bottom: 0.45rem;
    line-height: 1.4;
}
.lp-course-desc-light {
    font-size: 0.83rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    flex-grow: 1;
    line-height: 1.55;
}
.lp-course-teacher {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.lp-course-footer-light {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f4ff;
}
.lp-rating-row {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-bottom: 0.3rem;
}
.lp-rating-val { font-size: 0.8rem; font-weight: 700; color: #60a01c; margin-left: 0.25rem; }
.lp-rating-count { font-size: 0.75rem; color: #94a3b8; }
.lp-price-row { display: flex; align-items: baseline; gap: 0.4rem; }
.lp-price-old-l { font-size: 0.75rem; color: #94a3b8; text-decoration: line-through; }
.lp-price-now-l { font-size: 1.1rem; font-weight: 800; }
.lp-enroll-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background: var(--btn-c, #2e8b80);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--lp-trans);
    white-space: nowrap;
}
.lp-enroll-btn:hover { color: #fff; filter: brightness(1.1); transform: scale(1.03); }

/* ── Empty state ─────────────────────────────── */
.lp-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #94a3b8;
}
.lp-empty-state i { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }
.lp-empty-state h4 { color: #334155; font-weight: 700; margin-bottom: 0.5rem; }
.lp-empty-state p { font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ── Nosotros: Mini stat cards ───────────────── */
.lp-mini-stat-card {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: var(--lp-trans);
}
.lp-mini-stat-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.lp-mini-num { display: block; font-size: 1.8rem; font-weight: 900; color: #2e8b80; letter-spacing: -0.03em; }
.lp-mini-label { display: block; font-size: 0.78rem; color: #94a3b8; font-weight: 500; margin-top: 0.2rem; }

/* ── Nosotros: Misión / Visión cards ─────────── */
.lp-mv-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--lp-trans);
    height: 100%;
}
.lp-mv-card:hover {
    border-color: var(--mv-color, #2e8b80);
    box-shadow: 0 0 30px rgba(46,139,128,0.1);
}
.lp-mv-card .lp-mv-deco {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--mv-color, #2e8b80) 15%, transparent) 0%, transparent 70%);
    pointer-events: none;
}
.lp-mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--mv-color, #2e8b80) 15%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mv-color, #2e8b80);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}
.lp-mv-card h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.lp-mv-card p { color: rgba(255,255,255,0.6); line-height: 1.75; font-size: 0.93rem; margin: 0; }

/* ── Nosotros: Team cards ────────────────────── */
.lp-team-card {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: var(--lp-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--lp-trans);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.lp-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: rgba(46,139,128,0.25);
}
.lp-team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.3rem;
    margin: 0 auto 1.25rem;
    letter-spacing: 1px;
}
.lp-team-name { font-size: 1rem; font-weight: 700; color: var(--lp-dark2); margin-bottom: 0.5rem; }
.lp-team-desc { font-size: 0.85rem; color: #64748b; margin-bottom: 1rem; line-height: 1.6; }
.lp-team-tags { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.lp-team-tags span {
    background: rgba(46,139,128,0.08);
    color: #2e8b80;
    border: 1px solid rgba(46,139,128,0.2);
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.73rem;
    font-weight: 600;
}

/* ── Contacto: Channel cards ─────────────────── */
.lp-contact-channel {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: var(--lp-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--lp-trans);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.lp-contact-channel:hover {
    transform: translateY(-5px);
    border-color: var(--ch-color, #2e8b80);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    text-decoration: none;
}
.lp-ch-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: color-mix(in srgb, var(--ch-color, #2e8b80) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ch-color, #2e8b80);
    font-size: 1.6rem;
    margin: 0 auto 1.25rem;
    transition: var(--lp-trans);
}
.lp-contact-channel:hover .lp-ch-icon {
    background: var(--ch-color, #2e8b80);
    color: #fff;
    transform: scale(1.08);
}
.lp-contact-channel h4 { font-size: 1.05rem; font-weight: 700; color: var(--lp-dark2); margin-bottom: 0.35rem; }
.lp-contact-channel p { font-size: 0.88rem; color: #64748b; margin-bottom: 0.75rem; }
.lp-ch-action {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--ch-color, #2e8b80);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--lp-trans);
}
.lp-contact-channel:hover .lp-ch-action { gap: 0.7rem; }

/* ── Contacto: FAQ list ──────────────────────── */
.lp-faq-list { display: flex; flex-direction: column; gap: 1.25rem; }
.lp-faq-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.lp-faq-item > i { margin-top: 0.15rem; font-size: 1.1rem; flex-shrink: 0; }
.lp-faq-item strong { display: block; font-size: 0.9rem; color: var(--lp-dark2); margin-bottom: 0.2rem; }
.lp-faq-item p { font-size: 0.82rem; color: #64748b; margin: 0; line-height: 1.55; }

/* ── Contacto: Form card ─────────────────────── */
.lp-contact-form-card {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: var(--lp-radius);
    padding: 2.5rem;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
}
.lp-form-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    margin-bottom: 1.25rem;
    font-size: 0.88rem;
    font-weight: 500;
}
.lp-form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.4rem;
    display: block;
}
.lp-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8faff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    transition: var(--lp-trans);
    overflow: hidden;
}
.lp-input-wrap > i {
    position: absolute;
    left: 1rem;
    color: #94a3b8;
    font-size: 0.9rem;
    pointer-events: none;
    transition: var(--lp-trans);
    z-index: 1;
}
.lp-textarea-icon { top: 0.85rem; }
.lp-input-wrap.focused { border-color: #2e8b80; background: #fff; box-shadow: 0 0 0 3px rgba(46,139,128,0.1); }
.lp-input-wrap.focused > i { color: #2e8b80; }
.lp-form-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    color: #334155;
    font-family: 'Poppins', sans-serif;
    outline: none;
}
.lp-form-input::placeholder { color: #c0ccd8; }
.lp-form-select { cursor: pointer; }
.lp-textarea-wrap { align-items: flex-start; }
.lp-form-textarea { resize: vertical; min-height: 110px; padding-top: 0.8rem; }
.lp-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #2e8b80, #60a01c);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--lp-trans);
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 5px 20px rgba(46,139,128,0.3);
    margin-bottom: 0.75rem;
}
.lp-btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(46,139,128,0.4); }
.lp-btn-wa-alt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem;
    text-decoration: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--lp-trans);
    box-shadow: 0 4px 15px rgba(37,211,102,0.2);
}
.lp-btn-wa-alt:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.3); }

/* ── Form: Success state ─────────────────────── */
.lp-form-success {
    text-align: center;
    padding: 2rem;
}
.lp-success-icon {
    font-size: 3.5rem;
    color: var(--lp-green);
    margin-bottom: 1rem;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.lp-form-success h3 { font-size: 1.5rem; font-weight: 800; color: var(--lp-dark2); margin-bottom: 0.5rem; }
.lp-form-success p { color: #64748b; margin-bottom: 1.5rem; }

@media (max-width: 768px) {
    .lp-page-hero { padding: 4.75rem 0 3.5rem; }
    .lp-filter-bar { top: 60px; }
    .lp-contact-form-card { padding: 1.5rem; }
    .lp-filters { gap: 0.35rem; }
    .lp-filter-btn { padding: 0.35rem 0.75rem; font-size: 0.8rem; }
}

/* ===== Floating Social Icons ===== */
.lp-floating-social {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.lp-float-social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.lp-float-wa { background: #25d366; }
.lp-float-wa:hover { background: #20bd5a; transform: scale(1.1); }

.lp-float-fb { background: #1877f2; }
.lp-float-fb:hover { background: #166fe5; transform: scale(1.1); }

.lp-float-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.lp-float-ig:hover { transform: scale(1.1); }

.lp-float-tk { background: #000; }
.lp-float-tk:hover { transform: scale(1.1); }

@media (max-width: 768px) {
    .lp-floating-social { display: none; }
}

/* Navbar responsive - stays white */
@media (max-width: 991px) {
    .lp-navbar {
        background: #fff !important;
        padding: 8px 12px;
        border-radius: 10px;
        margin: 8px;
        position: static !important;
    }
    .lp-hamburger { display: flex !important; }
    .lp-brand span { display: none; }
    .lp-brand { color: var(--lp-dark) !important; }
.lp-brand strong { color: #2e8b80; }
    .lp-nav-link { color: var(--lp-dark) !important; }
    .lp-btn-ghost { 
        color: var(--lp-dark) !important; 
        border-color: rgba(0,0,0,0.15);
    }
    .lp-mobile-menu {
        display: none !important;
        background: #fff;
        border-radius: 10px;
        position: static !important;
        margin: 8px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    .lp-mobile-menu.open { display: flex !important; }
    .lp-mobile-menu a { color: var(--lp-dark) !important; }
    .lp-mobile-menu .lp-nav-link { 
        color: var(--lp-dark) !important;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    .lp-mobile-actions .lp-btn-ghost-sm{
        color: var(--lp-dark) !important;
        border-color: rgba(0,0,0,0.15) !important;
        background: #fff;
    }
    .lp-mobile-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding-top: 12px;
    }
    .lp-mobile-actions .lp-btn-ghost-sm,
    .lp-mobile-actions .lp-btn-cta-sm {
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .lp-mobile-actions { grid-template-columns: 1fr; }
}
