/* ============================================
   BETPRO / BPEXCH Landing Page
   Primary Color: #8be58e
   Modern Unique Design - NOT Generic AI Look
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --lp-primary: #8be58e;
    --lp-primary-dark: #6bc96e;
    --lp-primary-light: #a8f0aa;
    --lp-primary-glow: rgba(139, 229, 142, 0.4);
    
    /* Background Colors - Deep Dark with Green Tint */
    --lp-bg-dark: #040806;
    --lp-bg-main: #070d09;
    --lp-bg-card: #0c1410;
    --lp-bg-elevated: #111a14;
    --lp-bg-hover: #162019;
    
    /* Text Colors */
    --lp-text-white: #ffffff;
    --lp-text-light: #e0e8e1;
    --lp-text-muted: #8a9a8c;
    --lp-text-dark: #5a6a5c;
    
    /* Accent Colors */
    --lp-gold: #e8c547;
    --lp-gold-dark: #c9a83a;
    --lp-red: #e85454;
    --lp-whatsapp: #25D366;
    
    /* Gradients */
    --lp-gradient-primary: linear-gradient(135deg, #8be58e 0%, #6bc96e 100%);
    --lp-gradient-dark: linear-gradient(180deg, var(--lp-bg-dark) 0%, var(--lp-bg-main) 100%);
    --lp-gradient-card: linear-gradient(145deg, var(--lp-bg-card) 0%, var(--lp-bg-elevated) 100%);
    --lp-gradient-glow: radial-gradient(ellipse at center, rgba(139, 229, 142, 0.15) 0%, transparent 70%);
    
    /* Borders */
    --lp-border-subtle: rgba(139, 229, 142, 0.1);
    --lp-border-light: rgba(139, 229, 142, 0.2);
    --lp-border-active: rgba(139, 229, 142, 0.4);
    
    /* Shadows */
    --lp-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --lp-shadow-md: 0 4px 25px rgba(0, 0, 0, 0.4);
    --lp-shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.5);
    --lp-shadow-glow: 0 0 40px rgba(139, 229, 142, 0.2);
    --lp-shadow-glow-strong: 0 0 60px rgba(139, 229, 142, 0.3);
    
    /* Typography */
    --lp-font-display: 'Bebas Neue', sans-serif;
    --lp-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --lp-section-padding: 100px 0;
    --lp-container-max: 1200px;
    --lp-radius-sm: 6px;
    --lp-radius-md: 10px;
    --lp-radius-lg: 16px;
    --lp-radius-xl: 24px;
    
    /* Transitions */
    --lp-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --lp-transition-fast: 0.2s var(--lp-ease-out);
    --lp-transition-base: 0.35s var(--lp-ease-out);
    --lp-transition-slow: 0.5s var(--lp-ease-out);
}

/* Base Reset for Landing Page Body */
html {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh;
    scroll-behavior: smooth;
}

body.lp-landing-page-body {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh;
    background: var(--lp-bg-dark) !important;
    font-family: var(--lp-font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    color: var(--lp-text-light);
}

/* Override WordPress admin bar spacing */
body.lp-landing-page-body.admin-bar {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.lp-landing-page-body.admin-bar .lp-navbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.lp-landing-page-body.admin-bar .lp-navbar {
        top: 46px;
    }
}

/* Landing Page Wrapper */
.lp-landing-page {
    font-family: var(--lp-font-body);
    background: var(--lp-bg-dark);
    color: var(--lp-text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

.lp-landing-page *,
.lp-landing-page *::before,
.lp-landing-page *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lp-landing-page a {
    text-decoration: none;
    color: inherit;
    transition: var(--lp-transition-base);
}

.lp-landing-page ul,
.lp-landing-page ol {
    list-style: none;
}

.lp-landing-page img {
    max-width: 100%;
    display: block;
}

.lp-landing-page button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.lp-landing-page strong {
    color: var(--lp-primary);
    font-weight: 600;
}

.lp-container {
    width: 100%;
    max-width: var(--lp-container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.lp-announcement-bar {
    background: linear-gradient(90deg, var(--lp-primary-dark) 0%, var(--lp-primary) 50%, var(--lp-primary-dark) 100%);
    z-index: 1001;
    transition: transform 0.4s var(--lp-ease-out), opacity 0.4s var(--lp-ease-out);
}

.lp-announcement-container {
    max-width: var(--lp-container-max);
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.lp-announcement-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
}

.lp-announcement-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-announcement-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--lp-bg-dark);
    animation: lp-flash 2s ease infinite;
}

@keyframes lp-flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.lp-announcement-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--lp-bg-dark);
    margin: 0;
}

.lp-announcement-text strong {
    color: var(--lp-bg-dark);
    font-weight: 700;
}

.lp-announcement-link {
    color: var(--lp-bg-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 4px;
    transition: var(--lp-transition-fast);
}

.lp-announcement-link:hover {
    opacity: 0.8;
}

/* ============================================
   PRELOADER
   ============================================ */
.lp-preloader {
    position: fixed;
    inset: 0;
    background: var(--lp-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.lp-preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.lp-preloader-inner {
    text-align: center;
}

.lp-preloader-logo {
    font-family: var(--lp-font-display);
    font-size: 80px;
    letter-spacing: 4px;
    color: var(--lp-primary);
    animation: lp-pulse 1.5s ease infinite;
}

@keyframes lp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.98); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.lp-navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--lp-transition-base);
    background: rgba(4, 8, 6, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--lp-border-subtle);
}

.lp-navbar.scrolled {
    padding: 14px 0;
}

.lp-nav-container {
    max-width: var(--lp-container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.lp-logo-mark {
    width: 42px;
    height: 42px;
    background: var(--lp-primary);
    border-radius: var(--lp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-font-display);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--lp-bg-dark);
    font-weight: 400;
}

.lp-logo-text {
    font-family: var(--lp-font-display);
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--lp-text-white);
}

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

.lp-nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.lp-nav-links a:hover,
.lp-nav-links a.active {
    color: var(--lp-text-white);
}

.lp-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lp-primary);
    transition: var(--lp-transition-base);
}

.lp-nav-links a:hover::after,
.lp-nav-links a.active::after {
    width: 100%;
}

.lp-nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--lp-primary);
    color: var(--lp-bg-dark);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--lp-radius-sm);
    transition: var(--lp-transition-base);
}

.lp-nav-cta:hover {
    background: var(--lp-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-glow);
}

.lp-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.lp-mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--lp-text-white);
    transition: var(--lp-transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.lp-hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(139, 229, 142, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 229, 142, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

.lp-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.lp-hero-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 229, 142, 0.15) 0%, transparent 70%);
    top: -150px;
    left: -50px;
}

