﻿/* ============================================================
   style.css — رزا سافت
   تمام استایل‌های پروژه در یک فایل مجزا
   ============================================================ */

/* ====== ریست و متغیرها ====== */
:root {
    --bg: #f7f8fc;
    --white: #fff;
    --ink: #0b1020;
    --muted: #667085;
    --line: #e7e9f0;
    --violet: #7c3aed;
    --violet2: #a855f7;
    --cyan: #06b6d4;
    --green: #10b981;
    --dark: #0b1020;
    --shadow: 0 24px 70px rgba(16, 24, 40, .10);
    --radius: 20px;
    --transition: 0.28s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vazirmatn', Tahoma, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* ====== یوتیلیتی ====== */
.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.section {
    padding: 92px 0;
}

/* ====== هدر ====== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(231, 233, 240, .8);
}

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
    flex-shrink: 0;
}

    .logo span {
        color: var(--violet);
    }

.links {
    display: flex;
    align-items: center;
    gap: 23px;
    font-size: 14px;
    font-weight: 700;
    color: #475467;
}

    .links a:hover {
        color: var(--violet);
    }

.topbtn {
    padding: 9px 17px;
    border-radius: 12px;
    background: var(--ink);
    color: #fff !important;
    transition: background var(--transition), transform var(--transition);
}

    .topbtn:hover {
        background: #1a1f33 !important;
        transform: translateY(-2px);
    }

.menu {
    display: none;
    border: 0;
    background: none;
    font-size: 28px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    color: var(--ink);
    transition: background var(--transition);
}

    .menu:hover {
        background: rgba(0, 0, 0, .05);
    }

/* ====== هیرو ====== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    background: radial-gradient(circle at 10% 15%, rgba(168, 85, 247, .18), transparent 31%), radial-gradient(circle at 92% 5%, rgba(6, 182, 212, .15), transparent 30%), linear-gradient(180deg, #fff, #f7f8fc);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .35;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

    .orb.one {
        width: 190px;
        height: 190px;
        background: #c4b5fd;
        left: -70px;
        top: 120px;
    }

    .orb.two {
        width: 130px;
        height: 130px;
        background: #67e8f9;
        right: 12%;
        top: 70px;
        animation-delay: 1s;
    }

    .orb.three {
        width: 100px;
        height: 100px;
        background: #86efac;
        right: 42%;
        bottom: 10px;
        animation-delay: 2s;
    }

@keyframes float {
    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--violet);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: clamp(36px, 4.6vw, 62px);
    line-height: 1.22;
    letter-spacing: -2.5px;
    margin: 0 0 22px;
}

    .hero h1 strong {
        background: linear-gradient(90deg, var(--violet), var(--cyan));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 720px;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    padding: 13px 22px;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

    .btn:hover {
        transform: translateY(-3px);
    }

.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--violet), var(--violet2));
    box-shadow: 0 14px 35px rgba(124, 58, 237, .25);
}

    .primary:hover {
        box-shadow: 0 18px 45px rgba(124, 58, 237, .35);
    }

.darkbtn {
    background: var(--ink);
    color: #fff;
}

.ghost {
    background: #fff;
    border: 1px solid var(--line);
}

    .ghost:hover {
        border-color: var(--violet);
        color: var(--violet);
    }

.mini-stats {
    display: flex;
    gap: 34px;
    margin-top: 32px;
}

    .mini-stats b {
        font-size: 25px;
        display: block;
    }

    .mini-stats span {
        font-size: 12px;
        color: var(--muted);
    }

/* ====== داشبورد هوش مصنوعی ====== */
.ai-dashboard {
    background: linear-gradient(145deg, #0b1020, #151b2d);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 35px 90px rgba(11, 16, 32, .28);
    transform: perspective(1000px) rotateY(-3deg);
    transition: transform var(--transition);
}

    .ai-dashboard:hover {
        transform: perspective(1000px) rotateY(0deg);
    }

.dash-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #d0d5dd;
}

.ai-badge {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(168, 85, 247, .16);
    color: #d8b4fe;
    border: 1px solid rgba(168, 85, 247, .3);
    font-size: 10px;
    font-weight: 700;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 18px 0;
}

.kpi {
    padding: 15px;
    border-radius: 16px;
    background: #171d2c;
    border: 1px solid #2a3245;
    transition: border-color var(--transition);
}

    .kpi:hover {
        border-color: var(--violet);
    }

    .kpi small {
        display: block;
        color: #98a2b3;
        font-size: 10px;
    }

    .kpi b {
        display: block;
        font-size: 18px;
        margin: 4px 0;
    }

.up {
    color: #6ee7b7;
    font-size: 10px;
}

.ai-box {
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .22), rgba(6, 182, 212, .12));
    border: 1px solid rgba(167, 139, 250, .28);
    margin-bottom: 12px;
}

    .ai-box strong {
        display: block;
        color: #ddd6fe;
        font-size: 12px;
    }

    .ai-box p {
        margin: 5px 0 0;
        color: #e5e7eb;
        font-size: 12px;
    }

