@font-face {
	font-family: IRANSans;
	font-style: normal;
	font-weight: 900;
	src: url('fonts/IRANSansWeb.eot');
	src: url('fonts/IRANSansWeb.eot?#iefix') format('embedded-opentype'),
		 url('fonts/IRANSansWeb.woff2') format('woff2'),
		 url('fonts/IRANSansWeb.woff') format('woff'),
		 url('fonts/IRANSansWeb.ttf') format('truetype');
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    --primary: #8b5cf6;
    --primary-light: #a855f7;

    --bg: #09090b;
    --bg-secondary: #111827;

    --white: #ffffff;
    --text-muted: #9ca3af;

    --border: rgba(255,255,255,.08);

}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {

    font-family: IRANSans;

    background: var(--bg);

    color: var(--white);

    overflow-x: clip;

    min-height: 100vh;

    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {

    width: 100%;
    max-width: 1300px;

    margin: auto;

    padding: 0 24px;
}

/* ========================= */
/* Background Glow */
/* ========================= */

.bg-glow {

    position: fixed;

    border-radius: 50%;

    filter: blur(140px);

    z-index: -1;
}

.bg-glow-1 {

    width: 500px;
    height: 500px;

    background: rgba(139, 92, 246, .25);

    top: -150px;
    right: -150px;
}

.bg-glow-2 {

    width: 450px;
    height: 450px;

    background: rgba(168, 85, 247, .18);

    bottom: -150px;
    left: -150px;
}

/* ========================= */
/* Header */
/* ========================= */

@media(max-width: 768px){

    .navbar{
        position: absolute;
        top: 85px;
        right: 0;
        left: 0;

        flex-direction: column;

        background: rgba(17,24,39,.98);

        padding: 20px;

        border-radius: 18px;

        display: none;
    }

    .navbar.active{
        display: flex;
    }

}

.header {

    position: fixed;

    top: 20px;

    width: 100%;

    z-index: 1000;
}

.header .container {

    height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    backdrop-filter: blur(18px);

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.05);

    border-radius: 18px;
}

.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 1.2rem;

    font-weight: 700;
}

.logo-icon {

    font-size: 1.5rem;

    filter: drop-shadow(0 0 12px var(--primary));
}
.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px var(--primary));
}



.navbar {

    display: flex;

    align-items: center;

    gap: 35px;
}

.navbar a {

    color: var(--text-muted);

    transition: .3s;
}

.navbar a:hover {

    color: var(--white);

    text-shadow: 0 0 15px var(--primary);
}

.menu-btn {

    display: none;

    background: transparent;

    border: none;

    color: white;

    font-size: 1.8rem;

    cursor: pointer;
}

/* ========================= */
/* Hero */
/* ========================= */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding-top: 120px;
}

.hero-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 80px;
}

/* ========================= */
/* Text */
/* ========================= */

.hero-text {

    flex: 1;
}

.hero-badge {

    display: inline-flex;

    align-items: center;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(139,92,246,.15);

    border: 1px solid rgba(139,92,246,.3);

    color: #d8b4fe;

    margin-bottom: 25px;
}

.hero-text h1 {

    font-size: 4rem;

    line-height: 1.3;

    margin-bottom: 20px;

    font-weight: 800;
}

.hero-text p {

    max-width: 550px;

    line-height: 2;

    color: var(--text-muted);

    font-size: 1.05rem;

    margin-bottom: 40px;
}

.hero-actions {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.btn {

    padding: 15px 28px;

    border-radius: 14px;

    font-weight: 600;

    transition: .3s;
}

.btn-primary {

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    box-shadow:
            0 0 25px rgba(139,92,246,.5);
}

.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
            0 0 40px rgba(139,92,246,.7);
}

.btn-secondary {

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.03);
}

.btn-secondary:hover {

    border-color: var(--primary);

    box-shadow:
            0 0 20px rgba(139,92,246,.4);
}

/* ========================= */
/* Phone */
/* ========================= */

.hero-phone {

    flex: 1;

    display: flex;

    justify-content: center;

    position: relative;
}

