@font-face {
    font-family: "Plaza";
    src: url("fonts/PlazapersonaluseBold-d91XR.otf") format("opentype");
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: "poppins", sans-serif;
}
:root{
    --bg-color: Black;
    --second-bg-color: black;
    --text-color: white;
    --main-color: rgb(65, 105, 225);
}
html{
    font-size: 60%;
    overflow-x: hidden;
}
body{
    background-color: var(--bg-color);
    color: var(--text-color)
}
.header{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 4rem 15%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
#menu-icon{
    font-size: 3.5rem;
    color: var(--main-color);
    display: none;
}
.menu-toggle{
    display: none;
    width: 4.4rem;
    height: 4.4rem;
    background: transparent;
    border: 1px solid rgba(65, 105, 225, 0.65);
    border-radius: 0.8rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-direction: column;
    transition: 0.3s ease-in-out;
}
.menu-toggle:hover{
    background: rgba(65, 105, 225, 0.12);
    box-shadow: 0 0 12px rgba(65, 105, 225, 0.25);
}
.menu-toggle span{
    display: block;
    width: 2rem;
    height: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-toggle.open span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2){
    opacity: 0;
}
.menu-toggle.open span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}
.logo{
    font-size: 3.5rem;
    color: var(--text-color);
    font-family: "Plaza", sans-serif;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.logo:hover{
    transform: scale(1.1);
}
.logo span{
    font-family: "Plaza", sans-serif;
}
span{
    background: linear-gradient(270deg, #1e90ff 10%, #8ecbff 100%);
    background-clip: text;
    color: transparent;
}
.navbar a{
    font-size: 1.8rem;
    color: var(--text-color);
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    border-bottom: 3px solid transparent;
}
.navbar a:hover{
    background: linear-gradient(270deg, #1e90ff 10%, #8ecbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    border-bottom: 3px solid var(--main-color);
}
.gradient-btn{
    font-size: 1.8rem;
    padding: 1rem 2rem;
    border-radius: 3rem;
    background: linear-gradient(270deg, #1e90ff 10%, #8ecbff 100%);
    cursor: pointer;
    transition: 0.3s ease-in-out;
    color: white;
    border: none;
    text-wrap: nowrap;
    display: inline-block;
}
.gradient-btn:hover{
    transform: scale(1.05);
}
section{
    min-height: 100vh;
    padding: 10rem 15%;
    position: relative;
    z-index: 1;
}
.home{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding-top: 16rem;
}
.home::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 62rem;
    height: 62rem;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(65, 105, 225, 0.18) 0%, rgba(65, 105, 225, 0.02) 55%, transparent 75%);
    filter: blur(8px);
    pointer-events: none;
}
.home::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 18rem;
    background: linear-gradient(to bottom, transparent, var(--bg-color));
    pointer-events: none;
    z-index: 2;
}
.home-content{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8rem;
    max-width: 92rem;
    width: 100%;
    padding: 3.4rem 2.8rem;
    border-radius: 2.4rem;
    border: 1px solid rgba(176, 202, 255, 0.24);
    background:
        radial-gradient(circle at 8% 12%, rgba(95, 137, 255, 0.18) 0%, rgba(95, 137, 255, 0) 38%),
        linear-gradient(150deg, rgba(5, 8, 20, 0.9), rgba(12, 18, 40, 0.76));
    box-shadow: 0 18px 45px rgba(3, 6, 16, 0.65), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    overflow: hidden;
}
.home-content::before,
.home-content::after{
    content: '';
    position: absolute;
    width: 11rem;
    height: 11rem;
    border: 1px solid rgba(116, 154, 255, 0.34);
    pointer-events: none;
}
.home-content::before{
    top: 1.2rem;
    left: 1.2rem;
    border-right: none;
    border-bottom: none;
    border-radius: 1rem 0 0 0;
}
.home-content::after{
    right: 1.2rem;
    bottom: 1.2rem;
    border-left: none;
    border-top: none;
    border-radius: 0 0 1rem 0;
}
.home-text{
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-tag{
    display: inline-block;
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: #ecf3ff;
    border: 1px solid rgba(135, 168, 255, 0.65);
    border-radius: 999px;
    padding: 0.9rem 1.7rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(140deg, rgba(25, 41, 87, 0.78), rgba(40, 20, 74, 0.68));
    box-shadow: 0 0 16px rgba(67, 109, 223, 0.34);
}
.home-text h1{
    font-size: 4.2rem;
    font-weight: 700;
    margin-top: 1.2rem;
    line-height: 1.3;
    font-family: "Plaza", sans-serif;
    letter-spacing: 0.06rem;
    text-shadow: 0 0 16px rgba(65, 105, 225, 0.35);
}
.home-text h1 span{
    font-family: "Plaza", sans-serif;
}
.home-text h3{
    margin: 1rem 0;
    font-size: 2.2rem;
}
.home-text p{
    font-size: 1.6rem;
    margin: 1.5rem 0;
    font-weight: 500;
    line-height: 1.8;
    max-width: 76rem;
}
.home-live-line{
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.4rem;
    border-radius: 1rem;
    border: 1px solid rgba(65, 105, 225, 0.5);
    background: linear-gradient(130deg, rgba(8, 13, 33, 0.92), rgba(16, 24, 53, 0.72));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 20px rgba(65, 105, 225, 0.24);
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: 0.03rem;
    color: #e6eeff;
}
.home-live-line::before{
    content: 'LIVE';
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.12rem;
    color: #67f08d;
    padding: 0.35rem 0.55rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(103, 240, 141, 0.45);
    background: rgba(8, 30, 15, 0.75);
    box-shadow: 0 0 10px rgba(103, 240, 141, 0.35);
}
#service-rotator{
    display: inline-block;
    min-width: 23rem;
    text-align: left;
    position: relative;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(65, 105, 225, 0.42);
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
}
#service-rotator::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(65, 105, 225, 0.85), rgba(123, 47, 190, 0.85));
    opacity: 0.9;
}
.offer-list{
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2rem;
    justify-content: center;
}
.offer-pill{
    font-size: 1.35rem;
    font-weight: 600;
    padding: 1rem 1.6rem;
    border-radius: 3rem;
    border: 1px solid rgba(65, 105, 225, 0.5);
    background: linear-gradient(135deg, rgba(10, 16, 38, 0.96), rgba(24, 15, 48, 0.82));
    color: #e6eeff;
    transition: 0.3s ease-in-out;
}
.offer-pill:hover{
    border-color: var(--main-color);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 16px rgba(65, 105, 225, 0.35);
}
.offer-pill:nth-child(1){ transform: rotate(-1.2deg); }
.offer-pill:nth-child(2){ transform: rotate(0.8deg); }
.offer-pill:nth-child(3){ transform: rotate(-0.6deg); }
.home-highlights{
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    width: min(72rem, 100%);
}
.highlight-card{
    border: 1px solid rgba(65, 105, 225, 0.45);
    background: linear-gradient(155deg, rgba(8, 13, 33, 0.92), rgba(18, 14, 38, 0.78));
    border-radius: 1.2rem;
    padding: 1.6rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
}
.highlight-card i{
    font-size: 2.2rem;
    color: var(--main-color);
}
.highlight-card p{
    margin: 0;
    font-size: 1.35rem;
    font-weight: 600;
    color: #f1f5ff;
    max-width: none;
}
.highlight-card:hover{
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 8px 24px rgba(65, 105, 225, 0.28);
    background: linear-gradient(155deg, rgba(16, 24, 53, 0.95), rgba(25, 19, 58, 0.86));
}
.highlight-card:nth-child(2){ transform: translateY(-0.5rem); }

