/* ==========================================
   LANDING PAGE CSS - ACE NUT TRACKER
   Ultra-Modern SaaS Landing Page 2025
   ========================================== */

/* ==========================================
   CSS VARIABLES (Using existing color palette)
   ========================================== */
:root {
    /* Primary Brand Colors */
    --lp-navy: #001F3F;
    --lp-navy-dark: #001529;
    --lp-navy-light: #003366;
    --lp-gold: #FFD700;
    --lp-gold-dark: #E6C200;
    --lp-gold-light: #FFE44D;
    --lp-white: #ffffff;
    
    /* Extended Palette (derived from base colors) */
    --lp-navy-gradient: linear-gradient(135deg, #001F3F 0%, #003366 50%, #001529 100%);
    --lp-gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #E6C200 100%);
    --lp-glow-gold: 0 0 60px rgba(255, 215, 0, 0.4);
    --lp-glow-gold-intense: 0 0 100px rgba(255, 215, 0, 0.6);
    
    /* Text Colors */
    --lp-text-primary: #ffffff;
    --lp-text-secondary: rgba(255, 255, 255, 0.8);
    --lp-text-muted: rgba(255, 255, 255, 0.6);
    --lp-text-dark: #001F3F;
    --lp-text-dark-secondary: rgba(0, 31, 63, 0.7);
    
    /* Glass Effects */
    --lp-glass-bg: rgba(255, 255, 255, 0.08);
    --lp-glass-border: rgba(255, 255, 255, 0.15);
    --lp-glass-hover: rgba(255, 255, 255, 0.12);
    
    /* Shadows */
    --lp-shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.15);
    --lp-shadow-md: 0 8px 40px rgba(0, 0, 0, 0.2);
    --lp-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
    --lp-shadow-gold: 0 10px 40px rgba(255, 215, 0, 0.3);
    
    /* Transitions */
    --lp-transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --lp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --lp-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --lp-section-padding: clamp(60px, 10vw, 120px);
    --lp-container-max: 1400px;
}

/* ==========================================
   BASE STYLES & RESETS
   ========================================== */
.landing-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--lp-text-primary);
    background: var(--lp-navy-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.landing-page a {
    text-decoration: none;
    color: inherit;
}

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

/* ==========================================
   ANIMATED BACKGROUND
   ========================================== */
.lp-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: var(--lp-navy-gradient);
}

.lp-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.lp-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--lp-gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 20s infinite ease-in-out;
}

.lp-particle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(4px);
    transform: scale(3);
    opacity: 0.3;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.8;
        transform: translateY(80vh) scale(1);
    }
    90% {
        opacity: 0.8;
        transform: translateY(-10vh) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(0);
    }
}

/* Generate particle positions */
.lp-particle:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 18s; }
.lp-particle:nth-child(2) { left: 10%; animation-delay: 2s; animation-duration: 22s; }
.lp-particle:nth-child(3) { left: 15%; animation-delay: 4s; animation-duration: 20s; }
.lp-particle:nth-child(4) { left: 20%; animation-delay: 1s; animation-duration: 19s; }
.lp-particle:nth-child(5) { left: 25%; animation-delay: 3s; animation-duration: 21s; }
.lp-particle:nth-child(6) { left: 30%; animation-delay: 5s; animation-duration: 17s; }
.lp-particle:nth-child(7) { left: 35%; animation-delay: 0.5s; animation-duration: 23s; }
.lp-particle:nth-child(8) { left: 40%; animation-delay: 2.5s; animation-duration: 18s; }
.lp-particle:nth-child(9) { left: 45%; animation-delay: 4.5s; animation-duration: 20s; }
.lp-particle:nth-child(10) { left: 50%; animation-delay: 1.5s; animation-duration: 22s; }
.lp-particle:nth-child(11) { left: 55%; animation-delay: 3.5s; animation-duration: 19s; }
.lp-particle:nth-child(12) { left: 60%; animation-delay: 0.8s; animation-duration: 21s; }
.lp-particle:nth-child(13) { left: 65%; animation-delay: 2.8s; animation-duration: 18s; }
.lp-particle:nth-child(14) { left: 70%; animation-delay: 4.8s; animation-duration: 20s; }
.lp-particle:nth-child(15) { left: 75%; animation-delay: 1.8s; animation-duration: 22s; }
.lp-particle:nth-child(16) { left: 80%; animation-delay: 3.8s; animation-duration: 17s; }
.lp-particle:nth-child(17) { left: 85%; animation-delay: 0.3s; animation-duration: 23s; }
.lp-particle:nth-child(18) { left: 90%; animation-delay: 2.3s; animation-duration: 19s; }
.lp-particle:nth-child(19) { left: 95%; animation-delay: 4.3s; animation-duration: 21s; }
.lp-particle:nth-child(20) { left: 98%; animation-delay: 1.3s; animation-duration: 18s; }

