/* =============================================
   استایل‌های اصلی صفحه CRO
   ============================================= */
.uw-cro-page {
    --uw-bg: #f7f9fc;
    --uw-dark: #101828;
    --uw-text: #344054;
    --uw-muted: #667085;
    --uw-border: #e4e7ec;
    --uw-primary: #635bff;
    --uw-primary-dark: #5148e5;
    --uw-white: #ffffff;
    --uw-success: #12b76a;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--uw-text);
    line-height: 1.7;
    background: #fff;
}

.uw-cro-page * {
    box-sizing: border-box;
}

.uw-cro-page a {
    color: inherit;
    text-decoration: none;
}

.uw-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.uw-section {
    padding: 90px 0;
}

.uw-section-light {
    background: var(--uw-bg);
}

.uw-section-dark {
    background: var(--uw-dark);
    color: #fff;
}

.uw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border: 1px solid #d9d6fe;
    background: #f4f3ff;
    color: #5148e5;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 20px;
}

.uw-hero {
    padding: 100px 0 80px;
    background:
        radial-gradient(circle at 80% 10%, rgba(99,91,255,.13), transparent 30%),
        radial-gradient(circle at 10% 30%, rgba(18,183,106,.08), transparent 25%),
        #fff;
}

.uw-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 70px;
    align-items: center;
}

.uw-hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -.045em;
    color: var(--uw-dark);
    margin: 0 0 25px;
    font-weight: 800;
}

.uw-hero h1 span {
    color: var(--uw-primary);
}

.uw-hero-lead {
    font-size: 20px;
    line-height: 1.65;
    color: var(--uw-text);
    max-width: 700px;
    margin-bottom: 30px;
}

.uw-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.uw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 23px;
    border-radius: 10px;
    font-weight: 750;
    font-size: 15px;
    transition: .2s ease;
}

.uw-btn-primary {
    background: var(--uw-primary);
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(99,91,255,.2);
}

.uw-btn-primary:hover {
    background: var(--uw-primary-dark);
    transform: translateY(-2px);
}

.uw-btn-secondary {
    background: #fff;
    border: 1px solid var(--uw-border);
    color: var(--uw-dark) !important;
}

.uw-btn-secondary:hover {
    border-color: #b8b3ff;
}

.uw-hero-note {
    font-size: 13px;
    color: var(--uw-muted);
}

.uw-hero-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--uw-border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 25px 70px rgba(16,24,40,.10);
}

.uw-funnel-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.uw-funnel-title strong {
    color: var(--uw-dark);
}

.uw-funnel-metric {
    color: var(--uw-success);
    font-weight: 800;
}

.uw-funnel-step {
    padding: 17px 18px;
    border: 1px solid var(--uw-border);
    border-radius: 12px;
    margin-bottom: 10px;
    background: #fff;
}

.uw-funnel-step strong {
    display: block;
    color: var(--uw-dark);
}

.uw-funnel-step small {
    color: var(--uw-muted);
}

.uw-funnel-arrow {
    text-align: center;
    color: #98a2b3;
    font-size: 12px;
    margin: -3px 0;
}

.uw-trust-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin-top: 30px;
}

.uw-trust-item {
    padding: 13px;
    text-align: center;
    border: 1px solid var(--uw-border);
    border-radius: 10px;
    background: rgba(255,255,255,.8);
    font-size: 13px;
    font-weight: 650;
    color: var(--uw-dark);
}

.uw-center {
    text-align: center;
}

.uw-section h2 {
    color: var(--uw-dark);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -.035em;
    margin: 0 0 20px;
}

.uw-section-dark h2 {
    color: #fff;
}

.uw-section-intro {
    max-width: 760px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: var(--uw-muted);
}

.uw-section-dark .uw-section-intro {
    color: #cbd5e1;
}

.uw-grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.uw-grid-2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
}