.btn-group .btn{
    position: relative;
    overflow: hidden;
    padding: 1.1rem 2.8rem;
    border: 1px solid rgba(173, 197, 255, 0.45);
    box-shadow: 0 8px 22px rgba(65, 105, 225, 0.26);
}
.btn-group .btn::before{
    content: '';
    position: absolute;
    top: -120%;
    left: -22%;
    width: 42%;
    height: 330%;
    transform: rotate(18deg);
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.55), transparent);
    transition: left 0.45s ease;
}
.btn-group .btn:hover::before{
    left: 122%;
}
.home-img img{
    width: 44rem;
    height: 44rem;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%;
    box-shadow: 0 0 25px var(--main-color);
    transition: 0.4s ease-in-out;
}
.home-img img:hover{
    box-shadow: 0 0 25px var(--main-color),
                0 0 50px var(--main-color),
                0 0 100px var(--main-color);
}
.btn{
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 3rem;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(270deg, #1e90ff 10%, #8ecbff 100%);
    color: white;
    transition: 0.3s ease-in-out;
}
.btn:hover{
    transform: scale(1.07);
    box-shadow: 0 0 20px var(--main-color);
}
.social-icons{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}
.social-icons a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--text-color);
    border: 2px solid var(--main-color);
    border-radius: 50%;
    width: 4.5rem;
    height: 4.5rem;
    transition: 0.3s ease-in-out;
}
.social-icons a:hover{
    background: var(--main-color);
    color: white;
    box-shadow: 0 0 15px var(--main-color);
    transform: scale(1.1);
}
.btn-group{
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* ── About Section ── */
.about{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    background-color: var(--second-bg-color);
    position: relative;
    overflow: hidden;
}
.about::before{
    content: '';
    position: absolute;
    inset: 0;
    background: url('Unite Speech Photo.jpeg') center/cover no-repeat;
    filter: blur(6px) brightness(0.25);
    transform: scale(1.05);
    z-index: 0;
}
.about::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--bg-color) 0%,
        transparent 20%,
        transparent 80%,
        var(--bg-color) 100%
    );
    pointer-events: none;
    z-index: 2;
}
.about > *{
    position: relative;
    z-index: 3;
}
.about-content-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    width: 100%;
}
.about-img img{
    width: 44rem;
    height: 44rem;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%;
    box-shadow: 0 0 25px var(--main-color);
    transition: 0.4s ease-in-out;
}
.about-img img:hover{
    box-shadow: 0 0 25px var(--main-color),
                0 0 50px var(--main-color),
                0 0 100px var(--main-color);
}
.about-text h2{
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.2;
}
.about-text h3{
    font-size: 2.6rem;
    margin: 1rem 0;
    color: var(--main-color);
}
.about-text p{
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
    margin: 1rem auto;
    max-width: 80rem;
}
.about-text p strong{
    color: var(--main-color);
    background: none;
    -webkit-text-fill-color: unset;
}
.about-btns{
    margin-top: 2rem;
}

@media (max-width: 980px) {
    .home{
        padding-top: 14rem;
    }

    .home-content,
    .about-content-wrap{
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .home-content{
        padding: 2.6rem 2rem;
    }

    .home-text,
    .about-text{
        max-width: 72rem;
    }

    .offer-list{
        justify-content: center;
    }

    .home-highlights{
        grid-template-columns: 1fr;
        width: min(42rem, 100%);
    }

    .offer-pill:nth-child(1),
    .offer-pill:nth-child(2),
    .offer-pill:nth-child(3),
    .highlight-card:nth-child(2){
        transform: none;
    }

    .home-text h1,
    .hero h1,
    .about-text h2{
        font-size: 3.7rem;
    }

    .home-text h3,
    .about-text h3{
        font-size: 2.2rem;
    }
}

@media (max-width: 560px) {
    .home,
    .services,
    .about,
    .projects,
    .contact{
        padding-left: 8%;
        padding-right: 8%;
    }

    .home-tag{
        font-size: 1.1rem;
    }

    .home-live-line{
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.8rem 1rem;
    }

    #service-rotator{
        min-width: 0;
        text-align: center;
    }

    .home-text h1,
    .hero h1,
    .about-text h2,
    .services h2,
    .projects h2,
    .contact h2{
        font-size: 3.2rem;
    }

    .about-img img{
        width: 30rem;
        height: 30rem;
    }

    .service-card,
    .coming-soon-card{
        width: 100%;
    }
}