/* Gradient orbs */
.lp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloat 15s infinite ease-in-out;
}

.lp-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--lp-gold);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.lp-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--lp-gold-dark);
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

.lp-orb-3 {
    width: 400px;
    height: 400px;
    background: var(--lp-gold-light);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

.lp-orb-3 {
    animation-name: orbFloatCenter;
}

@keyframes orbFloatCenter {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    25% {
        transform: translate(calc(-50% + 30px), calc(-50% - 30px)) scale(1.1);
    }
    50% {
        transform: translate(calc(-50% - 20px), calc(-50% + 20px)) scale(0.95);
    }
    75% {
        transform: translate(calc(-50% + 20px), calc(-50% + 30px)) scale(1.05);
    }
}

/* Grid overlay */
.lp-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* ==========================================
   CONTAINER & LAYOUT
   ========================================== */
.lp-container {
    max-width: var(--lp-container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    position: relative;
    z-index: 1;
}

.lp-section {
    padding: var(--lp-section-padding) 0;
    position: relative;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--lp-transition);
}

.lp-navbar.scrolled {
    background: rgba(0, 21, 41, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.lp-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--lp-white);
    transition: var(--lp-transition);
}

.lp-logo:hover {
    transform: scale(1.02);
}

.lp-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--lp-gold);
    box-shadow: var(--lp-glow-gold);
    transition: var(--lp-transition);
}

.lp-logo:hover .lp-logo-img {
    transform: rotate(360deg);
    box-shadow: var(--lp-glow-gold-intense);
}

.lp-nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.lp-nav-link {
    position: relative;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--lp-text-secondary);
    border-radius: 10px;
    transition: var(--lp-transition);
}

.lp-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--lp-gold-gradient);
    border-radius: 2px;
    transition: var(--lp-transition);
    transform: translateX(-50%);
}

.lp-nav-link:hover {
    color: var(--lp-gold);
}

.lp-nav-link:hover::before {
    width: calc(100% - 40px);
}

.lp-nav-link.active {
    color: var(--lp-gold);
}

.lp-nav-link.active::before {
    width: calc(100% - 40px);
}

.lp-nav-cta {
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lp-navy-dark);
    background: var(--lp-gold-gradient);
    border-radius: 50px;
    box-shadow: var(--lp-shadow-gold);
    transition: var(--lp-transition);
}

.lp-nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
}

.lp-nav-cta:active {
    transform: translateY(0) scale(0.98);
}

/* Mobile menu toggle */
.lp-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    cursor: pointer;
}

.lp-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--lp-gold);
    border-radius: 3px;
    transition: var(--lp-transition);
}

.lp-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.lp-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.lp-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.lp-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Centered Hero Layout */
.lp-hero-content.lp-hero-centered {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.lp-hero-text {
    max-width: 640px;
}

.lp-hero-text.lp-hero-text-centered {
    max-width: 100%;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--lp-glass-bg);
    border: 1px solid var(--lp-glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lp-gold);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
}

.lp-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--lp-gold);
    border-radius: 50%;
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.lp-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.lp-hero-title span {
    display: block;
}