.lp-hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 229, 142, 0.08) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
}

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

.lp-hero-lines .line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--lp-border-subtle), transparent);
}

.lp-hero-lines .line:nth-child(1) { left: 20%; }
.lp-hero-lines .line:nth-child(2) { left: 40%; }
.lp-hero-lines .line:nth-child(3) { left: 60%; }
.lp-hero-lines .line:nth-child(4) { left: 80%; }
.lp-hero-lines .line:nth-child(5) { left: 100%; }

.lp-hero-container {
    max-width: var(--lp-container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lp-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.lp-eyebrow-line {
    width: 60px;
    height: 2px;
    background: var(--lp-primary);
}

.lp-hero-eyebrow span {
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lp-hero-title {
    margin-bottom: 28px;
}

.lp-title-line {
    display: block;
    font-family: var(--lp-font-display);
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.95;
    letter-spacing: 2px;
    color: var(--lp-text-white);
}

.lp-title-line.title-highlight {
    color: var(--lp-primary);
}

.lp-hero-subtitle {
    font-size: 18px;
    color: var(--lp-text-muted);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--lp-radius-sm);
    transition: var(--lp-transition-base);
    cursor: pointer;
}

.lp-btn-primary {
    background: var(--lp-primary);
    color: var(--lp-bg-dark) !important;
}

.lp-btn-primary:hover {
    background: var(--lp-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-glow);
}

.lp-btn-glow {
    box-shadow: var(--lp-shadow-glow);
}

.lp-btn-outline {
    background: transparent;
    border: 2px solid var(--lp-border-light);
    color: var(--lp-text-white);
}

.lp-btn-outline:hover {
    border-color: var(--lp-primary);
    color: var(--lp-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 229, 142, 0.2);
}

.lp-btn-whatsapp {
    background: var(--lp-whatsapp);
    color: white;
}

.lp-btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
}

.lp-btn-full {
    width: 100%;
}

.lp-btn-large {
    padding: 16px 40px;
    font-size: 14px;
}

.lp-whatsapp-icon {
    width: 22px;
    height: 22px;
}

/* Hero Visual */
.lp-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.lp-hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.lp-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-md);
    backdrop-filter: blur(10px);
    animation: lp-float 6s ease-in-out infinite;
}

.lp-card-1 {
    top: 0;
    left: -30px;
    animation-delay: 0s;
}

.lp-card-2 {
    top: 80px;
    right: -20px;
    animation-delay: 1s;
}

.lp-card-3 {
    bottom: 100px;
    left: -40px;
    animation-delay: 2s;
}

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

.lp-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--lp-primary);
}

.lp-card-info {
    display: flex;
    flex-direction: column;
}

.lp-card-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--lp-text-white);
}

.lp-card-value {
    font-size: 12px;
    color: var(--lp-text-muted);
}

.lp-main-hero-card {
    position: relative;
    background: var(--lp-gradient-card);
    border: 1px solid var(--lp-border-light);
    border-radius: var(--lp-radius-lg);
    padding: 24px;
    margin-top: 60px;
    overflow: hidden;
}

.lp-main-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lp-gradient-primary);
}

.lp-main-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-red);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lp-live-dot {
    width: 8px;
    height: 8px;
    background: var(--lp-red);
    border-radius: 50%;
    animation: lp-blink 1.5s ease infinite;
}

@keyframes lp-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.lp-main-card-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--lp-border-subtle);
    border-bottom: 1px solid var(--lp-border-subtle);
}

.lp-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.lp-flag {
    font-family: var(--lp-font-display);
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--lp-text-white);
    padding: 12px 18px;
    background: var(--lp-bg-elevated);
    border-radius: var(--lp-radius-sm);
}

.lp-score-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.lp-score {
    font-size: 14px;
    color: var(--lp-text-muted);
}

.lp-odds {
    padding: 8px 20px;
    background: var(--lp-primary);
    color: var(--lp-bg-dark);
    font-weight: 700;
    font-size: 18px;
    border-radius: var(--lp-radius-sm);
}

.lp-main-card-cta {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-primary);
    cursor: pointer;
    transition: var(--lp-transition-base);
}

.lp-main-card-cta:hover {
    color: var(--lp-primary-light);
}

/* Hero Stats Bar */
.lp-hero-stats-bar {
    max-width: var(--lp-container-max);
    margin: 60px auto 0;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.lp-stat-box {
    text-align: center;
}

.lp-stat-num {
    display: block;
    font-family: var(--lp-font-display);
    font-size: 36px;
    letter-spacing: 1px;
    color: var(--lp-text-white);
}

.lp-stat-text {
    font-size: 13px;
    color: var(--lp-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lp-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--lp-border-subtle);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.lp-trust-badges {
    padding: 40px 0;
    background: var(--lp-bg-card);
    border-top: 1px solid var(--lp-border-subtle);
    border-bottom: 1px solid var(--lp-border-subtle);
}

.lp-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.lp-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-badge-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-badge-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--lp-primary);
}

.lp-badge-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.lp-section-intro {
    margin-bottom: 50px;
}

.lp-section-intro.center {
    text-align: center;
}

.lp-intro-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 600;
    color: var(--lp-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lp-tag-dot {
    width: 6px;
    height: 6px;
    background: var(--lp-primary);
    border-radius: 50%;
}

.lp-section-title-large {
    font-family: var(--lp-font-display);
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--lp-text-white);
    margin-bottom: 12px;
}

.lp-section-title-large .highlight {
    color: var(--lp-primary);
}

.lp-section-intro-text {
    font-size: 16px;
    color: var(--lp-text-muted);
    max-width: 550px;
}

.lp-section-intro.center .lp-section-intro-text {
    margin: 0 auto;
}

/* ============================================
   WHAT IS BETPRO SECTION
   ============================================ */
.lp-what-is-betpro {
    padding: var(--lp-section-padding);
    background: var(--lp-bg-main);
    position: relative;
}

.lp-what-is-betpro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lp-border-subtle), transparent);
}

.lp-explanation-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.lp-explanation-card {
    position: relative;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-lg);
    padding: 40px;
    overflow: hidden;
}

.lp-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--lp-gradient-primary);
}

.lp-explanation-card h3 {
    font-family: var(--lp-font-display);
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--lp-text-white);
    margin-bottom: 20px;
}

.lp-explanation-card > p {
    color: var(--lp-text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.lp-dual-identity {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin: 32px 0;
}

.lp-identity-box {
    background: var(--lp-bg-elevated);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-md);
    padding: 24px;
    text-align: center;
}

.lp-identity-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-identity-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--lp-primary);
}