/* ── Services Section ── */
.hero{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-content{
    max-width: 90rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    position: relative;
    z-index: 3;
}
.tag{
    display: inline-block;
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: #ecf3ff;
    border: 1px solid rgba(135, 168, 255, 0.65);
    border-radius: 999px;
    padding: 0.9rem 1.7rem;
    background: linear-gradient(140deg, rgba(25, 41, 87, 0.78), rgba(40, 20, 74, 0.68));
    box-shadow: 0 0 16px rgba(67, 109, 223, 0.34);
}
.hero h1{
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Plaza", sans-serif;
}
.subtext{
    font-size: 1.7rem;
    line-height: 1.8;
    color: #c5d2ef;
    max-width: 72rem;
}
.cta-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    flex-wrap: wrap;
}
.btn.secondary{
    background: transparent;
    border: 1px solid rgba(65, 105, 225, 0.65);
    color: #c0ccee;
}
.btn.secondary:hover{
    background: rgba(65, 105, 225, 0.12);
    box-shadow: 0 0 20px rgba(65, 105, 225, 0.35);
}

.services{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    text-align: center;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.services::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--bg-color) 0%,
        transparent 35%
    );
    pointer-events: none;
    z-index: 2;
}
#matrix-canvas{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}
.services::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 60%,
        var(--bg-color) 100%
    );
    pointer-events: none;
    z-index: 2;
}
.services h2{
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 3;
}
.services-sub{
    font-size: 1.6rem;
    color: #aaa;
    margin-bottom: 5rem;
    position: relative;
    z-index: 3;
}
.services-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    position: relative;
    z-index: 3;
}
.service-card{
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid var(--main-color);
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    width: 32rem;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: 0.3s ease-in-out;
}
.service-card:hover{
    background: rgba(65,105,225,0.12);
    box-shadow: 0 0 25px var(--main-color);
    transform: translateY(-6px);
}
.service-card i{
    font-size: 5rem;
    color: var(--main-color);
}
.service-card h3{
    font-size: 2.2rem;
    font-weight: 700;
}
.service-card p{
    font-size: 1.5rem;
    line-height: 1.8;
    color: #ccc;
}

/* ── Section Divider ── */
.section-divider{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0 15%;
    position: relative;
    z-index: 2;
}
.divider-line{
    flex: 1;
    height: 2px;
    background: linear-gradient(270deg, transparent, var(--main-color), #8ecbff, transparent);
}
.divider-icon{
    font-size: 3.5rem;
    color: var(--main-color);
    animation: pulse-icon 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px var(--main-color));
}
@keyframes pulse-icon{
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* ── Projects Section ── */
.projects{
    text-align: center;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.projects::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        var(--bg-color) 100%
    );
    pointer-events: none;
    z-index: 1;
}
.projects h2{
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    position: relative;
    z-index: 3;
}
.projects-logo{
    width: min(72rem, 92vw);
    height: auto;
    display: block;
    margin: 0 auto 0.6rem;
    filter: drop-shadow(0 0 18px rgba(65, 105, 225, 0.22));
}
.projects-sub{
    font-size: 1.6rem;
    color: #aaa;
    margin-bottom: 2.4rem;
    position: relative;
    z-index: 3;
}
.projects-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 3;
}
.work-card {
    position: relative;
    padding: 50px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,162,255,0.2);
    box-shadow:
        0 0 60px rgba(0,162,255,0.15),
        inset 0 0 30px rgba(255,255,255,0.03);
    text-align: center;
    overflow: hidden;
    transition: 0.4s ease;
}
.work-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 0 80px rgba(0,162,255,0.25),
        inset 0 0 40px rgba(255,255,255,0.05);
}
.work-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(0,162,255,0.2),
        transparent
    );
    animation: shine 6s infinite;
}
.work-card h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.work-card h2 span {
    background: linear-gradient(90deg, #7a00ff, #00a2ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.work-subtext {
    color: #9dbcd6;
    font-size: 15px;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}
.work-tags {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.work-tags span {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    color: #cfe9ff;
    border: 1px solid rgba(0,162,255,0.3);
    background: rgba(0,162,255,0.08);
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 120%; }
}
.project-card{
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid var(--main-color);
    border-radius: 1.5rem;
    width: 36rem;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}
.project-card:hover{
    box-shadow: 0 0 25px var(--main-color);
    transform: translateY(-6px);
}
.project-img-wrap{
    width: 100%;
    height: 22rem;
    overflow: hidden;
}
.project-img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease-in-out;
}
.project-card:hover .project-img-wrap img{
    transform: scale(1.05);
}
.project-info{
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}
.project-info h3{
    font-size: 2.2rem;
    font-weight: 700;
}
.project-info p{
    font-size: 1.5rem;
    line-height: 1.8;
    color: #ccc;
}
.project-links{
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

/* ── Contact Section ── */
.contact{
    text-align: center;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.contact-binary-canvas{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.22;
    pointer-events: none;
}
.contact::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(2, 8, 23, 0.28) 0%,
        transparent 80%,
        var(--bg-color) 100%
    );
    pointer-events: none;
    z-index: 2;
}
.contact h2{
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 4;
}
.contact-sub{
    font-size: 1.6rem;
    color: #aaa;
    margin-bottom: 4rem;
    position: relative;
    z-index: 4;
}
.contact-form{
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 4;
}
.form-row{
    display: flex;
    gap: 2rem;
}
.form-group{
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}
.form-group.full-width{
    width: 100%;
}
.form-group label{
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
    color: var(--text-color);
}
.form-group input,
.form-group select,
.form-group textarea{
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(65,105,225,0.4);
    border-radius: 0.8rem;
    padding: 1.2rem 1.6rem;
    font-size: 1.5rem;
    color: var(--text-color);
    font-family: "poppins", sans-serif;
    transition: 0.3s ease-in-out;
    outline: none;
    width: 100%;
}
.form-group select option{
    background: #111;
    color: var(--text-color);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color: var(--main-color);
    box-shadow: 0 0 10px rgba(65,105,225,0.4);
}
.form-group textarea{
    resize: vertical;
    min-height: 15rem;
}
.contact-form .btn{
    align-self: center;
    padding: 1.2rem 4rem;
    font-size: 1.8rem;
}
.form-status{
    font-size: 1.6rem;
    margin-top: 1rem;
    font-weight: 500;
}

