/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #050a14;
    color: #e2e8f0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.exwck-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.exwck-header-area {
    background-color: #091223;
    border-bottom: 1px solid #1a2744;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.exwck-header-flex {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.exwck-brand-mark {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    letter-spacing: 2px;
}

.exwck-brand-details {
    flex-grow: 1;
}

.exwck-brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.exwck-brand-subtitle {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exwck-header-badge {
    background-color: #d4af37;
    color: #050a14;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* Hero Showcase */
.exwck-hero-showcase {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a1329 0%, #172a53 100%);
    text-align: center;
    border-bottom: 1px solid #1a2744;
}

.exwck-hero-label {
    display: inline-block;
    color: #d4af37;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #d4af37;
    padding-bottom: 0.25rem;
}

.exwck-hero-heading {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.exwck-hero-desc {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    color: #cbd5e1;
}

.exwck-hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.exwck-stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.exwck-stat-title {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exwck-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
}

/* Segment Styles */
.exwck-info-segment {
    padding: 6rem 0;
}

.exwck-alt-bg {
    background-color: #091223;
}

.exwck-segment-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.exwck-segment-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
    color: #cbd5e1;
}

/* Cards Grid */
.exwck-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.exwck-info-box {
    background: #0d1831;
    border: 1px solid #1a2744;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.exwck-info-box:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.exwck-box-kicker {
    color: #d4af37;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.exwck-box-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.exwck-box-text {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.exwck-box-list {
    list-style: none;
    border-top: 1px solid #1a2744;
    padding-top: 1.5rem;
}

.exwck-box-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.exwck-box-list li::before {
    content: "•";
    color: #d4af37;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* Footer Styles */
.exwck-footer-area {
    background-color: #03060c;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid #1a2744;
}

.exwck-footer-slogan {
    font-size: 2rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 4rem;
}

.exwck-footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.exwck-footer-col-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.exwck-footer-text {
    color: #94a3b8;
    font-size: 0.95rem;
}

.exwck-footer-contacts {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 0;
    border-top: 1px solid #1a2744;
    border-bottom: 1px solid #1a2744;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.exwck-contact-item {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.exwck-contact-item strong {
    color: #ffffff;
    margin-right: 0.5rem;
}

.exwck-footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.exwck-footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.exwck-footer-link:hover {
    color: #d4af37;
}

.exwck-footer-copyright {
    text-align: center;
    color: #475569;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .exwck-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .exwck-hero-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .exwck-hero-heading {
        font-size: 2.5rem;
    }
    .exwck-cards-grid,
    .exwck-footer-columns {
        grid-template-columns: 1fr;
    }
    .exwck-footer-contacts {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}