.uw-card {
    background: #fff;
    border: 1px solid var(--uw-border);
    border-radius: 17px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.uw-card h3 {
    color: var(--uw-dark);
    font-size: 20px;
    margin: 0 0 10px;
}

.uw-card p {
    color: var(--uw-muted);
    margin: 0;
    flex: 1;
}

.uw-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f3ff;
    color: var(--uw-primary);
    border-radius: 12px;
    font-size: 21px;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.uw-problem {
    position: relative;
}

.uw-problem-number {
    font-size: 12px;
    font-weight: 800;
    color: var(--uw-primary);
    margin-bottom: 10px;
}

.uw-feature {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 75px;
}

.uw-feature:last-child {
    margin-bottom: 0;
}

.uw-feature-reverse {
    grid-template-columns: 1.2fr .8fr;
}

.uw-feature-visual {
    background: linear-gradient(145deg,#f8f9fc,#eef0ff);
    border: 1px solid var(--uw-border);
    border-radius: 22px;
    padding: 30px;
    min-height: 280px;
}

.uw-feature-visual-inner {
    background: #fff;
    border: 1px solid var(--uw-border);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 15px 35px rgba(16,24,40,.07);
}

.uw-feature h3 {
    font-size: 29px;
    line-height: 1.25;
    color: var(--uw-dark);
    margin: 0 0 15px;
}

.uw-feature p {
    color: var(--uw-muted);
}

.uw-list {
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.uw-list li {
    position: relative;
    padding-left: 28px;
    margin: 9px 0;
    color: var(--uw-text);
}

.uw-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--uw-success);
    font-weight: 800;
}

.uw-process {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 12px;
}

.uw-process-item {
    position: relative;
    background: #fff;
    border: 1px solid var(--uw-border);
    padding: 24px 18px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.uw-process-number {
    color: var(--uw-primary);
    font-weight: 850;
    font-size: 13px;
    margin-bottom: 12px;
}

.uw-process-item h3 {
    color: var(--uw-dark);
    font-size: 17px;
    margin: 0 0 8px;
}

.uw-process-item p {
    color: var(--uw-muted);
    font-size: 14px;
    margin: 0;
    flex: 1;
}

.uw-score {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.uw-score-box {
    padding: 35px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--uw-border);
    display: flex;
    flex-direction: column;
}

.uw-score-box h3 {
    margin-top: 0;
    color: var(--uw-dark);
}

.uw-score-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.uw-score-list li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #eaecf0;
}

.uw-score-list li:last-child {
    border-bottom: 0;
}

.uw-pill {
    padding: 4px 9px;
    border-radius: 99px;
    background: #ecfdf3;
    color: #027a48;
    font-size: 12px;
    font-weight: 700;
}

.uw-link-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.uw-link-card {
    display: block;
    background: #fff;
    border: 1px solid var(--uw-border);
    border-radius: 16px;
    padding: 25px;
    transition: .2s ease;
    height: 100%;
}

.uw-link-card:hover {
    transform: translateY(-3px);
    border-color: #c5c1ff;
}

.uw-link-card strong {
    display: block;
    color: var(--uw-dark);
    font-size: 18px;
    margin-bottom: 8px;
}

.uw-link-card span {
    color: var(--uw-muted);
    font-size: 14px;
}

.uw-cta {
    padding: 85px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(99,91,255,.22), transparent 40%),
        #101828;
    color: #fff;
    text-align: center;
}

.uw-cta h2 {
    color: #fff;
    max-width: 800px;
    margin: 0 auto 18px;
}

.uw-cta p {
    color: #d0d5dd;
    max-width: 680px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.uw-faq {
    max-width: 850px;
    margin: 0 auto;
}

.uw-faq details {
    border-bottom: 1px solid var(--uw-border);
    padding: 22px 0;
}

.uw-faq summary {
    cursor: pointer;
    font-weight: 750;
    color: var(--uw-dark);
    font-size: 17px;
}

.uw-faq details p {
    color: var(--uw-muted);
    margin: 15px 0 0;
}

.uw-form-box {
    max-width: 820px;
    margin: 40px auto 0;
    padding: 35px;
    background: #fff;
    border: 1px solid var(--uw-border);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(16,24,40,.08);
}

/* =============================================
   افکت اسکرول (Fade-Up)
   ============================================= */
.uw-cro-page .animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.3, 1),
                transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.uw-cro-page .animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* تاخیرهای پله‌ای برای المان‌های مختلف */
.uw-cro-page .uw-grid-3 .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.uw-cro-page .uw-grid-3 .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.uw-cro-page .uw-grid-3 .animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.uw-cro-page .uw-grid-3 .animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.uw-cro-page .uw-grid-3 .animate-on-scroll:nth-child(6) { transition-delay: 0.40s; }

.uw-cro-page .uw-process .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.uw-cro-page .uw-process .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.uw-cro-page .uw-process .animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.uw-cro-page .uw-process .animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }

.uw-cro-page .uw-score .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.uw-cro-page .uw-link-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.10s; }
.uw-cro-page .uw-link-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.20s; }

/* =============================================
   ریسپانسیو
   ============================================= */
@media (max-width: 900px) {
    .uw-hero-grid,
    .uw-feature,
    .uw-feature-reverse,
    .uw-score {
        grid-template-columns: 1fr;
    }

    .uw-grid-3,
    .uw-link-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .uw-process {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 600px) {
    .uw-container {
        width: min(100% - 28px, 1180px);
    }

    .uw-section {
        padding: 65px 0;
    }

    .uw-hero {
        padding: 65px 0 55px;
    }

    .uw-grid-3,
    .uw-grid-2,
    .uw-link-grid,
    .uw-process,
    .uw-trust-row {
        grid-template-columns: 1fr;
    }

    .uw-hero-actions {
        flex-direction: column;
    }

    .uw-btn {
        width: 100%;
    }

    .uw-feature {
        gap: 30px;
        margin-bottom: 55px;
    }

    .uw-form-box {
        padding: 22px;
    }

    .uw-hero-card {
        padding: 20px;
    }

    .uw-funnel-step {
        padding: 12px 14px;
    }
}