/* ── Mobile Navbar ── */
#menu-icon {
    z-index: 1001;
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: inline-flex;
  }

  .gradient-btn {
    display: none;
  }

  .navbar {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.97);
        display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
    z-index: 1000;
    border-top: 2px solid #4169E1;
    box-shadow: 0 8px 32px rgba(65, 105, 225, 0.2);
        transition: max-height 0.35s ease, opacity 0.25s ease;
  }

  .navbar.open {
        max-height: 40rem;
        opacity: 1;
  }

  .navbar a {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(65, 105, 225, 0.1);
    transition: background 0.3s, color 0.3s;
  }

  .navbar a:last-child {
    border-bottom: none;
  }

  .navbar a:hover {
    background: rgba(65, 105, 225, 0.15);
    color: #4169E1;
  }
}

@media (min-width: 1025px) {
    .navbar {
        display: block;
        max-height: none;
        opacity: 1;
        overflow: visible;
        position: static;
        width: auto;
        background: transparent;
        border-top: none;
        box-shadow: none;
        padding: 0;
    }
}

/* ── Coming Soon Card ── */
.coming-soon-card {
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid var(--main-color);
    border-radius: 1.5rem;
    padding: 6rem 4rem;
    width: 50rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    animation: pulse-glow 3s ease-in-out infinite;
}

.coming-soon-card i {
    font-size: 7rem;
    color: var(--main-color);
    filter: drop-shadow(0 0 10px var(--main-color));
}

.coming-soon-card h3 {
    font-size: 3rem;
    font-weight: 700;
}

.coming-soon-card p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #ccc;
    max-width: 40rem;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(65, 105, 225, 0.3); }
    50% { box-shadow: 0 0 35px rgba(65, 105, 225, 0.7); }
}

/* ── Standalone About Page ── */
.about-page{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.about-panel{
    width: min(110rem, 95vw);
    max-height: 88vh;
    overflow-y: auto;
    border: 1px solid rgba(65, 105, 225, 0.5);
    background: rgba(0, 0, 0, 0.72);
    border-radius: 1.6rem;
    padding: 3rem;
    box-shadow: 0 0 30px rgba(65, 105, 225, 0.2);
    backdrop-filter: blur(8px);
}

.about-heading{
    position: sticky;
    top: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.75));
    padding-bottom: 1.6rem;
    margin-bottom: 2.6rem;
    transition: opacity 0.25s ease-in-out;
}

.about-heading h1{
    font-size: 4rem;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.about-page .home-content{
    margin-bottom: 2.8rem;
}

.about-content p{
    font-size: 1.6rem;
    line-height: 1.8;
    color: #d6d6d6;
    margin-bottom: 1.4rem;
}

.about-content a{
    color: #9ec0ff;
    transition: color 0.3s ease-in-out;
}

.about-content a:hover{
    color: #fff;
}

@media (max-width: 560px) {
    .about-panel{
        padding: 2rem;
    }

    .about-heading h1{
        font-size: 3rem;
    }
}

/* ── Pricing CTA Banner (index.html) ── */
.pricing-cta{
    padding: 4rem 15% 8rem;
    position: relative;
    z-index: 2;
}
.pricing-cta-inner{
    background: linear-gradient(135deg, rgba(10, 16, 40, 0.92), rgba(30, 15, 60, 0.88));
    border: 1px solid rgba(65, 105, 225, 0.4);
    border-radius: 2rem;
    padding: 5rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(3, 6, 16, 0.5), inset 0 0 0 1px rgba(255,255,255,0.04);
}
.pricing-cta-inner::before{
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 50rem;
    height: 50rem;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.15) 0%, transparent 65%);
    pointer-events: none;
}
.pricing-cta-tag{
    display: inline-block;
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: #ecf3ff;
    border: 1px solid rgba(135, 168, 255, 0.65);
    border-radius: 999px;
    padding: 0.9rem 1.7rem;
    margin-bottom: 2rem;
    background: linear-gradient(140deg, rgba(25, 41, 87, 0.78), rgba(40, 20, 74, 0.68));
    box-shadow: 0 0 16px rgba(67, 109, 223, 0.34);
}
.pricing-cta-inner h2{
    font-size: 4.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.4rem;
    line-height: 1.2;
}
.pricing-cta-inner .pricing-cta-desc{
    font-size: 1.7rem;
    color: #c0ccee;
    max-width: 60rem;
    margin: 0 auto 3rem;
    line-height: 1.8;
}
.pricing-cta-btn{
    font-size: 1.8rem;
    padding: 1.2rem 3.6rem;
    box-shadow: 0 8px 24px rgba(65, 105, 225, 0.4);
}

/* ── Pricing Page Body ── */
.pricing-page{
    background-color: #060a18;
}
body.pricing-page {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top, #0a0f2c, #020617);
    color: white;
    scroll-padding-top: 10rem;
}

body.pricing-page .pricing-section {
    text-align: center;
    padding: 140px 20px 80px;
}

body.pricing-page .pricing-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #4facfe, #8ecbff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.pricing-page .pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

body.pricing-page .card {
    position: relative;
    width: 280px;
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s ease;
    overflow: hidden;
}

body.pricing-page .card.is-visible {
    opacity: 1;
    transform: translateY(0);
    animation: pricing-card-float 6s ease-in-out infinite;
}

body.pricing-page .card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(120deg, #4facfe, #8ecbff, #38bdf8);
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
}