.lp-identity-box h4 {
    font-family: var(--lp-font-display);
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--lp-primary);
    margin-bottom: 8px;
}

.lp-identity-box p {
    font-size: 14px;
    color: var(--lp-text-muted);
    margin: 0;
}

.lp-identity-connector {
    width: 50px;
    height: 50px;
    background: var(--lp-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--lp-bg-dark);
}

.lp-key-point {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(139, 229, 142, 0.05);
    border: 1px solid var(--lp-border-light);
    border-radius: var(--lp-radius-md);
    margin-top: 24px;
}

.lp-key-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-key-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--lp-primary);
}

.lp-key-point p {
    margin: 0;
    font-size: 15px;
    color: var(--lp-text-light);
}

/* Sidebar Cards */
.lp-explanation-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-sidebar-card {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-lg);
    padding: 28px;
}

.lp-sidebar-card h4 {
    font-family: var(--lp-font-display);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--lp-text-white);
    margin-bottom: 16px;
}

.lp-sidebar-card p {
    font-size: 14px;
    color: var(--lp-text-muted);
    margin-bottom: 16px;
}

.lp-sidebar-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-sidebar-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--lp-text-light);
}

.lp-sidebar-card ul li::before {
    content: '→';
    color: var(--lp-primary);
    font-weight: 700;
}

.lp-timeline-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-timeline-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.lp-timeline-item .year {
    min-width: 50px;
    font-family: var(--lp-font-display);
    font-size: 18px;
    color: var(--lp-primary);
}

.lp-timeline-item .event {
    font-size: 14px;
    color: var(--lp-text-muted);
}

/* Comparison Section */
.lp-comparison-section {
    margin-top: 40px;
}

.lp-comparison-title {
    font-family: var(--lp-font-display);
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--lp-text-white);
    text-align: center;
    margin-bottom: 32px;
}

.lp-comparison-table {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
}

.lp-comparison-header,
.lp-comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
}

.lp-comparison-header {
    background: var(--lp-bg-elevated);
    border-bottom: 1px solid var(--lp-border-subtle);
}

.lp-comparison-header .lp-comp-col {
    padding: 20px 24px;
    font-family: var(--lp-font-display);
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--lp-text-white);
}

.lp-comparison-row {
    border-bottom: 1px solid var(--lp-border-subtle);
}

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

.lp-comp-col {
    padding: 18px 24px;
    font-size: 14px;
    color: var(--lp-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-highlight-col {
    background: rgba(139, 229, 142, 0.05);
    color: var(--lp-text-light);
}

.lp-check {
    color: var(--lp-primary);
    font-weight: 700;
}

.lp-cross {
    color: var(--lp-red);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.lp-services {
    padding: var(--lp-section-padding);
    background: var(--lp-bg-main);
}

.lp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-service-card {
    position: relative;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-lg);
    padding: 32px;
    transition: var(--lp-transition-base);
    overflow: hidden;
}

.lp-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: var(--lp-transition-base);
}

.lp-service-card:hover {
    border-color: var(--lp-border-light);
    transform: translateY(-4px);
}

.lp-service-card:hover::before {
    background: var(--lp-gradient-primary);
}

.lp-service-card.featured {
    border-color: var(--lp-primary);
    background: linear-gradient(180deg, rgba(139, 229, 142, 0.05) 0%, var(--lp-bg-card) 100%);
}

.lp-service-card.featured::before {
    background: var(--lp-gradient-primary);
}

.lp-featured-label {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: var(--lp-primary);
    color: var(--lp-bg-dark);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--lp-radius-sm);
}

.lp-service-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--lp-font-display);
    font-size: 48px;
    color: var(--lp-border-subtle);
    line-height: 1;
}

.lp-service-card.featured .lp-service-number {
    color: rgba(139, 229, 142, 0.2);
}

.lp-service-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(139, 229, 142, 0.1);
    border-radius: var(--lp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lp-service-icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke: var(--lp-primary);
}

.lp-service-card h3 {
    font-family: var(--lp-font-display);
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--lp-text-white);
    margin-bottom: 12px;
}

.lp-service-card > p {
    font-size: 14px;
    color: var(--lp-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.lp-service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--lp-text-muted);
}

.lp-service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--lp-primary);
    border-radius: 50%;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.lp-pricing {
    padding: var(--lp-section-padding);
    background: var(--lp-bg-dark);
}

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.lp-pricing-card {
    position: relative;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-lg);
    padding: 32px;
    transition: var(--lp-transition-base);
    display: flex;
    flex-direction: column;
}

.lp-pricing-card:hover {
    border-color: var(--lp-border-light);
    transform: translateY(-4px);
}

.lp-pricing-card.featured {
    border: 2px solid var(--lp-primary);
    background: linear-gradient(180deg, rgba(139, 229, 142, 0.08) 0%, var(--lp-bg-card) 100%);
    transform: scale(1.02);
    z-index: 2;
}

.lp-pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.lp-pricing-card.master {
    border-color: var(--lp-gold);
}

.lp-pricing-card.master:hover {
    border-color: var(--lp-gold);
    box-shadow: 0 0 30px rgba(232, 197, 71, 0.15);
}

.lp-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--lp-primary);
    color: var(--lp-bg-dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    white-space: nowrap;
}

.lp-pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.lp-pricing-header h3 {
    font-family: var(--lp-font-display);
    font-size: 26px;
    letter-spacing: 1px;
    color: var(--lp-text-white);
    margin-bottom: 8px;
}

.lp-pricing-desc {
    font-size: 14px;
    color: var(--lp-text-muted);
}

.lp-pricing-amount {
    text-align: center;
    padding: 24px 0;
    margin-bottom: 24px;
    border-top: 1px solid var(--lp-border-subtle);
    border-bottom: 1px solid var(--lp-border-subtle);
}

.lp-pricing-amount .currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--lp-text-muted);
    vertical-align: top;
}

.lp-pricing-amount .price {
    font-family: var(--lp-font-display);
    font-size: 52px;
    letter-spacing: 1px;
    color: var(--lp-text-white);
    line-height: 1;
}

.lp-pricing-card.featured .lp-pricing-amount .price {
    color: var(--lp-primary);
}

.lp-pricing-card.master .lp-pricing-amount .price {
    color: var(--lp-gold);
}

.lp-pricing-amount .period {
    display: block;
    font-size: 13px;
    color: var(--lp-text-muted);
    margin-top: 8px;
}

.lp-pricing-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.lp-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--lp-text-light);
}

