@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --zlval-bg: #0a0f0d;
    --zlval-bg-alt: #111a17;
    --zlval-gold: #c9a227;
    --zlval-gold-hover: #e0bb40;
    --zlval-text: #f0eed5;
    --zlval-text-muted: #a8b0a1;
    --zlval-border: rgba(201, 162, 39, 0.2);
    
    --zlval-font-head: 'Playfair Display', serif;
    --zlval-font-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Header */
.zlval-top-bar {
    background-color: rgba(10, 15, 13, 0.95);
    border-bottom: 1px solid var(--zlval-border);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.zlval-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.zlval-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.zlval-logo-abbr {
    font-family: var(--zlval-font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--zlval-gold);
    border: 2px solid var(--zlval-gold);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.zlval-brand-text {
    display: flex;
    flex-direction: column;
}

.zlval-brand-name {
    font-family: var(--zlval-font-head);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.zlval-brand-sub {
    font-size: 12px;
    color: var(--zlval-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zlval-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.zlval-nav-link {
    color: var(--zlval-text);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

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

.zlval-badge {
    border: 1px solid var(--zlval-gold);
    color: var(--zlval-gold);
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
}

/* Hero Section */
.zlval-hero-section {
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(201, 162, 39, 0.1) 0%, transparent 60%);
}

.zlval-hero-label {
    display: inline-block;
    color: var(--zlval-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.zlval-hero-title {
    font-family: var(--zlval-font-head);
    font-size: 64px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 400;
}

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

.zlval-hero-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.zlval-hero-card {
    border: 1px solid var(--zlval-border);
    padding: 20px 40px;
    background-color: var(--zlval-bg-alt);
    border-radius: 4px;
    transition: transform 0.3s, border-color 0.3s;
}

.zlval-hero-card:hover {
    transform: translateY(-5px);
    border-color: var(--zlval-gold);
}

.zlval-hc-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--zlval-text);
}

/* Content Sections */
.zlval-content-section {
    padding: 100px 0;
}

.zlval-darker-bg {
    background-color: var(--zlval-bg-alt);
    border-top: 1px solid var(--zlval-border);
    border-bottom: 1px solid var(--zlval-border);
}

.zlval-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.zlval-section-title {
    font-family: var(--zlval-font-head);
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
}

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

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

.zlval-feature-box {
    background-color: var(--zlval-bg);
    border: 1px solid var(--zlval-border);
    padding: 40px 30px;
    border-radius: 4px;
    transition: border-color 0.4s ease;
}

.zlval-feature-box:hover {
    border-color: var(--zlval-gold);
}

.zlval-darker-bg .zlval-feature-box {
    background-color: var(--zlval-bg-alt);
}

.zlval-kicker {
    display: block;
    color: var(--zlval-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.zlval-box-title {
    font-family: var(--zlval-font-head);
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
}

.zlval-box-text {
    font-size: 15px;
    color: var(--zlval-text-muted);
    margin-bottom: 25px;
}

.zlval-box-list {
    list-style: none;
}

.zlval-box-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--zlval-text);
}

.zlval-box-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--zlval-gold);
    border-radius: 50%;
}

/* Footer */
.zlval-footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--zlval-border);
    background-color: var(--zlval-bg-alt);
}

.zlval-footer-slogan {
    font-family: var(--zlval-font-head);
    font-size: 32px;
    color: var(--zlval-gold);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.zlval-footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.zlval-footer-col p {
    font-size: 14px;
    color: var(--zlval-text-muted);
    margin-bottom: 15px;
}

.zlval-footer-col strong {
    color: #fff;
}

.zlval-contacts p {
    color: var(--zlval-text);
}

.zlval-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--zlval-border);
    font-size: 13px;
    color: var(--zlval-text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .zlval-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .zlval-footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .zlval-nav-list {
        display: none;
    }
    .zlval-hero-title {
        font-size: 42px;
    }
    .zlval-hero-cards {
        flex-direction: column;
    }
    .zlval-grid-3 {
        grid-template-columns: 1fr;
    }
    .zlval-footer-content {
        grid-template-columns: 1fr;
    }
}