body.pricing-page .card:hover::before {
    opacity: 1;
    filter: blur(12px);
}

body.pricing-page .card:hover {
    animation: none;
    transform: translateY(-15px) scale(1.03);
}

body.pricing-page .card h2 {
    font-size: 1.6rem;
}

body.pricing-page .price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 15px 0;
    color: #38bdf8;
}

body.pricing-page .card ul {
    list-style: none;
    padding: 0;
}

body.pricing-page .card ul li {
    margin: 10px 0;
    opacity: 0.8;
}

body.pricing-page .card button,
body.pricing-page .card .pricing-cta {
    margin-top: 20px;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    background: linear-gradient(90deg, #4facfe, #8ecbff);
    color: white;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}

body.pricing-page .card button:hover,
body.pricing-page .card .pricing-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(100, 100, 255, 0.6);
}

body.pricing-page .modern {
    transform: translateY(40px) scale(1.05);
    border: 1px solid rgba(168,85,247,0.5);
}

body.pricing-page .modern.is-visible {
    transform: translateY(0) scale(1.05);
    animation: pricing-card-float-modern 6s ease-in-out infinite;
}

body.pricing-page .modern.is-visible:hover {
    animation: none;
    transform: translateY(-15px) scale(1.08);
}

@keyframes pricing-card-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes pricing-card-float-modern {
    0% { transform: translateY(0px) scale(1.05); }
    50% { transform: translateY(-8px) scale(1.05); }
    100% { transform: translateY(0px) scale(1.05); }
}

body.pricing-page .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(90deg, #4facfe, #8ecbff);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04rem;
    color: #fff;
    z-index: 2;
    box-shadow: 0 0 18px rgba(79, 172, 254, 0.35);
}

body.pricing-page .subscription {
    margin-top: 80px;
    font-size: 1.3rem;
    opacity: 0.9;
    width: min(64rem, 100%);
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 2.4rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    background: linear-gradient(145deg, rgba(79, 172, 254, 0.16), rgba(142, 203, 255, 0.08));
    border: 1px solid rgba(79, 172, 254, 0.32);
    box-shadow: 0 0 45px rgba(79, 172, 254, 0.22);
    position: relative;
    overflow: hidden;
}

body.pricing-page .pricing-info-row {
    width: min(110rem, 100%);
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem;
    align-items: stretch;
}

body.pricing-page .pricing-info-row .subscription {
    margin-top: 0;
}

body.pricing-page .subscription::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(120deg, rgba(79, 172, 254, 0.95), rgba(142, 203, 255, 0.82), rgba(56, 189, 248, 0.85));
    opacity: 0.28;
    filter: blur(14px);
    z-index: -1;
}

body.pricing-page .subscription h2 {
    font-size: 2rem;
    margin-bottom: 1.4rem;
    color: #dff4ff;
}

body.pricing-page .subscription p {
    margin: 0.6rem 0;
    color: #d8efff;
}

body.pricing-page .addons-panel p {
    line-height: 1.7;
}

@media (max-width: 780px) {
    body.pricing-page .pricing-info-row {
        grid-template-columns: 1fr;
    }
}

body.home-page .menu-toggle,
body.pricing-page .menu-toggle,
body.projects-page .menu-toggle,
body.about-page .menu-toggle,
body.onboarding-page .menu-toggle,
body.terms-page .menu-toggle,
body.privacy-page .menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    position: fixed;
    right: 20px;
    top: 20px;
    width: auto;
    height: auto;
    color: white;
    background: transparent;
    border: none;
    z-index: 1001;
}

body.home-page .side-nav,
body.pricing-page .side-nav,
body.projects-page .side-nav,
body.about-page .side-nav,
body.onboarding-page .side-nav,
body.terms-page .side-nav,
body.privacy-page .side-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: #020617;
    backdrop-filter: blur(20px);
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    transition: 0.4s ease;
    z-index: 1000;
}

body.home-page .side-nav.active,
body.pricing-page .side-nav.active,
body.projects-page .side-nav.active,
body.about-page .side-nav.active,
body.onboarding-page .side-nav.active,
body.terms-page .side-nav.active,
body.privacy-page .side-nav.active {
    right: 0;
}

body.home-page .side-nav a,
body.pricing-page .side-nav a,
body.projects-page .side-nav a,
body.about-page .side-nav a,
body.onboarding-page .side-nav a,
body.terms-page .side-nav a,
body.privacy-page .side-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

body.home-page .side-nav a:hover,
body.pricing-page .side-nav a:hover,
body.projects-page .side-nav a:hover,
body.about-page .side-nav a:hover,
body.onboarding-page .side-nav a:hover,
body.terms-page .side-nav a:hover,
body.privacy-page .side-nav a:hover {
    color: #4facfe;
}

body.home-page .close-btn,
body.pricing-page .close-btn,
body.projects-page .close-btn,
body.about-page .close-btn,
body.onboarding-page .close-btn,
body.terms-page .close-btn,
body.privacy-page .close-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