.lp-pricing-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--lp-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-pricing-features li.highlight-feature {
    padding: 12px;
    background: rgba(139, 229, 142, 0.1);
    border-radius: var(--lp-radius-sm);
    margin-top: 8px;
}

.lp-pricing-features li.highlight-feature svg {
    stroke: var(--lp-gold);
    fill: var(--lp-gold);
}

.lp-pricing-features li.highlight-feature strong {
    color: var(--lp-gold);
}

.lp-pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 24px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-md);
    max-width: 700px;
    margin: 0 auto;
}

.lp-note-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-note-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--lp-primary);
}

.lp-pricing-note p {
    font-size: 14px;
    color: var(--lp-text-muted);
    margin: 0;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.lp-how-it-works {
    padding: var(--lp-section-padding);
    background: var(--lp-bg-dark);
}

.lp-steps-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.lp-timeline-track {
    position: absolute;
    top: 45px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: var(--lp-border-subtle);
}

.lp-timeline-track::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--lp-primary);
    animation: lp-progressLine 3s ease infinite;
}

@keyframes lp-progressLine {
    0% { width: 0; }
    100% { width: 100%; }
}

.lp-step-item {
    text-align: center;
}

.lp-step-marker {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: var(--lp-bg-card);
    border: 2px solid var(--lp-border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: var(--lp-transition-base);
}

.lp-step-marker span {
    font-family: var(--lp-font-display);
    font-size: 32px;
    color: var(--lp-primary);
}

.lp-step-item:hover .lp-step-marker {
    background: var(--lp-primary);
    border-color: var(--lp-primary);
    transform: scale(1.1);
}

.lp-step-item:hover .lp-step-marker span {
    color: var(--lp-bg-dark);
}

.lp-step-card {
    padding: 0 10px;
}

.lp-step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-step-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--lp-primary);
}

.lp-step-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--lp-text-white);
    margin-bottom: 10px;
}

.lp-step-card p {
    font-size: 14px;
    color: var(--lp-text-muted);
    line-height: 1.6;
}

.lp-process-cta {
    text-align: center;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.lp-faq {
    padding: var(--lp-section-padding);
    background: var(--lp-bg-dark);
}

.lp-faq-grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-faq-item {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-md);
    overflow: hidden;
    transition: var(--lp-transition-base);
}

.lp-faq-item:hover {
    border-color: var(--lp-border-light);
}

.lp-faq-item.active {
    border-color: var(--lp-primary);
}

.lp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    font-size: 16px;
    font-weight: 600;
    color: var(--lp-text-white);
    text-align: left;
    cursor: pointer;
    background: transparent;
}

.lp-faq-toggle {
    width: 28px;
    height: 28px;
    background: var(--lp-bg-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--lp-primary);
    transition: var(--lp-transition-base);
    flex-shrink: 0;
}

.lp-faq-item.active .lp-faq-toggle {
    background: var(--lp-primary);
    color: var(--lp-bg-dark);
    transform: rotate(45deg);
}

.lp-faq-answer {
    display: none;
    padding: 0 26px 24px;
}

.lp-faq-item.active .lp-faq-answer {
    display: block;
}

.lp-faq-answer p {
    font-size: 15px;
    color: var(--lp-text-muted);
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.lp-contact {
    padding: var(--lp-section-padding);
    background: var(--lp-bg-main);
}

.lp-contact-card {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding: 50px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-primary);
    border-radius: var(--lp-radius-lg);
    text-align: center;
    overflow: hidden;
}

.lp-contact-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(139, 229, 142, 0.08) 0%, transparent 50%);
    animation: lp-rotate 20s linear infinite;
}

@keyframes lp-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.lp-contact-content {
    position: relative;
    z-index: 1;
}

.lp-contact-card h2 {
    font-family: var(--lp-font-display);
    font-size: clamp(28px, 4vw, 38px);
    letter-spacing: 1px;
    color: var(--lp-text-white);
    margin-bottom: 12px;
}

.lp-contact-card > .lp-contact-content > p {
    font-size: 17px;
    color: var(--lp-text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.lp-contact-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.lp-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--lp-text-light);
}

.lp-benefit-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-benefit-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--lp-primary);
}

.lp-contact-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--lp-text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.lp-footer {
    padding: 80px 0 40px;
    background: var(--lp-bg-dark);
    border-top: 1px solid var(--lp-border-subtle);
}

.lp-footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.lp-footer-brand .lp-logo {
    margin-bottom: 20px;
}

.lp-footer-brand > p {
    font-size: 14px;
    color: var(--lp-text-muted);
    line-height: 1.7;
}

.lp-footer-links h4,
.lp-footer-contact h4 {
    font-family: var(--lp-font-display);
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--lp-text-white);
    margin-bottom: 20px;
}

.lp-footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-footer-links a {
    font-size: 14px;
    color: var(--lp-text-muted);
}

.lp-footer-links a:hover {
    color: var(--lp-primary);
}

.lp-footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--lp-radius-sm);
    font-size: 14px;
    color: var(--lp-whatsapp);
    margin-bottom: 12px;
}

.lp-footer-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
}

.lp-footer-whatsapp .lp-whatsapp-icon {
    width: 18px;
    height: 18px;
}

.lp-footer-hours {
    font-size: 13px;
    color: var(--lp-text-muted);
}

.lp-footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--lp-border-subtle);
    text-align: center;
}

.lp-footer-bottom p {
    font-size: 14px;
    color: var(--lp-text-muted);
    margin-bottom: 8px;
}

.lp-disclaimer {
    font-size: 12px;
    color: var(--lp-text-dark);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.lp-floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: var(--lp-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--lp-transition-base);
}

.lp-floating-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.lp-floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6);
}

.lp-whatsapp-pulse {
    position: absolute;
    inset: -8px;
    border: 3px solid var(--lp-whatsapp);
    border-radius: 50%;
    animation: lp-pulseRing 2s ease infinite;
}