.lp-gradient-text {
    background: var(--lp-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--lp-text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.lp-hero-subtitle strong {
    color: var(--lp-gold);
}

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

.lp-hero-actions.lp-hero-actions-centered {
    justify-content: center;
}

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    transition: var(--lp-transition);
    position: relative;
    overflow: hidden;
}

.lp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.lp-btn:hover::before {
    left: 100%;
}

.lp-btn-primary {
    color: var(--lp-navy-dark);
    background: var(--lp-gold-gradient);
    box-shadow: var(--lp-shadow-gold);
}

.lp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

.lp-btn-secondary {
    color: var(--lp-white);
    background: var(--lp-glass-bg);
    border: 1px solid var(--lp-glass-border);
    backdrop-filter: blur(10px);
}

.lp-btn-secondary:hover {
    background: var(--lp-glass-hover);
    border-color: var(--lp-gold);
    transform: translateY(-3px);
}

.lp-btn-icon {
    transition: transform 0.3s;
}

.lp-btn:hover .lp-btn-icon {
    transform: translateX(4px);
}

/* ==========================================
   COMPANY INFO (Replaces fake stats)
   ========================================== */
.lp-company-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 32px;
    background: var(--lp-glass-bg);
    border: 1px solid var(--lp-glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.lp-company-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 16px;
}

.lp-company-card i {
    font-size: 1.75rem;
    color: var(--lp-gold);
}

.lp-company-card div {
    text-align: left;
}

.lp-company-card strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-white);
}

.lp-company-card span {
    font-size: 0.85rem;
    color: var(--lp-text-muted);
}

.lp-company-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 215, 0, 0.3);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.lp-features {
    background: linear-gradient(180deg, var(--lp-navy-dark) 0%, var(--lp-navy) 100%);
    position: relative;
}

.lp-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.lp-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lp-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.lp-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.lp-section-subtitle {
    font-size: 1.15rem;
    color: var(--lp-text-secondary);
    line-height: 1.7;
}

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

.lp-feature-card {
    position: relative;
    padding: 40px 32px;
    background: var(--lp-glass-bg);
    border: 1px solid var(--lp-glass-border);
    border-radius: 24px;
    transition: var(--lp-transition);
    overflow: hidden;
}

.lp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lp-gold-gradient);
    opacity: 0;
    transition: var(--lp-transition);
}

.lp-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    background: var(--lp-glass-hover);
}

.lp-feature-card:hover::before {
    opacity: 1;
}

.lp-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--lp-transition);
}

.lp-feature-icon i {
    font-size: 1.75rem;
    color: var(--lp-gold);
}

.lp-feature-card:hover .lp-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--lp-gold-gradient);
}

.lp-feature-card:hover .lp-feature-icon i {
    color: var(--lp-navy-dark);
}

.lp-feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--lp-white);
}

.lp-feature-desc {
    font-size: 1rem;
    color: var(--lp-text-muted);
    line-height: 1.7;
}

/* ==========================================
   BRANDS SECTION - STYLED TEXT CARDS
   ========================================== */
.lp-brands {
    background: var(--lp-navy-gradient);
    position: relative;
}

.lp-brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Styled Brand Cards (No Images) */
.lp-brand-card-styled {
    position: relative;
    padding: 48px 40px;
    background: var(--lp-glass-bg);
    border: 2px solid var(--lp-glass-border);
    border-radius: 28px;
    text-align: center;
    transition: var(--lp-transition);
    overflow: hidden;
}

.lp-brand-card-styled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--lp-gold-gradient);
}

.lp-brand-card-styled::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.lp-brand-card-styled:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: var(--lp-shadow-lg), var(--lp-glow-gold);
}

.lp-brand-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--lp-gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--lp-shadow-gold);
    transition: var(--lp-transition);
}

.lp-brand-icon-large i {
    font-size: 2.5rem;
    color: var(--lp-navy-dark);
}

.lp-brand-card-styled:hover .lp-brand-icon-large {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.5);
}

.lp-brand-name-large {
    font-size: 2rem;
    font-weight: 800;
    color: var(--lp-white);
    margin-bottom: 8px;
}