body.home-page .side-nav-logo,
body.pricing-page .side-nav-logo,
body.projects-page .side-nav-logo,
body.about-page .side-nav-logo,
body.onboarding-page .side-nav-logo,
body.terms-page .side-nav-logo,
body.privacy-page .side-nav-logo {
    margin-top: auto;
    padding: 2rem 2rem 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

body.home-page .side-nav-logo img,
body.pricing-page .side-nav-logo img,
body.projects-page .side-nav-logo img,
body.about-page .side-nav-logo img,
body.onboarding-page .side-nav-logo img,
body.terms-page .side-nav-logo img,
body.privacy-page .side-nav-logo img {
    width: min(18rem, 70%);
    height: auto;
    filter: drop-shadow(0 0 18px rgba(79, 172, 254, 0.32));
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 900px) {
    body.home-page .menu-toggle,
    body.pricing-page .menu-toggle,
    body.projects-page .menu-toggle,
    body.about-page .menu-toggle,
    body.onboarding-page .menu-toggle,
    body.terms-page .menu-toggle,
    body.privacy-page .menu-toggle {
        display: block;
    }

    body.home-page .navbar nav,
    body.pricing-page .navbar nav,
    body.projects-page .navbar nav,
    body.about-page .navbar nav,
    body.onboarding-page .navbar nav,
    body.terms-page .navbar nav,
    body.privacy-page .navbar nav {
        display: flex;
        justify-content: center;
        gap: 0;
        width: 100%;
    }

    body.home-page .navbar nav a:not(.nav-logo),
    body.pricing-page .navbar nav a:not(.nav-logo),
    body.projects-page .navbar nav a:not(.nav-logo),
    body.about-page .navbar nav a:not(.nav-logo),
    body.onboarding-page .navbar nav a:not(.nav-logo),
    body.terms-page .navbar nav a:not(.nav-logo),
    body.privacy-page .navbar nav a:not(.nav-logo) {
        display: none;
    }

    body.home-page .nav-logo,
    body.pricing-page .nav-logo,
    body.projects-page .nav-logo,
    body.about-page .nav-logo,
    body.onboarding-page .nav-logo,
    body.terms-page .nav-logo,
    body.privacy-page .nav-logo {
        display: inline-flex;
        margin: 0;
    }

    body.home-page .nav-logo img,
    body.pricing-page .nav-logo img,
    body.projects-page .nav-logo img,
    body.about-page .nav-logo img,
    body.onboarding-page .nav-logo img,
    body.terms-page .nav-logo img,
    body.privacy-page .nav-logo img {
        width: 96px;
    }
}

section.pricing-section,
section.pricing-addons-section,
section.pricing-subs-section,
section.pricing-bottom-cta,
section.pricing-faq-section {
    min-height: auto;
}

.pricing-home-section {
    padding-top: 7rem;
    padding-bottom: 5rem;
}

.pricing-home-intro {
    text-align: center;
    max-width: 72rem;
    margin: 0 auto 4rem;
}

.pricing-home-intro h2 {
    font-size: 4.4rem;
    font-weight: 700;
    color: #fff;
    margin: 1.4rem 0 1.2rem;
}

.pricing-home-intro p:last-child {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #b0bfdf;
}

.pricing-hero{
    min-height: 36vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16rem 15% 6rem;
    position: relative;
    z-index: 1;
}
.pricing-hero h1{
    font-size: 5.5rem;
    font-weight: 700;
    font-family: "Plaza", sans-serif;
    line-height: 1.2;
    margin: 1.5rem 0 1rem;
    text-shadow: 0 0 20px rgba(65, 105, 225, 0.4);
    color: #fff;
}
.pricing-hero p{
    font-size: 1.7rem;
    color: #b0bfdf;
    max-width: 62rem;
    line-height: 1.8;
}

/* ── Pricing Cards ── */
.pricing-section{
    padding: 4rem 15% 10rem;
    position: relative;
    z-index: 1;
}
.pricing-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: start;
}
.pricing-card{
    background: linear-gradient(155deg, rgba(8, 13, 33, 0.92), rgba(16, 12, 38, 0.86));
    border: 1px solid rgba(65, 105, 225, 0.35);
    border-radius: 2rem;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(65, 105, 225, 0.25);
}
.pricing-card.popular{
    border-color: var(--main-color);
    background: linear-gradient(155deg, rgba(12, 20, 55, 0.96), rgba(25, 12, 60, 0.9));
    box-shadow: 0 0 30px rgba(65, 105, 225, 0.25);
    transform: translateY(-1rem);
}
.pricing-card.popular:hover{
    transform: translateY(-1.8rem);
}
.pricing-badge{
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(270deg, #1e90ff 10%, #8ecbff 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    padding: 0.5rem 2rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(65, 105, 225, 0.5);
}
.pricing-tier{
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: var(--main-color);
}
.pricing-card-header h3{
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    margin-top: 0.4rem;
}
.pricing-price{
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}
.pricing-price .amount{
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-family: "Plaza", sans-serif;
}
.pricing-price .amount.custom-price{
    font-size: 3.2rem;
}
.pricing-price .suffix{
    font-size: 1.4rem;
    color: #8899bb;
    margin-bottom: 0.8rem;
}
.pricing-desc{
    font-size: 1.5rem;
    color: #8899bb;
    line-height: 1.7;
    border-top: 1px solid rgba(65, 105, 225, 0.2);
    padding-top: 1.8rem;
}
.pricing-features{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex: 1;
}
.pricing-features li{
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: #ccd8f5;
}
.pricing-features li i{
    font-size: 1.8rem;
    color: #67f08d;
    flex-shrink: 0;
}
.pricing-features li.faded{
    color: #556688;
}
.pricing-features li.faded i{
    color: #334;
}
.pricing-card .btn{
    margin-top: auto;
    text-align: center;
    display: block;
}
.pricing-card.popular .btn{
    box-shadow: 0 8px 22px rgba(65, 105, 225, 0.4);
}

/* ── Pricing FAQ ── */
.pricing-faq-section{
    padding: 0 15% 8rem;
    position: relative;
    z-index: 1;
}
.pricing-faq-section h2{
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
}
.faq-list{
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 72rem;
    margin: 0 auto;
}
.faq-item{
    background: linear-gradient(135deg, rgba(8, 13, 33, 0.9), rgba(14, 10, 32, 0.8));
    border: 1px solid rgba(65, 105, 225, 0.3);
    border-radius: 1.2rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.faq-item.open{
    border-color: var(--main-color);
}
.faq-question{
    width: 100%;
    background: transparent;
    border: none;
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: "poppins", sans-serif;
    text-align: left;
    gap: 1rem;
}
.faq-question i{
    font-size: 2rem;
    color: var(--main-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-item.open .faq-question i{
    transform: rotate(45deg);
}
.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    font-size: 1.5rem;
    color: #a0b0cc;
    line-height: 1.8;
    padding: 0 2.5rem;
}
.faq-item.open .faq-answer{
    max-height: 20rem;
    padding: 0 2.5rem 2rem;
}

/* ── Pricing Bottom CTA ── */
.pricing-bottom-cta{
    text-align: center;
    padding: 0 15% 10rem;
    position: relative;
    z-index: 1;
}
.pricing-bottom-cta-inner{
    background: linear-gradient(135deg, rgba(10, 16, 40, 0.9), rgba(30, 15, 60, 0.85));
    border: 1px solid rgba(65, 105, 225, 0.4);
    border-radius: 2rem;
    padding: 5rem 4rem;
}
.pricing-bottom-cta h2{
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.2rem;
}
.pricing-bottom-cta p{
    font-size: 1.6rem;
    color: #b0bfdf;
    max-width: 50rem;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* ── Pricing nav back link ── */
.pricing-nav-back{
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    color: #aac;
    transition: color 0.3s ease;
    padding: 1rem 0;
}
.pricing-nav-back:hover{
    color: #fff;
}

/* ── Add-ons Section ── */
.pricing-addons-section{
    padding: 0 15% 8rem;
    position: relative;
    z-index: 1;
    text-align: center;
}
.pricing-addons-section h2{
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.pricing-addons-sub{
    font-size: 1.6rem;
    color: #8899bb;
    margin-bottom: 4rem;
}
.addon-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    max-width: 90rem;
    margin: 0 auto;
}
.addon-card{
    background: linear-gradient(155deg, rgba(8, 13, 33, 0.92), rgba(16, 12, 38, 0.86));
    border: 1px solid rgba(65, 105, 225, 0.3);
    border-radius: 1.4rem;
    padding: 2.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}
.addon-card:hover{
    transform: translateY(-6px);
    border-color: var(--main-color);
    box-shadow: 0 12px 30px rgba(65, 105, 225, 0.22);
}
.addon-card i{
    font-size: 3rem;
    color: var(--main-color);
    filter: drop-shadow(0 0 6px rgba(65, 105, 225, 0.5));
}
.addon-card span{
    font-size: 1.4rem;
    font-weight: 600;
    color: #c8d8f5;
    background: none;
    -webkit-text-fill-color: unset;
}

/* ── Subscriptions Section ── */
.pricing-subs-section{
    padding: 0 15% 8rem;
    position: relative;
    z-index: 1;
    text-align: center;
}
.pricing-subs-section h2{
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.pricing-subs-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 72rem;
    margin: 0 auto;
    align-items: start;
}

/* ── Pricing Responsive ── */
@media (max-width: 980px) {
    .pricing-grid{
        grid-template-columns: 1fr;
        max-width: 42rem;
        margin: 0 auto;
    }
    .pricing-subs-grid{
        grid-template-columns: 1fr;
        max-width: 42rem;
    }
    .addon-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.popular{
        transform: none;
    }
    .pricing-card.popular:hover{
        transform: translateY(-8px);
    }
    .pricing-hero h1{
        font-size: 4rem;
    }
    .pricing-hero{
        padding: 14rem 8% 4rem;
    }
    .pricing-section,
    .pricing-addons-section,
    .pricing-subs-section,
    .pricing-faq-section,
    .pricing-bottom-cta{
        padding-left: 8%;
        padding-right: 8%;
    }
    .pricing-cta{
        padding-left: 6%;
        padding-right: 6%;
    }
    .pricing-cta-inner h2{
        font-size: 3.6rem;
    }
}
@media (max-width: 560px) {
    .pricing-cta{
        padding-left: 4%;
        padding-right: 4%;
    }
    .pricing-cta-inner{
        padding: 3.5rem 2rem;
    }
    .pricing-cta-inner h2{
        font-size: 3rem;
    }
    .pricing-hero h1{
        font-size: 3rem;
    }
    .addon-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Homepage Design Refresh */
body.home-page {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    background: #050505;
    color: white;
}

/* NAVBAR */
body.home-page .navbar,
body.pricing-page .navbar,
body.projects-page .navbar,
body.about-page .navbar,
body.onboarding-page .navbar,
body.terms-page .navbar,
body.privacy-page .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 14px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    z-index: 1000;
}

body.home-page .navbar nav,
body.pricing-page .navbar nav,
body.projects-page .navbar nav,
body.about-page .navbar nav,
body.onboarding-page .navbar nav,
body.terms-page .navbar nav,
body.privacy-page .navbar nav {
    width: min(1100px, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    flex-wrap: wrap;
}

body.home-page nav a,
body.pricing-page nav a,
body.projects-page nav a,
body.about-page nav a,
body.onboarding-page nav a,
body.terms-page nav a,
body.privacy-page nav a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-family: 'Bubble Boom', 'Poppins', sans-serif;
    transition: 0.3s;
}

body.home-page .nav-logo,
body.pricing-page .nav-logo,
body.projects-page .nav-logo,
body.about-page .nav-logo,
body.onboarding-page .nav-logo,
body.terms-page .nav-logo,
body.privacy-page .nav-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
}

body.home-page .nav-logo img,
body.pricing-page .nav-logo img,
body.projects-page .nav-logo img,
body.about-page .nav-logo img,
body.onboarding-page .nav-logo img,
body.terms-page .nav-logo img,
body.privacy-page .nav-logo img {
    width: 120px;
    display: block;
}

body.home-page nav a:hover,
body.pricing-page nav a:hover,
body.projects-page nav a:hover,
body.about-page nav a:hover,
body.onboarding-page nav a:hover,
body.terms-page nav a:hover,
body.privacy-page nav a:hover {
    color: #1e90ff;
}

body.home-page .nav-btn,
body.pricing-page .nav-btn,
body.projects-page .nav-btn,
body.about-page .nav-btn,
body.onboarding-page .nav-btn,
body.terms-page .nav-btn,
body.privacy-page .nav-btn {
    padding: 10px 18px;
    border-radius: 20px;
    background: linear-gradient(90deg, #1e90ff, #00c6ff);
    font-family: 'Poppins', sans-serif;
}

/* HERO SECTION */
body.home-page .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 80px;
    gap: 4rem;
    position: relative;
    background: radial-gradient(circle at 70% 50%, rgba(0, 162, 255, 0.15), transparent 40%),
                radial-gradient(circle at 30% 30%, rgba(0, 162, 255, 0.08), transparent 50%),
                #000;
}

body.home-page .hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* TEXT SIDE */
body.home-page .hero-text,
body.home-page .hero-content {
    max-width: 600px;
}

body.home-page .hero-text,
body.home-page .hero-content {
    animation: fadeUp 1s ease forwards;
}

body.home-page .hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffffff, #8ecbff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.home-page .hero h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #00a2ff;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
}

body.home-page .hero span {
    background: linear-gradient(90deg, #1e90ff, #00c6ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.about-page span,
body.projects-page .hero-text span,
body.pricing-page .pricing-section span:not(.badge) {
    background: linear-gradient(90deg, #1e90ff, #00c6ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.home-page .tagline {
    margin-top: 20px;
    color: #aaa;
    line-height: 1.6;
}

body.home-page .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    color: #cfe9ff;
    background: rgba(0, 162, 255, 0.08);
    border: 1px solid rgba(0, 162, 255, 0.25);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(0, 162, 255, 0.15),
                inset 0 0 10px rgba(255, 255, 255, 0.05);
    animation: fadeSlide 1s ease forwards;
}

body.home-page .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00a2ff;
    box-shadow: 0 0 10px #00a2ff;
}

body.home-page .hero-line {
    width: 60px;
    height: 2px;
    background: #00a2ff;
    margin: 20px 0;
}

body.home-page .hero-info-card {
    position: relative;
    overflow: hidden;
    animation: fadeSlide 1.2s ease forwards;
}

body.home-page .hero-info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #bcdcff;
    letter-spacing: 0.3px;
}

body.home-page .hero-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #00a2ff,
        transparent
    );
    animation: slideGlow 4s linear infinite;
}