@keyframes lp-pulseRing {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .lp-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .lp-hero-eyebrow {
        justify-content: center;
    }
    
    .lp-hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .lp-hero-actions {
        justify-content: center;
    }
    
    .lp-hero-visual {
        display: none;
    }
    
    .lp-explanation-grid {
        grid-template-columns: 1fr;
    }
    
    .lp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .lp-pricing-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .lp-pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .lp-steps-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .lp-timeline-track {
        display: none;
    }
    
    .lp-footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lp-announcement-text {
        font-size: 12px;
    }
    
    .lp-announcement-container {
        padding: 8px 16px;
    }
    
    .lp-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--lp-bg-main);
        flex-direction: column;
        padding: 100px 40px;
        gap: 24px;
        transition: var(--lp-transition-base);
        border-left: 1px solid var(--lp-border-subtle);
        z-index: 1001;
    }
    
    .lp-nav-links.active {
        right: 0;
    }
    
    .lp-nav-cta {
        display: none;
    }
    
    .lp-mobile-toggle {
        display: flex;
    }
    
    .lp-mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .lp-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .lp-mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .lp-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .lp-title-line {
        font-size: 42px;
    }
    
    .lp-hero-stats-bar {
        gap: 30px;
    }
    
    .lp-stat-divider {
        display: none;
    }
    
    .lp-services-grid,
    .lp-steps-timeline {
        grid-template-columns: 1fr;
    }
    
    .lp-dual-identity {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .lp-identity-connector {
        transform: rotate(90deg);
    }
    
    .lp-comparison-header,
    .lp-comparison-row {
        grid-template-columns: 1fr;
    }
    
    .lp-comparison-header .lp-comp-col,
    .lp-comp-col {
        padding: 14px 20px;
    }
    
    .lp-comparison-header .lp-comp-col:first-child {
        display: none;
    }
    
    .lp-comp-col:first-child {
        background: var(--lp-bg-elevated);
        font-weight: 600;
    }
    
    .lp-contact-card {
        padding: 40px 24px;
    }
    
    .lp-contact-benefits {
        flex-direction: column;
        gap: 16px;
    }
    
    .lp-footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lp-floating-whatsapp {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .lp-floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }
    
    .lp-badges-grid {
        gap: 24px;
    }
    
    .lp-badge-item span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .lp-badges-grid {
        gap: 20px;
        justify-content: flex-start;
    }
    
    .lp-badge-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .lp-announcement-content {
        flex-direction: column;
        gap: 4px;
    }
    
    .lp-announcement-text {
        font-size: 11px;
        text-align: center;
    }
    
    .lp-announcement-icon {
        display: none;
    }
    
    .lp-hero-actions {
        flex-direction: column;
    }
    
    .lp-btn {
        width: 100%;
    }
    
    .lp-hero-stats-bar {
        flex-direction: column;
        gap: 24px;
    }
    
    .lp-stat-num {
        font-size: 36px;
    }
}

/* ============================================
   WORDPRESS OVERRIDE STYLES
   Prevents WordPress default styles from conflicting
   ============================================ */

/* Reset WordPress block editor styles if present */
body.lp-landing-page-body .wp-block,
body.lp-landing-page-body .entry-content,
body.lp-landing-page-body .site-content,
body.lp-landing-page-body #page,
body.lp-landing-page-body #content,
body.lp-landing-page-body #main,
body.lp-landing-page-body .hentry {
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Override any WordPress theme container widths */
body.lp-landing-page-body .site,
body.lp-landing-page-body .site-inner,
body.lp-landing-page-body .content-area {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Ensure landing page takes full width */
body.lp-landing-page-body .lp-landing-page {
    width: 100%;
    max-width: none;
}

/* Remove any WordPress link underlines */
.lp-landing-page a {
    text-decoration: none !important;
}

/* Ensure proper heading styles */
.lp-landing-page h1,
.lp-landing-page h2,
.lp-landing-page h3,
.lp-landing-page h4,
.lp-landing-page h5,
.lp-landing-page h6 {
    margin: 0;
    padding: 0;
    font-weight: inherit;
}

/* Ensure paragraphs have no extra spacing from WordPress */
.lp-landing-page p {
    margin-bottom: 0;
}

/* Override WordPress button styles */
.lp-landing-page .lp-btn,
.lp-landing-page button {
    border-radius: var(--lp-radius-sm);
    font-family: var(--lp-font-body);
}

/* Ensure lists are unstyled */
.lp-landing-page ul,
.lp-landing-page ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Prevent WordPress from adding unwanted spacing */


/* Hide any WordPress skip links or accessibility elements that might show */
body.lp-landing-page-body .skip-link,
body.lp-landing-page-body .screen-reader-text:not(:focus):not(:active) {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* Blog Header */
.lp-blog-header {
    position: relative;
    padding: 140px 0 80px;
    background: var(--lp-bg-dark);
    overflow: hidden;
}

.lp-blog-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lp-blog-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.lp-blog-title {
    font-family: var(--lp-font-display);
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 2px;
    color: var(--lp-text-white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.lp-blog-title .highlight {
    color: var(--lp-primary);
}

.lp-blog-subtitle {
    font-size: 18px;
    color: var(--lp-text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.lp-archive-count {
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-sm);
    display: inline-block;
    font-size: 14px;
    color: var(--lp-primary);
    font-weight: 600;
}

/* Breadcrumb */
.lp-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 14px;
}

.lp-breadcrumb a {
    color: var(--lp-text-muted);
    transition: var(--lp-transition-fast);
}

.lp-breadcrumb a:hover {
    color: var(--lp-primary);
}

.lp-breadcrumb span:not(.lp-breadcrumb-sep) {
    color: var(--lp-text-light);
}

.lp-breadcrumb-sep {
    display: flex;
    align-items: center;
}

.lp-breadcrumb-sep svg {
    width: 14px;
    height: 14px;
    stroke: var(--lp-text-dark);
}

/* Blog Content Section */
.lp-blog-content {
    padding: 60px 0 100px;
    background: var(--lp-bg-main);
}

/* Blog Layout */
.lp-blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* Posts Grid */
.lp-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Post Card */
.lp-post-card {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    transition: var(--lp-transition-base);
}

.lp-post-card:hover {
    border-color: var(--lp-border-light);
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-lg);
}

.lp-post-thumbnail {
    position: relative;
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--lp-bg-elevated);
}

.lp-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--lp-ease-out);
}

.lp-post-card:hover .lp-post-thumbnail img {
    transform: scale(1.05);
}

.lp-post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    opacity: 0;
    transition: var(--lp-transition-base);
}

.lp-post-card:hover .lp-post-overlay {
    opacity: 1;
}

.lp-post-thumbnail.lp-no-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-post-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-post-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--lp-text-dark);
}

.lp-post-content {
    padding: 24px;
}

.lp-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.lp-post-category {
    padding: 4px 10px;
    background: rgba(139, 229, 142, 0.1);
    border: 1px solid var(--lp-border-light);
    border-radius: var(--lp-radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--lp-primary);
    transition: var(--lp-transition-fast);
}

.lp-post-category:hover {
    background: var(--lp-primary);
    color: var(--lp-bg-dark);
}

.lp-post-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--lp-text-muted);
}

.lp-post-date svg {
    width: 14px;
    height: 14px;
}