.lp-brand-tagline-styled {
    font-size: 1.1rem;
    color: var(--lp-gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.lp-brand-description {
    margin-bottom: 24px;
}

.lp-brand-description p {
    font-size: 1rem;
    color: var(--lp-text-secondary);
    line-height: 1.7;
}

.lp-brand-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.lp-brand-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--lp-text-secondary);
}

.lp-brand-features span i {
    color: var(--lp-gold);
    font-size: 0.75rem;
}

/* Parent Company Badge */
.lp-parent-company {
    text-align: center;
    margin-top: 60px;
}

.lp-parent-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--lp-glass-bg);
    border: 1px solid var(--lp-glass-border);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.lp-parent-badge i {
    font-size: 1.5rem;
    color: var(--lp-gold);
}

.lp-parent-badge span {
    font-size: 1rem;
    color: var(--lp-text-secondary);
}

.lp-parent-badge strong {
    color: var(--lp-gold);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.lp-cta {
    padding: var(--lp-section-padding) 0;
    position: relative;
    overflow: hidden;
}

.lp-cta-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
    background: var(--lp-glass-bg);
    border: 1px solid var(--lp-glass-border);
    border-radius: 32px;
    text-align: center;
    overflow: hidden;
}

.lp-cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.lp-cta-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--lp-gold-gradient);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--lp-navy-dark);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lp-cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.lp-cta-subtitle {
    font-size: 1.15rem;
    color: var(--lp-text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.lp-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ==========================================
   AUTH SECTION
   ========================================== */
.lp-auth {
    padding: var(--lp-section-padding) 0;
    position: relative;
}

.lp-auth-container {
    max-width: 480px;
    margin: 0 auto;
}

.lp-auth-card {
    background: rgba(0, 21, 41, 0.6);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg);
}

.lp-auth-tabs {
    display: flex;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

.lp-auth-tab {
    flex: 1;
    padding: 18px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp-text-muted);
    background: transparent;
    transition: var(--lp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.lp-auth-tab.active {
    color: var(--lp-white);
    background: rgba(255, 215, 0, 0.1);
}

.lp-auth-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background: var(--lp-gold-gradient);
    transition: var(--lp-transition);
}

.lp-auth-body {
    padding: 40px;
}

.lp-auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.lp-auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-auth-subtitle {
    color: var(--lp-text-muted);
}

.lp-form-group {
    margin-bottom: 20px;
}

.lp-form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lp-text-secondary);
    margin-bottom: 10px;
}

.lp-form-label i {
    color: var(--lp-gold);
}

.lp-form-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    color: var(--lp-white);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: var(--lp-transition);
    font-family: inherit;
}

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

.lp-form-input:focus {
    outline: none;
    border-color: var(--lp-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.lp-input-wrapper {
    position: relative;
}

.lp-input-wrapper .lp-form-input {
    padding-right: 50px;
}

.lp-password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lp-text-muted);
    cursor: pointer;
    transition: var(--lp-transition);
    padding: 4px;
}

.lp-password-toggle:hover {
    color: var(--lp-gold);
}

.lp-form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp-navy-dark) !important;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #E6C200 100%) !important;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--lp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.lp-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4) !important;
}

.lp-form-submit:active {
    transform: translateY(0);
}

.lp-auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-auth-tagline {
    font-style: italic;
    color: var(--lp-text-muted);
    font-size: 0.9rem;
}

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

.lp-auth-panel.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.lp-alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #FCA5A5;
}

/* ==========================================
   FOOTER
   ========================================== */
.lp-footer {
    background: var(--lp-navy-dark);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.lp-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-footer-brand {
    max-width: 400px;
}

.lp-footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.lp-footer-logo img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--lp-gold);
}

.lp-footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp-white);
}

.lp-footer-tagline {
    color: var(--lp-text-muted);
    line-height: 1.7;
}

/* Footer Brands List */
.lp-footer-brands {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.lp-footer-brand-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--lp-glass-bg);
    border: 1px solid var(--lp-glass-border);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp-text-secondary);
}

.lp-footer-brand-item i {
    color: var(--lp-gold);
}