/* BUTTONS */
body.home-page .cta-buttons {
    margin-top: 30px;
}

body.home-page .btn {
    display: inline-block;
    padding: 12px 25px;
    margin-right: 10px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

body.home-page .btn-primary,
body.home-page .primary {
    background: linear-gradient(135deg, #00a2ff, #0077ff);
    box-shadow: 0 0 20px rgba(0, 162, 255, 0.4);
    transition: all 0.3s ease;
}

body.home-page .btn-primary:hover,
body.home-page .primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(0, 162, 255, 0.6);
}

body.home-page .secondary {
    background: transparent;
    border: 1px solid #555;
    color: white;
}

/* HERO IMAGE */
body.home-page .hero-image {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(0, 162, 255, 0.35));
}

body.home-page .hero-image img {
    width: min(600px, 50vw);
}

/* FLOAT EFFECT */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideGlow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@media (max-width: 980px) {
    body.home-page .navbar,
    body.pricing-page .navbar,
    body.projects-page .navbar,
    body.about-page .navbar,
    body.onboarding-page .navbar,
    body.terms-page .navbar,
    body.privacy-page .navbar {
        padding: 16px 22px;
    }

    body.home-page .navbar nav,
    body.pricing-page .navbar nav,
    body.projects-page .navbar nav,
    body.about-page .navbar nav,
    body.onboarding-page .navbar nav,
    body.terms-page .navbar nav,
    body.privacy-page .navbar nav {
        gap: 1.2rem;
    }

    body.home-page nav a,
    body.pricing-page nav a,
    body.projects-page nav a,
    body.about-page nav a,
    body.onboarding-page nav a,
    body.terms-page nav a,
    body.privacy-page nav a {
        font-size: 13px;
    }

    body.home-page .nav-logo img,
    body.pricing-page .nav-logo img,
    body.projects-page .nav-logo img,
    body.about-page .nav-logo img,
    body.onboarding-page .nav-logo img,
    body.terms-page .nav-logo img,
    body.privacy-page .nav-logo img {
        width: 95px;
    }

    body.home-page .hero {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding: 130px 24px 80px;
    }

    body.home-page .hero h1 {
        font-size: 2.7rem;
    }

    body.home-page .hero-image img {
        width: min(504px, 88vw);
    }
}