.lp-post-title {
    margin-bottom: 12px;
}

.lp-post-title a {
    font-family: var(--lp-font-display);
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--lp-text-white);
    line-height: 1.2;
    transition: var(--lp-transition-fast);
}

.lp-post-title a:hover {
    color: var(--lp-primary);
}

.lp-post-excerpt {
    font-size: 14px;
    color: var(--lp-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.lp-post-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp-post-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.lp-post-link:hover svg {
    transform: translateX(4px);
}

/* Pagination */
.lp-pagination {
    margin-top: 50px;
}

.lp-pagination-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lp-pagination-links a,
.lp-pagination-links span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-text-muted);
    transition: var(--lp-transition-fast);
}

.lp-pagination-links a:hover {
    border-color: var(--lp-primary);
    color: var(--lp-primary);
}

.lp-pagination-links .current {
    background: var(--lp-primary);
    border-color: var(--lp-primary);
    color: var(--lp-bg-dark);
}

.lp-pagination-links svg {
    width: 18px;
    height: 18px;
}

/* No Posts */
.lp-no-posts {
    text-align: center;
    padding: 80px 40px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-lg);
}

.lp-no-posts-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-no-posts-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--lp-text-dark);
}

.lp-no-posts h2 {
    font-family: var(--lp-font-display);
    font-size: 28px;
    color: var(--lp-text-white);
    margin-bottom: 12px;
}

.lp-no-posts p {
    font-size: 16px;
    color: var(--lp-text-muted);
    margin-bottom: 24px;
}

/* Blog Sidebar */
.lp-blog-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-sidebar-widget {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-lg);
    padding: 24px;
}

.lp-widget-title {
    font-family: var(--lp-font-display);
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--lp-text-white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--lp-border-subtle);
}

/* Search Widget */
.lp-search-form {
    display: flex;
    gap: 0;
}

.lp-search-form input {
    flex: 1;
    padding: 12px 16px;
    background: var(--lp-bg-elevated);
    border: 1px solid var(--lp-border-subtle);
    border-right: none;
    border-radius: var(--lp-radius-sm) 0 0 var(--lp-radius-sm);
    font-size: 14px;
    color: var(--lp-text-white);
    outline: none;
    transition: var(--lp-transition-fast);
}

.lp-search-form input::placeholder {
    color: var(--lp-text-dark);
}

.lp-search-form input:focus {
    border-color: var(--lp-primary);
}

.lp-search-form button {
    padding: 12px 16px;
    background: var(--lp-primary);
    border: 1px solid var(--lp-primary);
    border-radius: 0 var(--lp-radius-sm) var(--lp-radius-sm) 0;
    cursor: pointer;
    transition: var(--lp-transition-fast);
}

.lp-search-form button:hover {
    background: var(--lp-primary-light);
}

.lp-search-form button svg {
    width: 18px;
    height: 18px;
    stroke: var(--lp-bg-dark);
}

/* Categories List */
.lp-categories-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-categories-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--lp-bg-elevated);
    border-radius: var(--lp-radius-sm);
    transition: var(--lp-transition-fast);
}

.lp-categories-list li a:hover,
.lp-categories-list li.current a {
    background: rgba(139, 229, 142, 0.1);
}

.lp-categories-list .cat-name {
    font-size: 14px;
    color: var(--lp-text-light);
}

.lp-categories-list li a:hover .cat-name,
.lp-categories-list li.current .cat-name {
    color: var(--lp-primary);
}

.lp-categories-list .cat-count {
    padding: 2px 8px;
    background: var(--lp-bg-card);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--lp-text-muted);
}

.lp-categories-list .no-categories {
    font-size: 14px;
    color: var(--lp-text-muted);
    text-align: center;
    padding: 20px;
}

/* Recent Posts */
.lp-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-recent-post-item {
    display: flex;
    gap: 14px;
    transition: var(--lp-transition-fast);
}

.lp-recent-post-item:hover {
    opacity: 0.8;
}

.lp-recent-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: var(--lp-radius-sm);
    overflow: hidden;
    background: var(--lp-bg-elevated);
}

.lp-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-recent-thumb.lp-no-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-recent-thumb svg {
    width: 24px;
    height: 24px;
    stroke: var(--lp-text-dark);
}

.lp-recent-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-recent-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-text-white);
    line-height: 1.4;
    margin-bottom: 6px;
}

.lp-recent-date {
    font-size: 12px;
    color: var(--lp-text-muted);
}

.lp-recent-posts .no-posts {
    font-size: 14px;
    color: var(--lp-text-muted);
    text-align: center;
    padding: 20px;
}

/* CTA Widget */
.lp-cta-widget {
    background: linear-gradient(135deg, rgba(139, 229, 142, 0.1) 0%, var(--lp-bg-card) 100%);
    border-color: var(--lp-primary);
}

.lp-cta-content {
    text-align: center;
}

.lp-cta-content h3 {
    font-family: var(--lp-font-display);
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--lp-text-white);
    margin-bottom: 8px;
}

.lp-cta-content p {
    font-size: 14px;
    color: var(--lp-text-muted);
    margin-bottom: 20px;
}

/* ============================================
   SINGLE POST STYLES
   ============================================ */

/* Article Header */
.lp-article-header {
    position: relative;
    padding: 140px 0 60px;
    background: var(--lp-bg-dark);
    overflow: hidden;
}

.lp-article-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lp-article-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lp-article-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.lp-article-cat {
    padding: 6px 14px;
    background: rgba(139, 229, 142, 0.1);
    border: 1px solid var(--lp-border-light);
    border-radius: var(--lp-radius-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--lp-primary);
    transition: var(--lp-transition-fast);
}

.lp-article-cat:hover {
    background: var(--lp-primary);
    color: var(--lp-bg-dark);
}

.lp-article-title {
    font-family: var(--lp-font-display);
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: 1px;
    color: var(--lp-text-white);
    line-height: 1.15;
    margin-bottom: 28px;
}

.lp-article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.lp-meta-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-meta-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--lp-border-light);
}

.lp-meta-author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.lp-meta-author-info .author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-text-white);
}

.lp-meta-author-info .author-role {
    font-size: 12px;
    color: var(--lp-text-muted);
}

.lp-meta-details {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lp-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--lp-text-muted);
}

.lp-meta-item svg {
    width: 16px;
    height: 16px;
}

/* Featured Image */
.lp-article-featured-image {
    margin-top: -30px;
    margin-bottom: 60px;
}

.lp-featured-image-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg);
}

.lp-featured-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Content */
.lp-article-content {
    padding: 0 0 100px;
    background: var(--lp-bg-main);
}

