/* فراخوانی فونت وزیرمتن و آیکون‌ها */
    @import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.0.0/Vazirmatn-font-face.css');
    @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

    /* =====================================================================
       پالت رنگی برند - همه‌جا از همین متغیرها استفاده می‌شود، پس اگر یک
       روز خواستی رنگ اصلی را عوض کنی، فقط همین چند خط کافی است.
       ===================================================================== */
    .nobat-landing {
        --n-teal: #0B8577;
        --n-teal-light: #0D9488;
        --n-teal-pale: #E6F5F3;
        --n-gold: #D9A441;
        --n-gold-light: #F3D9A0;
        --n-ink: #0F172A;
        --n-ink-soft: #475569;
        --n-ink-faint: #64748B;
        --n-line: #E2E8F0;
        --n-bg: #F8FAFC;
        --n-cream: #FFFBF3;
        --n-shadow: 0 20px 45px -20px rgba(15, 23, 42, 0.18);
    }
    
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* اسکرول نرم برای کل صفحه */
    html {
        scroll-behavior: smooth;
    }

    @media (prefers-reduced-motion: reduce) {
        html { scroll-behavior: auto; }
    }

    /* جلوگیری از افتادن هدر روی سکشن‌ها هنگام کلیک روی منو */
    .n-hero, .n-how, .n-features, .n-pricing, .n-about, .n-faq, .n-contact {
        scroll-margin-top: 90px;
    }

    /* استایل‌های پایه */
    .nobat-landing {
        font-family: 'Vazirmatn', sans-serif;
        color: var(--n-ink);
        background-color: var(--n-bg);
        line-height: 1.6;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .nobat-landing * {
        box-sizing: inherit;
        text-decoration: none;
        list-style: none;
    }

    .n-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .n-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--n-teal);
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 0.03em;
        margin-bottom: 14px;
    }

    .n-eyebrow::before {
        content: '';
        width: 24px;
        height: 2px;
        background: var(--n-gold);
        border-radius: 2px;
    }

    /* هدر (Header) */
    .n-header {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        padding: 14px 0;
        transition: box-shadow .3s, padding .3s;
    }

    .n-header-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .n-logo-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .n-logo-img {
        max-height: 40px;
        width: auto;
    }

    .n-logo a {
        font-size: 24px;
        font-weight: 800;
        color: var(--n-ink);
    }

    .n-logo span {
        color: var(--n-teal);
    }

    .n-nav {
        display: flex;
        gap: 28px;
        margin: 0;
        padding: 0;
    }

    .n-nav a {
        position: relative;
        color: #334155;
        font-weight: 500;
        font-size: 15px;
        transition: color 0.3s;
        padding: 4px 0;
    }

    .n-nav a::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: var(--n-teal);
        transition: width .25s ease;
        border-radius: 2px;
    }

    .n-nav a:hover {
        color: var(--n-teal);
    }

    .n-nav a:hover::after {
        width: 100%;
    }

    .n-header-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .n-phone-link {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--n-ink);
        font-weight: 700;
        font-size: 16px;
        transition: color 0.3s;
    }

    .n-phone-link:hover {
        color: var(--n-teal);
    }

    .n-phone-link i {
        color: var(--n-teal);
        font-size: 18px;
    }

    .n-btn-primary {
        background: var(--n-teal);
        color: #fff;
        padding: 11px 26px;
        border-radius: 10px;
        font-weight: 700;
        font-family: inherit;
        font-size: 15px;
        border: none;
        cursor: pointer;
        transition: background 0.3s, transform .2s, box-shadow .3s;
        display: inline-block;
        box-shadow: 0 10px 25px -10px rgba(11, 133, 119, 0.6);
    }

    .n-btn-primary:hover {
        background: #096b60;
        color: #fff;
        transform: translateY(-2px);
    }

    .n-btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--n-ink);
        padding: 11px 24px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 15px;
        border: 2px solid var(--n-line);
        transition: border-color .3s, color .3s;
    }

    .n-btn-ghost:hover {
        border-color: var(--n-teal);
        color: var(--n-teal);
    }

    /* منوی موبایل (همبرگری) */
    .n-nav-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 22px;
        color: var(--n-ink);
        cursor: pointer;
        padding: 6px;
    }

    .n-mobile-nav {
        display: none;
    }

    /* بخش قهرمان (Hero) */
    .n-hero {
        padding: 165px 0 100px;
        display: flex;
        align-items: center;
        gap: 50px;
        position: relative;
    }

    .n-hero::before {
        content: '';
        position: absolute;
        top: -80px;
        left: -120px;
        width: 420px;
        height: 420px;
        background: radial-gradient(circle, var(--n-teal-pale) 0%, rgba(230,245,243,0) 70%);
        z-index: -1;
        border-radius: 50%;
    }

    .n-hero-content {
        flex: 1;
    }

    .n-hero-content h1 {
        font-size: 44px;
        line-height: 1.35;
        margin-bottom: 22px;
        font-weight: 800;
        letter-spacing: -0.01em;
    }

    .n-hero-content h1 mark {
        background: none;
        color: var(--n-teal);
        position: relative;
    }

    .n-hero-content h1 mark::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: 2px;
        width: 100%;
        height: 10px;
        background: var(--n-gold-light);
        z-index: -1;
        border-radius: 4px;
    }

    .n-hero-content p {
        font-size: 18px;
        color: var(--n-ink-soft);
        margin-bottom: 32px;
        max-width: 520px;
    }

    .n-hero-ctas {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .n-trust-badges {
        margin-top: 28px;
        font-size: 14px;
        color: var(--n-ink-faint);
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
    }

    .n-trust-badges span {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .n-trust-badges i {
        color: #10B981;
    }

    /* موکاپ بصری هیرو - به‌جای یک عکس استوک نامرتبط، یک نمای انتزاعی از
       خودِ پنل رزرو (کارت بانکی + تقویم) که هویت بصری محصول را نشان می‌دهد */
    .n-hero-visual {
        flex: 1;
        position: relative;
        min-height: 420px;
    }

    .n-mock-card {
        position: absolute;
        background: #fff;
        border-radius: 18px;
        box-shadow: var(--n-shadow);
        padding: 22px;
        border: 1px solid var(--n-line);
    }

    .n-mock-calendar {
        width: 78%;
        top: 0;
        left: 8%;
        z-index: 2;
    }

    .n-mock-calendar__head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
        font-weight: 700;
        font-size: 14px;
        color: var(--n-ink);
    }

    .n-mock-calendar__head i {
        color: var(--n-teal);
        font-size: 12px;
    }

    .n-mock-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 6px;
    }

    .n-mock-grid span {
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1;
        border-radius: 8px;
        font-size: 11px;
        color: var(--n-ink-faint);
        background: var(--n-bg);
    }

    .n-mock-grid span.active {
        background: var(--n-teal);
        color: #fff;
        font-weight: 700;
    }

    .n-mock-grid span.busy {
        background: var(--n-gold-light);
        color: #8a6420;
    }

    .n-mock-card--sms {
        width: 62%;
        bottom: 30px;
        left: 0;
        z-index: 3;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 18px;
    }

    .n-mock-card--sms i {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: var(--n-teal-pale);
        color: var(--n-teal);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 16px;
    }

    .n-mock-card--sms strong {
        display: block;
        font-size: 13px;
        margin-bottom: 2px;
    }

    .n-mock-card--sms span {
        font-size: 12px;
        color: var(--n-ink-faint);
    }

    .n-mock-card--stat {
        width: 44%;
        top: 55%;
        right: 0;
        z-index: 4;
        text-align: center;
        padding: 16px;
    }

    .n-mock-card--stat b {
        display: block;
        font-size: 22px;
        color: var(--n-teal);
        font-weight: 800;
    }

    .n-mock-card--stat span {
        font-size: 11px;
        color: var(--n-ink-faint);
    }

    @keyframes nFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    .n-mock-card--sms, .n-mock-card--stat {
        animation: nFloat 5s ease-in-out infinite;
    }

    .n-mock-card--stat { animation-delay: .6s; }

    @media (prefers-reduced-motion: reduce) {
        .n-mock-card--sms, .n-mock-card--stat { animation: none; }
    }

    /* چطور کار می‌کند (How it works) */
    .n-how {
        padding: 90px 0;
        background: var(--n-cream);
    }

    .n-how-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 20px;
        position: relative;
    }

    .n-how-step {
        background: #fff;
        border-radius: 16px;
        padding: 30px 24px;
        border: 1px solid var(--n-line);
        position: relative;
        transition: all 0.3s;
    }
    
    .n-how-step:hover {
        transform: translateY(-6px);
        box-shadow: var(--n-shadow);
    }

    .n-how-step__num {
        position: absolute;
        top: -16px;
        right: 24px;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--n-ink);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 14px;
    }

    .n-how-step i {
        font-size: 26px;
        color: var(--n-teal);
        margin: 8px 0 16px;
        display: block;
    }

    .n-how-step h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .n-how-step p {
        font-size: 13.5px;
        color: var(--n-ink-soft);
        margin: 0;
    }

    /* بخش عنوان مشترک */
    .n-section-head {
        text-align: center;
        max-width: 620px;
        margin: 0 auto 50px;
    }

    .n-section-head .n-eyebrow {
        justify-content: center;
    }

    .n-section-title {
        text-align: center;
        font-size: 32px;
        margin-bottom: 14px;
        font-weight: 800;
    }

    .n-section-sub {
        color: var(--n-ink-soft);
        font-size: 15.5px;
        margin: 0;
    }

    /* امکانات (Features) */
    .n-features {
        padding: 90px 0;
        background: #ffffff;
    }

    .n-features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 26px;
    }

    .n-feature-card {
        background: var(--n-bg);
        padding: 30px;
        border-radius: 16px;
        text-align: right;
        transition: all 0.3s;
        border: 1px solid var(--n-line);
    }

    .n-feature-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--n-shadow);
        /*border-color: transparent;*/
        background: #fff;
    }

    .n-feature-card__icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: var(--n-teal-pale);
        color: var(--n-teal);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 20px;
    }

    .n-feature-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .n-feature-card p {
        color: var(--n-ink-soft);
        font-size: 14px;
        margin: 0;
        line-height: 1.8;
    }

    /* چرا نوبت‌آن (تمایزها) */
    .n-why {
        padding: 90px 0;
        background: var(--n-ink);
        color: #fff;
    }

    .n-why .n-section-title, .n-why .n-eyebrow { color: #fff; }
    .n-why .n-eyebrow { color: var(--n-gold-light); }
    .n-why .n-section-sub { color: #94A3B8; }

    .n-why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .n-why-card {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 16px;
        padding: 28px;
        transition: all 0.3s;
    }
    
    .n-why-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--n-shadow);
        background-color: #0440cd;
    }

    .n-why-card i {
        color: var(--n-gold-light);
        font-size: 22px;
        margin-bottom: 14px;
        display: block;
    }

    .n-why-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .n-why-card p {
        font-size: 13.5px;
        color: #94A3B8;
        margin: 0;
        line-height: 1.8;
    }

    /* تعرفه‌ها (Pricing) */
    .n-pricing {
        padding: 90px 0;
    }

    .n-pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        align-items: center;
    }

    .n-price-card {
        background: #fff;
        padding: 40px 30px;
        border-radius: 18px;
        border: 1px solid var(--n-line);
        position: relative;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: transform .3s, box-shadow .3s;
    }

    .n-price-card:hover {
        transform: translateY(-4px);
    }

    .n-price-card.vip {
        border: 2px solid var(--n-teal);
        transform: scale(1.04);
        box-shadow: 0 25px 50px -15px rgba(11, 133, 119, 0.28);
    }

    .n-price-card.vip:hover {
        transform: scale(1.04) translateY(-4px);
    }

    .n-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--n-gold);
        color: #fff;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 800;
        white-space: nowrap;
    }

    .n-price-card h3 {
        font-size: 21px;
        margin-bottom: 10px;
        color: var(--n-ink);
    }

    .n-price-card .setup-fee {
        color: var(--n-ink-faint);
        font-size: 13.5px;
        margin-bottom: 15px;
    }

    .n-price-card .monthly-fee {
        font-size: 30px;
        font-weight: 800;
        color: var(--n-ink);
        margin-bottom: 25px;
    }

    .n-price-card .monthly-fee span {
        font-size: 15px;
        color: var(--n-ink-faint);
        font-weight: normal;
    }

    .n-price-list {
        margin-bottom: 30px;
        padding: 0;
    }

    .n-price-list li {
        margin-bottom: 13px;
        font-size: 14px;
        color: #334155;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .n-price-list li i {
        color: var(--n-teal);
        margin-top: 2px;
    }

    .n-btn-outline {
        display: block;
        text-align: center;
        width: 100%;
        padding: 13px;
        border: 2px solid var(--n-teal);
        color: var(--n-teal);
        border-radius: 10px;
        font-weight: 700;
        transition: all 0.3s;
    }

    .n-btn-outline:hover,
    .n-price-card.vip .n-btn-outline {
        background: var(--n-teal);
        color: #fff;
    }

    .n-pricing-note {
        text-align: center;
        color: var(--n-ink-faint);
        font-size: 14px;
        margin-top: 34px;
    }

    .n-pricing-note a {
        color: var(--n-teal);
        font-weight: 700;
    }

    /* درباره ما (About Us) */
    .n-about {
        padding: 90px 0;
        background: #ffffff;
    }

    .n-about-grid {
        display: flex;
        align-items: center;
        gap: 55px;
    }

    .n-about-content {
        flex: 1;
    }

    .n-about-content h2 {
        font-size: 30px;
        font-weight: 800;
        margin-bottom: 20px;
        color: var(--n-ink);
    }

    .n-about-content p {
        font-size: 15.5px;
        color: var(--n-ink-soft);
        margin-bottom: 16px;
        text-align: justify;
        line-height: 1.95;
    }

    .n-about-signature {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 24px;
    }

    .n-about-signature img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
    }

    .n-about-signature b {
        display: block;
        font-size: 14px;
    }

    .n-about-signature span {
        font-size: 12.5px;
        color: var(--n-ink-faint);
    }

    .n-about-image {
        flex: 1;
        text-align: left;
        position: relative;
    }

    .n-about-image img {
        max-width: 100%;
        border-radius: 18px;
        box-shadow: var(--n-shadow);
    }

    /* سوالات متداول (FAQ) */
    .n-faq { padding: 90px 0; background: var(--n-bg); }
    .n-faq-wrapper { max-width: 800px; margin: 0 auto; }
    .n-faq-item { background: #ffffff; border: 1px solid var(--n-line); border-radius: 12px; margin-bottom: 15px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
    .n-faq-item summary { padding: 20px 25px; font-size: 15.5px; font-weight: 700; color: var(--n-ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; user-select: none; }
    .n-faq-item summary::-webkit-details-marker { display: none; }
    .n-faq-item summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--n-teal); transition: transform 0.3s; font-size: 14px; flex-shrink: 0; margin-right: 12px; }
    .n-faq-item[open] summary::after { transform: rotate(180deg); }
    .n-faq-content { padding: 0 25px 25px; color: var(--n-ink-soft); line-height: 1.85; font-size: 14.5px; }
    .n-faq-content p { margin: 0; padding-top: 15px; border-top: 1px solid #F1F5F9; }

    /* بنر فراخوان نهایی */
    .n-cta-banner {
        background: linear-gradient(135deg, var(--n-teal) 0%, #096b60 100%);
        border-radius: 24px;
        padding: 56px 40px;
        text-align: center;
        margin: 0 auto 90px;
        max-width: 1200px;
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .n-cta-banner::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
        top: -120px;
        left: -80px;
    }

    .n-cta-banner h2 {
        font-size: 28px;
        margin-bottom: 14px;
        position: relative;
    }

    .n-cta-banner p {
        color: rgba(255,255,255,0.85);
        max-width: 480px;
        margin: 0 auto 28px;
        font-size: 15.5px;
        position: relative;
    }

    .n-cta-banner .n-btn-primary {
        background: #fff;
        color: var(--n-teal);
        box-shadow: none;
        position: relative;
    }

    .n-cta-banner .n-btn-primary:hover {
        background: var(--n-gold-light);
        color: #6b4d15;
    }

    /* تماس با ما (Contact Us) */
    .n-contact {
        padding: 90px 0;
        background: #ffffff;
    }

    .n-contact-grid {
        display: flex;
        gap: 50px;
        align-items: center;
    }

    .n-contact-info {
        flex: 1;
    }

    .n-contact-info h2 {
        font-size: 30px;
        font-weight: 800;
        margin-bottom: 20px;
        color: var(--n-ink);
    }

    .n-contact-info > p {
        color: var(--n-ink-soft);
        margin-bottom: 30px;
        font-size: 15.5px;
        line-height: 1.85;
    }

    .n-contact-list {
        padding: 0;
        margin: 0;
    }

    .n-contact-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        color: #334155;
        font-size: 15.5px;
        font-weight: 500;
    }

    .n-contact-list li i {
        background: var(--n-teal);
        color: #fff;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 18px;
        box-shadow: 0 8px 18px -6px rgba(11, 133, 119, 0.5);
        flex-shrink: 0;
    }

    .n-contact-form-wrapper {
        flex: 1;
        background: var(--n-bg);
        padding: 40px;
        border-radius: 18px;
        box-shadow: var(--n-shadow);
        border: 1px solid var(--n-line);
    }

    .n-form-group {
        margin-bottom: 20px;
    }

    .n-form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--n-ink);
        font-weight: 600;
        font-size: 14px;
    }

    .n-form-control {
        width: 100%;
        padding: 14px 15px;
        border: 1px solid #CBD5E1;
        border-radius: 10px;
        font-family: inherit;
        font-size: 14px;
        transition: all 0.3s;
        background: #fff;
    }

    .n-form-control:focus {
        outline: none;
        border-color: var(--n-teal);
        box-shadow: 0 0 0 3px var(--n-teal-pale);
    }

    .n-contact-form-wrapper form button.n-submit-btn[type="submit"] {
    background: var(--n-teal) !important;
    color: #fff !important;
    border: none !important;
    width: 100% !important;
    cursor: pointer !important;
    font-family: inherit !important;
    font-size: 16px !important;
    padding: 15px !important;
    margin-top: 10px !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 25px -10px rgba(11, 133, 119, 0.6) !important;
}

