.hw-premium-navy {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #001b4d 0%, #002c77 50%, #001540 100%);
    padding: 120px 0 80px 0;
    overflow: hidden;
    font-family: 'PT Sans', sans-serif;
    color: #fff;
}

.hw-noise-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

.hw-glow-line {
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fdc82f, transparent);
    opacity: 0.5;
}
.hw-glow-line.top { top: 0; }
.hw-glow-line.bottom { bottom: 0; }

.hw-premium-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hw-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 0;
}

.hw-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fdc82f;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #fdc82f, #ff9a1f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hw-display-num {
    font-size: 200px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #fdc82f, #ff9a1f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hw-display-sub {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-top: -10px;
    margin-bottom: 24px;
}

.hw-promise-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(253, 200, 47, 0.3);
}
.hw-pill-icon { color: #fdc82f; margin-right: 8px; }

.hw-body-text {
    font-size: 17px;
    color: #e8edf5;
    line-height: 1.65;
    margin-bottom: 32px;
}

.hw-mini-trust {
    display: flex;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #fdc82f;
}
.hw-dot { opacity: 0.5; }

.hw-fuehrung-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hw-person-card {
    background: rgba(0, 21, 64, 0.6);
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(253, 200, 47, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}
.hw-person-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(253, 200, 47, 0.35);
}

.hw-person-img {
    width: 200px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.hw-person-content {
    padding: 32px;
    flex-grow: 1;
}

.hw-person-content h3 {
    font-size: 24px;
    margin: 0 0 8px 0;
    color: #fff;
}
.hw-person-role {
    font-size: 14px;
    color: #fdc82f;
    margin-bottom: 16px;
    font-weight: 700;
}
.hw-person-content p {
    font-size: 15px;
    color: #e8edf5;
    line-height: 1.6;
    margin-bottom: 24px;
}

.hw-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}
.hw-btn-outline {
    background: transparent;
    border: 1px solid #fdc82f;
    color: #fdc82f;
}
.hw-btn-outline:hover { background: rgba(253, 200, 47, 0.1); }
.hw-btn-gold {
    background: #fdc82f;
    color: #001540;
    border: 1px solid #fdc82f;
}
.hw-btn-gold:hover { background: #ff9a1f; }
.hw-icon { margin-right: 8px; }

@media (max-width: 1023px) {
    .hw-display-num { font-size: 140px; }
    .hw-person-card { flex-direction: column; }
    .hw-person-img {
        width: 100%;
        height: 300px;
        background-position: center top !important;
    }
}

@media (max-width: 767px) {
    .hw-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hw-display-num { font-size: 100px; }
    .hw-mini-trust { flex-direction: column; gap: 8px; align-items: center; }
    .hw-dot { display: none; }
    .hw-person-content { text-align: left; }
    .hw-person-img {
        width: 100%;
        height: 350px;
        background-position: center top !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hw-person-card:hover { transform: none; box-shadow: 0 8px 32px rgba(253, 200, 47, 0.15); }
}