.lp-article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.lp-article-main {
    max-width: 100%;
}

/* Article Body - WordPress Content Styling */
.lp-article-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--lp-text-light);
}

.lp-article-body p {
    margin-bottom: 24px;
}

.lp-article-body h2 {
    font-family: var(--lp-font-display);
    font-size: 28px;
    letter-spacing: 0.5px;
    color: var(--lp-text-white);
    margin: 40px 0 20px;
}

.lp-article-body h3 {
    font-family: var(--lp-font-display);
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--lp-text-white);
    margin: 32px 0 16px;
}

.lp-article-body h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--lp-text-white);
    margin: 28px 0 14px;
}

.lp-article-body a {
    color: var(--lp-primary);
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

.lp-article-body a:hover {
    color: var(--lp-primary-light);
}

.lp-article-body ul,
.lp-article-body ol {
    margin: 20px 0;
    padding-left: 24px;
}

.lp-article-body ul {
    list-style: disc;
}

.lp-article-body ol {
    list-style: decimal;
}

.lp-article-body li {
    margin-bottom: 10px;
    color: var(--lp-text-muted);
}

.lp-article-body blockquote {
    margin: 30px 0;
    padding: 24px 30px;
    background: var(--lp-bg-card);
    border-left: 4px solid var(--lp-primary);
    border-radius: 0 var(--lp-radius-md) var(--lp-radius-md) 0;
    font-size: 18px;
    font-style: italic;
    color: var(--lp-text-light);
}

.lp-article-body blockquote p:last-child {
    margin-bottom: 0;
}

.lp-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--lp-radius-md);
    margin: 24px 0;
}

.lp-article-body pre,
.lp-article-body code {
    background: var(--lp-bg-card);
    border-radius: var(--lp-radius-sm);
    font-family: 'JetBrains Mono', monospace;
}

.lp-article-body code {
    padding: 2px 6px;
    font-size: 14px;
    color: var(--lp-primary);
}

.lp-article-body pre {
    padding: 20px;
    overflow-x: auto;
    margin: 24px 0;
}

.lp-article-body pre code {
    padding: 0;
    background: none;
}

.lp-article-body hr {
    border: none;
    height: 1px;
    background: var(--lp-border-subtle);
    margin: 40px 0;
}

.lp-article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.lp-article-body th,
.lp-article-body td {
    padding: 12px 16px;
    border: 1px solid var(--lp-border-subtle);
    text-align: left;
}

.lp-article-body th {
    background: var(--lp-bg-card);
    color: var(--lp-text-white);
    font-weight: 600;
}

/* Article Tags */
.lp-article-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--lp-border-subtle);
}

.lp-tags-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-text-muted);
}

.lp-tag {
    padding: 6px 14px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-sm);
    font-size: 13px;
    color: var(--lp-text-muted);
    transition: var(--lp-transition-fast);
}

.lp-tag:hover {
    border-color: var(--lp-primary);
    color: var(--lp-primary);
}

/* Share Buttons */
.lp-article-share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    padding: 20px;
    background: var(--lp-bg-card);
    border-radius: var(--lp-radius-md);
    flex-wrap: wrap;
}

.lp-share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-text-muted);
}

.lp-share-buttons {
    display: flex;
    gap: 10px;
}

.lp-share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-bg-elevated);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-sm);
    transition: var(--lp-transition-fast);
    cursor: pointer;
}

.lp-share-btn svg {
    width: 18px;
    height: 18px;
}

.lp-share-whatsapp:hover {
    background: var(--lp-whatsapp);
    border-color: var(--lp-whatsapp);
}

.lp-share-whatsapp svg {
    fill: var(--lp-whatsapp);
}

.lp-share-whatsapp:hover svg {
    fill: white;
}

.lp-share-twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.lp-share-twitter svg {
    fill: #1DA1F2;
}

.lp-share-twitter:hover svg {
    fill: white;
}

.lp-share-facebook:hover {
    background: #4267B2;
    border-color: #4267B2;
}

.lp-share-facebook svg {
    fill: #4267B2;
}

.lp-share-facebook:hover svg {
    fill: white;
}

.lp-share-copy svg {
    stroke: var(--lp-text-muted);
    fill: none;
}

.lp-share-copy:hover {
    background: var(--lp-primary);
    border-color: var(--lp-primary);
}

.lp-share-copy:hover svg {
    stroke: var(--lp-bg-dark);
}

/* Author Box */
.lp-author-box {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    padding: 30px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-lg);
}

.lp-author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--lp-border-light);
}

.lp-author-info {
    flex: 1;
}

.lp-author-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lp-primary);
    font-weight: 600;
}

.lp-author-name {
    font-family: var(--lp-font-display);
    font-size: 22px;
    color: var(--lp-text-white);
    margin: 6px 0 10px;
}

.lp-author-bio {
    font-size: 14px;
    color: var(--lp-text-muted);
    line-height: 1.6;
}

/* Post Navigation */
.lp-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}

.lp-post-nav-item {
    padding: 24px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-md);
    transition: var(--lp-transition-base);
}

.lp-post-nav-item:hover {
    border-color: var(--lp-primary);
}

.lp-post-nav-empty {
    background: transparent;
    border: none;
}

.lp-post-prev {
    text-align: left;
}

.lp-post-next {
    text-align: right;
}

.lp-nav-direction {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--lp-primary);
    margin-bottom: 8px;
}

.lp-post-next .lp-nav-direction {
    justify-content: flex-end;
}

.lp-nav-direction svg {
    width: 16px;
    height: 16px;
}

.lp-nav-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--lp-text-white);
}

/* ============================================
   BLOG RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .lp-blog-layout,
    .lp-article-layout {
        grid-template-columns: 1fr;
    }
    
    .lp-blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .lp-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lp-blog-header {
        padding: 120px 0 60px;
    }
    
    .lp-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .lp-blog-sidebar {
        grid-template-columns: 1fr;
    }
    
    .lp-article-header {
        padding: 120px 0 40px;
    }
    
    .lp-article-meta {
        flex-direction: column;
        gap: 16px;
    }
    
    .lp-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .lp-post-navigation {
        grid-template-columns: 1fr;
    }
    
    .lp-article-share {
        flex-direction: column;
        text-align: center;
    }
    
    .lp-share-buttons {
        justify-content: center;
    }
    
    .lp-breadcrumb {
        flex-wrap: wrap;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .lp-blog-content {
        padding: 40px 0 60px;
    }
    
    .lp-post-content {
        padding: 20px;
    }
    
    .lp-post-title a {
        font-size: 18px;
    }
    
    .lp-article-body {
        font-size: 16px;
    }
    
    .lp-article-body h2 {
        font-size: 24px;
    }
    
    .lp-article-body h3 {
        font-size: 20px;
    }
}


/* ============================================
   404 ERROR PAGE STYLES
   ============================================ */

