/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: rgba(13, 8, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
 
.site-header.scrolled {
    background: rgba(8, 4, 18, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
 
.container-header {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
     display: flex;
    align-items: center;
    justify-content: space-between;
}
 
/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: -1px;
}
 
/* Background blobs */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
 
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
}
 
.blob.b1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(216,63,135,0.35), transparent 70%);
    top: -100px; left: -150px;
    animation: floatBlob1 20s ease-in-out infinite alternate;
}
 
.blob.b2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(68,49,141,0.4), transparent 70%);
    bottom: -80px; right: -80px;
    animation: floatBlob2 25s ease-in-out infinite alternate;
}
 
.blob.b3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(59,130,246,0.2), transparent 70%);
    top: 50%; left: 60%;
    transform: translate(-50%, -50%);
    animation: floatBlob3 18s ease-in-out infinite alternate;
}
 
.blob.b4 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(216,63,135,0.2), transparent 70%);
    bottom: 10%; left: 20%;
    animation: floatBlob2 22s ease-in-out infinite alternate-reverse;
}
 
@keyframes floatBlob1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 80px) scale(1.15); }
}
@keyframes floatBlob2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, -60px) scale(1.1); }
}
@keyframes floatBlob3 {
    0%   { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.2) rotate(10deg); }
}
 
/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 24px 60px;
    margin-top: 50px;
}
 
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
 
.banner-subtitle {
    font-size: clamp(14px, 2.2vw, 19px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}
 
/* ===== CTA BUTTON ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    background: linear-gradient(135deg, #D83F87, #44318D);
    box-shadow: 0 8px 32px rgba(216,63,135,0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
 
.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #44318D, #D83F87);
    opacity: 0;
    transition: opacity 0.35s ease;
}
 
.cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 48px rgba(216,63,135,0.55);
}
 
.cta-button:hover::before {
    opacity: 1;
}
 
.cta-button span {
    position: relative;
    z-index: 1;
}
 
/* ===== MAIN BANNER (legacy fallback) ===== */
.main-banner {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}