/* ---------- RESET GLOBAL & VARIABLES ---------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* حذف کامل خط زیر لینک در کل قالب */
        a {
            text-decoration: none !important;
        }

        body {
            font-family: 'Vazirmatn', sans-serif;
            background-color: #ffffff;  /* زمینه سفید خالص */
            color: #1e293b;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .site-wrapper {
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        /* ---------- نوار آبی کمرنگ بالا (چسبنده) با برند gold cccam ---------- */
        .sticky-top-bar {
            background-color: #e0f2fe;  /* آبی کمرنگ */
            padding: 0.9rem 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            border-bottom: 2px solid #bae6fd;
        }

        .brand-gold {
            font-size: 1.9rem;
            font-weight: 800;
            color: #0369a1;  /* آبی پررنگ */
            letter-spacing: 1.5px;
            text-shadow: 0 1px 2px rgba(3,105,161,0.1);
        }

        /* ---------- کانتینر اصلی ---------- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 24px 20px 48px;
            width: 100%;
            flex: 1;
            background: #ffffff; /* سفید */
        }

        /* ---------- هدر داخلی (بازطراحی ملایم) ---------- */
        .internal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 16px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0c4a6e;
        }

        .logo-text span {
            color: #0284c7;
        }

        /* ---------- بخش قهرمان (HERO) با تم سفید/آبی بسیار ملایم ---------- */
        .hero-section {
            background: linear-gradient(145deg, #f9fcff, #f1f9fe);
            border-radius: 32px;
            padding: 30px 28px;
            margin-bottom: 40px;
            border: 1px solid #e6f0fa;
            box-shadow: 0 8px 18px rgba(0,0,0,0.02);
        }

        .hero-title {
            font-size: 2rem;
            font-weight: 700;
            color: #075985;
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .hero-sub {
            color: #1e3a5f;
            font-size: 1.15rem;
            margin-bottom: 24px;
        }

        .badge-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }

        .badge {
            background: #e6f0fa;
            color: #0369a1;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            border: 1px solid #cde3f0;
        }

        /* ---------- ویژگی‌های ۶ تایی (کارت‌های شش‌گانه) ---------- */
        .features-section {
            margin: 50px 0 60px;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #0c4a6e;
            text-align: center;
            margin-bottom: 16px;
        }

        .section-title span {
            border-bottom: 4px solid #7dd3fc;
            padding-bottom: 8px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 28px;
            margin-top: 40px;
        }

        .feature-card {
            background: #fbfeff;
            border-radius: 24px;
            padding: 28px 16px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,60,130,0.03);
            transition: all 0.25s ease;
            border: 1px solid #ecf3fa;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 36px rgba(2,84,121,0.06);
            border-color: #b8dff0;
            background: white;
        }

        .feature-icon {
            font-size: 2.8rem;
            color: #0284c7;
            margin-bottom: 16px;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #0b3b5c;
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 0.95rem;
            color: #2c4b66;
            font-weight: 400;
        }

        /* ---------- محتوای اصلی (سئو شده و保留了 متن‌های قبلی) ---------- */
        .content-block {
            background: #ffffff;
            padding: 20px 0;
        }

        h2 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #06538b;
            margin: 40px 0 16px 0;
            border-right: 6px solid #7dd3fc;
            padding-right: 16px;
        }

        h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #0369a1;
            margin-top: 32px;
            margin-bottom: 12px;
        }

        p {
            color: #2d3c4b;
            margin-bottom: 16px;
            font-size: 1.05rem;
        }

        ul, ol {
            padding-right: 28px;
            margin: 20px 0;
        }

        li {
            margin-bottom: 8px;
            font-size: 1.02rem;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 28px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }

        th {
            background: #e0f2fe;
            color: #075985;
            font-weight: 600;
            padding: 14px 8px;
            border: 1px solid #cde0ec;
        }

        td {
            padding: 12px 8px;
            border: 1px solid #e2eaf0;
            background: white;
        }

        tr:nth-child(even) td {
            background: #fafdff;
        }

        .faq-item {
            background: #f8fbfd;
            border-radius: 20px;
            padding: 20px 24px;
            margin-bottom: 16px;
            border: 1px solid #e1eff6;
        }

        .faq-q {
            font-weight: 700;
            color: #06538b;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .faq-a {
            color: #2c4b66;
            padding-right: 12px;
        }

        /* ---------- دکمه شناور خرید (قرمز کمرنگ با متن قرمز پررنگ و لینک) ---------- */
        .floating-buy-container {
            position: sticky;
            bottom: 30px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            pointer-events: none;
            z-index: 1200;
            padding: 0 16px;
        }

        .buy-button {
            pointer-events: auto;
            background-color: #fee2e2;  /* قرمز کمرنگ */
            padding: 1.1rem 2.5rem;
            border-radius: 70px;
            box-shadow: 0 12px 28px rgba(185, 28, 28, 0.15);
            border: 1px solid #fecaca;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            backdrop-filter: blur(8px);
        }

        .buy-button:hover {
            background-color: #ffd6d6;
            box-shadow: 0 18px 32px rgba(190, 18, 60, 0.2);
            transform: scale(1.02);
        }

        .buy-text {
            font-size: 1.5rem;
            font-weight: 800;
            color: #b91c1c;  /* قرمز پررنگ */
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .buy-text i {
            color: #b91c1c;
            font-size: 1.5rem;
        }

        /* ---------- فوتر با آیکون‌های واتساپ، تلگرام، اینستاگرام ---------- */
        .site-footer {
            background: #f1f9ff;
            border-top: 2px solid #dbeafe;
            padding: 32px 24px 28px;
            margin-top: 60px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 22px;
        }

        .social-links {
            display: flex;
            gap: 32px;
            justify-content: center;
            align-items: center;
        }

        .social-item {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 62px;
            height: 62px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 8px 16px rgba(0,0,0,0.02);
            transition: 0.2s;
            border: 1px solid #cde3f0;
            color: #1f2a44;
        }

        .social-item i {
            font-size: 2.2rem;
        }

        .social-item:hover {
            background: #f0f9ff;
            transform: translateY(-5px);
            border-color: #0284c7;
        }

        .fa-whatsapp { color: #25D366; }
        .fa-telegram { color: #26A5E4; }
        .fa-instagram { color: #E4405F; }

        .footer-text {
            color: #334155;
            font-size: 0.95rem;
            text-align: center;
        }

        /* ---------- ریسپانسیو کامل ---------- */
        @media (max-width: 768px) {
            .sticky-top-bar {
                padding: 0.7rem 1rem;
            }
            .brand-gold {
                font-size: 1.6rem;
            }
            .hero-title {
                font-size: 1.7rem;
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }
            .buy-text {
                font-size: 1.2rem;
            }
            .buy-button {
                padding: 0.9rem 1.8rem;
            }
        }

        @media (max-width: 500px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            .brand-gold {
                font-size: 1.4rem;
            }
            .social-item {
                width: 52px;
                height: 52px;
            }
            .social-item i {
                font-size: 1.9rem;
            }
        }

        /* خط زیر لینک ها در کل قالب حذف شده است */
        /* تمام لینک ها بدون underline */