.chart {
    height: 125px;
    display: flex;
    align-items: end;
    gap: 8px;
    padding: 15px 5px;
    background: #111727;
    border-radius: 17px;
}

    .chart i {
        flex: 1;
        border-radius: 6px 6px 2px 2px;
        background: linear-gradient(180deg, #a855f7, #06b6d4);
        transition: height 0.5s ease;
        min-height: 8px;
    }

.dash-foot {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #aab2c0;
    font-size: 10px;
}

/* ====== سردر بخش‌ها ====== */
.head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px;
}

    .head h2 {
        font-size: clamp(28px, 3.3vw, 43px);
        line-height: 1.3;
        margin: 5px 0 10px;
    }

    .head p {
        color: var(--muted);
        margin: 0;
    }

.pill {
    display: inline-block;
    padding: 5px 11px;
    border-radius: 999px;
    background: #ede9fe;
    color: #6d28d9;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.3px;
}

/* ====== ویژگی‌ها ====== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.feature {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .feature::after {
        content: "";
        position: absolute;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: rgba(124, 58, 237, .06);
        left: -35px;
        bottom: -35px;
        pointer-events: none;
    }

    .feature:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow);
    }

    .feature .ico {
        font-size: 30px;
    }

    .feature h3 {
        font-size: 17px;
        margin: 9px 0 5px;
    }

    .feature p {
        font-size: 13px;
        color: var(--muted);
        margin: 0;
    }

/* ====== هوشمند (Smart) ====== */
.smart {
    background: #0b1020;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .smart::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(124, 58, 237, .12);
        filter: blur(50px);
        left: -180px;
        top: -120px;
        pointer-events: none;
    }

    .smart .head p {
        color: #98a2b3;
    }

.smart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
}

.smart-copy h2 {
    font-size: 40px;
    line-height: 1.35;
    margin: 0 0 15px;
}

.smart-copy p {
    color: #b8c0ce;
}

.smart-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 22px;
}

    .smart-list div {
        padding: 12px 14px;
        background: #151b2b;
        color:white;
        border: 1px solid #283145;
        border-radius: 13px;
        font-size: 13px;
        transition: border-color var(--transition);
    }

        .smart-list div:hover {
            border-color: var(--violet);
        }

.insight {
    background: #fff;
    color: var(--ink);
    border-radius: 25px;
    padding: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .18);
}

.insight-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.insight h3 {
    margin: 0;
}

.insight-tag {
    font-size: 10px;
    color: var(--green);
    font-weight: 900;
}

.insight-main {
    padding: 18px;
    margin: 16px 0;
    background: #f7f5ff;
    border: 1px solid #e9e2ff;
    border-radius: 17px;
}

    .insight-main b {
        display: block;
        color: #6d28d9;
    }

    .insight-main p {
        font-size: 12px;
        color: #667085;
        margin: 5px 0 0;
    }

.insight-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

    .insight-cards div {
        background: #f8fafc;
        border: 1px solid var(--line);
        padding: 12px;
        border-radius: 12px;
        font-size: 10px;
        text-align: center;
        transition: border-color var(--transition);
    }

        .insight-cards div:hover {
            border-color: var(--violet);
        }

    .insight-cards b {
        display: block;
        font-size: 13px;
    }