.lp-404-page {
    min-height: 100vh;
}

.lp-404-section {
    position: relative;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.lp-404-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.lp-404-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(139, 229, 142, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 229, 142, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.lp-404-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* 404 Number Animation */
.lp-404-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.lp-404-digit {
    font-family: var(--lp-font-display);
    font-size: clamp(100px, 20vw, 180px);
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 2px var(--lp-primary);
    text-stroke: 2px var(--lp-primary);
    line-height: 1;
    animation: lp-404-float 3s ease-in-out infinite;
}

.lp-404-digit:first-child {
    animation-delay: 0s;
}

.lp-404-digit:last-child {
    animation-delay: 0.4s;
}

.lp-404-ball {
    -webkit-text-stroke: none;
    text-stroke: none;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lp-404-bounce 2s ease-in-out infinite;
}

.lp-404-ball svg {
    width: clamp(80px, 16vw, 140px);
    height: clamp(80px, 16vw, 140px);
    color: var(--lp-primary);
    filter: drop-shadow(0 0 30px var(--lp-primary-glow));
}

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

@keyframes lp-404-bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

/* 404 Text Content */
.lp-404-text {
    margin-bottom: 40px;
}

.lp-404-text h1 {
    font-family: var(--lp-font-display);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--lp-text-white);
    margin: 0 0 16px;
    letter-spacing: 2px;
}

.lp-404-text p {
    font-size: 18px;
    color: var(--lp-text-muted);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* 404 Search */
.lp-404-search {
    margin-bottom: 40px;
}

.lp-404-search-label {
    font-size: 14px;
    color: var(--lp-text-muted);
    margin-bottom: 16px;
}

.lp-search-form-large {
    max-width: 500px;
    margin: 0 auto;
}

.lp-search-form-large input {
    padding: 16px 60px 16px 20px;
    font-size: 16px;
}

.lp-search-form-large button {
    width: 50px;
    height: 50px;
}

/* 404 Action Buttons */
.lp-404-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

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

.lp-404-actions .lp-btn svg {
    width: 18px;
    height: 18px;
}

/* 404 Quick Links */
.lp-404-quick-links {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-xl);
    padding: 40px;
}

.lp-404-quick-links h3 {
    font-family: var(--lp-font-display);
    font-size: 24px;
    color: var(--lp-text-white);
    margin: 0 0 24px;
    letter-spacing: 1px;
}

.lp-404-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.lp-404-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--lp-bg-elevated);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-lg);
    text-decoration: none;
    transition: all var(--lp-transition-fast);
}

.lp-404-link:hover {
    border-color: var(--lp-primary);
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-glow);
}

.lp-404-link-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 229, 142, 0.1);
    border-radius: 50%;
    transition: all var(--lp-transition-fast);
}

.lp-404-link:hover .lp-404-link-icon {
    background: var(--lp-primary);
}

.lp-404-link-icon svg {
    width: 24px;
    height: 24px;
    color: var(--lp-primary);
    transition: all var(--lp-transition-fast);
}

.lp-404-link:hover .lp-404-link-icon svg {
    color: var(--lp-bg-dark);
}

.lp-404-link span {
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-text-light);
    text-align: center;
}

/* 404 Page Responsive */
@media (max-width: 768px) {
    .lp-404-section {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .lp-404-digit {
        -webkit-text-stroke-width: 1.5px;
    }
    
    .lp-404-text p {
        font-size: 16px;
    }
    
    .lp-404-actions {
        flex-direction: column;
    }
    
    .lp-404-actions .lp-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .lp-404-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lp-404-quick-links {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .lp-404-number {
        gap: 5px;
    }
    
    .lp-404-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .lp-404-link {
        padding: 20px 12px;
    }
    
    .lp-404-link span {
        font-size: 12px;
    }
}


/* ============================================
   PAGE TEMPLATE STYLES
   ============================================ */

.lp-page-header {
    position: relative;
    padding: 160px 0 60px;
    overflow: hidden;
}

.lp-page-content {
    padding: 60px 0 100px;
}

.lp-page-body {
    max-width: 800px;
    margin: 0 auto;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border-subtle);
    border-radius: var(--lp-radius-xl);
    padding: 50px;
}

.lp-page-body h1,
.lp-page-body h2,
.lp-page-body h3,
.lp-page-body h4,
.lp-page-body h5,
.lp-page-body h6 {
    font-family: var(--lp-font-display);
    color: var(--lp-text-white);
    margin-top: 2em;
    margin-bottom: 0.5em;
    letter-spacing: 1px;
}

.lp-page-body h1:first-child,
.lp-page-body h2:first-child,
.lp-page-body h3:first-child {
    margin-top: 0;
}

.lp-page-body h2 {
    font-size: 28px;
    border-bottom: 1px solid var(--lp-border-subtle);
    padding-bottom: 10px;
}

.lp-page-body h3 {
    font-size: 22px;
}

.lp-page-body p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--lp-text-light);
    margin-bottom: 1.5em;
}

.lp-page-body ul,
.lp-page-body ol {
    margin: 1.5em 0;
    padding-left: 1.5em;
}

.lp-page-body li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--lp-text-light);
    margin-bottom: 0.5em;
}

.lp-page-body a {
    color: var(--lp-primary);
    text-decoration: none;
    transition: all var(--lp-transition-fast);
}

.lp-page-body a:hover {
    color: var(--lp-primary-light);
    text-decoration: underline;
}

.lp-page-body blockquote {
    margin: 2em 0;
    padding: 20px 30px;
    background: var(--lp-bg-elevated);
    border-left: 4px solid var(--lp-primary);
    border-radius: var(--lp-radius-md);
}

.lp-page-body blockquote p {
    font-style: italic;
    margin-bottom: 0;
}

.lp-page-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--lp-radius-md);
    margin: 2em 0;
}

.lp-page-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
}

.lp-page-body th,
.lp-page-body td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--lp-border-subtle);
}

.lp-page-body th {
    background: var(--lp-bg-elevated);
    color: var(--lp-text-white);
    font-weight: 600;
}

/* Page Responsive */
@media (max-width: 768px) {
    .lp-page-header {
        padding: 120px 0 40px;
    }
    
    .lp-page-body {
        padding: 30px 20px;
    }
    
    .lp-page-body h2 {
        font-size: 24px;
    }
    
    .lp-page-body p,
    .lp-page-body li {
        font-size: 16px;
    }
}