/* 
 * LifePods Custom Stylesheet
 * Momentum Technologies
 */

:root {
    --font-title: 'Outfit', sans-serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;

    /* Sleek Industrial Color Palette */
    --color-bg-dark: #08090b;
    --color-bg-panel: rgba(18, 22, 30, 0.65);
    --color-bg-panel-solid: #12161e;
    --color-accent-orange: #ff5a00; /* Emergency / Life-saving W01 */
    --color-accent-blue: #0077ff;   /* Tactical / Ballistic B01 */
    --color-accent-teal: #00f2fe;
    --color-text-main: #f8fafc;
    --color-text-muted: #cbd5e1;
    --color-text-dimmed: #94a3b8;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-active: rgba(255, 255, 255, 0.2);
    --color-card-glow: rgba(0, 119, 255, 0.15);

    /* Gradients */
    --gradient-orange: linear-gradient(135deg, #ff8a00, #ff4800);
    --gradient-blue: linear-gradient(135deg, #00b8ff, #0055ff);
    --gradient-dark: linear-gradient(180deg, #10141d, #08090b);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 20px 40px rgba(0,0,0,0.4);
    --header-height: 80px;
}

/* General Reset & Overrides */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.lp-section-title,
.lp-capsule-name,
.lp-market-title,
.lp-news-title,
.lp-founder-name {
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff !important;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }
.hidden { display: none !important; }

/* Grid & Layout Utilities */
.lp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.lp-section {
    padding: 100px 0;
    position: relative;
}

.lp-section-title-wrapper {
    margin-bottom: 60px;
    text-align: center;
}

.lp-section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.lp-section-title {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    margin-bottom: 16px;
}

.lp-section-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Glassmorphism Panel helper */
.lp-glass-panel {
    background: var(--color-bg-panel);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
}

/* HEADER / NAVIGATION */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(8, 9, 11, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.lp-header-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.lp-logo-img {
    height: 44px;
    width: auto;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.lp-logo-main {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1;
}

.lp-logo-sub {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.lp-nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.lp-nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
}

.lp-nav-link:hover, .lp-nav-link.active {
    color: #fff;
}

/* Dropdown Menu styling */
.lp-nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 320px;
    background: var(--color-bg-panel-solid);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.lp-nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-item-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.dropdown-item-desc {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.lp-header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Lang Switcher */
.lp-lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.lp-lang-btn {
    color: var(--color-text-muted);
}

.lp-lang-btn.active, .lp-lang-btn:hover {
    color: #fff;
}

.lp-lang-separator {
    color: rgba(255, 255, 255, 0.15);
}

/* CTA Button */
.lp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.lp-cta-btn:hover {
    background: transparent;
    color: #fff;
}

.lp-cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--color-border);
}

.lp-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

.lp-cta-btn.orange {
    background: var(--color-accent-orange);
    color: #fff;
    border-color: var(--color-accent-orange);
}

.lp-cta-btn.orange:hover {
    background: transparent;
    color: var(--color-accent-orange);
}

.lp-cta-btn.full-width {
    width: 100%;
    justify-content: center;
}

/* Mobile Toggle */
.lp-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Mobile Nav Menu */
.lp-nav-mobile {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--color-bg-dark);
    z-index: 999;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid var(--color-border);
}

.lp-nav-mobile.active {
    transform: translateX(0);
}

.mobile-nav-section {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-section-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 700;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 8px;
}

.lp-mobile-link {
    font-size: 20px;
    font-family: var(--font-title);
    font-weight: 600;
}

.mobile-nav-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-langs {
    justify-content: center;
    padding: 16px 0;
    border-top: 1px solid var(--color-border);
}

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

.lp-hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.lp-hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 9, 11, 0.4) 0%, rgba(8, 9, 11, 0.85) 80%, rgba(8, 9, 11, 1) 100%);
    z-index: 2;
}

.lp-hero .lp-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    justify-content: flex-start;
}

.lp-hero-content {
    max-width: 720px;
    position: relative;
    z-index: 3;
    background: rgba(8, 9, 11, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 48px;
    margin-left: -48px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lp-hero-tagline {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    margin-top: 24px;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.lp-hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--color-text-muted);
    font-weight: 400;
    max-width: 680px;
    margin-bottom: 40px;
}

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

/* CAPSULES HIGHLIGHT SECTION */
.lp-capsules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.lp-capsule-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lp-capsule-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 20px 45px rgba(0,0,0,0.5), 0 0 30px var(--color-card-glow);
}

