/* LM Anti-Footprint Stylesheet */
:root {
    --lm-clr-bg: #FAFBFC;
    --lm-clr-surface: #FFFFFF;
    --lm-clr-text-main: #1C1E21;
    --lm-clr-text-muted: #606770;
    --lm-clr-accent-1: #FF4B72;
    --lm-clr-accent-2: #8E2DE2;
    --lm-grad-primary: linear-gradient(135deg, var(--lm-clr-accent-1) 0%, var(--lm-clr-accent-2) 100%);
    --lm-radius-sm: 12px;
    --lm-radius-lg: 24px;
    --lm-radius-pill: 50px;
    --lm-shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --lm-shadow-float: 0 20px 50px rgba(142, 45, 226, 0.15);
    --lm-space-xs: 8px;
    --lm-space-md: 24px;
    --lm-space-xl: 64px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--lm-clr-bg);
    color: var(--lm-clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--lm-clr-accent-2);
    text-decoration: none;
    transition: opacity 0.3s ease;
}
a:hover { opacity: 0.8; }

/* Navigation */
.lm-top-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
}
.lm-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px var(--lm-space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lm-brand-logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--lm-grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}
.lm-nav-links { display: flex; gap: var(--lm-space-md); }
.lm-nav-links a { color: var(--lm-clr-text-main); font-weight: 600; }

/* Buttons */
button { cursor: pointer; border: none; font-weight: 600; transition: transform 0.2s, box-shadow 0.2s; }
button:active { transform: scale(0.97); }
.lm-btn-outline {
    background: transparent;
    border: 2px solid var(--lm-clr-accent-1);
    color: var(--lm-clr-accent-1);
    padding: 10px 24px;
    border-radius: var(--lm-radius-pill);
}
.lm-btn-primary {
    background: var(--lm-grad-primary);
    color: white;
    padding: 12px 28px;
    border-radius: var(--lm-radius-pill);
    box-shadow: var(--lm-shadow-float);
}
.lm-btn-huge {
    background: var(--lm-grad-primary);
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    border-radius: var(--lm-radius-pill);
    box-shadow: var(--lm-shadow-float);
    margin-top: var(--lm-space-md);
}
.lm-w-100 { width: 100%; margin-top: 16px; }

/* Main Content & Hero */
.lm-main-wrapper { padding-top: 100px; }
.lm-hero-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--lm-space-xl) var(--lm-space-md);
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 80vh;
}
.lm-hero-content { flex: 1; }
.lm-badge-18 {
    display: inline-block;
    background: rgba(255, 75, 114, 0.1);
    color: var(--lm-clr-accent-1);
    padding: 6px 14px;
    border-radius: var(--lm-radius-sm);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}
.lm-hero-title { font-size: 48px; font-weight: 700; line-height: 1.1; margin-bottom: 24px; }
.lm-hero-subtitle { font-size: 18px; color: var(--lm-clr-text-muted); margin-bottom: 32px; }
.lm-hero-image-box { flex: 1; position: relative; }
.lm-hero-img {
    width: 100%;
    border-radius: var(--lm-radius-lg);
    box-shadow: var(--lm-shadow-soft);
    object-fit: cover;
}

/* Sections */
.lm-section-block { max-width: 1200px; margin: var(--lm-space-xl) auto; padding: 0 var(--lm-space-md); text-align: center; }
.lm-section-heading { font-size: 32px; margin-bottom: 16px; }
.lm-section-desc { color: var(--lm-clr-text-muted); max-width: 600px; margin: 0 auto 40px auto; }
.lm-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.lm-feature-card {
    background: var(--lm-clr-surface);
    padding: 40px;
    border-radius: var(--lm-radius-lg);
    box-shadow: var(--lm-shadow-soft);
    text-align: left;
    transition: transform 0.3s ease;
}
.lm-feature-card:hover { transform: translateY(-5px); }
.lm-icon-wrapper { font-size: 40px; margin-bottom: 20px; }
.lm-feature-card h3 { margin-bottom: 16px; }
.lm-feature-card p { color: var(--lm-clr-text-muted); font-size: 15px; }

