/* CSS Reset & Variables */
:root {
    --hzbg-c-bg: #0B1115;
    --hzbg-c-bg-alt: #10181E;
    --hzbg-c-card: #16222A;
    --hzbg-c-gold: #D4AF37;
    --hzbg-c-gold-hover: #F3E5AB;
    --hzbg-c-text: #E5E7EB;
    --hzbg-c-text-muted: #9CA3AF;
    --hzbg-c-border: #2A3B47;
    
    --hzbg-f-heading: 'Playfair Display', serif;
    --hzbg-f-body: 'Inter', sans-serif;
    
    --hzbg-radius: 12px;
    --hzbg-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body.hzbg-body-wrapper {
    background-color: var(--hzbg-c-bg);
    color: var(--hzbg-c-text);
    font-family: var(--hzbg-f-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.hzbg-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--hzbg-f-heading);
    color: var(--hzbg-c-gold);
    font-weight: 600;
}

/* Header */
.hzbg-top-bar {
    background-color: rgba(11, 17, 21, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--hzbg-c-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

.hzbg-top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hzbg-logo-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hzbg-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--hzbg-c-gold), #8A7322);
    color: var(--hzbg-c-bg);
    font-family: var(--hzbg-f-heading);
    font-size: 24px;
    font-weight: 700;
    border-radius: 8px;
}

.hzbg-brand-texts {
    display: flex;
    flex-direction: column;
}

.hzbg-brand-name {
    font-family: var(--hzbg-f-heading);
    font-size: 20px;
    color: var(--hzbg-c-gold);
    line-height: 1.2;
}

.hzbg-brand-sub {
    font-size: 13px;
    color: var(--hzbg-c-text-muted);
    letter-spacing: 0.05em;
}

.hzbg-header-badge {
    border: 1px solid var(--hzbg-c-gold);
    padding: 6px 16px;
    border-radius: 30px;
}

.hzbg-badge-text {
    color: var(--hzbg-c-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero Section */
.hzbg-hero-showcase {
    padding: 100px 0 80px;
    position: relative;
    border-bottom: 1px solid var(--hzbg-c-border);
}

.hzbg-hero-inner {
    max-width: 800px;
}

.hzbg-hero-kicker {
    display: inline-block;
    color: var(--hzbg-c-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hzbg-main-heading {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, var(--hzbg-c-gold), #F3E5AB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hzbg-hero-desc {
    font-size: 18px;
    color: var(--hzbg-c-text-muted);
    margin-bottom: 48px;
    max-width: 600px;
}

.hzbg-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.hzbg-hero-infobox {
    background-color: var(--hzbg-c-card);
    padding: 24px;
    border-radius: var(--hzbg-radius);
    border: 1px solid var(--hzbg-c-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--hzbg-transition);
}

.hzbg-hero-infobox:hover {
    transform: translateY(-5px);
    border-color: var(--hzbg-c-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hzbg-info-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--hzbg-c-text-muted);
}

.hzbg-info-val {
    font-size: 18px;
    font-weight: 600;
    color: var(--hzbg-c-text);
}

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

.hzbg-alt-bg {
    background-color: var(--hzbg-c-bg-alt);
}

.hzbg-section-heading-wrap {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.hzbg-section-h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

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

.hzbg-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.hzbg-feature-card {
    background-color: var(--hzbg-c-card);
    border: 1px solid var(--hzbg-c-border);
    border-radius: var(--hzbg-radius);
    padding: 40px 32px;
    transition: var(--hzbg-transition);
}

.hzbg-feature-card:hover {
    border-color: var(--hzbg-c-gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.hzbg-card-kicker {
    display: inline-block;
    color: var(--hzbg-c-gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.hzbg-card-h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--hzbg-c-text);
}

.hzbg-card-text {
    color: var(--hzbg-c-text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.hzbg-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hzbg-list-item {
    font-size: 14px;
    color: var(--hzbg-c-text);
    padding-left: 24px;
    position: relative;
}

.hzbg-list-item::before {
    content: "✦";
    color: var(--hzbg-c-gold);
    position: absolute;
    left: 0;
    top: 0;
}

/* Footer */
.hzbg-footer-area {
    background-color: var(--hzbg-c-bg);
    border-top: 1px solid var(--hzbg-c-border);
    padding-top: 80px;
}

.hzbg-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.hzbg-footer-h4 {
    font-size: 18px;
    margin-bottom: 24px;
}

.hzbg-footer-text {
    color: var(--hzbg-c-text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.hzbg-warning-text {
    color: #EAB308;
}

.hzbg-footer-address {
    font-style: normal;
    color: var(--hzbg-c-text-muted);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hzbg-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hzbg-nav-link {
    color: var(--hzbg-c-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--hzbg-transition);
}

.hzbg-nav-link:hover {
    color: var(--hzbg-c-gold);
    padding-left: 5px;
}

.hzbg-footer-bottom {
    border-top: 1px solid var(--hzbg-c-border);
    padding: 24px 0;
    text-align: center;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hzbg-main-heading {
        font-size: 32px;
    }
    
    .hzbg-section-h2 {
        font-size: 32px;
    }
    
    .hzbg-hero-grid {
        grid-template-columns: 1fr;
    }
}