.n-contact-form-wrapper form button.n-submit-btn[type="submit"]:hover {
    background: #096b60 !important;
}

    /* فوتر (Footer) */
    .n-footer {
        background: var(--n-ink);
        color: #fff;
        padding: 60px 0 0;
    }

    .n-footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .n-footer-col h4 {
        font-size: 17px;
        margin-bottom: 20px;
        color: var(--n-bg);
    }

    .n-footer-col > p {
        color: #94A3B8;
        font-size: 14px;
        line-height: 1.8;
    }

    .n-footer-col ul {
        padding: 0;
        margin: 0;
    }

    .n-footer-col ul li {
        margin-bottom: 10px;
    }

    .n-footer-col ul a {
        color: #94A3B8;
        font-size: 14px;
        transition: color 0.3s;
    }

    .n-footer-col ul a:hover {
        color: var(--n-teal-light);
    }

    .n-socials {
        display: flex;
        gap: 12px;
        margin-top: 20px;
    }

    .n-socials a {
        color: #fff;
        font-size: 16px;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .3s;
    }

    .n-socials a:hover {
        background: var(--n-teal);
    }

    .n-footer-contact-num {
        margin-top: 15px;
        font-size: 17px;
        font-weight: 800;
        color: var(--n-teal-light);
    }

    .n-enamad {
        background: #fff;
        border-radius: 10px;
        padding: 10px;
        width: 90px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 15px;
        color: var(--n-ink);
        font-size: 11px;
        text-align: center;
    }

    .n-copyright {
        text-align: center;
        padding: 22px 20px;
        border-top: 1px solid #1E293B;
        font-size: 13.5px;
        color: #64748B;
    }

    /* ===================================================================
       ریسپانسیو
       =================================================================== */
    @media (max-width: 992px) {
        .n-hero {
            flex-direction: column;
            text-align: center;
            padding-top: 130px;
            padding-bottom: 70px;
        }

        .n-hero-content p { margin-left: auto; margin-right: auto; }
        .n-hero-ctas { justify-content: center; }

        .n-trust-badges {
            justify-content: center;
            flex-wrap: wrap;
        }

        .n-hero-visual {
            width: 100%;
            min-height: 320px;
            margin-top: 40px;
        }

        .n-footer-grid {
            grid-template-columns: 1fr 1fr;
        }

        .n-nav, .n-header-left .n-phone-link {
            display: none;
        }

        .n-nav-toggle {
            display: block;
        }

        .n-how-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .n-why-grid {
            grid-template-columns: repeat(1, 1fr);
        }

        .n-about-grid, .n-contact-grid {
            flex-direction: column;
        }

        .n-about-image, .n-contact-info {
            text-align: center;
        }

        .n-about-image { margin-top: 30px; order: -1; }

        .n-contact-list li {
            justify-content: center;
        }

        .n-contact-form-wrapper {
            width: 100%;
            padding: 26px;
        }
    }

    @media (max-width: 720px) {
        .n-header.is-open .n-mobile-nav {
            display: block;
            position: absolute;
            top: 100%;
            right: 0;
            left: 0;
            background: #fff;
            border-top: 1px solid var(--n-line);
            box-shadow: 0 20px 30px -20px rgba(0,0,0,0.15);
            padding: 10px 20px 20px;
        }

        .n-mobile-nav ul {
            padding: 0;
            margin: 0 0 16px;
        }

        .n-mobile-nav li {
            border-bottom: 1px solid #F1F5F9;
        }

        .n-mobile-nav a {
            display: block;
            padding: 14px 4px;
            color: var(--n-ink);
            font-weight: 600;
            font-size: 15px;
        }

        .n-mobile-nav .n-btn-primary {
            display: block;
            text-align: center;
            margin-bottom: 10px;
        }

        .n-hero-content h1 { font-size: 32px; }
        .n-hero-content p { font-size: 16px; }

        .n-section-title { font-size: 26px; }

        .n-how-grid { grid-template-columns: 1fr; }

        .n-footer-grid {
            grid-template-columns: 1fr;
        }

        .n-cta-banner { padding: 40px 24px; border-radius: 18px; }
        .n-cta-banner h2 { font-size: 22px; }
    }