/* Custom Styles for Header Navigation, Section Headings, 3D Corner Phone & Splash Screen Animation */

/* 1. Desktop Header Top Menu Container (1x Border Radius) */
@media (min-width: 992px) {
    .header__menu {
        display: block !important;
    }

    .header__menu ul {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 6px 16px !important;
        background-color: hsl(var(--white) / 0.04) !important;
        border: 1px solid hsl(var(--base) / 0.35) !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
        margin: 0 !important;
        transition: all 0.3s ease !important;
    }

    .header__menu ul:hover {
        border-color: hsl(var(--base) / 0.65) !important;
        box-shadow: 0 4px 20px hsl(var(--base) / 0.25) !important;
    }

    .header__menu ul li {
        list-style: none !important;
        margin: 0 !important;
    }

    .header__menu ul li a {
        color: hsl(var(--heading-color)) !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        padding: 8px 16px !important;
        border-radius: 6px !important;
        display: inline-block !important;
        transition: all 0.3s ease !important;
        letter-spacing: 0.5px !important;
        line-height: 1 !important;
        border: 1px solid transparent !important;
    }

    .header__menu ul li a:hover {
        color: hsl(var(--base)) !important;
        background-color: hsl(var(--white) / 0.06) !important;
        border-color: hsl(var(--base) / 0.2) !important;
    }

    .header__area .header__menu ul li a.active {
        color: #120420 !important;
        background-color: hsl(var(--base)) !important;
        border-color: hsl(var(--base)) !important;
        font-weight: 700 !important;
        box-shadow: 0 2px 10px hsl(var(--base) / 0.4) !important;
    }
}

/* 2. All Section Heading Titles & Banner Badges (1x Border Radius) */
.section__heading > span,
.sub__heading,
.banner__content > span {
    border-radius: 8px !important;
}

/* 3. Hero Banner Dashboard & 3D Stand Container */
@media (min-width: 992px) {
    .banner__dashboard {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        top: auto !important;
        z-index: 2 !important;
        max-width: 100% !important;
        margin: 0 !important;
        margin-top: -35px !important;
        display: flex !important;
        justify-content: flex-start !important;
        padding-left: 110px !important;
        align-items: center !important;
        perspective: 1200px;
    }
}

@media (max-width: 991px) {
    .banner__dashboard {
        margin-top: 32px !important;
        display: flex !important;
        justify-content: center !important;
        perspective: 1000px;
    }
}

