/* =========================================
   LABABOOKi - Landing Page Styles
   ========================================= */

:root {
    --bg-main: #121212;
    --bg-card: #1e1e1e;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --primary: #5a7256; /* Greenish from master */
    --primary-hover: #4b6148;
    --success: #2ecc71; /* Green */
    --success-hover: #27ae60;
    --border: #333333;
    --header-height: 70px;
    --font-family: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
.header {
    height: var(--header-height);
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
    color: var(--primary);
}

.logo img {
    height: 32px;
    border-radius: 6px;
}

/* Navigation */
.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--text-main);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--text-main);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #555;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 15px rgba(90, 114, 86, 0.5);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(90, 114, 86, 0.7);
}

.btn-success {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 15px rgba(90, 114, 86, 0.5);
}

.btn-success:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(90, 114, 86, 0.7);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(90, 114, 86, 0.1) 0%, rgba(18, 18, 18, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-mockup {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--border);
    position: relative;
    background: var(--bg-card);
}
.hero-mockup img {
    width: 100%;
    display: block;
}

.mockup-placeholder {
    width: 100%;
    height: 450px;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
    font-size: 18px;
    border: 2px dashed #444;
}

/* --- SECTION SHARED --- */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
}

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

/* --- PROBLEM & SOLUTION --- */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.ps-box {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border);
    height: 100%;
    transition: transform 0.3s;
}

.ps-box:hover {
    transform: translateY(-5px);
}

.ps-box.pain {
    border-color: rgba(231, 76, 60, 0.3);
}

.ps-box.solution {
    border-color: rgba(46, 204, 113, 0.3);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(46, 204, 113, 0.05) 100%);
}

.ps-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.ps-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

/* --- FEATURES GRID --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: #555;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.feature-img {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.feature-placeholder {
    width: 100%;
    height: 180px;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    border: 1px dashed #444;
}

/* --- TARGET AUDIENCE --- */
.audience {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.tag {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
}

.soon-banner {
    margin-top: 40px;
    background: linear-gradient(90deg, rgba(90,114,86,0.1) 0%, rgba(90,114,86,0.2) 100%);
    border: 1px solid rgba(90,114,86,0.3);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    display: inline-block;
}

/* --- VIDEO GRID --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.video-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.video-wrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- PRICING --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(90,114,86,0.05) 0%, var(--bg-card) 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.price-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 5px;
}

.price-amount span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.price-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.price-features {
    text-align: left;
    margin-bottom: 30px;
}

.price-features li {
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.price-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

.pricing-warning {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    border: 1px dashed #555;
}

/* --- GEORGIA SECTION --- */
.made-in {
    background: var(--bg-card);
    text-align: center;
    border-top: 1px solid var(--border);
}

.made-in-content {
    max-width: 600px;
    margin: 0 auto;
}

.made-in-img {
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
}

/* --- FOOTER CTA --- */
.cta-footer {
    text-align: center;
    padding: 100px 0;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, rgba(18, 18, 18, 0) 70%);
}

.cta-footer h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.main-footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .nav {
        display: none; /* simple hide for now, could add offcanvas */
    }
    .mobile-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 40px;
    }
    .problem-solution {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
    }
    .header-actions .btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    .logo {
        font-size: 18px;
    }
}
