/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('../images/hero-bg.svg') center/cover no-repeat;
}

.hero-pattern {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
}

.hero-shapes {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1a1a1a;
    padding: 24px;
}

.hero h1 {
    font-size: clamp(1.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: clamp(6px, 1vw, 12px);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.6);
}

.hero-subtitle {
    font-size: clamp(0.85rem, 2vw, 1.5rem);
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: clamp(4px, 0.8vw, 8px);
}

.hero-tagline {
    font-size: clamp(0.8rem, 1.8vw, 1.2rem);
    opacity: 0.75;
    margin-bottom: clamp(20px, 5vw, 60px);
    font-style: italic;
}

.hero-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 60px);
}

.hero-logo {
    width: clamp(100px, 18vw, 200px);
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
}