.lp-capsule-card.w01-card { --color-card-glow: rgba(255, 90, 0, 0.12); }
.lp-capsule-card.b01-card { --color-card-glow: rgba(0, 119, 255, 0.12); }
.lp-capsule-card.q01-card { --color-card-glow: rgba(255, 255, 255, 0.05); }

.lp-capsule-media {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #111;
}

.lp-capsule-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.lp-capsule-card:hover .lp-capsule-media img {
    transform: scale(1.05);
}

.lp-capsule-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    background: rgba(0,0,0,0.7);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-capsule-status.orange {
    color: var(--color-accent-orange);
    border-color: rgba(255, 90, 0, 0.3);
}

.lp-capsule-status.blue {
    color: var(--color-accent-blue);
    border-color: rgba(0, 119, 255, 0.3);
}

.lp-capsule-status.green {
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
}

.lp-capsule-info {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lp-capsule-name {
    font-size: 28px;
    margin-bottom: 8px;
}

.lp-capsule-type {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.lp-capsule-desc {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    font-size: 15px;
    flex-grow: 1;
}

.lp-capsule-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    margin-top: auto;
}

.lp-capsule-footer .lp-cta-btn {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.lp-capsule-price {
    font-size: 14px;
    color: #fff;
}

.lp-capsule-price-val {
    display: block;
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-top: 2px;
}

.lp-capsule-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.lp-capsule-learn-more i {
    transition: var(--transition-smooth);
}

.lp-capsule-card:hover .lp-capsule-learn-more i {
    transform: translateX(4px);
}

/* ROADMAP SECTION */
.lp-timeline {
    position: relative;
    max-width: 900px;
    margin: 30px auto 0;
    padding: 10px 0;
}

.lp-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--color-border);
    transform: translateX(-50%);
}

.lp-timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 24px;
    padding: 0 24px;
}

@media (min-width: 993px) {
    .lp-timeline-item {
        margin-bottom: 24px;
    }
    .lp-timeline-item + .lp-timeline-item {
        margin-top: -90px;
    }
}

.lp-timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.lp-timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.lp-timeline-marker {
    position: absolute;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-bg-dark);
    border: 3px solid var(--color-accent-blue);
    z-index: 5;
}

.lp-timeline-item:nth-child(odd) .lp-timeline-marker {
    right: -8px;
}

.lp-timeline-item:nth-child(even) .lp-timeline-marker {
    left: -8px;
}

.lp-timeline-item.active .lp-timeline-marker {
    background: var(--color-accent-blue);
    box-shadow: 0 0 15px var(--color-accent-blue);
}

.lp-timeline-year {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-accent-blue);
    margin-bottom: 4px;
}