/* Safety Section */
.lm-safety-section { background: var(--lm-clr-surface); padding: var(--lm-space-xl) 0; }
.lm-safety-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 60px; padding: 0 var(--lm-space-md); }
.lm-safety-text { flex: 1; }
.lm-safety-list { margin-top: 24px; list-style: none; }
.lm-safety-list li { margin-bottom: 16px; padding-left: 24px; position: relative; }
.lm-safety-list li::before { content: "✓"; color: var(--lm-clr-accent-1); position: absolute; left: 0; font-weight: bold; }
.lm-safety-image { flex: 1; }
.lm-safety-img { width: 100%; border-radius: var(--lm-radius-lg); box-shadow: var(--lm-shadow-soft); }

/* FAQ */
.lm-faq-accordion { max-width: 800px; margin: 0 auto; text-align: left; }
.lm-faq-item { background: var(--lm-clr-surface); margin-bottom: 16px; padding: 24px; border-radius: var(--lm-radius-sm); box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.lm-faq-item h4 { margin-bottom: 8px; color: var(--lm-clr-text-main); font-size: 18px; }
.lm-faq-item p { color: var(--lm-clr-text-muted); }

/* Footer */
.lm-footer-area { background: #111; color: #fff; padding: var(--lm-space-xl) var(--lm-space-md) 20px; margin-top: var(--lm-space-xl); }
.lm-footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; border-bottom: 1px solid #333; padding-bottom: 40px; }
.lm-footer-brand h3 { font-size: 24px; margin-bottom: 16px; background: var(--lm-grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.lm-footer-links h4, .lm-footer-warning h4 { margin-bottom: 16px; color: #fff; }
.lm-footer-links a { display: block; color: #aaa; margin-bottom: 8px; }
.lm-footer-warning { background: rgba(255, 75, 114, 0.1); padding: 16px; border-radius: var(--lm-radius-sm); border-left: 4px solid var(--lm-clr-accent-1); }
.lm-footer-warning p { color: #ccc; font-size: 14px; }
.lm-footer-bottom { max-width: 1200px; margin: 20px auto 0; text-align: center; color: #666; font-size: 14px; }

/* Modals */
.lm-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); display: none; justify-content: center; align-items: center; z-index: 9999; opacity: 0; transition: opacity 0.3s; }
.lm-modal-overlay.lm-active { display: flex; opacity: 1; }
.lm-modal-box { background: var(--lm-clr-surface); padding: 40px; border-radius: var(--lm-radius-lg); width: 100%; max-width: 400px; position: relative; transform: translateY(20px); animation: modalSlide 0.4s forwards; }
@keyframes modalSlide { to { transform: translateY(0); } }
.lm-close-btn { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 24px; color: var(--lm-clr-text-muted); }
.lm-modal-box h2 { margin-bottom: 8px; }
.lm-modal-box p { color: var(--lm-clr-text-muted); margin-bottom: 24px; font-size: 14px; }
.lm-input-field { width: 100%; padding: 14px; margin-bottom: 16px; border: 1px solid #e1e4e8; border-radius: var(--lm-radius-sm); font-size: 15px; outline: none; transition: border 0.3s; }
.lm-input-field:focus { border-color: var(--lm-clr-accent-2); }
.lm-checkbox-group { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: var(--lm-clr-text-muted); margin-bottom: 16px; }

/* Cookie Banner */
.lm-cookie-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--lm-clr-surface); padding: 20px; border-radius: var(--lm-radius-lg); box-shadow: var(--lm-shadow-float); display: none; align-items: center; gap: 20px; max-width: 90%; width: 800px; z-index: 10000; border: 1px solid rgba(0,0,0,0.05); }
.lm-cookie-banner p { font-size: 14px; margin: 0; flex: 1; }

@media (max-width: 768px) {
    .lm-hero-area { flex-direction: column; text-align: center; margin-top: 60px; }
    .lm-hero-title { font-size: 36px; }
    .lm-nav-links { display: none; }
    .lm-safety-container { flex-direction: column-reverse; }
    .lm-cookie-banner { flex-direction: column; text-align: center; }
}