.phone-frame {

    width: 320px;

    height: 650px;

    background: #000;

    border-radius: 42px;

    padding: 12px;

    position: relative;

    border: 2px solid rgba(255,255,255,.08);

    box-shadow:
        0 0 50px rgba(139,92,246,.25),
        0 0 120px rgba(139,92,246,.15);
}

.phone-notch {

    position: absolute;

    top: 12px;

    left: 50%;

    transform: translateX(-50%);

    width: 120px;

    height: 24px;

    background: #000;

    border-radius: 20px;

    z-index: 10;
}

.phone-slider {

    width: 100%;

    height: 100%;

    overflow: hidden;

    border-radius: 32px;

    position: relative;
}
.phone-slider img {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    background: #000;

    opacity: 0;

    transition: 1s;
}

.phone-slider img.active {

    opacity: 1;
}

/* ========================= */
/* Audio Waves */
/* ========================= */

.wave {

    position: absolute;

    border-radius: 50%;

    border: 2px solid rgba(139,92,246,.4);

    animation: pulse 3s infinite;
}

.wave-1 {

    width: 430px;
    height: 430px;
}

.wave-2 {

    width: 550px;
    height: 550px;

    animation-delay: 1.2s;
}

@keyframes pulse {

    0% {

        transform: scale(.8);

        opacity: .8;
    }

    100% {

        transform: scale(1.3);

        opacity: 0;
    }
}

/* ========================= */
/* Mobile */
/* ========================= */

@media(max-width: 992px){

    .hero-content{

        flex-direction: column-reverse;

        text-align: center;
    }

    .hero-text p{

        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions{

        justify-content: center;
    }

    .hero-text h1{

        font-size: 3rem;
    }

}

@media(max-width: 768px){

    .navbar{

        display: none;
    }

    .menu-btn{

        display: block;
    }

    .phone-frame{

        width: 270px;
        height: 550px;
    }

    .hero-text h1{

        font-size: 2.2rem;
    }

    .wave-1{

        width: 320px;
        height: 320px;
    }

    .wave-2{

        width: 420px;
        height: 420px;
    }

}

.download {
    padding: 120px 0;
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.download-content p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn {
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 600;
    transition: .3s;
    border: 1px solid rgba(255,255,255,.08);
}

.download-btn.direct {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 0 25px rgba(139,92,246,.4);
}

.download-btn.direct:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 45px rgba(139,92,246,.6);
}

.download-btn.bazaar {
    background: rgba(255,255,255,.03);
}

.download-btn.bazaar:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(139,92,246,.3);
}

.social-contact {
    padding: 120px 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: start;
}

.social h2,
.about-contact h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.social a {
    display: block;
    margin-bottom: 15px;
    color: var(--text-muted);
    transition: .3s;
}

.social a:hover {
    color: var(--white);
    text-shadow: 0 0 15px var(--primary);
    transform: translateX(-5px);
}

.about-contact p {
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 25px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    margin-bottom: 10px;
    color: var(--text-muted);

}

.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.06);
    color: var(--text-muted);
}

@media(max-width: 768px){

    .social-grid{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social a{
        display: inline-block;
        margin: 8px 10px;
    }
}

.features {
    padding: 120px 0;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

/* 👇 مهم‌ترین تغییر اینجاست */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* کارت‌ها */
.feature-card {
    background: rgba(255,255,255,.02);

    border: 1px solid rgba(139,92,246,.25);
    border-radius: 18px;

    padding: 40px 25px;

    transition: .3s;

    position: relative;

    overflow: hidden;
}

/* glow دور کارت */
.feature-card::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: 18px;

    border: 1px solid transparent;

    background: linear-gradient(
        135deg,
        rgba(139,92,246,.35),
        transparent,
        rgba(168,85,247,.2)
    );

    opacity: 0;
    transition: .3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(139,92,246,.2);
    border-color: rgba(139,92,246,.6);
}

/* متن */
.feature-card h3 {
    margin-top: 15px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
}
@media(max-width: 992px){
    .features-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .features-grid{
        grid-template-columns: 1fr;
    }
}

.feature-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 15px;
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.download-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.social a,
.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}