body {
  margin: 0;
  height: 100vh;
  background:
    radial-gradient(circle at 20% 30%, #b45aa058, transparent 60%),
    radial-gradient(circle at 70% 20%, #8c46c04d, transparent 60%),
    radial-gradient(circle at 40% 70%, #c878be4d, transparent 60%),
    radial-gradient(circle at 80% 80%, #a03ca052, transparent 60%),
    radial-gradient(circle at 0% 100%, #c878aa40, transparent 70%),
    #121832;
  background-attachment: fixed;
  background-size: cover;
}

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 90px 80px 120px;  
    position: relative;
    overflow: hidden;
    font-family: "Figtree-local", sans-serif;
}

.hero-content {
    max-width: 616px;
    z-index: 2;
    transform: translateX(200px) translateY(-25px); 
}

.hero-content h1 {
    font-family: "Figtree-local", sans-serif;
    font-weight: 750;
    font-size: 74px;             
    line-height: 1.08;            
    margin-bottom: 22px;
    color: #ffffff;
    text-shadow: 0 6px 32px rgba(0, 0, 0, 0.55);
}

.hero-content-span {
    background: linear-gradient(90deg, #D47DF9, #F274C4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.hero-content p {
    font-family: "Figtree-local", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.55;      
    color: #f3d8ff;
    max-width: 420px;
    margin-bottom: 28px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 28px;       
    border-radius: 999px;

    background: rgba(0, 0, 0, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.10);

    color: #ffffff;
    font-size: 15px;
    font-family: "Figtree-local", sans-serif;
    font-weight: 600;

    backdrop-filter: blur(6px);
    cursor: pointer;

    transition: background 0.15s ease,
                transform 0.15s ease,
                opacity 0.15s ease;
}

.btn-primary:hover {
    background: rgba(0, 0, 0, 0.30);
    transform: translateY(-2px);
}



.hero-phones {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
    margin-right: 200px;
    transform: translateY(-25px);
}


.phones-img {
    max-width: 600px;
    width: 100%;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.7));
}

#intro-logo {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;

    opacity: 0;
    transform: scale(0.6);
    pointer-events: none;
}

#intro-logo img {
    width: 180px;
    filter: blur(8px) brightness(1.8);
    transition: transform 1.2s ease,
                opacity .8s ease,
                filter 1.2s ease;
}

#intro-logo.show-logo {
    opacity: 1;
}

#intro-logo.show-logo img {
    transform: scale(1);
    filter: blur(0px) brightness(1.2);
}

#intro-logo.zoom-out-logo img {
    transform: scale(5);
    filter: blur(20px) brightness(2);
    opacity: .6;
}

#intro-logo.hide-logo {
    opacity: 0;
    transition: opacity .4s ease;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(35px);
    opacity: 1;

    transition: opacity 1.4s ease, backdrop-filter 1.2s ease;

    pointer-events: none;
    z-index: 9000;
}

body.fade-blur-out::before {
    opacity: 0;
    backdrop-filter: blur(0px);
}

.hero-content,
.hero-phones,
.social-bar,
.navbar-glass {
    opacity: 0;
}

body.show-content .hero-content,
body.show-content .hero-phones,
body.show-content .social-bar,
body.show-content .navbar-glass {
    opacity: 1;
    transition: opacity 0.3s ease;
}





/* ===========================
   MOBILE VERSION (Small phones)
   =========================== */
@media (max-width: 480px) {

    body {
        height: auto;
        min-height: 100vh;
    }

    .hero {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 15px 15px 20px;
        gap: 20px;
    }

    .hero-content {
        max-width: 100%;
        text-align: left;
        transform: none !important;
        margin-top: 0;
        text-shadow: 0 0 8px rgba(0,0,0,0.6), 
                     0 0 14px rgba(0,0,0,0.4);
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 0.9rem;
        opacity: .92;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .btn-primary {
        font-size: 0.85rem;
        padding: 10px 18px;
        margin-top: 10px;
        border-radius: 8px;
    }

    .hero-phones {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: -60px;
        transform: none !important;
    }

    .hero-phones img {
        width: 90%;
        max-width: 280px;
        height: auto;
    }

    .social-bar {
        position: relative;
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
        gap: 15px;
        width: 100%;
        padding: 15px 10px;
        margin: 10px 0;
        z-index: 1;
        flex-wrap: wrap;
    }

    .social-chip {
        width: 45px;
        height: 45px;
        border-radius: 999px;
        display: flex !important;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .social-chip span {
        display: none;
    }

    .social-chip img,
    .social-chip i {
        width: 24px;
        height: 24px;
    }
}

/* ===========================
   TABLET VERSION (Medium phones & tablets)
   =========================== */
@media (min-width: 481px) and (max-width: 900px) {

    body {
        height: auto;
        min-height: 100vh;
    }

    .hero {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 40px 30px 60px;
        gap: 30px;
    }

    .hero-content {
        max-width: 100%;
        text-align: left;
        transform: none !important;
        margin-top: 0;
        text-shadow: 0 0 8px rgba(0,0,0,0.6), 
                     0 0 14px rgba(0,0,0,0.4);
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.12;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 1rem;
        opacity: .92;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 11px 22px;
        margin-top: 12px;
        border-radius: 10px;
    }

    .hero-phones {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-top: -80px;
        transform: none !important;
    }

    .hero-phones img {
        width: 85%;
        max-width: 380px;
        height: auto;
    }

    .social-bar {
        position: relative;
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
        gap: 20px;
        width: 100%;
        padding: 25px 20px;
        margin: 20px 0;
        z-index: 1;
        flex-wrap: wrap;
    }

    .social-chip {
        width: 50px;
        height: 50px;
        border-radius: 999px;
        display: flex !important;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .social-chip span {
        display: none;
    }

    .social-chip img,
    .social-chip i {
        width: 26px;
        height: 26px;
    }
}

/* ===========================
   LARGE MOBILE/LANDSCAPE
   =========================== */
@media (min-width: 901px) and (max-width: 1580px) {

    body {
        height: auto;
        min-height: 100vh;
    }

    .hero {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 60px 50px 80px;
        gap: 30px;
    }

    .hero-content {
        max-width: 100%;
        text-align: left;
        transform: none !important;
        margin-top: 0;
        text-shadow: 0 0 8px rgba(0,0,0,0.6), 
                     0 0 14px rgba(0,0,0,0.4);
    }

    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.12;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1.1rem;
        opacity: .92;
        margin-bottom: 18px;
    }

    .btn-primary {
        font-size: 0.95rem;
        padding: 12px 26px;
        margin-top: 15px;
    }

    .hero-phones {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: -100px;
        transform: none !important;
    }

    .hero-phones img {
        width: 80%;
        max-width: 450px;
        height: auto;
    }

    .social-bar {
        position: relative;
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
        gap: 22px;
        width: 100%;
        padding: 30px 20px;
        margin: 20px 0;
        z-index: 1;
        flex-wrap: wrap;
    }

    .social-chip {
        width: 50px;
        height: 50px;
        border-radius: 999px;
        display: flex !important;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .social-chip span {
        display: none;
    }

    .social-chip img,
    .social-chip i {
        width: 28px;
        height: 28px;
    }
}