/* ====== اکوسیستم ====== */
.ecosystem {
    background: linear-gradient(135deg, #f5f3ff, #ecfeff);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.eco {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 21px;
    padding: 24px;
    transition: var(--transition);
}

    .eco:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .eco .num {
        font-size: 12px;
        color: var(--violet);
        font-weight: 900;
    }

    .eco h3 {
        margin: 8px 0;
    }

    .eco p {
        font-size: 13px;
        color: var(--muted);
    }

    .eco ul {
        padding: 0 18px;
        margin-bottom: 0;
        color: #475467;
        font-size: 13px;
    }

        .eco ul li {
            margin: 4px 0;
        }

/* ====== محصولات ====== */
.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.product {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 23px;
    transition: var(--transition);
}

    .product:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .product h3 {
        margin: 7px 0;
    }

    .product p {
        font-size: 13px;
        color: var(--muted);
        margin: 0;
    }

    .product b {
        color: var(--violet);
        font-size: 12px;
    }

/* ====== صنایع ====== */
.industries {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.industry {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    transition: var(--transition);
}

    .industry:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .industry .big {
        font-size: 35px;
    }

    .industry h3 {
        margin: 5px 0;
    }

    .industry p {
        font-size: 12px;
        color: var(--muted);
    }

/* ====== پلاس ====== */
.plus {
    background: linear-gradient(135deg, #f0fdf4, #f5f3ff);
}

.plus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.plus h2 {
    font-size: 42px;
    line-height: 1.3;
    margin: 7px 0 12px;
}

.plus p {
    color: var(--muted);
}

.plus-tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

    .plus-tools div {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 13px;
        font-weight: 700;
        font-size: 13px;
        transition: var(--transition);
    }

        .plus-tools div:hover {
            border-color: var(--violet);
            transform: translateX(-4px);
        }

/* ====== مالی ====== */
.finance {
    background: #fff;
}

.finance-box {
    background: linear-gradient(135deg, #0b1020, #151b2b);
    border-radius: 28px;
    color: #fff;
    padding: 45px;
}

    .finance-box h2 {
        font-size: 39px;
        line-height: 1.35;
        margin: 0 0 12px;
    }

    .finance-box > p {
        color: #aeb6c5;
        max-width: 800px;
    }

.finance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 25px;
}

    .finance-grid div {
        padding: 16px;
        background: #151b2b;
        border: 1px solid #293144;
        border-radius: 15px;
        transition: border-color var(--transition);
    }

        .finance-grid div:hover {
            border-color: var(--violet);
        }

    .finance-grid b {
        display: block;
    }

    .finance-grid span {
        font-size: 11px;
        color: #98a2b3;
    }

/* ====== مراحل ====== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 19px;
    padding: 23px;
    transition: var(--transition);
}

    .step:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .step span {
        color: var(--violet);
        font-weight: 900;
    }

    .step h3 {
        margin: 10px 0 5px;
    }

    .step p {
        font-size: 13px;
        color: var(--muted);
    }

/* ====== سوالات متداول ====== */
.faq {
    max-width: 880px;
    margin: 0 auto;
}

    .faq details {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 15px;
        margin: 9px 0;
        padding: 0 20px;
        transition: border-color var(--transition);
    }

        .faq details:hover {
            border-color: var(--violet);
        }

        .faq details[open] {
            border-color: var(--violet);
        }

    .faq summary {
        cursor: pointer;
        font-weight: 800;
        padding: 18px 0;
        list-style: none;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .faq summary::before {
            content: "▸";
            color: var(--violet);
            font-size: 18px;
            transition: transform 0.3s ease;
        }

    .faq details[open] summary::before {
        transform: rotate(90deg);
    }

    .faq summary::-webkit-details-marker {
        display: none;
    }

    .faq p {
        font-size: 13px;
        color: var(--muted);
        margin: 0;
        padding-bottom: 17px;
    }

/* ====== دمو ====== */
.demo {
    padding: 30px 0 90px;
}

.demo-box {
    background: linear-gradient(135deg, #111629, #25134d);
    border-radius: 29px;
    padding: 45px;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
    box-shadow: 0 25px 70px rgba(37, 19, 77, .2);
}

    .demo-box h2 {
        font-size: 38px;
        line-height: 1.35;
        margin: 0 0 10px;
    }

    .demo-box p {
        color: #b8c0ce;
    }

.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

    .form input {
        width: 100%;
        padding: 13px;
        border: 1px solid #394052;
        background: #202638;
        color: #fff;
        border-radius: 12px;
        font: inherit;
        outline: 0;
        transition: border-color var(--transition);
    }

        .form input::placeholder {
            color: #8892a8;
        }

        .form input:focus {
            border-color: #a855f7;
        }

    .form button,
    .form small {
        grid-column: 1 / -1;
    }

    .form small {
        color: #86efac;
        font-size: 11px;
        min-height: 20px;
    }

/* ====== فوتر ====== */
footer {
    border-top: 1px solid var(--line);
    padding: 48px 0 20px;
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

    .footer-grid p,
    .footer-grid a {
        font-size: 13px;
        color: var(--muted);
    }

    .footer-grid a {
        display: block;
        margin: 4px 0;
        transition: color var(--transition);
    }

        .footer-grid a:hover {
            color: var(--violet);
        }

    .footer-grid b {
        display: block;
        margin-bottom: 8px;
    }

.copy {
    text-align: center;
    border-top: 1px solid var(--line);
    margin-top: 28px;
    padding-top: 18px;
    font-size: 12px;
    color: #98a2b3;
}

/* ============================================================
   ====== ریسپانسیو ======
   ============================================================ */

/* تبلت و کوچکتر */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }

    .products {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries {
        grid-template-columns: repeat(3, 1fr);
    }

    .finance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 950px) {
    .hero-grid,
    .smart-grid,
    .plus-grid,
    .demo-box {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries {
        grid-template-columns: repeat(2, 1fr);
    }

    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .finance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .links {
        display: none;
        position: absolute;
        top: 76px;
        right: 4%;
        left: 4%;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 15px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    }

        .links a {
            padding: 10px 14px;
            border-radius: 10px;
            transition: background var(--transition);
        }

            .links a:hover {
                background: #f5f3ff;
            }

    .menu {
        display: block;
    }

    .ai-dashboard {
        transform: none;
    }

        .ai-dashboard:hover {
            transform: none;
        }

    .hero {
        padding: 60px 0 60px;
    }

    .section {
        padding: 60px 0;
    }
}



/* ============================================================
   ====== بخش اپلیکیشن و سفارش آنلاین ======
   ============================================================ */

.app-section {
    background: linear-gradient(135deg, #f5f3ff 0%, #ecfdf5 100%);
    padding: 80px 0 100px;
}

.app-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px;
}

    .app-header h2 {
        font-size: clamp(28px, 3.3vw, 43px);
        line-height: 1.3;
        margin: 8px 0 12px;
    }

    .app-header p {
        color: var(--muted);
        font-size: 17px;
        margin: 0;
    }

.app-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: center;
}

/* ====== گوشی آیفون ====== */
.app-phone {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.iphone-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: #1a1a2e;
    border-radius: 44px;
    padding: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), 0 0 0 2px #2a2a3e, inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.iphone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #0a0a1a;
    border-radius: 0 0 18px 18px;
    z-index: 5;
}

    .iphone-notch::after {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 10px;
        height: 10px;
        background: #1a1a3a;
        border-radius: 50%;
        box-shadow: 0 0 0 2px #2a2a4a;
    }

.iphone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: #f8f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.iphone-home {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: transparent;
}

.phone-label {
    margin-top: 24px;
    padding: 10px 28px;
    background: #fff;
    border-radius: 999px;
    border: 1px solid #e7e9f0;
    font-size: 14px;
    font-weight: 700;
    color: #7c3aed;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.08);
    white-space: nowrap;
}

/* ====== توضیحات ====== */
.app-info {
    flex: 1;
    max-width: 600px;
}

    .app-info h3 {
        font-size: 30px;
        line-height: 1.35;
        margin: 0 0 14px 0;
    }

.app-desc {
    font-size: 16px;
    color: #667085;
    line-height: 1.9;
    margin: 0 0 30px 0;
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid #e7e9f0;
    transition: all 0.28s ease;
}

    .app-item:hover {
        transform: translateX(-6px);
        border-color: #7c3aed;
        box-shadow: 0 12px 40px rgba(16, 24, 40, 0.08);
    }

.app-item-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ede9fe;
    border-radius: 12px;
    font-size: 22px;
}

.app-item-text {
    flex: 1;
}

    .app-item-text h4 {
        margin: 0 0 2px 0;
        font-size: 15px;
        font-weight: 700;
    }

    .app-item-text p {
        margin: 0;
        font-size: 13px;
        color: #667085;
        line-height: 1.6;
    }

/* ============================================================
   ====== ریسپانسیو ======
   ============================================================ */

@media (max-width: 1024px) {
    .app-wrapper {
        gap: 40px;
    }

    .app-phone {
        flex: 0 0 260px;
    }

    .iphone-frame {
        width: 240px;
        height: 480px;
        padding: 12px;
        border-radius: 38px;
    }

    .iphone-screen {
        border-radius: 28px;
    }

    .iphone-notch {
        width: 100px;
        height: 26px;
        top: 12px;
    }

    .iphone-home {
        width: 34px;
        height: 34px;
        bottom: 8px;
    }

    .app-info h3 {
        font-size: 26px;
    }
}

@media (max-width: 850px) {
    .app-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .app-phone {
        flex: 0 0 auto;
        order: -1;
    }

    .iphone-frame {
        width: 220px;
        height: 440px;
        padding: 10px;
        border-radius: 34px;
    }

    .iphone-screen {
        border-radius: 24px;
    }

    .iphone-notch {
        width: 90px;
        height: 22px;
        top: 10px;
    }

    .app-info {
        max-width: 100%;
    }

        .app-info h3 {
            font-size: 24px;
            text-align: center;
        }

    .app-desc {
        text-align: center;
        font-size: 15px;
    }

    .phone-label {
        font-size: 12px;
        padding: 8px 20px;
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    .app-section {
        padding: 50px 0 70px;
    }

    .app-header {
        margin-bottom: 40px;
    }

        .app-header p {
            font-size: 15px;
        }

    .iphone-frame {
        width: 180px;
        height: 360px;
        padding: 8px;
        border-radius: 28px;
    }

    .iphone-screen {
        border-radius: 20px;
    }

    .iphone-notch {
        width: 70px;
        height: 18px;
        top: 8px;
        border-radius: 0 0 12px 12px;
    }

        .iphone-notch::after {
            width: 6px;
            height: 6px;
            top: 5px;
        }

    .iphone-home {
        width: 28px;
        height: 28px;
        bottom: 6px;
    }

    .app-info h3 {
        font-size: 20px;
    }

    .app-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .app-item {
        padding: 12px 14px;
        gap: 12px;
    }

    .app-item-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
        border-radius: 10px;
    }

    .app-item-text h4 {
        font-size: 14px;
    }

    .app-item-text p {
        font-size: 12px;
    }

    .phone-label {
        font-size: 11px;
        padding: 6px 16px;
        margin-top: 18px;
    }
}

@media (max-width: 400px) {
    .iphone-frame {
        width: 150px;
        height: 300px;
        padding: 6px;
        border-radius: 22px;
    }

    .iphone-screen {
        border-radius: 16px;
    }

    .iphone-notch {
        width: 56px;
        height: 14px;
        top: 6px;
        border-radius: 0 0 8px 8px;
    }

        .iphone-notch::after {
            width: 5px;
            height: 5px;
            top: 3px;
        }

    .iphone-home {
        width: 22px;
        height: 22px;
        bottom: 4px;
    }

    .app-info h3 {
        font-size: 18px;
    }

    .app-desc {
        font-size: 13px;
    }

    .app-item {
        padding: 10px 12px;
        gap: 10px;
    }

    .app-item-icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
        border-radius: 8px;
    }

    .app-item-text h4 {
        font-size: 13px;
    }

    .app-item-text p {
        font-size: 11px;
    }

    .phone-label {
        font-size: 10px;
        padding: 5px 12px;
        margin-top: 14px;
    }
}


/* موبایل */
@media (max-width: 600px) {
    .feature-grid,
    .industries,
    .ecosystem-grid,
    .products,
    .steps,
    .finance-grid,
    .form,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .smart-list,
    .plus-tools,
    .insight-cards {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 45px;
        padding-bottom: 50px;
    }

        .hero h1 {
            font-size: 32px;
            letter-spacing: -1px;
        }

            .hero h1 br {
                display: none;
            }

    .section {
        padding: 50px 0;
    }

    .finance-box,
    .demo-box {
        padding: 24px;
        border-radius: 20px;
    }

        .smart-copy h2,
        .plus h2,
        .finance-box h2,
        .demo-box h2 {
            font-size: 28px;
        }

    .mini-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

        .mini-stats b {
            font-size: 20px;
        }

    .nav {
        height: 64px;
    }

    .logo {
        font-size: 22px;
    }

    .ai-dashboard {
        padding: 14px;
        border-radius: 20px;
    }

    .dash-grid {
        gap: 6px;
    }

    .kpi {
        padding: 10px;
    }

        .kpi b {
            font-size: 15px;
        }

    .chart {
        height: 80px;
        padding: 10px 4px;
        gap: 4px;
    }

    .footer-grid {
        gap: 24px;
    }

    .demo-box {
        gap: 24px;
    }

    .btn {
        padding: 11px 18px;
        font-size: 14px;
    }

    .actions {
        gap: 10px;
    }

    .head {
        margin-bottom: 30px;
    }

        .head h2 {
            font-size: 26px;
        }

    .plus-tools div {
        font-size: 12px;
        padding: 10px;
    }

    .finance-grid div {
        padding: 12px;
    }

    .step {
        padding: 18px;
    }

    .industry {
        padding: 16px;
    }

        .industry .big {
            font-size: 28px;
        }

    .eco {
        padding: 18px;
    }

    .product {
        padding: 18px;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 26px;
    }

    .lead {
        font-size: 15px;
    }

    .container {
        width: 94%;
    }

    .form input {
        padding: 10px;
        font-size: 14px;
    }
}