.phone-stand-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 4. 3D Corner Phone Frame Styling & Animation */
.phone-frame.phone-3d-corner {
    position: relative;
    width: 100%;
    max-width: 245px;
    background: linear-gradient(145deg, #4c1a70, #220a3a 65%, #140524);
    border: 3px solid rgba(255, 255, 255, 0.32);
    border-radius: 40px;
    padding: 8px 7px 10px 7px;
    box-shadow: 
        -15px 25px 50px rgba(0, 0, 0, 0.8),
        0 0 35px rgba(168, 85, 247, 0.3),
        inset 0 0 4px rgba(255, 255, 255, 0.5);
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateY(-14deg) rotateX(10deg) rotateZ(2deg);
    animation: float3DPedestal 6s ease-in-out infinite alternate, entranceFromLeft 2.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    z-index: 3;
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

.phone-frame.phone-3d-corner:hover {
    transform: perspective(1200px) rotateY(-8deg) rotateX(6deg) rotateZ(0deg) translateY(-8px);
    border-color: hsl(var(--base));
    box-shadow: 
        -20px 35px 65px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(245, 158, 11, 0.45),
        inset 0 0 4px rgba(255, 255, 255, 0.7);
}

@keyframes entranceFromLeft {
    0% {
        opacity: 0;
        transform: perspective(1200px) translateX(-380px) rotateY(-42deg) rotateX(28deg) scale(0.72);
    }
    70% {
        opacity: 1;
        transform: perspective(1200px) translateX(18px) rotateY(-10deg) rotateX(8deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: perspective(1200px) translateX(0) rotateY(-14deg) rotateX(10deg) rotateZ(2deg) scale(1);
    }
}
    60% {
        opacity: 1;
        transform: perspective(1200px) translateX(15px) rotateY(-10deg) rotateX(8deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: perspective(1200px) translateX(0) rotateY(-14deg) rotateX(10deg) rotateZ(2deg) scale(1);
    }
}
    100% {
        opacity: 1;
        transform: perspective(1200px) rotateY(-14deg) rotateX(10deg) rotateZ(2deg) translateY(0);
    }
}

@keyframes float3DPedestal {
    0% {
        transform: perspective(1200px) rotateY(-14deg) rotateX(10deg) rotateZ(2deg) translateY(0px);
    }
    100% {
        transform: perspective(1200px) rotateY(-11deg) rotateX(8deg) rotateZ(1deg) translateY(-10px);
    }
}

/* Side Buttons */
.phone-frame::before {
    content: '';
    position: absolute;
    right: -6px;
    top: 75px;
    width: 3px;
    height: 42px;
    background: linear-gradient(to bottom, #7b2eb0, #32114d);
    border-radius: 0 3px 3px 0;
    box-shadow: 1px 0 3px rgba(0,0,0,0.6);
}

.phone-frame::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 60px;
    width: 3px;
    height: 28px;
    background: linear-gradient(to bottom, #7b2eb0, #32114d);
    border-radius: 3px 0 0 3px;
    box-shadow: -1px 0 3px rgba(0,0,0,0.6);
}

/* Top Notch & Camera */
.phone-notch {
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 78px;
    height: 17px;
    background: #06010a;
    border-radius: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.phone-speaker {
    width: 24px;
    height: 3px;
    background: #1e0c2e;
    border-radius: 2px;
}

.phone-camera {
    width: 8px;
    height: 8px;
    background: #090312;
    border: 1px solid #4a1f6d;
    border-radius: 50%;
    box-shadow: inset 0 0 2px #a855f7;
}

/* Screen Window & Glare */
.phone-screen {
    position: relative;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: #08020f;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.phone-glare {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.24) 0%,
        rgba(255, 255, 255, 0.05) 35%,
        rgba(255, 255, 255, 0) 65%
    );
    pointer-events: none;
    z-index: 6;
}

.phone-home-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* 5. 5-Line Shape Rising Fire Splash Screen (No Icon, No Text) */
.phone-splash-screen.fire-splash-5line {
    position: absolute;
    inset: 0;
    background: #030008;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    animation: slideUpSplash 0.5s cubic-bezier(0.7, 0, 0.3, 1) 1.2s forwards !important;
}

.fire-5line-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: radial-gradient(ellipse at bottom, rgba(180, 20, 0, 0.6) 0%, rgba(10, 2, 20, 0.98) 85%);
}

/* 5 Distinct Flame Line Layers */
.flame-line {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: bottom center;
}

/* Line 1: Deep Crimson Red Back Flame */
.flame-line-1 {
    width: 150%;
    height: 100%;
    background: linear-gradient(to top, #8b0000 0%, #cc0000 40%, #ff1a1a 75%, transparent 100%);
    border-radius: 45% 55% 35% 35% / 75% 75% 25% 25%;
    filter: blur(8px);
    opacity: 0.85;
    animation: fireRise5Line 2.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards, lineFlicker1 0.18s ease-in-out infinite alternate;
}

/* Line 2: Fiery Red-Orange Outer Flame */
.flame-line-2 {
    width: 125%;
    height: 92%;
    background: linear-gradient(to top, #e64a19 0%, #ff3d00 45%, #ff6d00 80%, transparent 100%);
    border-radius: 50% 50% 30% 30% / 80% 80% 20% 20%;
    filter: blur(5px);
    opacity: 0.9;
    animation: fireRise5Line 2.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards, lineFlicker2 0.15s ease-in-out 0.05s infinite alternate;
}

/* Line 3: Warm Golden Amber Mid Flame */
.flame-line-3 {
    width: 100%;
    height: 84%;
    background: linear-gradient(to top, #ff6f00 0%, #ff8f00 45%, #ffa000 80%, transparent 100%);
    border-radius: 40% 60% 40% 40% / 85% 85% 15% 15%;
    filter: blur(3px);
    opacity: 0.95;
    animation: fireRise5Line 2.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards, lineFlicker3 0.14s ease-in-out 0.1s infinite alternate;
}

/* Line 4: Bright Yellow Front Flame */
.flame-line-4 {
    width: 75%;
    height: 72%;
    background: linear-gradient(to top, #ffc107 0%, #ffca28 50%, #ffd54f 85%, transparent 100%);
    border-radius: 45% 45% 45% 45% / 90% 90% 10% 10%;
    filter: blur(2px);
    opacity: 0.95;
    animation: fireRise5Line 2.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards, lineFlicker4 0.16s ease-in-out 0.15s infinite alternate;
}

/* Line 5: White-Hot Core Flame */
.flame-line-5 {
    width: 50%;
    height: 58%;
    background: linear-gradient(to top, #ffffff 0%, #fff9c4 65%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50% 50% 50% 50% / 95% 95% 5% 5%;
    filter: blur(1px);
    opacity: 1;
    animation: fireRise5Line 2.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards, lineFlicker5 0.12s ease-in-out infinite alternate;
}

@keyframes fireRise5Line {
    0% {
        transform: translateX(-50%) scaleY(0) translateY(60px);
        opacity: 0;
    }
    100% {
        transform: translateX(-50%) scaleY(1.15) translateY(-10px);
        opacity: 1;
    }
}

@keyframes lineFlicker1 {
    0% { transform: translateX(-50%) scaleX(0.96) rotate(-1.5deg); }
    100% { transform: translateX(-50%) scaleX(1.04) rotate(1.5deg); }
}

@keyframes lineFlicker2 {
    0% { transform: translateX(-50%) scaleY(0.97) skewX(-2deg); }
    100% { transform: translateX(-50%) scaleY(1.03) skewX(2deg); }
}

@keyframes lineFlicker3 {
    0% { transform: translateX(-50%) scaleX(1.03) rotate(1deg); }
    100% { transform: translateX(-50%) scaleX(0.97) rotate(-1deg); }
}

@keyframes lineFlicker4 {
    0% { transform: translateX(-50%) scaleY(1.02) skewX(1.5deg); }
    100% { transform: translateX(-50%) scaleY(0.98) skewX(-1.5deg); }
}

@keyframes lineFlicker5 {
    0% { transform: translateX(-50%) scaleX(0.95); }
    100% { transform: translateX(-50%) scaleX(1.05); }
}

/* Ember Particles */
.fire-sparks .sp-1 { position: absolute; left: 20%; bottom: 10px; width: 4px; height: 4px; background: #ffd700; border-radius: 50%; box-shadow: 0 0 8px #ff3d00; animation: spRise 1.8s infinite linear; }
.fire-sparks .sp-2 { position: absolute; left: 40%; bottom: 10px; width: 5px; height: 5px; background: #ff9100; border-radius: 50%; box-shadow: 0 0 10px #ff3d00; animation: spRise 2.2s infinite linear 0.3s; }
.fire-sparks .sp-3 { position: absolute; left: 60%; bottom: 10px; width: 3px; height: 3px; background: #ffffff; border-radius: 50%; box-shadow: 0 0 6px #ffea00; animation: spRise 1.6s infinite linear 0.6s; }
.fire-sparks .sp-4 { position: absolute; left: 75%; bottom: 10px; width: 4px; height: 4px; background: #ff3d00; border-radius: 50%; box-shadow: 0 0 8px #ff6d00; animation: spRise 2.4s infinite linear 0.2s; }
.fire-sparks .sp-5 { position: absolute; left: 30%; bottom: 10px; width: 5px; height: 5px; background: #ffd600; border-radius: 50%; box-shadow: 0 0 10px #ff3d00; animation: spRise 2.0s infinite linear 0.9s; }

@keyframes spRise {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-260px) translateX(-20px) scale(0.2); opacity: 0; }
}

.phone-app-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 31px;
    opacity: 0;
    transform: scale(0.94);
    opacity: 1 !important;
    transform: scale(1) !important;
}

@keyframes slideUpSplash {
    0% {
        transform: translateY(0%);
        opacity: 1;
    }
    100% {
        transform: translateY(-105%);
        opacity: 1;
        pointer-events: none;
        visibility: hidden;
    }
}
    100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

@keyframes revealAppImg {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 6. 3D Pedestal Stand Base */
.phone-pedestal {
    position: relative;
    width: 320px;
    height: 95px;
    margin-top: -42px;
    background: linear-gradient(180deg, #571c82 0%, #280a45 45%, #120420 100%);
    border: 3.5px solid hsl(var(--base));
    border-radius: 50%;
    transform: perspective(700px) rotateX(65deg);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.92),
        0 0 55px rgba(245, 158, 11, 0.55),
        inset 0 6px 18px rgba(255, 255, 255, 0.45),
        inset 0 -12px 30px rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.pedestal-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, rgba(168, 85, 247, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pedestalGlowPulse 3s ease-in-out infinite alternate;
}

@keyframes pedestalGlowPulse {
    0% { opacity: 0.5; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.08); }
}


/* Mobile Offcanvas Auth Buttons (Register Left, Login Right) */
.offcanvas__auth-btns {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 28px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.offcanvas__auth-btns .btn {
    flex: 1 !important;
    text-align: center !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    display: inline-block !important;
}


/* Desktop Header Widgets Auth Buttons (Create Account & Login) */
.header__login {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

@media (max-width: 991px) {
    .header__login {
        display: none !important;
    }
}


/* Footer Layout Enhancements & Perfect Alignment */
.footer__area {
    padding-top: 60px;
}

.footer__topbar {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px auto;
}

.footer__topbar img {
    max-width: 210px;
    height: auto;
}

.footer__topbar p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.footer__wrap {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    margin-bottom: 50px !important;
}

.footer__single {
    flex: 1;
    min-width: 180px;
}

.footer__single h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer__single h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: hsl(var(--base));
    border-radius: 2px;
}

.footer__single ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer__single ul li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer__single ul li a:hover {
    color: hsl(var(--base));
    transform: translateX(4px);
}

.footer__copyright {
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.footer__copyright p a {
    color: hsl(var(--base));
    font-weight: 600;
}


/* =========================================================
   Meet Our CEO Section Styles (System Design Pattern)
   ========================================================= */

.ceo__area {
    position: relative;
    z-index: 1;
}

.ceo__thumb-wrap {
    position: relative;
    padding: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(30, 10, 48, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.ceo__thumb-wrap:hover {
    border-color: hsl(var(--base) / 0.5);
    box-shadow: 0 20px 45px rgba(245, 158, 11, 0.2);
}

.ceo__thumb-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.ceo__thumb-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    transition: transform 0.5s ease;
}

.ceo__thumb-wrap:hover .ceo__thumb-frame img {
    transform: scale(1.03);
}

.ceo__badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(20, 5, 35, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ceo__badge i {
    width: 40px;
    height: 40px;
    background: hsl(var(--base));
    color: #120420;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 0 15px hsl(var(--base) / 0.5);
}

.ceo__badge h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.ceo__badge span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.ceo__content-card {
    padding: 40px;
    background: linear-gradient(180deg, hsl(var(--white)/0.04), hsl(var(--section-bg)));
    border: 1px solid hsl(var(--white)/0.08);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.ceo__quote-icon {
    font-size: 36px;
    color: hsl(var(--base));
    margin-bottom: 20px;
    opacity: 0.8;
}

.ceo__title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 20px;
}

.ceo__bio {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 30px;
}

.ceo__info-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.ceo__name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.ceo__role {
    font-size: 13px;
    color: hsl(var(--base));
    font-weight: 600;
}

.ceo__socials {
    display: flex;
    gap: 10px;
}

.ceo__socials .social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ceo__socials .social-icon:hover {
    background: hsl(var(--base));
    color: #120420;
    border-color: hsl(var(--base));
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}


/* =========================================================
   Our Trusted Partners Section Styles (System Design Pattern)
   ========================================================= */

.partner__area {
    position: relative;
    z-index: 1;
}

.partner__card {
    background: linear-gradient(180deg, hsl(var(--white)/0.04), hsl(var(--section-bg)));
    border: 1px solid hsl(var(--white)/0.08);
    border-radius: 14px;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    min-height: 80px;
}

.partner__card img {
    max-width: 130px;
    height: auto;
    opacity: 0.75;
    filter: grayscale(30%);
    transition: all 0.35s ease;
}

.partner__card:hover {
    border-color: hsl(var(--base) / 0.5);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.25);
    background: linear-gradient(180deg, hsl(var(--white)/0.08), hsl(var(--section-bg)));
}

.partner__card:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}


/* =========================================================
   Download Mobile App CTA Section Styles (System Design)
   ========================================================= */

.app-cta__area {
    position: relative;
    z-index: 1;
}

.app-cta__wrap {
    padding: 60px 50px;
    background: linear-gradient(135deg, rgba(60, 19, 97, 0.75), rgba(15, 3, 28, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.app-cta__wrap::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsl(var(--base) / 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.app-cta__desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 16px;
    margin-bottom: 24px;
}

.app-cta__features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.app-cta__features .feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.app-cta__features .feature-badge i {
    color: hsl(var(--base));
}

.app-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    background: rgba(20, 5, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.35s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.app-store-btn i {
    font-size: 28px;
    color: hsl(var(--base));
    transition: transform 0.3s ease;
}

.app-store-btn .btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.app-store-btn .btn-text span {
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
}

.app-store-btn .btn-text strong {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.app-store-btn:hover {
    background: hsl(var(--base));
    border-color: hsl(var(--base));
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

.app-store-btn:hover i,
.app-store-btn:hover .btn-text span,
.app-store-btn:hover .btn-text strong {
    color: #120420 !important;
}

.app-cta__mockup {
    position: relative;
    display: inline-block;
}

.mockup-circle-glow {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, hsl(var(--base) / 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.app-cta__mockup img {
    max-width: 280px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s ease;
}

.app-cta__mockup:hover img {
    transform: translateY(-8px) rotate(-2deg);
}


/* Compact Realistic Smartphone Frame for Download CTA Section */
.app-cta__mockup-wrapper {
    display: inline-block;
    position: relative;
    padding: 10px;
}

.cta-phone-frame {
    width: 220px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(145deg, #2a2a2e, #141416);
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 0 0 2px rgba(255, 255, 255, 0.15);
    border: 2px solid #3a3a42;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cta-phone-frame:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: 0 22px 50px rgba(245, 158, 11, 0.25), inset 0 0 0 2px hsl(var(--base) / 0.4);
}

.cta-phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 14px;
    background: #000000;
    border-radius: 10px;
    z-index: 10;
}

.cta-phone-screen {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #090214;
    aspect-ratio: 9/18;
}

.cta-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-phone-glare {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
    z-index: 5;
}

.cta-phone-home-bar {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    z-index: 10;
}

/* =========================================================
   Bold Animated Brand Text Logo (Kali Developers)
   ========================================================= */
.brand-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    padding: 4px 0;
    transition: transform 0.3s ease;
}

.brand-logo-link:hover {
    transform: scale(1.04);
}

.brand-logo-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: var(--heading-font, 'Inter', sans-serif);
    color: #ffffff;
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 35%, hsl(var(--base)) 75%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brandShimmerFill 4s ease-in-out infinite alternate;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 12px hsl(var(--base) / 0.4));
}

.brand-logo-highlight {
    background: linear-gradient(135deg, hsl(var(--base)) 0%, #fbbf24 35%, #ec4899 70%, hsl(var(--base)) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    animation: brandHighlightPulse 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 15px hsl(var(--base) / 0.65));
}

.brand-logo-lg {
    font-size: 32px !important;
    letter-spacing: 1px !important;
}

@keyframes brandShimmerFill {
    0% {
        background-position: 0% 50%;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 10px hsl(var(--base) / 0.3));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 18px hsl(var(--base) / 0.65));
    }
    100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 10px hsl(var(--base) / 0.3));
    }
}

@keyframes brandHighlightPulse {
    0% {
        background-position: 0% 50%;
        text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
    }
    100% {
        background-position: 100% 50%;
        text-shadow: 0 0 20px rgba(245, 158, 11, 0.8), 0 0 30px rgba(236, 72, 153, 0.5);
    }
}
