/* LCK Experience Digital - Aligned with Main Brand */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Jost:wght@300;400;500&display=swap');

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

/* CSS Variables - LCK Brand Colors */
:root {
    --primary-black: #1c1d1d;
    --pure-black: #000000;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --gray-light: #e5e5e5;
    --gray-medium: #666666;
    --accent-gold: #d4af37;
    --success: #28a745;
    --error: #dc3545;
    --info: #17a2b8;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Jost', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
}

/* Base Styles */
body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--primary-black);
}

h1 {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: var(--spacing-lg);
}

h2 {
    font-size: clamp(24px, 4vw, 35px);
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--gray-medium);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
header {
    background: var(--white);
    padding: var(--spacing-md) 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-black);
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: var(--spacing-xxl) 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--primary-black);
    margin-bottom: var(--spacing-md);
}

.subtitle {
    font-size: 20px;
    color: var(--gray-medium);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
}

/* Buttons - LCK Style */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-black);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--pure-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.btn-secondary:hover {
    background: var(--primary-black);
    color: var(--white);
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--primary-black);
}

.btn-gold:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Action Cards - Minimalist Style */
.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
    color: var(--accent-gold);
}

.card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-black);
}

.card p {
    margin-bottom: var(--spacing-lg);
}

/* Forms - Clean Style */
.form-group {
    margin-bottom: var(--spacing-md);
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-black);
    font-family: var(--font-heading);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--primary-black);
    box-shadow: 0 0 0 3px rgba(28, 29, 29, 0.1);
}

/* Modals - Professional */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 28px;
    cursor: pointer;
    color: var(--gray-medium);
    background: none;
    border: none;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-black);
}

/* Features Section */
.features {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    font-size: 24px;
    color: var(--primary-black);
}

/* Testimonials - Minimal */
.testimonials {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    border-left: 4px solid var(--accent-gold);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    color: var(--gray-medium);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-black);
    font-family: var(--font-heading);
}

/* FAQ Section */
.faq {
    padding: var(--spacing-xxl) 0;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.faq-question {
    padding: var(--spacing-md);
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-heading);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    display: none;
    color: var(--gray-medium);
}

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

/* Footer */
footer {
    background: var(--primary-black);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

footer p {
    color: var(--white);
    opacity: 0.8;
}

/* Alert Messages */
.alert {
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Loading States */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--gray-light);
    border-top-color: var(--primary-black);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Value Proposition */
.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.value-icon {
    color: var(--accent-gold);
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .hero {
        min-height: 60vh;
        padding: var(--spacing-xl) 0;
    }

    .action-cards {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: var(--spacing-lg);
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--gray-medium);
}

.mb-0 {
    margin-bottom: 0;
}

.mt-2 {
    margin-top: var(--spacing-md);
}

.mt-3 {
    margin-top: var(--spacing-lg);
}

.d-none {
    display: none;
}

.text-gold {
    color: var(--accent-gold);
}

.bg-light {
    background: var(--bg-light);
}

.section-padding {
    padding: var(--spacing-xxl) 0;
}