body.projects-page section {
    min-height: auto;
}

body.projects-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(0, 162, 255, 0.12), transparent 36%), #02070f;
}

body.projects-page > *:not(#binaryCanvas) {
    position: relative;
    z-index: 1;
}

body.projects-page #binaryCanvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

body.projects-page .hero {
    min-height: auto;
    padding: 14rem 8% 2.4rem;
    align-items: flex-end;
}

body.projects-page .hero-text {
    max-width: none;
    animation: none;
}

body.projects-page .hero-text span {
    display: inline-block;
    font-size: clamp(3.6rem, 10vw, 8rem);
    line-height: 1;
}

body.projects-page .projects-intro {
    width: min(72rem, 88vw);
    margin: 0 auto 2.4rem;
    text-align: center;
}

body.projects-page .projects-intro p {
    font-size: 1.7rem;
    line-height: 1.7;
    color: #c5d2ef;
}

body.projects-page .button-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.4rem;
    padding: 0 8% 5rem;
}

body.projects-page .button-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 13rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    border: 1px solid rgba(65, 105, 225, 0.5);
    color: #fff;
    font-size: 1.5rem;
    background: rgba(10, 16, 38, 0.82);
    transition: 0.3s ease-in-out;
}

body.projects-page .button-row a:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(65, 105, 225, 0.28);
    background: rgba(65, 105, 225, 0.16);
}

@media (max-width: 560px) {
    body.projects-page .hero {
        padding-top: 12rem;
        padding-bottom: 2rem;
    }

    body.projects-page .projects-intro {
        width: min(92vw, 48rem);
        margin-bottom: 2rem;
    }

    body.projects-page .button-row {
        padding-bottom: 4rem;
    }

    body.projects-page .button-row a {
        width: 100%;
    }
}