.lp-timeline-item:nth-child(odd) .lp-timeline-year {
    background: linear-gradient(to left, #fff, var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-timeline-item:nth-child(even) .lp-timeline-year {
    background: linear-gradient(to right, var(--color-accent-blue), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-timeline-box {
    padding: 16px 20px;
    border-radius: 12px;
}

@media (min-width: 993px) {
    .lp-timeline-box {
        min-height: 140px;
    }
}

.lp-timeline-box h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.lp-timeline-box p {
    color: var(--color-text-muted);
    font-size: 13px;
    margin-bottom: 6px;
    line-height: 1.6;
}

.lp-timeline-box p:last-child {
    margin-bottom: 0;
}

/* PRODUCT DETAIL PAGES */
.lp-p-hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    background: radial-gradient(circle at 10% 20%, rgba(15, 23, 42, 0.3) 0%, rgba(8, 9, 11, 1) 90%);
    border-bottom: 1px solid var(--color-border);
}

.lp-p-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.lp-p-gallery {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    background: #0f1217;
    position: relative;
    border: 1px solid var(--color-border);
}

.lp-p-main-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.lp-p-meta {
    display: flex;
    flex-direction: column;
}

.lp-p-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 16px;
    line-height: 1;
}

.lp-p-badge {
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: rgba(0, 119, 255, 0.1);
    color: var(--color-accent-blue);
    border: 1px solid rgba(0, 119, 255, 0.2);
}

.lp-p-badge.orange {
    background: rgba(255, 90, 0, 0.1);
    color: var(--color-accent-orange);
    border: 1px solid rgba(255, 90, 0, 0.2);
}

.lp-p-desc {
    font-size: 17px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.lp-p-price-box {
    padding: 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    margin-bottom: 32px;
}

.lp-p-price-label {
    font-size: 13px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-p-price-value {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-top: 4px;
}

.lp-p-price-note {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

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

/* Specs & Details Grid */
.lp-p-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.lp-p-specs-box {
    padding: 32px;
}

.lp-p-specs-title {
    font-size: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 12px;
}

.lp-spec-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    border-bottom: 1px dashed var(--color-border);
    padding-bottom: 8px;
}

.lp-spec-label {
    color: var(--color-text-muted);
}

.lp-spec-value {
    font-weight: 600;
    color: #fff;
}

.lp-p-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-feature-card {
    display: flex;
    gap: 20px;
    padding: 24px;
}

.lp-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border);
    color: var(--color-accent-blue);
    flex-shrink: 0;
}

.orange-icons .lp-feature-icon {
    color: var(--color-accent-orange);
}

.lp-feature-title {
    font-size: 18px;
    margin-bottom: 6px;
}

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

/* MARKET SECTOR CARDS */
.lp-markets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.lp-market-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lp-market-row:nth-child(even) {
    direction: rtl;
}

.lp-market-row:nth-child(even) .lp-market-info {
    direction: ltr;
}

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

.lp-market-title {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.lp-market-applications {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-market-tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.lp-market-media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--color-border);
    height: 360px;
}

.lp-market-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NEWS & EVENTS */
.lp-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.lp-news-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lp-news-media {
    height: 200px;
    background: #111;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.lp-news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-news-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lp-news-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.lp-news-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.lp-news-excerpt {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.lp-news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-accent-blue);
}

.lp-news-link:hover i {
    transform: translateX(4px);
}

/* COMPANY PAGE STYLING */
.lp-founder-box {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: center;
}

.lp-founder-photo {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--color-border);
}

.lp-founder-name {
    font-size: 28px;
    margin-bottom: 4px;
}

.lp-founder-role {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-orange);
    font-weight: 700;
    margin-bottom: 24px;
}

.lp-founder-bio {
    font-size: 16px;
    color: var(--color-text-muted);
}

.lp-refs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.lp-ref-card {
    padding: 32px;
}

.lp-ref-text {
    font-style: italic;
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.lp-ref-author {
    font-family: var(--font-title);
    font-weight: 700;
    color: #fff;
}

.lp-ref-title {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

/* CONTACT FORM */
.lp-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.lp-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.lp-contact-info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.lp-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    color: var(--color-accent-orange);
}

.lp-contact-label {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.lp-contact-val {
    font-size: 18px;
    font-weight: 600;
}

.lp-contact-form {
    padding: 40px;
}

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

.lp-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.lp-form-input, .lp-form-select, .lp-form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 14px 16px;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.lp-form-input:focus, .lp-form-select:focus, .lp-form-textarea:focus {
    outline: none;
    border-color: var(--color-accent-orange);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 10px rgba(255, 90, 0, 0.15);
}

.lp-form-select option {
    background-color: var(--color-bg-dark);
    color: #fff;
}

/* FOOTER */
.lp-footer {
    background: #050608;
    border-top: 1px solid var(--color-border);
    padding: 80px 0 40px;
}

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

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

.lp-footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.lp-footer-about {
    font-size: 14px;
    color: var(--color-text-muted);
    max-width: 320px;
    margin-bottom: 24px;
}

.lp-footer-socials {
    display: flex;
    gap: 12px;
}

.lp-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
}

.lp-social-link:hover {
    color: #fff;
    background: var(--color-accent-blue);
    border-color: var(--color-accent-blue);
}

.lp-footer-title {
    font-size: 16px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.lp-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-accent-blue);
}

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

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

.lp-footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.lp-footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-footer-contact-info li {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    color: var(--color-text-muted);
}