.lp-footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.lp-footer-copy {
    color: var(--lp-text-muted);
    font-size: 0.9rem;
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.lp-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.lp-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.lp-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.lp-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.lp-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.lp-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.lp-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.lp-stagger-1 { transition-delay: 0.1s; }
.lp-stagger-2 { transition-delay: 0.2s; }
.lp-stagger-3 { transition-delay: 0.3s; }
.lp-stagger-4 { transition-delay: 0.4s; }
.lp-stagger-5 { transition-delay: 0.5s; }
.lp-stagger-6 { transition-delay: 0.6s; }

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .lp-hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .lp-hero-text {
        max-width: 100%;
    }
    
    .lp-hero-actions {
        justify-content: center;
    }
    
    .lp-company-info {
        gap: 16px;
        padding: 24px;
    }
    
    .lp-company-divider {
        display: none;
    }
    
    .lp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lp-brands-grid {
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .lp-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(0, 21, 41, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: var(--lp-transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .lp-nav-menu.active {
        right: 0;
    }
    
    .lp-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .lp-nav-link {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .lp-hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .lp-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .lp-hero-subtitle {
        font-size: 1rem;
    }
    
    .lp-company-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .lp-company-card {
        width: 100%;
        justify-content: center;
    }
    
    .lp-features-grid {
        grid-template-columns: 1fr;
    }
    
    .lp-feature-card {
        padding: 32px 24px;
    }
    
    .lp-brands-grid {
        grid-template-columns: 1fr;
    }
    
    .lp-brand-card-styled {
        padding: 40px 28px;
    }
    
    .lp-cta-inner {
        padding: 50px 30px;
    }
    
    .lp-auth-body {
        padding: 30px 24px;
    }
    
    .lp-footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .lp-footer-brand {
        max-width: 100%;
    }
    
    .lp-footer-logo {
        justify-content: center;
    }
    
    .lp-footer-brands {
        justify-content: center;
    }
    
    .lp-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .lp-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .lp-hero-actions .lp-btn {
        width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .lp-container {
        padding: 0 16px;
    }
    
    .lp-hero-title {
        font-size: 2rem;
    }
    
    .lp-section-title {
        font-size: 1.75rem;
    }
    
    .lp-badge {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    .lp-cta-title {
        font-size: 1.5rem;
    }
    
    .lp-auth-title {
        font-size: 1.5rem;
    }
    
    .lp-form-input {
        padding: 12px 16px;
    }
    
    .lp-form-submit {
        padding: 14px;
    }
    
    .lp-brand-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .lp-brand-icon-large i {
        font-size: 2rem;
    }
    
    .lp-brand-name-large {
        font-size: 1.5rem;
    }
    
    .lp-brand-features {
        flex-direction: column;
    }
    
    .lp-brand-features span {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   ACCESSIBILITY & REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    .lp-particle,
    .lp-orb,
    .lp-reveal,
    .lp-reveal-left,
    .lp-reveal-right,
    .lp-reveal-scale {
        animation: none;
        transition: none;
    }
    
    .lp-reveal,
    .lp-reveal-left,
    .lp-reveal-right,
    .lp-reveal-scale {
        opacity: 1;
        transform: none;
    }
}

/* Focus styles for accessibility */
.lp-btn:focus-visible,
.lp-nav-link:focus-visible,
.lp-form-input:focus-visible,
.lp-auth-tab:focus-visible {
    outline: 2px solid var(--lp-gold);
    outline-offset: 4px;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.lp-text-center { text-align: center; }
.lp-text-left { text-align: left; }
.lp-text-right { text-align: right; }

.lp-mb-0 { margin-bottom: 0; }
.lp-mb-1 { margin-bottom: 8px; }
.lp-mb-2 { margin-bottom: 16px; }
.lp-mb-3 { margin-bottom: 24px; }
.lp-mb-4 { margin-bottom: 32px; }
.lp-mb-5 { margin-bottom: 48px; }

.lp-hidden { display: none !important; }

/* Mobile visibility */
@media (max-width: 768px) {
    .lp-hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
    .lp-hide-desktop { display: none !important; }
}