.lp-footer-contact-info a {
    color: var(--color-text-muted);
}

.lp-footer-contact-info a:hover {
    color: #fff;
}

.lp-footer-contact-info i {
    color: var(--color-accent-blue);
    flex-shrink: 0;
}

.lp-footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.lp-footer-legal {
    display: flex;
    gap: 24px;
}

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

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

.lp-footer-credit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.lp-footer-credit-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.lp-footer-credit-link:hover .lp-footer-42-logo {
    filter: drop-shadow(0 0 6px rgba(0, 242, 254, 0.5));
}

.lp-footer-42-logo {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.lp-footer-credit-link:hover .lp-footer-42-logo {
    opacity: 1;
}

/* RESPONSIVE LAYOUT MEDIA QUERIES */
@media (max-width: 992px) {
    .lp-hero .lp-container {
        justify-content: center;
    }
    .lp-hero-content {
        text-align: center;
        margin: 0 auto;
        padding: 32px 24px;
        border-radius: 12px;
    }
    .lp-hero-btns {
        justify-content: center;
    }

    .lp-mobile-menu-toggle {
        display: block;
    }
    
    .lp-nav-desktop {
        display: none;
    }
    
    .lp-header-right .lp-lang-switcher,
    .lp-header-right .lp-cta-btn {
        display: none;
    }
    
    .lp-p-grid, .lp-p-details-grid, .lp-market-row, .lp-founder-box, .lp-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lp-market-row:nth-child(even) {
        direction: ltr;
    }

    .lp-timeline::before {
        left: 32px;
    }

    .lp-timeline-item {
        width: 100%;
        padding-left: 64px;
        padding-right: 0;
        left: 0 !important;
        text-align: left !important;
    }

    .lp-timeline-marker {
        left: 24px !important;
        right: auto !important;
    }

    .lp-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .lp-footer-grid {
        grid-template-columns: 1fr;
    }
    .lp-p-actions {
        flex-direction: column;
    }
    .lp-p-actions .lp-cta-btn {
        width: 100%;
        justify-content: center;
    }
    .lp-hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .lp-hero-btns .lp-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Wide container matching the hero grid */
.lp-container-wide {
    max-width: 1440px;
}

/* CALLOUT BLOCK SECTION WITH VIDEO */
.lp-callout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.lp-callout-text {
    padding: 40px;
    border-color: rgba(0, 242, 254, 0.2) !important;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-callout-badge {
    font-family: var(--font-title);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-cyan);
    display: block;
    margin-bottom: 16px;
}

.lp-callout-desc {
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.8;
    color: var(--color-text-main);
    font-weight: 300;
    margin: 0;
}

.lp-callout-video-wrapper {
    padding: 0;
    border: 1px solid rgba(0, 242, 254, 0.3) !important;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    display: flex;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 242, 254, 0.08);
}

.lp-callout-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play button overlay & glow */
.lp-video-overlay-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 9, 11, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.lp-video-overlay-play:hover {
    background: rgba(8, 9, 11, 0.2);
}

.lp-play-icon {
    width: 24px !important;
    height: 24px !important;
    color: #000 !important;
    fill: #000 !important;
    z-index: 3;
    transition: transform 0.3s ease;
}

.lp-play-btn-glow {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-accent-cyan);
    box-shadow: 0 0 25px var(--color-accent-cyan);
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-video-overlay-play:hover .lp-play-btn-glow {
    transform: scale(1.1);
    box-shadow: 0 0 35px var(--color-accent-cyan);
}

.lp-video-overlay-play:hover .lp-play-icon {
    transform: scale(1.1);
}

/* Hover effects for premium aesthetics */
.lp-callout-text,
.lp-callout-video-wrapper {
    transition: var(--transition-smooth);
}

.lp-callout-text:hover {
    border-color: rgba(0, 242, 254, 0.4) !important;
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.08);
}

.lp-callout-video-wrapper:hover {
    border-color: var(--color-accent-cyan) !important;
    box-shadow: 0 0 40px rgba(0, 242, 254, 0.2);
}

@media (max-width: 992px) {
    .lp-callout-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .lp-callout-text {
        padding: 32px 24px;
    }
    
    .lp-callout-video-wrapper {
        aspect-ratio: 16/9;
    }
}
