/* ═══════════════════════════════════════════════════════════════
   سورس۳۶۰ — سیستم طراحی شرکتی (Corporate Brand UI)
   ═══════════════════════════════════════════════════════════════ */

body.corp-site {
    /* متغیرهای تم تیره (--ink-light) برای هدر/هیرو دست‌نخورده می‌ماند */
    --corp-navy: #0a1628;
    --corp-navy-mid: #12243d;
    --corp-blue: #1d4ed8;
    --corp-blue-hover: #1e40af;
    --corp-sky: #0ea5e9;
    --corp-accent: #f59e0b;
    --corp-bg: #f1f5f9;
    --corp-bg-alt: #e8eef6;
    --corp-surface: #ffffff;
    --corp-surface-raised: #ffffff;
    --corp-text: #0f172a;
    --corp-text-secondary: #334155;
    --corp-text-muted: #64748b;
    --corp-border: #e2e8f0;
    --corp-border-strong: #cbd5e1;
    --corp-radius: 16px;
    --corp-radius-lg: 22px;
    --corp-radius-xl: 28px;
    --corp-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --corp-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    --corp-shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.12);
    --corp-shadow-hover: 0 20px 48px rgba(29, 78, 216, 0.14);
    --corp-gradient-brand: linear-gradient(135deg, #1d4ed8 0%, #2563eb 45%, #0ea5e9 100%);
    --corp-gradient-hero: linear-gradient(145deg, #0a1628 0%, #12243d 42%, #1e3a5f 100%);
    --corp-header-h: 72px;

    background-color: var(--corp-bg);
    background-image:
        radial-gradient(circle at 0% 0%, rgba(29, 78, 216, 0.06) 0%, transparent 42%),
        radial-gradient(circle at 100% 8%, rgba(14, 165, 233, 0.05) 0%, transparent 38%);
    color: var(--corp-text);
}

body.corp-site ::selection {
    background: var(--corp-blue);
    color: #fff;
}

/* ——— تایپوگرافی ——— */
body.corp-site h1,
body.corp-site h2,
body.corp-site h3,
body.corp-site h4 {
    color: var(--corp-text);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

body.corp-site p {
    color: var(--corp-text-secondary);
}

body.corp-site .muted {
    color: var(--corp-text-muted) !important;
}

body.corp-site .link {
    color: var(--corp-blue);
}

body.corp-site .link:hover {
    color: var(--corp-blue-hover);
}

/* ——— لوگو برند ——— */
body.corp-site .site-header--minimal .logo-crop {
    width: min(46vw, 188px);
    height: 48px;
    overflow: visible;
}

body.corp-site .site-header--minimal .logo-crop,
body.corp-site .site-header--minimal .logo {
    background: transparent;
}

body.corp-site .site-header--minimal .logo-image--brand {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: right center;
    transform: none;
    background: transparent;
}

body.corp-site .footer-brand-logo {
    display: block;
    width: min(100%, 160px);
    height: auto;
    max-height: 44px;
    object-fit: contain;
    object-position: right center;
    background: transparent;
}

body.corp-site .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

body.corp-site .footer-brand-text small {
    color: rgba(226, 232, 240, 0.72);
}

@media (max-width: 1024px) {
    body.corp-site .site-header--minimal .logo-crop {
        width: min(52vw, 160px);
        height: 40px;
    }
}

/* ——— هدر ——— */
body.corp-site .site-header {
    background: rgba(10, 22, 40, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

body.corp-site .site-header .nav a,
body.corp-site .site-header .nav--main a {
    color: #e2e8f0 !important;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 14px;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}

body.corp-site .site-header .nav a:hover,
body.corp-site .site-header .nav--main a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

body.corp-site .site-header .nav--main a.is-active,
body.corp-site .site-header .nav--main a[aria-current="page"],
body.corp-site .site-header .nav--main .nav-home-link.is-active,
body.corp-site .site-header .nav--main .nav-about-link.is-active {
    background: rgba(255, 255, 255, 0.14);
    color: #fff !important;
}

body.corp-site .btn--header-login {
    background: var(--corp-gradient-brand);
    border: none;
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.35);
}

/* ——— دکمه‌ها ——— */
body.corp-site .btn {
    background: var(--corp-gradient-brand);
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.28);
}

body.corp-site .btn:hover {
    box-shadow: 0 14px 32px rgba(29, 78, 216, 0.38);
}

body.corp-site .btn.ghost {
    background: var(--corp-surface);
    color: var(--corp-blue);
    border: 2px solid var(--corp-border-strong);
    box-shadow: var(--corp-shadow-sm);
}

body.corp-site .section .btn.ghost,
body.corp-site .mkt-hero .btn.ghost,
body.corp-site .landing-hero .btn.ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

body.corp-site .section:not(.mkt-hero):not(.corp-page-hero) .btn.ghost,
body.corp-site .card .btn.ghost {
    background: var(--corp-surface);
    color: var(--corp-blue);
    border-color: var(--corp-border-strong);
}

/* ——— سکشن‌ها ——— */
body.corp-site .section {
    padding: clamp(56px, 8vw, 88px) 0;
    background: var(--corp-surface);
    color: var(--corp-text);
    border-top: 1px solid var(--corp-border);
    border-bottom: none;
}

body.corp-site .section::before {
    display: none;
}

body.corp-site .section.muted {
    background: var(--corp-bg);
}

body.corp-site .section-title h1,
body.corp-site .section-title h2 {
    color: var(--corp-text);
}

body.corp-site .section-title p {
    color: var(--corp-text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

body.corp-site .section-title h1::after,
body.corp-site .section-title h2::after {
    width: 48px;
    height: 4px;
    background: var(--corp-gradient-brand);
    border-radius: 4px;
}

body.corp-site .section-title--center h1::after,
body.corp-site .section-title--center h2::after {
    margin-inline: auto;
}

/* ——— کارت‌ها ——— */
body.corp-site .card {
    background: var(--corp-surface-raised);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius-lg);
    box-shadow: var(--corp-shadow);
    padding: clamp(20px, 3vw, 28px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body.corp-site a.card:hover,
body.corp-site .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--corp-shadow-hover);
    border-color: rgba(29, 78, 216, 0.25);
}

body.corp-site .card h2,
body.corp-site .card h3 {
    margin-top: 0;
    font-size: 1.12rem;
}

body.corp-site .card p {
    line-height: 1.85;
    margin-bottom: 0;
}

body.corp-site .card.pricing.popular {
    border-color: var(--corp-accent);
    box-shadow: 0 0 0 1px var(--corp-accent), var(--corp-shadow-lg);
}

body.corp-site .pill {
    background: rgba(29, 78, 216, 0.08);
    border-color: rgba(29, 78, 216, 0.2);
    color: var(--corp-blue);
    font-weight: 600;
}

/* ——— کارت ارزش / ویژگی ——— */
.corp-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 22px;
}

.corp-value-card {
    position: relative;
    padding: 28px 24px 24px;
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius-lg);
    box-shadow: var(--corp-shadow);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.corp-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--corp-gradient-brand);
}

.corp-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--corp-shadow-hover);
}

.corp-value-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(14, 165, 233, 0.1));
    border: 1px solid rgba(29, 78, 216, 0.15);
    color: var(--corp-blue);
    font-size: 1.35rem;
    margin-bottom: 16px;
}

body.corp-site .corp-value-card__icon .fa-check {
    font-size: 1.2rem;
    color: var(--corp-blue);
}

body.corp-site .corp-value-card h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: var(--corp-text) !important;
}

.corp-value-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--corp-text-muted);
}

.corp-about-story__card {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(22px, 4vw, 32px);
}

.corp-about-story__title {
    margin: 0 0 14px;
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    color: var(--corp-text) !important;
}

.corp-about-story__body {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.95;
    color: var(--corp-text-secondary);
}

.corp-about-focus__more {
    margin: 22px 0 0;
    text-align: center;
}

/* ——— هیرو صفحات داخلی ——— */
.corp-page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(40px, 6vw, 64px) 0 clamp(36px, 5vw, 52px);
    background: var(--corp-gradient-hero);
    color: #f8fafc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.corp-page-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.corp-page-hero__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.22), transparent 68%);
    top: -120px;
    left: -80px;
    pointer-events: none;
}

.corp-page-hero__glow--2 {
    left: auto;
    right: -100px;
    top: auto;
    bottom: -140px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.25), transparent 68%);
}

.corp-page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.corp-breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    margin-bottom: 16px;
    direction: rtl;
}

.corp-breadcrumb a {
    color: #93c5fd;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.corp-breadcrumb a:hover {
    color: #fff;
}

.corp-breadcrumb__sep {
    color: rgba(226, 232, 240, 0.5);
    font-weight: 400;
    user-select: none;
}

/* هیروی تیره — لینک‌ها آبی روشن، صفحهٔ فعلی سفید و برجسته */
.corp-breadcrumb--hero,
.corp-page-hero .corp-breadcrumb {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    color: rgba(226, 232, 240, 0.85);
}

.corp-breadcrumb--hero .corp-breadcrumb__current,
.corp-page-hero .corp-breadcrumb [aria-current="page"],
.corp-page-hero .corp-breadcrumb__current {
    color: #fff;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    line-height: 1.5;
}

/* breadcrumb روی پس‌زمینه روشن (مثلاً داخل محتوای محصول) */
body.corp-site .corp-inline-breadcrumb,
body.corp-site .corp-breadcrumb--light,
body.corp-site .section:not(.corp-page-hero):not(.landing-hero) .corp-breadcrumb {
    padding: 8px 16px;
    border-radius: 12px;
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    color: var(--corp-text-muted);
}

body.corp-site .corp-inline-breadcrumb a,
body.corp-site .corp-breadcrumb--light a,
body.corp-site .section:not(.corp-page-hero):not(.landing-hero) .corp-breadcrumb a {
    color: var(--corp-blue);
}

body.corp-site .corp-inline-breadcrumb a:hover,
body.corp-site .corp-breadcrumb--light a:hover,
body.corp-site .section:not(.corp-page-hero):not(.landing-hero) .corp-breadcrumb a:hover {
    color: var(--corp-blue-dark, #1e40af);
}

body.corp-site .corp-inline-breadcrumb .corp-breadcrumb__sep,
body.corp-site .corp-breadcrumb--light .corp-breadcrumb__sep,
body.corp-site .section:not(.corp-page-hero):not(.landing-hero) .corp-breadcrumb .corp-breadcrumb__sep {
    color: var(--corp-text-muted);
    opacity: 0.65;
}

body.corp-site .corp-inline-breadcrumb .corp-breadcrumb__current,
body.corp-site .corp-breadcrumb--light .corp-breadcrumb__current,
body.corp-site .corp-inline-breadcrumb [aria-current="page"],
body.corp-site .corp-breadcrumb--light [aria-current="page"],
body.corp-site .section:not(.corp-page-hero):not(.landing-hero) .corp-breadcrumb [aria-current="page"],
body.corp-site .section:not(.corp-page-hero):not(.landing-hero) .corp-breadcrumb .corp-breadcrumb__current {
    color: var(--corp-text);
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 8px;
    background: rgba(29, 78, 216, 0.1);
    border: 1px solid rgba(29, 78, 216, 0.18);
}

.corp-eyebrow,
body.corp-site .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #bfdbfe;
}

.corp-page-hero__title {
    margin: 0 0 14px;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #fff;
    line-height: 1.3;
}

.corp-page-hero__lead {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.9;
    color: #cbd5e1;
    max-width: 58ch;
}

.corp-page-hero__actions {
    margin-top: 24px;
}

/* ——— صفحه اصلی ——— */
body.corp-site .mkt-hero {
    background: var(--corp-gradient-hero);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.corp-site .mkt-hero-panel {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--corp-radius-xl);
    backdrop-filter: blur(16px);
}

body.corp-site .mkt-pillar-card {
    border-radius: var(--corp-radius-lg);
    border: 1px solid var(--corp-border);
    background: var(--corp-surface);
    box-shadow: var(--corp-shadow);
    min-height: 240px;
    padding: 28px 24px;
}

body.corp-site .mkt-pillar-card:hover {
    border-color: rgba(29, 78, 216, 0.35);
    box-shadow: var(--corp-shadow-hover);
}

body.corp-site .mkt-pillar-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.5rem;
    color: var(--corp-blue);
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(14, 165, 233, 0.08));
    border: 1px solid rgba(29, 78, 216, 0.15);
}

body.corp-site .mkt-pillar-icon .fa-check {
    font-size: 1.35rem;
    color: var(--corp-blue);
}

body.corp-site .mkt-step {
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius-lg);
    box-shadow: var(--corp-shadow-sm);
}

body.corp-site .mkt-step-num {
    border-radius: 14px;
    background: var(--corp-gradient-brand);
}

body.corp-site .mkt-cta-inner {
    border-radius: var(--corp-radius-xl);
    background: var(--corp-gradient-brand);
    box-shadow: var(--corp-shadow-lg);
}

/* ——— لندینگ سئو ——— */
body.corp-site .landing-hero {
    padding: clamp(40px, 6vw, 64px) 0 clamp(36px, 5vw, 52px);
    background: var(--corp-gradient-hero);
    color: #f8fafc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.corp-site .landing-hero .corp-page-hero__inner,
body.corp-site .landing-hero-grid.corp-page-hero__inner {
    max-width: min(1100px, 100%);
}

body.corp-site .landing-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(24px, 4vw, 40px);
    align-items: center;
}

body.corp-site .landing-hero .corp-eyebrow {
    color: #bfdbfe;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

body.corp-site .landing-hero .corp-page-hero__title {
    color: #fff;
}

body.corp-site .landing-hero .corp-page-hero__lead {
    color: #cbd5e1;
}

body.corp-site .landing-hero .lead {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #cbd5e1;
    max-width: 52ch;
}

body.corp-site .landing-hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--corp-radius-xl);
    color: #e2e8f0;
}

body.corp-site .landing-hero-card h3 {
    color: #fff;
}

body.corp-site .landing-body {
    max-width: 820px;
    margin-inline: auto;
    padding: clamp(24px, 4vw, 32px);
}

body.corp-site .landing-hero-main .corp-breadcrumb {
    margin-bottom: 14px;
}

body.corp-site .landing-trust-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

body.corp-site .landing-trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: #e2e8f0;
}

body.corp-site .landing-trust-list__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: #93c5fd;
    font-size: 0.72rem;
    margin-top: 2px;
}

/* ——— انیمیشن لندینگ‌های راهکار (لوکال — فقط CSS/SVG) ——— */
body.corp-site .landing-hero-card--animated {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(18px, 3vw, 24px);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.12) 0%, rgba(15, 23, 42, 0.35) 100%);
    overflow: hidden;
}

body.corp-site .landing-hero-card__aside-title {
    margin: 4px 0 0;
    font-size: 1rem;
    color: #fff;
}

body.corp-site .landing-trust-list--compact li {
    padding: 5px 0;
    font-size: 0.9rem;
}

.landing-hero-scene {
    margin-bottom: 4px;
}

.landing-scene__stage {
    position: relative;
    width: min(100%, 260px);
    height: 220px;
    margin: 0 auto 10px;
}

.landing-scene__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(147, 197, 253, 0.45);
    pointer-events: none;
}

.landing-scene__ring--outer {
    inset: 6px;
    animation: landing-ring-spin 22s linear infinite;
}

.landing-scene__ring--inner {
    inset: 34px;
    border-color: rgba(251, 191, 36, 0.35);
    animation: landing-ring-spin 14s linear infinite reverse;
}

.landing-hero-scene--website .landing-scene__ring--inner {
    border-color: rgba(56, 189, 248, 0.4);
}

.landing-hero-scene--robot .landing-scene__ring--inner {
    border-color: rgba(167, 139, 250, 0.45);
}

.landing-scene__core {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 108px;
    height: 108px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, #3b82f6 0%, #1e3a8a 72%);
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 16px 40px rgba(29, 78, 216, 0.45);
    animation: landing-core-pulse 3.2s ease-in-out infinite;
    z-index: 2;
}

.landing-hero-scene--website .landing-scene__core {
    background: radial-gradient(circle at 30% 20%, #0ea5e9 0%, #0369a1 72%);
    box-shadow: 0 16px 40px rgba(14, 165, 233, 0.4);
}

.landing-scene__core--robot,
.landing-hero-scene--robot .landing-scene__core {
    background: radial-gradient(circle at 30% 20%, #8b5cf6 0%, #4c1d95 72%);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.45);
}

.landing-scene__core-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.landing-scene__core-icon .landing-core-icon-svg {
    display: block;
    width: 1.65rem;
    height: 1.65rem;
}

.landing-scene__core-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #eff6ff;
    text-align: center;
    line-height: 1.35;
    padding: 0 6px;
}

.landing-scene__float {
    position: absolute;
    z-index: 1;
}

.landing-scene__float--doc {
    width: 34px;
    height: 42px;
    border-radius: 4px 7px 4px 4px;
    background: linear-gradient(165deg, #ffffff 0%, #dbeafe 55%, #bfdbfe 100%);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.28);
}

.landing-scene__float--doc::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 7px;
    right: 7px;
    height: 3px;
    border-radius: 2px;
    background: rgba(29, 78, 216, 0.35);
    box-shadow: 0 6px 0 rgba(29, 78, 216, 0.2), 0 12px 0 rgba(29, 78, 216, 0.12);
}

.landing-scene__float--window {
    width: 38px;
    height: 30px;
    border-radius: 5px;
    background: linear-gradient(165deg, #f8fafc 0%, #bae6fd 55%, #7dd3fc 100%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.28);
}

.landing-scene__float--window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    border-radius: 5px 5px 0 0;
    background: rgba(15, 23, 42, 0.22);
}

.landing-scene__float--window::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 6px;
    right: 6px;
    height: 2px;
    border-radius: 2px;
    background: rgba(14, 165, 233, 0.35);
    box-shadow: 0 5px 0 rgba(14, 165, 233, 0.2);
}

.landing-scene__float--bubble {
    width: 36px;
    height: 28px;
    border-radius: 12px 12px 12px 3px;
    background: linear-gradient(165deg, #faf5ff 0%, #ddd6fe 55%, #c4b5fd 100%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.28);
}

.landing-scene__float--bubble::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 8px;
    width: 14px;
    height: 3px;
    border-radius: 2px;
    background: rgba(124, 58, 237, 0.35);
    box-shadow: 0 6px 0 rgba(124, 58, 237, 0.18);
}

.landing-scene__float--1 {
    top: 14px;
    right: 22px;
    transform: rotate(8deg);
    animation: landing-float-a 4.5s ease-in-out infinite;
}

.landing-scene__float--2 {
    bottom: 20px;
    right: 28px;
    transform: rotate(-12deg);
    animation: landing-float-b 5s ease-in-out infinite 0.6s;
}

.landing-scene__float--3 {
    bottom: 24px;
    left: 24px;
    transform: rotate(14deg);
    animation: landing-float-c 4.8s ease-in-out infinite 1.1s;
}

.landing-scene__float--4 {
    top: 22px;
    left: 20px;
    transform: rotate(-6deg);
    animation: landing-float-d 5.2s ease-in-out infinite 0.3s;
}

.landing-hero-scene--university .landing-scene__float--4 {
    background: linear-gradient(165deg, #fffbeb 0%, #fde68a 55%, #fbbf24 100%);
}

.landing-hero-scene--website .landing-scene__float--4 {
    background: linear-gradient(165deg, #ecfeff 0%, #67e8f9 55%, #22d3ee 100%);
}

.landing-hero-scene--robot .landing-scene__float--4 {
    background: linear-gradient(165deg, #fdf4ff 0%, #e9d5ff 55%, #d8b4fe 100%);
}

.landing-scene__pipeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.landing-scene__step {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(226, 232, 240, 0.75);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: landing-step-glow 10s ease-in-out infinite;
    animation-delay: calc(var(--step) * 2s);
}

.landing-scene__caption,
.university-scene__caption {
    margin: 10px 0 0;
    text-align: center;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.5;
    color: #e2e8f0;
}

body.corp-site .landing-hero-card .landing-scene__caption,
body.corp-site .landing-hero-card .university-scene__caption {
    color: #f1f5f9 !important;
    text-shadow: 0 1px 2px rgba(15, 23, 42, 0.35);
}

@keyframes landing-ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes landing-core-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@keyframes landing-float-a {
    0%, 100% { transform: rotate(8deg) translateY(0); }
    50% { transform: rotate(8deg) translateY(-8px); }
}

@keyframes landing-float-b {
    0%, 100% { transform: rotate(-12deg) translateY(0); }
    50% { transform: rotate(-12deg) translateY(-7px); }
}

@keyframes landing-float-c {
    0%, 100% { transform: rotate(14deg) translateY(0); }
    50% { transform: rotate(14deg) translateY(-9px); }
}

@keyframes landing-float-d {
    0%, 100% { transform: rotate(-6deg) translateY(0); }
    50% { transform: rotate(-6deg) translateY(-6px); }
}

@keyframes landing-step-glow {
    0%, 18%, 100% {
        color: rgba(226, 232, 240, 0.72);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.12);
        box-shadow: none;
    }
    4%, 14% {
        color: #0f172a;
        background: linear-gradient(135deg, #fde68a, #fbbf24);
        border-color: rgba(251, 191, 36, 0.65);
        box-shadow: 0 6px 18px rgba(251, 191, 36, 0.35);
    }
}

.landing-hero-scene--website .landing-scene__step {
    animation-name: landing-step-glow-website;
}

.landing-hero-scene--robot .landing-scene__step {
    animation-name: landing-step-glow-robot;
}

@keyframes landing-step-glow-website {
    0%, 18%, 100% {
        color: rgba(226, 232, 240, 0.72);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.12);
        box-shadow: none;
    }
    4%, 14% {
        color: #0f172a;
        background: linear-gradient(135deg, #7dd3fc, #0ea5e9);
        border-color: rgba(56, 189, 248, 0.65);
        box-shadow: 0 6px 18px rgba(56, 189, 248, 0.35);
    }
}

@keyframes landing-step-glow-robot {
    0%, 18%, 100% {
        color: rgba(226, 232, 240, 0.72);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.12);
        box-shadow: none;
    }
    4%, 14% {
        color: #0f172a;
        background: linear-gradient(135deg, #ddd6fe, #a78bfa);
        border-color: rgba(167, 139, 250, 0.65);
        box-shadow: 0 6px 18px rgba(167, 139, 250, 0.35);
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-scene__ring--outer,
    .landing-scene__ring--inner,
    .landing-scene__core,
    .landing-scene__float,
    .landing-scene__step {
        animation: none !important;
    }
}

@media (max-width: 960px) {
    body.corp-site .landing-hero--animated .landing-hero-grid {
        grid-template-columns: 1fr;
    }

    .landing-scene__stage {
        height: 200px;
    }
}

body.corp-site .section-title--split {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    text-align: start;
}

body.corp-site .section-title--split h2 {
    margin: 0 0 6px;
}

body.corp-site .section-title--split p {
    margin: 0;
}

body.corp-site .corp-landing-faq {
    max-width: 820px;
    margin-inline: auto;
}

body.corp-site .corp-landing-faq-more {
    margin-top: 20px;
    text-align: center;
}

body.corp-site .corp-landing-related {
    justify-content: center;
}

body.corp-site .rich-content {
    line-height: 1.95;
    color: var(--corp-text-secondary);
}

body.corp-site .rich-content h2,
body.corp-site .rich-content h3 {
    margin-top: 1.5em;
    color: var(--corp-text);
}

/* ——— آکاردئون / FAQ ——— */
body.corp-site .accordion details,
body.corp-site .home-faq .faq-item {
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius);
    margin-bottom: 12px;
    box-shadow: var(--corp-shadow-sm);
    overflow: hidden;
}

body.corp-site .accordion details summary,
body.corp-site .home-faq .faq-summary {
    padding: 18px 20px;
    font-weight: 700;
    color: var(--corp-text);
    cursor: pointer;
    list-style: none;
}

body.corp-site .accordion details[open] summary,
body.corp-site .home-faq .faq-item[open] {
    border-color: rgba(29, 78, 216, 0.3);
}

body.corp-site .accordion details p,
body.corp-site .home-faq .faq-answer {
    padding: 0 20px 18px;
    color: var(--corp-text-secondary);
    line-height: 1.9;
}

body.corp-site .home-faq .faq-item[open] {
    box-shadow: var(--corp-shadow);
}

body.corp-site .home-faq .faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

body.corp-site .home-faq .faq-summary::-webkit-details-marker {
    display: none;
}

body.corp-site .home-faq .faq-q {
    line-height: 1.65;
    flex: 1;
    min-width: 0;
}

body.corp-site .home-faq .faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(29, 78, 216, 0.1);
    position: relative;
    flex-shrink: 0;
}

body.corp-site .home-faq .faq-toggle::before,
body.corp-site .home-faq .faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--corp-blue);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.corp-site .home-faq .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

body.corp-site .home-faq .faq-item[open] .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

body.corp-site .home-faq .faq-answer {
    border-top: 1px dashed var(--corp-border);
}

body.corp-site .home-faq .faq-answer p {
    margin: 12px 0 0;
}

body.corp-site .corp-faq-page {
    max-width: 820px;
    margin-inline: auto;
}

body.corp-site .corp-faq-list {
    margin-top: 8px;
}

body.corp-site .corp-faq-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    text-align: center;
}

body.corp-site .corp-faq-empty {
    text-align: center;
    padding: clamp(28px, 5vw, 40px);
}

body.corp-site .corp-faq-empty h3 {
    margin: 0 0 10px;
}

body.corp-site .corp-faq-empty .hero-actions {
    margin-top: 20px;
    justify-content: center;
}

/* ——— تماس ——— */
body.corp-site .contact-grid {
    gap: 24px;
}

body.corp-site .contact-form .card-head h3,
body.corp-site .contact-info .card-head h3 {
    margin: 0;
}

body.corp-site .contact-form-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

body.corp-site .contact-form-fields .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

body.corp-site .contact-form-fields .form-field--full {
    grid-column: 1 / -1;
}

body.corp-site .contact-form-fields .form-field input,
body.corp-site .contact-form-fields .form-field textarea {
    width: 100%;
}

body.corp-site .contact-form-fields .form-error {
    color: #dc2626;
    font-size: 0.82rem;
}

body.corp-site .contact-form .btn[type='submit'] {
    width: 100%;
    max-width: 220px;
}

body.corp-site .contact-list {
    gap: 12px;
}

body.corp-site .contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: var(--corp-radius);
    border: 1px solid var(--corp-border);
    background: var(--corp-bg);
}

body.corp-site .contact-list__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(14, 165, 233, 0.08));
    border: 1px solid rgba(29, 78, 216, 0.15);
    color: var(--corp-blue);
}

body.corp-site .contact-list__icon .fa-check {
    font-size: 1rem;
}

body.corp-site .contact-list__body {
    flex: 1;
    min-width: 0;
}

body.corp-site .contact-list__label {
    display: block;
    font-size: 0.82rem;
    color: var(--corp-text-muted);
    margin-bottom: 4px;
}

body.corp-site .contact-list__value {
    color: var(--corp-text);
    font-weight: 700;
    font-size: 0.95rem;
    word-break: break-word;
}

body.corp-site a.contact-list__value:hover {
    color: var(--corp-blue);
}

body.corp-site .contact-list__value--text {
    font-weight: 600;
}

body.corp-site .contact-cta {
    background: linear-gradient(135deg, var(--corp-navy-mid), var(--corp-navy));
    color: #e2e8f0;
    border: none;
}

body.corp-site .contact-cta h4 {
    color: #fff;
}

body.corp-site .contact-cta .muted {
    color: rgba(226, 232, 240, 0.78) !important;
}

@media (max-width: 720px) {
    body.corp-site .contact-form-fields {
        grid-template-columns: 1fr;
    }

    body.corp-site .contact-form-fields .form-field--full {
        grid-column: auto;
    }

    body.corp-site .contact-form .btn[type='submit'] {
        max-width: none;
    }
}

/* ——— فرم‌ها ——— */
body.corp-site .form input,
body.corp-site .form textarea,
body.corp-site .form select {
    border: 1.5px solid var(--corp-border);
    border-radius: 12px;
    background: #f8fafc;
    padding: 13px 14px;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

body.corp-site .form input:focus,
body.corp-site .form textarea:focus,
body.corp-site .form select:focus {
    border-color: var(--corp-blue);
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.12);
    background: #fff;
}

body.corp-site .form label {
    font-weight: 600;
    color: var(--corp-text);
    font-size: 0.9rem;
}

/* فرم جریان سفارش / برآورد — جلوگیری از سرریز افقی در موبایل */
body.corp-site .corp-order-flow__form input,
body.corp-site .corp-order-flow__form textarea,
body.corp-site .corp-order-flow__form select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

/* ——— محصولات ——— */
body.corp-site .product-card {
    border-radius: var(--corp-radius-lg);
    border: 1px solid var(--corp-border);
    background: var(--corp-surface);
    box-shadow: var(--corp-shadow);
    overflow: hidden;
}

body.corp-site .product-card:hover {
    box-shadow: var(--corp-shadow-hover);
    border-color: rgba(29, 78, 216, 0.25);
}

body.corp-site .product-card .product-body h3 a {
    color: var(--corp-text);
    font-weight: 800;
}

body.corp-site .shop-filter-panel {
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius-lg);
    box-shadow: var(--corp-shadow);
    padding: 20px;
}

/* ——— بلاگ ——— */
body.corp-site .blog-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 180px;
}

body.corp-site .blog-card h3 a {
    color: var(--corp-text);
    font-weight: 800;
}

body.corp-site .blog-card h3 a:hover {
    color: var(--corp-blue);
}

body.corp-site .corp-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

body.corp-site .corp-blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

body.corp-site .corp-blog-card__thumb {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--corp-bg);
}

body.corp-site .corp-blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.corp-site .corp-blog-card__body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

body.corp-site .corp-blog-card__excerpt {
    flex: 1;
}

body.corp-site .corp-blog-paths {
    margin-bottom: 24px;
}

body.corp-site .corp-blog-empty {
    grid-column: 1 / -1;
}

body.corp-site .corp-blog-article {
    padding: clamp(20px, 3vw, 32px);
}

body.corp-site .corp-blog-article__cover {
    margin: -8px -8px 20px;
    border-radius: var(--corp-radius);
    overflow: hidden;
}

body.corp-site .corp-blog-article__cover img {
    width: 100%;
    height: auto;
    display: block;
}

body.corp-site .corp-blog-article__date {
    margin: 0 0 16px;
}

body.corp-site .corp-blog-article__content {
    color: var(--corp-text-secondary);
    line-height: 1.95;
}

body.corp-site .corp-blog-related,
body.corp-site .corp-blog-comments {
    margin-top: 24px;
}

body.corp-site .corp-blog-related-list {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

/* ——— سفارش / برآورد (جریان یکپارچه) ——— */
body.corp-site .corp-order-flow__inner {
    max-width: 1180px;
    margin-inline: auto;
}

body.corp-site .corp-order-flow-nav {
    margin-bottom: 24px;
}

body.corp-site .corp-order-flow__layout {
    display: grid;
    gap: 24px;
    align-items: start;
    min-width: 0;
}

body.corp-site .corp-estimate-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

body.corp-site .corp-custom-order-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

body.corp-site .corp-order-flow__panel,
body.corp-site .corp-order-flow__aside,
body.corp-site .corp-order-flow__tips {
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid var(--corp-border);
    border-radius: calc(var(--corp-radius) + 4px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

body.corp-site .corp-order-flow__panel-head h2 {
    margin: 0 0 6px;
    color: var(--corp-text);
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
}

body.corp-site .corp-order-flow__panel-head p {
    margin: 0;
}

body.corp-site .corp-order-flow__fields {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

body.corp-site .corp-order-flow__dynamic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

body.corp-site .corp-order-flow__options {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    background: var(--corp-bg);
    border: 1px dashed var(--corp-border);
    border-radius: var(--corp-radius);
    direction: rtl;
    text-align: right;
}

/* ردیف گزینه‌ها: چک‌بابس سمت راست، متن راست‌چین (هماهنگ با RTL صفحه) */
body.corp-site .corp-order-flow__options > .form-group.checkbox-group,
body.corp-site .corp-order-flow__options > .checkbox-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    gap: 12px;
    text-align: right;
}

body.corp-site .corp-order-flow__options .checkbox-group input[type='checkbox'] {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 0.2rem 0 0;
    cursor: pointer;
}

body.corp-site .corp-order-flow__options .checkbox-group label {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    text-align: right;
    line-height: 1.55;
    font-weight: 600;
    color: var(--corp-text);
    cursor: pointer;
}

body.corp-site .corp-order-flow__submit {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

body.corp-site .btn.btn--block {
    width: 100%;
}

body.corp-site .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ——— انتخاب نوع خدمت (کارت‌ها) ——— */
body.corp-site .corp-service-picker {
    position: relative;
    font-family: 'Vazirmatn', 'Tahoma', 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.corp-site .corp-service-picker__select {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    pointer-events: none;
}

body.corp-site .corp-service-picker__select input,
body.corp-site .corp-service-picker__select select {
    pointer-events: none;
}

body.corp-site .corp-service-picker__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px 16px;
    margin-bottom: 18px;
}

body.corp-site .corp-service-picker__label {
    margin: 0;
    font-weight: 800;
    font-size: clamp(1rem, 2.4vw, 1.08rem);
    letter-spacing: -0.01em;
    color: var(--corp-text);
}

body.corp-site .corp-service-picker__hint {
    font-size: clamp(0.78rem, 2vw, 0.86rem);
    line-height: 1.55;
}

body.corp-site .corp-service-picker__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

body.corp-site .corp-service-card {
    --svc-accent: #1d4ed8;
    --svc-accent-soft: rgba(29, 78, 216, 0.1);
    --svc-accent-mid: rgba(29, 78, 216, 0.18);
    --svc-accent-glow: rgba(29, 78, 216, 0.2);
    --svc-active-bg: #eff6ff;
    --svc-hover-border: rgba(29, 78, 216, 0.38);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-height: 0;
    padding: 0;
    text-align: right;
    font: inherit;
    color: inherit;
    background: #fff;
    border: 1px solid var(--corp-border);
    border-radius: 18px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    cursor: pointer;
    pointer-events: auto;
    overflow: hidden;
    touch-action: manipulation;
    z-index: 1;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

body.corp-site .corp-service-card--blue {
    --svc-accent: #1d4ed8;
    --svc-accent-soft: rgba(29, 78, 216, 0.1);
    --svc-accent-mid: rgba(29, 78, 216, 0.18);
    --svc-accent-glow: rgba(29, 78, 216, 0.22);
    --svc-active-bg: #eff6ff;
    --svc-hover-border: rgba(29, 78, 216, 0.4);
}

body.corp-site .corp-service-card--indigo {
    --svc-accent: #4338ca;
    --svc-accent-soft: rgba(67, 56, 202, 0.1);
    --svc-accent-mid: rgba(67, 56, 202, 0.18);
    --svc-accent-glow: rgba(67, 56, 202, 0.22);
    --svc-active-bg: #eef2ff;
    --svc-hover-border: rgba(67, 56, 202, 0.4);
}

body.corp-site .corp-service-card--violet {
    --svc-accent: #7c3aed;
    --svc-accent-soft: rgba(124, 58, 237, 0.1);
    --svc-accent-mid: rgba(124, 58, 237, 0.18);
    --svc-accent-glow: rgba(124, 58, 237, 0.22);
    --svc-active-bg: #f5f3ff;
    --svc-hover-border: rgba(124, 58, 237, 0.4);
}

body.corp-site .corp-service-card--emerald {
    --svc-accent: #059669;
    --svc-accent-soft: rgba(5, 150, 105, 0.1);
    --svc-accent-mid: rgba(5, 150, 105, 0.18);
    --svc-accent-glow: rgba(5, 150, 105, 0.22);
    --svc-active-bg: #ecfdf5;
    --svc-hover-border: rgba(5, 150, 105, 0.4);
}

body.corp-site .corp-service-card--amber {
    --svc-accent: #d97706;
    --svc-accent-soft: rgba(217, 119, 6, 0.12);
    --svc-accent-mid: rgba(217, 119, 6, 0.2);
    --svc-accent-glow: rgba(217, 119, 6, 0.22);
    --svc-active-bg: #fffbeb;
    --svc-hover-border: rgba(217, 119, 6, 0.42);
}

body.corp-site .corp-service-card--rose {
    --svc-accent: #e11d48;
    --svc-accent-soft: rgba(225, 29, 72, 0.1);
    --svc-accent-mid: rgba(225, 29, 72, 0.18);
    --svc-accent-glow: rgba(225, 29, 72, 0.22);
    --svc-active-bg: #fff1f2;
    --svc-hover-border: rgba(225, 29, 72, 0.4);
}

body.corp-site .corp-service-card--slate {
    --svc-accent: #475569;
    --svc-accent-soft: rgba(71, 85, 105, 0.1);
    --svc-accent-mid: rgba(71, 85, 105, 0.16);
    --svc-accent-glow: rgba(71, 85, 105, 0.18);
    --svc-active-bg: #f8fafc;
    --svc-hover-border: rgba(71, 85, 105, 0.35);
}

body.corp-site .corp-service-card__accent {
    display: block;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--svc-accent) 0%, var(--svc-accent-mid) 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

body.corp-site .corp-service-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 0;
}

body.corp-site .corp-service-card__icon-wrap {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--svc-accent-soft);
    color: var(--svc-accent);
    font-size: 1.28rem;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

body.corp-site .corp-service-card__check {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-top: 2px;
    border-radius: 999px;
    border: 2px solid var(--corp-border);
    background: #fff;
    color: transparent;
    font-size: 0.7rem;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

body.corp-site .corp-service-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    padding: 12px 16px 0;
}

body.corp-site .corp-service-card__title {
    display: block;
    color: var(--corp-text);
    font-size: clamp(0.95rem, 2.6vw, 1.06rem);
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: -0.02em;
    word-break: break-word;
}

body.corp-site .corp-service-card__desc {
    display: block;
    color: var(--corp-text-secondary);
    font-size: clamp(0.8rem, 2.2vw, 0.88rem);
    font-weight: 500;
    line-height: 1.65;
    word-break: break-word;
}

body.corp-site .corp-service-card__footer {
    display: flex;
    margin-top: auto;
    padding: 12px 16px 16px;
}

body.corp-site .corp-service-card__price {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 6px 12px;
    border-radius: 10px;
    background: var(--svc-accent-soft);
    color: var(--svc-accent);
    font-size: clamp(0.74rem, 2vw, 0.82rem);
    font-weight: 700;
    line-height: 1.45;
    font-variant-numeric: tabular-nums;
    word-break: break-word;
}

@media (hover: hover) and (pointer: fine) {
    body.corp-site .corp-service-card:hover {
        border-color: var(--svc-hover-border);
        box-shadow: 0 10px 28px var(--svc-accent-glow);
    }

    body.corp-site .corp-service-card:hover .corp-service-card__icon-wrap {
        box-shadow: 0 6px 16px var(--svc-accent-glow);
    }
}

body.corp-site .corp-service-card:focus-visible {
    outline: 2px solid var(--svc-accent);
    outline-offset: 2px;
}

body.corp-site .corp-service-card.is-active {
    border-color: var(--svc-accent);
    background: var(--svc-active-bg);
    box-shadow: 0 12px 32px var(--svc-accent-glow);
}

body.corp-site .corp-service-card.is-active .corp-service-card__accent {
    opacity: 1;
}

body.corp-site .corp-service-card.is-active .corp-service-card__check {
    border-color: var(--svc-accent);
    background: var(--svc-accent);
    color: #fff;
    transform: scale(1);
}

body.corp-site .corp-service-card.is-active .corp-service-card__icon-wrap {
    background: var(--svc-accent);
    color: #fff;
    box-shadow: 0 8px 20px var(--svc-accent-glow);
}

body.corp-site .corp-service-card.is-active .corp-service-card__title {
    color: var(--svc-accent);
}

@media (max-width: 519px) {
    /*
     * موبایل باریک: بدون اسکرول افقی — مثل تبلت با کارت‌های فشرده‌تر
     * (گرید واکنش‌گرا؛ تعداد ستون بر اساس عرض خودکار)
     */
    body.corp-site .corp-service-picker::before,
    body.corp-site .corp-service-picker::after {
        content: none;
        display: none;
    }

    body.corp-site .corp-service-picker__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 142px), 1fr));
        gap: 10px;
        margin: 0 0 10px;
        padding: 0;
        overflow: visible;
        scroll-snap-type: none;
    }

    body.corp-site .corp-service-card {
        width: 100%;
        min-width: 0;
        min-height: 0;
        border-radius: 14px;
    }

    body.corp-site .corp-service-card__header {
        padding: 10px 10px 0;
        gap: 8px;
    }

    body.corp-site .corp-service-card__icon-wrap {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 12px;
    }

    body.corp-site .corp-service-card__check {
        width: 22px;
        height: 22px;
        font-size: 0.62rem;
    }

    body.corp-site .corp-service-card__body {
        padding: 8px 10px 0;
        gap: 4px;
    }

    body.corp-site .corp-service-card__title {
        font-size: clamp(0.8rem, 3.4vw, 0.94rem);
    }

    body.corp-site .corp-service-card__desc {
        font-size: clamp(0.7rem, 2.9vw, 0.8rem);
        line-height: 1.55;
    }

    body.corp-site .corp-service-card__footer {
        padding: 8px 10px 10px;
    }

    body.corp-site .corp-service-card__price {
        padding: 4px 8px;
        font-size: 0.72rem;
    }
}

@media (min-width: 520px) {
    body.corp-site .corp-service-picker__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (min-width: 1024px) {
    body.corp-site .corp-service-picker__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    body.corp-site .corp-service-card__header {
        padding: 18px 18px 0;
    }

    body.corp-site .corp-service-card__body {
        padding: 14px 18px 0;
    }

    body.corp-site .corp-service-card__footer {
        padding: 14px 18px 18px;
    }
}

body.corp-site .corp-estimate-result__head {
    margin-bottom: 12px;
}

body.corp-site .corp-estimate-result__badge {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(29, 78, 216, 0.12);
    color: var(--corp-primary);
    font-size: 0.78rem;
    font-weight: 700;
}

body.corp-site .corp-estimate-result__head h2 {
    margin: 0;
    color: var(--corp-text);
    font-size: 1.2rem;
}

body.corp-site .corp-estimate-tips h3 {
    margin: 0 0 12px;
    color: var(--corp-text);
}

body.corp-site .corp-order-flow__tips-list {
    margin-bottom: 12px;
}

body.corp-site .corp-order-flow__tips-note {
    margin: 0;
    font-size: 0.88rem;
}

body.corp-site .corp-estimate-breakdown {
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

body.corp-site .corp-estimate-breakdown li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px 12px;
    padding: 10px 12px;
    background: rgba(29, 78, 216, 0.06);
    border: 1px solid rgba(29, 78, 216, 0.12);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--corp-text-secondary);
}

body.corp-site .corp-estimate-breakdown li > span,
body.corp-site .corp-estimate-breakdown li > strong {
    min-width: 0;
}

body.corp-site .corp-estimate-breakdown li > span {
    flex: 1 1 8rem;
}

body.corp-site .corp-estimate-breakdown li > strong {
    flex: 0 1 auto;
    text-align: end;
    word-break: break-word;
    overflow-wrap: anywhere;
}

body.corp-site .corp-estimate-summary {
    margin: 16px 0 0;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(29, 78, 216, 0.28);
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.14) 0%, rgba(14, 165, 233, 0.1) 55%, rgba(5, 150, 105, 0.08) 100%);
    color: #1e3a8a;
    font-size: clamp(0.88rem, 2.5vw, 0.98rem);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.1);
}

body.corp-site .corp-estimate-summary:empty {
    display: none;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
}

body.corp-site .corp-estimate-metric--price strong {
    color: var(--corp-primary);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* ——— برآورد قیمت ——— */
body.corp-site .corp-estimate-paths {
    margin-bottom: 24px;
}

body.corp-site .corp-estimate-form__title,
body.corp-site .corp-estimate-result__title {
    margin: 0 0 16px;
    color: var(--corp-text);
    font-size: 1.2rem;
}

body.corp-site .corp-estimate-form .alert {
    margin-bottom: 16px;
}

body.corp-site .corp-estimate-metrics {
    margin: 16px 0;
}

body.corp-site .corp-estimate-metric {
    background: var(--corp-bg);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius);
    padding: 14px 16px;
}

body.corp-site .corp-estimate-metric strong {
    display: block;
    margin-top: 6px;
    font-size: 1.15rem;
    color: var(--corp-blue);
    word-break: break-word;
    overflow-wrap: anywhere;
}

body.corp-site .corp-estimate-breakdown li {
    background: rgba(29, 78, 216, 0.06);
    border-color: rgba(29, 78, 216, 0.15);
    color: var(--corp-text-secondary);
}

body.corp-site .corp-estimate-note {
    margin-top: 24px;
    padding: 20px 22px;
}

body.corp-site .corp-estimate-note h3 {
    margin: 0 0 8px;
    color: var(--corp-text);
}

/* ——— سفارش اختصاصی ——— */
body.corp-site .corp-custom-order-paths {
    margin-bottom: 24px;
}

body.corp-site .corp-custom-order-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

body.corp-site .corp-custom-order-step {
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius);
    padding: 18px 20px;
}

body.corp-site .corp-custom-order-step__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: rgba(29, 78, 216, 0.12);
    color: var(--corp-primary);
    font-weight: 700;
    font-size: 0.85rem;
}

body.corp-site .corp-custom-order-step h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: var(--corp-text);
}

body.corp-site .corp-custom-order-step p {
    margin: 0;
    font-size: 0.92rem;
}

body.corp-site .corp-custom-order-form__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--corp-border);
}

body.corp-site .corp-custom-order-form__title {
    margin: 0 0 6px;
    color: var(--corp-text);
    font-size: 1.25rem;
}

body.corp-site .corp-custom-order-form__lead {
    margin: 0;
}

body.corp-site .corp-custom-order-form__actions {
    margin: 0;
}

body.corp-site .corp-custom-order-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed var(--corp-border);
}

body.corp-site .corp-custom-order-section h3 {
    margin: 0 0 16px;
    color: var(--corp-text);
    font-size: 1.05rem;
}

/* چک‌باکس‌های سفارش اختصاصی — راست‌چین و یک ردیف تمیز (موبایل / تبلت / دسکتاپ) */
body.corp-site .corp-custom-order-form .form-group.checkbox-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-custom-order-form .form-group.checkbox-group input[type='checkbox'] {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 0.2rem 0 0;
    cursor: pointer;
    accent-color: var(--corp-blue);
}

body.corp-site .corp-custom-order-form .form-group.checkbox-group > label {
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    text-align: right;
    line-height: 1.55;
    font-weight: 600;
    color: var(--corp-text);
    cursor: pointer;
}

body.corp-site .corp-custom-order-form .form-group.checkbox-group > ul.errorlist,
body.corp-site .corp-custom-order-form .form-group.checkbox-group .errorlist {
    flex: 1 0 100%;
    width: 100%;
    margin: 4px 0 0;
    padding: 0;
    text-align: right;
    list-style-position: inside;
}

body.corp-site .corp-custom-order-hint {
    background: rgba(29, 78, 216, 0.06);
    border: 1px solid rgba(29, 78, 216, 0.15);
    border-radius: var(--corp-radius);
    padding: 14px 16px;
}

body.corp-site .corp-custom-order-auth {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--corp-border);
}

body.corp-site .corp-custom-order-aside h3 {
    margin: 0 0 14px;
    color: var(--corp-text);
}

body.corp-site .corp-custom-order-benefits {
    margin-bottom: 18px;
}

body.corp-site .corp-custom-order-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

body.corp-site .corp-custom-order-stats strong {
    display: block;
    margin-top: 4px;
    color: var(--corp-primary);
}

body.corp-site .corp-custom-order-callout {
    background: var(--corp-bg);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius);
    padding: 14px 16px;
}

body.corp-site .corp-custom-order-callout strong {
    display: block;
    margin-bottom: 6px;
    color: var(--corp-text);
}

@media (max-width: 900px) {
    body.corp-site .corp-custom-order-steps {
        grid-template-columns: 1fr;
    }

    body.corp-site .corp-estimate-layout,
    body.corp-site .corp-custom-order-layout,
    body.corp-site .corp-cart-layout {
        grid-template-columns: 1fr;
    }

    body.corp-site .corp-order-flow__dynamic-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body.corp-site .corp-custom-order-page,
    body.corp-site .corp-estimate-page {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }

    body.corp-site .corp-custom-order-form__head,
    body.corp-site .corp-order-flow__panel-head {
        flex-direction: column;
    }

    /* برآورد سفارش — موبایل: بدون اسکرول افقی، فیلد و دکمه تمام‌عرض */
    body.corp-site .corp-estimate-page .corp-order-flow__layout,
    body.corp-site .corp-estimate-page .corp-order-flow__panel,
    body.corp-site .corp-estimate-page .corp-order-flow__aside,
    body.corp-site .corp-estimate-page .corp-order-flow__tips {
        min-width: 0;
        max-width: 100%;
    }

    body.corp-site .corp-estimate-page .corp-estimate-result__actions.hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 10px;
    }

    body.corp-site .corp-estimate-page .corp-estimate-result__actions.hero-actions .btn,
    body.corp-site .corp-estimate-page .corp-estimate-result__actions.hero-actions .btn.ghost {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    body.corp-site .corp-estimate-page .corp-estimate-summary {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    /* تب‌های مسیر سفارش/برآورد: بدون اسکرول افقی — چیدمان چندسطره مثل تبلت */
    body.corp-site .corp-estimate-page .corp-order-flow-nav.corp-services-filters,
    body.corp-site .corp-custom-order-page .corp-order-flow-nav.corp-services-filters {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        overflow: visible;
        gap: 8px;
        padding-bottom: 0;
        margin-inline: 0;
    }

    body.corp-site .corp-estimate-page .corp-order-flow-nav .cat-pill,
    body.corp-site .corp-custom-order-page .corp-order-flow-nav .cat-pill {
        flex: 0 1 auto;
        white-space: normal;
        text-align: center;
        padding: 8px 14px;
        font-size: 0.86rem;
        line-height: 1.35;
        max-width: 100%;
    }
}

/* ——— سبد خرید ——— */
body.corp-site .corp-cart-page .corp-order-flow__inner {
    max-width: 1180px;
}

body.corp-site .corp-checkout-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
    direction: rtl;
}

body.corp-site .corp-checkout-step {
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    color: var(--corp-text-muted);
    box-shadow: var(--corp-shadow-sm);
}

body.corp-site .corp-checkout-step.is-active {
    background: var(--corp-blue);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.35);
}

body.corp-site .corp-checkout-step.is-done {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    border-color: rgba(5, 150, 105, 0.28);
}

body.corp-site .corp-cart-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: start;
}

body.corp-site .corp-cart-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

body.corp-site .corp-cart-item {
    padding: clamp(16px, 3vw, 22px);
    min-width: 0;
}

body.corp-site .corp-cart-item.card:hover {
    transform: translateY(-2px);
}

body.corp-site .corp-cart-item__main {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px 16px;
    align-items: start;
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-cart-item__media img {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
    display: block;
    background: var(--corp-bg);
}

body.corp-site .corp-cart-item__placeholder {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--corp-bg);
    border: 1px solid var(--corp-border);
    color: var(--corp-text-muted);
    font-size: 1.4rem;
}

body.corp-site .corp-cart-item__title {
    margin: 0 0 4px;
    font-size: 1.05rem;
}

body.corp-site .corp-cart-item__title .link {
    font-weight: 800;
    color: var(--corp-text);
}

body.corp-site .corp-cart-item__desc {
    margin: 0 0 8px;
    font-size: 0.88rem;
    line-height: 1.6;
}

body.corp-site .corp-cart-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

body.corp-site .corp-cart-item__price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    text-align: end;
    white-space: nowrap;
}

body.corp-site .corp-cart-item__price {
    font-size: 1.1rem;
    color: var(--corp-blue);
}

body.corp-site .corp-cart-item__remove {
    font-size: 0.88rem;
}

body.corp-site .corp-cart-install {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--corp-border);
}

body.corp-site .corp-cart-install__label {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px 12px;
    width: 100%;
    box-sizing: border-box;
    direction: rtl;
    text-align: right;
    cursor: pointer;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(29, 78, 216, 0.06);
    border: 1px solid rgba(29, 78, 216, 0.12);
    font-weight: 600;
    color: var(--corp-text);
    line-height: 1.55;
}

body.corp-site .corp-cart-install__label input[type='checkbox'] {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 0.15rem 0 0;
    accent-color: var(--corp-blue);
    cursor: pointer;
}

body.corp-site .corp-cart-install__label > span {
    flex: 1 1 auto;
    min-width: 0;
    word-break: break-word;
}

body.corp-site .corp-cart-empty {
    text-align: center;
    padding: clamp(28px, 5vw, 40px);
}

body.corp-site .corp-cart-empty__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(29, 78, 216, 0.1);
    color: var(--corp-blue);
    font-size: 1.6rem;
}

body.corp-site .corp-cart-empty h2 {
    margin: 0 0 8px;
    color: var(--corp-text);
}

body.corp-site .corp-cart-empty__actions {
    justify-content: center;
    margin-top: 20px;
}

body.corp-site .corp-cart-summary h2 {
    margin: 0 0 16px;
    font-size: 1.15rem;
    color: var(--corp-text);
}

body.corp-site .corp-cart-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--corp-border);
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-cart-summary__rows .corp-cart-summary__row:last-child {
    border-bottom: none;
}

body.corp-site .corp-cart-summary__note {
    margin: 14px 0 18px;
    font-size: 0.88rem;
    line-height: 1.65;
}

body.corp-site .corp-cart-summary__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

body.corp-site .corp-cart-summary__back {
    display: block;
    margin-top: 14px;
    text-align: center;
    font-size: 0.9rem;
}

body.corp-site .corp-cart-summary.order-summary {
    position: sticky;
    top: calc(var(--corp-header-h) + 16px);
    height: fit-content;
}

@media (max-width: 900px) {
    body.corp-site .corp-cart-layout {
        grid-template-columns: 1fr;
    }

    body.corp-site .corp-cart-summary.order-summary {
        position: static;
    }
}

@media (max-width: 640px) {
    body.corp-site .corp-cart-page {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }

    body.corp-site .corp-cart-page .corp-order-flow__layout,
    body.corp-site .corp-cart-page .corp-cart-item,
    body.corp-site .corp-cart-page .corp-cart-summary {
        min-width: 0;
        max-width: 100%;
    }

    body.corp-site .corp-cart-item__main {
        grid-template-columns: auto minmax(0, 1fr);
        grid-template-areas:
            'media body'
            'price price';
    }

    body.corp-site .corp-cart-item__media {
        grid-area: media;
    }

    body.corp-site .corp-cart-item__body {
        grid-area: body;
    }

    body.corp-site .corp-cart-item__price-block {
        grid-area: price;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-top: 12px;
        margin-top: 4px;
        border-top: 1px solid var(--corp-border);
        white-space: normal;
    }

    body.corp-site .corp-cart-empty__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    body.corp-site .corp-cart-empty__actions .btn,
    body.corp-site .corp-cart-empty__actions .btn.ghost {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    body.corp-site .corp-cart-summary__cta {
        width: 100%;
    }
}

/* ——— تسویه حساب ——— */
body.corp-site .corp-checkout-page .corp-order-flow__inner {
    max-width: 1180px;
}

body.corp-site .corp-checkout-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: start;
}

body.corp-site .corp-checkout-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

body.corp-site .corp-checkout-form__grid .form-group:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

body.corp-site .corp-checkout-alert {
    margin-top: 16px;
}

body.corp-site .corp-radio-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    direction: rtl;
}

body.corp-site .corp-radio-group li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--corp-border);
    border-radius: 12px;
    background: var(--corp-surface);
    cursor: pointer;
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-radio-group li:has(input:checked) {
    border-color: rgba(29, 78, 216, 0.45);
    background: rgba(29, 78, 216, 0.06);
}

body.corp-site .corp-radio-group input[type='radio'] {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 0.15rem 0 0;
    accent-color: var(--corp-blue);
    cursor: pointer;
}

body.corp-site .corp-radio-group label {
    flex: 1 1 auto;
    min-width: 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--corp-text);
}

body.corp-site .corp-payment-panel {
    padding: 16px;
    border-radius: 12px;
    background: var(--corp-bg);
    border: 1px dashed var(--corp-border);
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-payment-panel.is-hidden {
    display: none;
}

body.corp-site .corp-payment-panel h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: var(--corp-text);
}

body.corp-site .corp-payment-card-list {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: grid;
    gap: 8px;
}

body.corp-site .corp-payment-card-list li {
    font-size: 0.92rem;
    color: var(--corp-text-secondary);
}

body.corp-site .corp-checkout-summary__items {
    margin-bottom: 8px;
}

body.corp-site .corp-checkout-summary__item {
    font-size: 0.9rem;
}

body.corp-site .corp-checkout-summary__total {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 2px solid var(--corp-border-strong);
    font-size: 1.05rem;
}

body.corp-site .corp-checkout-summary__total strong {
    color: var(--corp-blue);
    font-size: 1.15rem;
}

body.corp-site .corp-checkout-trust {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--corp-text-muted);
}

body.corp-site .corp-checkout-trust li {
    position: relative;
    padding-right: 18px;
}

body.corp-site .corp-checkout-trust li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #059669;
    font-weight: 700;
}

body.corp-site .corp-checkout-form__back {
    margin-top: 16px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    body.corp-site .corp-checkout-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body.corp-site .corp-checkout-page {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }

    body.corp-site .corp-checkout-form__grid {
        grid-template-columns: 1fr;
    }
}

/* ——— ثبت نهایی سفارش ——— */
body.corp-site .corp-order-success-page .corp-order-flow__inner {
    max-width: 760px;
}

body.corp-site .corp-order-success {
    text-align: center;
    padding: clamp(28px, 5vw, 44px);
}

body.corp-site .corp-order-success__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.12);
    color: #059669;
    font-size: 2rem;
}

body.corp-site .corp-order-success h2 {
    margin: 0 0 10px;
    color: var(--corp-text);
}

body.corp-site .corp-order-success__id {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

body.corp-site .corp-order-success__pay,
body.corp-site .corp-order-success__actions {
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

body.corp-site .corp-order-success__proof {
    max-width: 420px;
    margin: 20px auto 0;
    text-align: right;
    direction: rtl;
}

body.corp-site .corp-order-success .corp-payment-panel {
    max-width: 480px;
    margin: 16px auto;
    text-align: right;
}

/* ——— سفارش‌های من ——— */
body.corp-site .corp-my-orders-page .corp-order-flow__inner {
    max-width: 980px;
}

body.corp-site .corp-my-orders-grid {
    display: grid;
    gap: 16px;
}

body.corp-site .corp-order-card {
    padding: clamp(18px, 3vw, 24px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.corp-site .corp-order-card.is-clickable {
    cursor: pointer;
}

body.corp-site .corp-order-card.is-clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

body.corp-site .corp-order-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    direction: rtl;
}

body.corp-site .corp-order-card__id {
    font-size: 1.05rem;
    color: var(--corp-text);
}

body.corp-site .corp-order-card__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    direction: rtl;
}

body.corp-site .corp-order-card__meta strong {
    color: var(--corp-blue);
    font-size: 1.1rem;
}

body.corp-site .corp-order-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 0.88rem;
    margin-bottom: 14px;
    direction: rtl;
}

body.corp-site .corp-order-card__actions {
    margin-bottom: 12px;
}

body.corp-site .corp-order-card__downloads {
    padding-top: 14px;
    border-top: 1px dashed var(--corp-border);
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-download-grid {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

body.corp-site .corp-download-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--corp-border);
    border-radius: 12px;
    background: var(--corp-bg);
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-download-card strong {
    display: block;
    color: var(--corp-text);
    font-size: 0.92rem;
}

body.corp-site .corp-download-card p {
    margin: 2px 0 0;
    font-size: 0.85rem;
}

/* ——— لیست درخواست‌های اختصاصی ——— */
body.corp-site .corp-custom-orders-list-page .dashboard-content {
    min-width: 0;
}

body.corp-site .corp-custom-orders-list-paths {
    margin-bottom: 20px;
}

body.corp-site .corp-custom-orders-list-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    padding: clamp(16px, 2.5vw, 22px);
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius-lg);
    direction: rtl;
}

body.corp-site .corp-custom-orders-list-toolbar__hint {
    margin: 0;
    flex: 1;
    min-width: min(100%, 220px);
}

body.corp-site .corp-custom-orders-list-toolbar__actions {
    flex-shrink: 0;
}

body.corp-site .corp-custom-orders-grid {
    display: grid;
    gap: 16px;
}

body.corp-site .corp-custom-order-card__type {
    font-weight: 600;
    color: var(--corp-text);
}

body.corp-site .corp-custom-orders-empty {
    grid-column: 1 / -1;
}

@media (max-width: 720px) {
    body.corp-site .corp-custom-orders-list-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    body.corp-site .corp-custom-orders-list-toolbar__actions {
        width: 100%;
    }

    body.corp-site .corp-custom-orders-list-toolbar__actions .btn {
        flex: 1;
        justify-content: center;
    }

    body.corp-site .corp-custom-orders-list-page.dashboard-page {
        padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px));
    }
}

/* ═══ جزئیات سفارش اختصاصی ═══ */
body.corp-site .corp-custom-order-detail-page .dashboard-content {
    min-width: 0;
}

body.corp-site .corp-custom-order-detail-paths {
    margin-bottom: 20px;
}

body.corp-site .corp-custom-order-detail-hero {
    margin-bottom: 20px;
    padding: clamp(18px, 3vw, 24px);
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-custom-order-detail-hero__main {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

body.corp-site .corp-custom-order-detail-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
}

body.corp-site .corp-custom-order-detail-stat {
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--corp-bg);
    border: 1px solid var(--corp-border);
}

body.corp-site .corp-custom-order-detail-stat span {
    display: block;
    font-size: 0.82rem;
    margin-bottom: 4px;
}

body.corp-site .corp-custom-order-detail-stat strong {
    color: var(--corp-blue);
    font-size: 1.05rem;
}

body.corp-site .corp-custom-order-detail-stat--warn strong {
    color: #b45309;
}

body.corp-site .corp-order-timeline-card {
    margin-bottom: 20px;
    padding: clamp(18px, 3vw, 24px);
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-order-timeline-card .order-timeline-head h3 {
    margin: 0;
    color: var(--corp-text);
}

body.corp-site .corp-order-timeline-percent {
    color: var(--corp-blue);
    font-weight: 700;
}

body.corp-site .corp-order-timeline-card .order-timeline-track {
    background: var(--corp-bg);
    border-radius: 999px;
    height: 8px;
    margin: 14px 0;
}

body.corp-site .corp-order-timeline-card .order-timeline-bar {
    background: var(--corp-gradient-brand);
    border-radius: 999px;
}

body.corp-site .corp-order-timeline-step strong {
    color: var(--corp-text);
}

body.corp-site .corp-custom-order-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 20px;
}

body.corp-site .corp-custom-order-info h2,
body.corp-site .corp-custom-order-files h2,
body.corp-site .corp-custom-order-offers h2,
body.corp-site .corp-custom-order-payment h2,
body.corp-site .corp-custom-order-chat h2,
body.corp-site .corp-custom-order-reply h2,
body.corp-site .corp-custom-order-finals h2 {
    margin: 0 0 14px;
    color: var(--corp-text);
    font-size: 1.15rem;
}

body.corp-site .corp-custom-order-section-head {
    margin-bottom: 16px;
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-custom-order-section-head h2 {
    margin: 0 0 6px;
}

body.corp-site .corp-custom-order-section-head p {
    margin: 0;
}

body.corp-site .corp-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-info-grid > div {
    padding: 10px 12px;
    background: var(--corp-bg);
    border-radius: 10px;
    border: 1px solid var(--corp-border);
}

body.corp-site .corp-info-grid span {
    display: block;
    font-size: 0.82rem;
    margin-bottom: 4px;
}

body.corp-site .corp-custom-order-info__sub {
    margin: 0 0 10px;
    font-size: 1rem;
    color: var(--corp-text);
}

body.corp-site .corp-custom-order-description {
    color: var(--corp-text-secondary);
    line-height: 1.85;
    padding: 14px;
    background: var(--corp-bg);
    border-radius: 12px;
    border: 1px solid var(--corp-border);
}

body.corp-site .corp-file-grid {
    display: grid;
    gap: 10px;
}

body.corp-site .corp-file-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--corp-border);
    border-radius: 12px;
    background: var(--corp-bg);
    direction: rtl;
}

body.corp-site .corp-offers-list {
    display: grid;
    gap: 12px;
}

body.corp-site .corp-offer-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--corp-border);
    border-radius: 12px;
    background: var(--corp-bg);
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-offer-card.pending {
    border-color: rgba(29, 78, 216, 0.35);
    background: rgba(29, 78, 216, 0.05);
}

body.corp-site .corp-offer-card__price {
    display: block;
    font-size: 1.15rem;
    color: var(--corp-blue);
    margin-bottom: 4px;
}

body.corp-site .corp-offer-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

body.corp-site .corp-offer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

body.corp-site .corp-custom-order-counter {
    margin-top: 16px;
    padding: 16px;
    background: var(--corp-bg);
    border: 1px dashed var(--corp-border);
}

body.corp-site .corp-custom-payment-methods {
    margin-bottom: 16px;
}

body.corp-site .corp-payment-choice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--corp-border);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    direction: rtl;
    text-align: right;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.corp-site .corp-payment-choice:has(input:checked) {
    border-color: var(--corp-blue);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

body.corp-site .corp-payment-choice__text strong {
    display: block;
    color: var(--corp-text);
    margin-bottom: 4px;
}

body.corp-site .corp-payment-choice__text small {
    color: var(--corp-text-muted);
}

body.corp-site .corp-payment-panel__note {
    margin-top: 10px;
}

body.corp-site .corp-custom-order-payment,
body.corp-site .corp-custom-order-offers,
body.corp-site .corp-custom-order-chat,
body.corp-site .corp-custom-order-reply,
body.corp-site .corp-custom-order-finals,
body.corp-site .corp-custom-order-status-msg {
    margin-bottom: 20px;
    padding: clamp(18px, 3vw, 24px);
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-ticket-thread {
    display: grid;
    gap: 12px;
    max-height: 420px;
    overflow-y: auto;
    padding: 4px;
}

body.corp-site .corp-ticket-message {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--corp-border);
    max-width: 92%;
}

body.corp-site .corp-ticket-message.mine {
    margin-inline-start: auto;
    background: rgba(29, 78, 216, 0.08);
    border-color: rgba(29, 78, 216, 0.2);
}

body.corp-site .corp-ticket-message.staff {
    margin-inline-end: auto;
    background: var(--corp-bg);
}

body.corp-site .corp-ticket-message__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.88rem;
}

body.corp-site .corp-ticket-message__body {
    color: var(--corp-text-secondary);
    line-height: 1.75;
}

body.corp-site .corp-ticket-message__file {
    margin-top: 10px;
}

@media (max-width: 900px) {
    body.corp-site .corp-custom-order-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    body.corp-site .corp-custom-order-detail-hero__main {
        flex-direction: column;
        align-items: stretch;
    }

    body.corp-site .corp-custom-order-detail-hero__actions {
        width: 100%;
    }

    body.corp-site .corp-custom-order-detail-hero__actions .btn {
        flex: 1;
        justify-content: center;
    }

    body.corp-site .corp-offer-card {
        flex-direction: column;
        align-items: stretch;
    }

    body.corp-site .corp-ticket-message {
        max-width: 100%;
    }

    body.corp-site .corp-custom-order-detail-page.dashboard-page {
        padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px));
    }
}

/* ——— جزئیات سفارش فروشگاه ——— */
body.corp-site .corp-order-detail-page .corp-order-flow__inner {
    max-width: 1180px;
}

body.corp-site .corp-order-detail-hero {
    margin-bottom: 24px;
    padding: clamp(18px, 3vw, 24px);
}

body.corp-site .corp-order-detail-hero__top {
    margin-bottom: 16px;
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-order-detail-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    direction: rtl;
}

body.corp-site .corp-order-detail-stat {
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--corp-bg);
    border: 1px solid var(--corp-border);
    text-align: right;
}

body.corp-site .corp-order-detail-stat strong {
    display: block;
    margin-top: 4px;
    color: var(--corp-text);
    font-size: 1rem;
}

body.corp-site .corp-order-detail-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: start;
}

body.corp-site .corp-order-detail-items h2,
body.corp-site .corp-order-detail-items h3 {
    margin: 0 0 16px;
    color: var(--corp-text);
}

body.corp-site .corp-order-detail-item-list {
    display: grid;
    gap: 12px;
}

body.corp-site .corp-order-detail-downloads {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed var(--corp-border);
}

body.corp-site .corp-order-detail-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--corp-border);
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-order-detail-payment h2 {
    margin: 0 0 16px;
    color: var(--corp-text);
}

body.corp-site .corp-order-detail-payment__grid {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-order-detail-payment__grid strong {
    display: block;
    margin-top: 2px;
    color: var(--corp-text);
}

body.corp-site .corp-payment-proof {
    padding: 14px;
    margin-bottom: 16px;
    display: grid;
    gap: 10px;
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-payment-proof__note {
    margin: 0;
    font-size: 0.88rem;
}

body.corp-site .corp-receipt-preview img {
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid var(--corp-border);
}

body.corp-site .corp-order-detail-back {
    margin-top: 8px;
}

@media (max-width: 900px) {
    body.corp-site .corp-order-detail-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body.corp-site .corp-order-detail-page {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }

    body.corp-site .corp-order-detail-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ——— ورود ——— */
body.corp-site .corp-auth-hub {
    max-width: 520px;
    margin-inline: auto;
}

body.corp-site .corp-auth-card {
    padding: clamp(22px, 3vw, 32px);
}

body.corp-site .corp-auth-card__title {
    margin: 0 0 8px;
    color: var(--corp-text);
}

body.corp-site .corp-auth-card__lead {
    margin: 0 0 20px;
}

body.corp-site .corp-auth-links {
    text-align: center;
    margin-top: 20px;
}

body.corp-site .corp-auth-card--modern {
    border: 1px solid var(--corp-border);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

body.corp-site .corp-auth-card__head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

body.corp-site .corp-auth-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    color: #1d4ed8;
    font-size: 1.25rem;
}

body.corp-site .corp-auth-change-phone-hint {
    margin: 0 0 14px;
    font-size: 0.9rem;
    line-height: 1.6;
}

body.corp-site .corp-auth-sms-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    font-size: 0.85rem;
    font-weight: 600;
}

body.corp-site .corp-auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
    padding: 4px;
    border-radius: 12px;
    background: #f1f5f9;
}

body.corp-site .corp-auth-tab {
    text-align: center;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

body.corp-site .corp-auth-tab.is-active {
    background: #fff;
    color: #1d4ed8;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

body.corp-site .corp-auth-method-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

body.corp-site .corp-auth-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--corp-border);
    background: #fff;
    color: #334155;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

body.corp-site .corp-auth-method.is-active {
    border-color: #93c5fd;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1e40af;
}

body.corp-site .corp-auth-panel {
    margin-top: 4px;
}

body.corp-site .corp-auth-form .corp-auth-field {
    margin-bottom: 14px;
}

body.corp-site .corp-auth-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.corp-site .corp-auth-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

body.corp-site .corp-auth-input--code {
    letter-spacing: 0.35em;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
}

body.corp-site .corp-auth-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.82rem;
    color: #64748b;
}

body.corp-site .corp-auth-submit {
    width: 100%;
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

body.corp-site .corp-auth-sent-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
    font-size: 0.92rem;
}

body.corp-site .corp-auth-alert {
    padding: 10px 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    font-size: 0.9rem;
}

body.corp-site .corp-auth-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

body.corp-site .corp-auth-alt {
    margin-top: 12px;
    margin-bottom: 0;
    text-align: center;
    font-size: 0.88rem;
    position: relative;
    z-index: 3;
}

body.corp-site .corp-auth-change-phone-hint {
    position: relative;
    z-index: 3;
}

body.corp-site .corp-auth-alt .link {
    display: inline-block;
    padding: 8px 4px;
    min-height: 44px;
    line-height: 1.4;
}

body.corp-site .corp-auth-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 14px;
    position: relative;
    z-index: 5;
}

body.corp-site .corp-auth-secondary__form {
    margin: 0;
}

body.corp-site .corp-auth-secondary__form .corp-auth-secondary__btn {
    width: 100%;
    cursor: pointer;
    font-family: inherit;
}

body.corp-site .corp-auth-secondary__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--corp-border);
    background: var(--corp-surface-2, #f8fafc);
    color: var(--corp-ink, #0f172a);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}

body.corp-site .corp-auth-secondary__btn--ghost {
    background: #fff;
}

body.corp-site .corp-auth-change-phone-hint .link {
    position: relative;
    z-index: 5;
    display: inline-block;
    padding: 6px 2px;
    min-height: 44px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    body.corp-site .section.corp-auth-page,
    body.corp-site .corp-auth-hub {
        padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    }

    body.corp-site.corp-auth-active .mobile-bottom-nav {
        display: none !important;
    }

    body.corp-site .section.corp-auth-page {
        padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px));
    }

    body.corp-site .corp-auth-alt {
        margin-bottom: 12px;
    }

    body.corp-site .corp-auth-secondary {
        grid-template-columns: 1fr;
    }
}

body.corp-site .corp-auth-foot {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed var(--corp-border);
    text-align: center;
}

body.corp-site .corp-auth-foot__cta {
    font-weight: 700;
}

body.corp-site .corp-auth-actions {
    margin-top: 8px;
}

@media (max-width: 900px) {
    body.corp-site .corp-estimate-grid.estimate-grid {
        grid-template-columns: 1fr;
    }
}

/* ——— تعرفه ——— */
body.corp-site .corp-pricing-page {
    max-width: 1100px;
    margin-inline: auto;
}

body.corp-site .corp-pricing-group {
    margin-top: 36px;
}

body.corp-site .corp-pricing-group:first-of-type {
    margin-top: 12px;
}

body.corp-site .corp-pricing-group__title {
    margin: 0 0 8px;
    font-size: 1.3rem;
    color: var(--corp-text);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--corp-border);
}

body.corp-site .corp-pricing-group__lead {
    margin: 0 0 18px;
}

body.corp-site .corp-pricing-grid {
    align-items: stretch;
}

body.corp-site .corp-pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    padding: clamp(22px, 3vw, 28px);
}

body.corp-site .corp-pricing-card__badge {
    align-self: flex-start;
    margin-bottom: 4px;
}

body.corp-site .corp-pricing-card__title {
    margin: 0;
    font-size: 1.15rem;
}

body.corp-site .corp-pricing-card__price {
    margin: 4px 0 0;
}

body.corp-site .corp-pricing-card__period {
    margin: 0;
    font-size: 0.92rem;
}

body.corp-site .corp-pricing-features {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    flex: 1;
}

body.corp-site .corp-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--corp-text-secondary);
    line-height: 1.75;
}

body.corp-site .corp-pricing-features__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(29, 78, 216, 0.1);
    color: var(--corp-blue);
    font-size: 0.72rem;
    margin-top: 3px;
}

body.corp-site .corp-pricing-card .btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    text-align: center;
}

body.corp-site .corp-pricing-card--starter .btn.ghost {
    margin-top: 4px;
}

body.corp-site .corp-pricing-card--link h3 {
    margin: 0;
}

body.corp-site .corp-pricing-empty {
    text-align: center;
    padding: clamp(28px, 5vw, 40px);
}

body.corp-site .corp-pricing-empty h3 {
    margin: 0 0 10px;
}

body.corp-site .corp-pricing-empty .hero-actions {
    margin-top: 20px;
    justify-content: center;
}

body.corp-site .corp-pricing-quick {
    margin-top: 36px;
}

body.corp-site .corp-pricing-note {
    margin-top: 28px;
    text-align: center;
}

/* ——— هاب راهکارها ——— */
body.corp-site .corp-solutions-hub {
    max-width: 1100px;
    margin-inline: auto;
}

body.corp-site .corp-solutions-grid {
    margin-top: 8px;
}

body.corp-site .corp-solutions-more {
    margin-top: 24px;
    text-align: center;
}

body.corp-site .pricing .price,
body.corp-site .corp-pricing-card__price {
    color: var(--corp-blue);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.4;
}

body.corp-site .corp-pricing-card__price small {
    font-size: 0.72em;
    font-weight: 600;
    color: var(--corp-text-muted);
}

body.corp-site .sub-title {
    margin: 32px 0 16px;
    font-size: 1.25rem;
    color: var(--corp-text);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--corp-border);
}

/* ——— نظرات ——— */
body.corp-site .testimonial-card {
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius-lg);
    box-shadow: var(--corp-shadow);
}

/* ——— فوتر ——— */
body.corp-site .site-footer {
    background: var(--corp-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
}

body.corp-site .footer-heading {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

body.corp-site .footer-links.footer-links--two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(12px, 3vw, 24px);
}

body.corp-site .footer-links a,
body.corp-site .footer-contact a {
    color: #94a3b8;
    transition: color 0.2s;
}

body.corp-site .footer-links a:hover,
body.corp-site .footer-contact a:hover {
    color: #fff;
}

body.corp-site .footer-brand-mark {
    background: var(--corp-gradient-brand);
}

body.corp-site .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 8px;
}

/* ——— CTA نوار ——— */
.corp-strip-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(24px, 4vw, 36px);
    background: var(--corp-gradient-brand);
    border-radius: var(--corp-radius-xl);
    color: #fff;
    box-shadow: var(--corp-shadow-lg);
}

.corp-strip-cta h2 {
    color: #fff;
    margin: 0 0 8px;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.corp-strip-cta p,
.corp-strip-cta .corp-strip-cta__lead {
    color: #fff;
    margin: 0;
}

.corp-strip-cta .btn {
    background: #fff;
    color: var(--corp-blue);
    border: none;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.corp-strip-cta .btn:hover {
    background: #f8fafc;
    color: var(--corp-blue-dark, #1e40af);
}

.corp-strip-cta .btn.ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.corp-strip-cta .btn.ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

/* ——— گرید ——— */
body.corp-site .grid-3 {
    gap: 22px;
}

/* ——— cat-pill ——— */
body.corp-site .cat-pill {
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    color: var(--corp-text);
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: var(--corp-shadow-sm);
}

body.corp-site .cat-pill:hover {
    border-color: var(--corp-blue);
    color: var(--corp-blue);
    background: rgba(29, 78, 216, 0.06);
}

body.corp-site .cat-pill.active {
    border-color: var(--corp-blue);
    color: #fff;
    background: var(--corp-blue);
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.35);
}

/* ——— خدمات ——— */
body.corp-site .corp-services-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 0 28px;
}

body.corp-site .corp-services-grid {
    margin-bottom: 20px;
}

body.corp-site .corp-services-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 32px 24px;
}

body.corp-site .corp-services-empty h3 {
    margin: 0 0 10px;
    color: var(--corp-text);
}

body.corp-site .corp-services-more {
    text-align: center;
    margin: 8px 0 0;
}

body.corp-site .corp-service-detail__title {
    margin: 0 0 14px;
    font-size: 1.25rem;
    color: var(--corp-text);
}

body.corp-site .corp-service-features {
    color: var(--corp-text-secondary);
    line-height: 1.85;
    margin-bottom: 18px;
}

body.corp-site .corp-service-side-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.corp-site .corp-service-side-actions .btn {
    width: 100%;
    justify-content: center;
}

body.corp-site .corp-service-plans {
    margin-top: 36px;
}

body.corp-site .corp-service-links {
    margin-top: 28px;
}

body.corp-site .corp-service-links h3 {
    margin: 0 0 14px;
    color: var(--corp-text);
}

body.corp-site .corp-projects-grid .mkt-pillar-card {
    height: 100%;
}

body.corp-site .corp-project-detail__meta {
    margin: 0 0 16px;
}

body.corp-site .corp-project-detail__body {
    color: var(--corp-text-secondary);
    line-height: 1.9;
}

body.corp-site .corp-project-detail__body p {
    margin: 0 0 12px;
}

/* ——— فروشگاه منتخب ——— */
body.corp-site .corp-shop-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding: clamp(20px, 3vw, 28px);
}

body.corp-site .corp-shop-intro__title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: var(--corp-text);
}

body.corp-site .corp-shop-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

body.corp-site .corp-shop-paths {
    margin-bottom: 22px;
}

body.corp-site .corp-shop-filters {
    margin-bottom: 24px;
    padding: 16px 20px;
}

body.corp-site .corp-shop-filters__summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--corp-text);
    list-style: none;
}

body.corp-site .corp-shop-filters__summary::-webkit-details-marker {
    display: none;
}

body.corp-site .corp-shop-grid {
    margin-bottom: 20px;
}

body.corp-site .corp-shop-empty {
    grid-column: 1 / -1;
}

@media (max-width: 720px) {
    body.corp-site .corp-shop-intro {
        flex-direction: column;
        align-items: stretch;
    }

    body.corp-site .corp-shop-intro__actions {
        width: 100%;
    }

    body.corp-site .corp-shop-intro__actions .btn {
        flex: 1;
        justify-content: center;
    }
}

/* ——— alert ——— */
body.corp-site .alert {
    border-radius: var(--corp-radius);
    padding: 14px 18px;
    font-weight: 500;
}

/* ——— responsive ——— */
@media (max-width: 960px) {
    body.corp-site .landing-hero-grid {
        grid-template-columns: 1fr;
    }
}

/* ——— صفحه محصولات فروشگاه ——— */
body.corp-site .shop-list-header {
    margin-bottom: 28px;
}

body.corp-site .shop-header-text h1 {
    color: var(--corp-text);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

body.corp-site .shop-meta span {
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--corp-text-muted);
}

/* ——— لندینگ FAQ ——— */
body.corp-site .landing-faq details {
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius);
    margin-bottom: 10px;
    padding: 0;
}

body.corp-site .trust-list li {
    padding: 8px 0;
    color: var(--corp-text-secondary);
}

body.corp-site .mkt-hero-content h1 {
    font-weight: 800;
}

@media (max-width: 640px) {
    .corp-value-grid {
        grid-template-columns: 1fr;
    }

    .corp-strip-cta {
        flex-direction: column;
        text-align: center;
    }

    .corp-strip-cta .hero-actions {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════════
   خوانایی متن — رفع تضاد پس‌زمینه روشن / متن روشن
   ═══════════════════════════════════════════════════════════════ */

body.corp-site .muted {
    color: var(--corp-text-muted) !important;
}

body.corp-site .lead {
    color: var(--corp-text-secondary) !important;
}

body.corp-site .section-head h2 {
    color: var(--corp-text) !important;
}

body.corp-site .section a:not(.btn):not(.pill):not(.cat-pill):not(.nav-link):not(.mkt-pillar-card) {
    color: var(--corp-blue);
}

body.corp-site .card,
body.corp-site .product-card,
body.corp-site .product-summary,
body.corp-site .stat-card,
body.corp-site .list-item,
body.corp-site .quick-item,
body.corp-site .cart-item,
body.corp-site .dashboard-sidebar,
body.corp-site .dashboard-content,
body.corp-site .dashboard-hero {
    color: var(--corp-text);
}

body.corp-site .card .muted,
body.corp-site .product-summary .muted,
body.corp-site .stat-card .muted,
body.corp-site .list-item .muted,
body.corp-site .dashboard-content .muted {
    color: var(--corp-text-muted) !important;
}

body.corp-site .section .trust-list,
body.corp-site .card .trust-list,
body.corp-site .product-summary .trust-list {
    color: var(--corp-text-secondary) !important;
}

body.corp-site .mkt-hero .trust-list,
body.corp-site .mkt-hero .trust-list li,
body.corp-site .landing-hero-card .trust-list,
body.corp-site .landing-hero-card .trust-list li {
    color: #cbd5e1 !important;
}

body.corp-site .product-meta,
body.corp-site .product-meta span {
    color: var(--corp-text-secondary) !important;
}

body.corp-site .compare {
    color: var(--corp-text-muted) !important;
}

body.corp-site .accordion details summary {
    color: var(--corp-text) !important;
}

/* نواحی تیره — متن روشن */
body.corp-site .corp-page-hero,
body.corp-site .corp-page-hero .corp-page-hero__title,
body.corp-site .corp-page-hero .corp-page-hero__lead,
body.corp-site .mkt-hero,
body.corp-site .mkt-hero h1,
body.corp-site .mkt-hero .mkt-lead,
body.corp-site .landing-hero,
body.corp-site .landing-hero .corp-page-hero__title,
body.corp-site .landing-hero .corp-page-hero__lead,
body.corp-site .site-header,
body.corp-site .site-footer,
body.corp-site .mkt-cta-inner,
body.corp-site .corp-strip-cta {
    color: #f8fafc;
}

body.corp-site .corp-page-hero .corp-breadcrumb a,
body.corp-site .landing-hero .corp-breadcrumb a {
    color: #93c5fd;
}

body.corp-site .corp-page-hero .corp-breadcrumb__current,
body.corp-site .landing-hero .corp-breadcrumb [aria-current="page"],
body.corp-site .landing-hero .corp-breadcrumb__current {
    color: #fff;
}

body.corp-site .mkt-hero-panel,
body.corp-site .mkt-hero-panel p,
body.corp-site .landing-hero-card,
body.corp-site .landing-hero-card p,
body.corp-site .landing-hero-card li {
    color: #e2e8f0;
}

body.corp-site .mkt-hero-panel h2,
body.corp-site .landing-hero-card h3 {
    color: #fff;
}

/* سکشن‌های روشن — متن تیره (جلوگیری از ارث‌بری رنگ روشن هیرو) */
body.corp-site .section:not(.mkt-hero):not(.corp-page-hero):not(.landing-hero),
body.corp-site .section:not(.mkt-hero):not(.corp-page-hero):not(.landing-hero) p,
body.corp-site .section:not(.mkt-hero):not(.corp-page-hero):not(.landing-hero) li,
body.corp-site .section:not(.mkt-hero):not(.corp-page-hero):not(.landing-hero) h2,
body.corp-site .section:not(.mkt-hero):not(.corp-page-hero):not(.landing-hero) h3 {
    color: var(--corp-text);
}

body.corp-site .section:not(.mkt-hero):not(.corp-page-hero):not(.landing-hero) .muted,
body.corp-site .section:not(.mkt-hero):not(.corp-page-hero):not(.landing-hero) p.muted {
    color: var(--corp-text-muted) !important;
}

body.corp-site .mkt-pillar-card,
body.corp-site .mkt-pillar-card h2,
body.corp-site .mkt-pillar-card h3,
body.corp-site .mkt-pillar-card p {
    color: var(--corp-text) !important;
}

body.corp-site .mkt-pillar-card p {
    color: var(--corp-text-secondary) !important;
}

body.corp-site .mkt-pillar-link {
    color: var(--corp-blue) !important;
}

body.corp-site .mkt-step,
body.corp-site .mkt-step h3,
body.corp-site .mkt-step p {
    color: var(--corp-text) !important;
}

body.corp-site .mkt-step p {
    color: var(--corp-text-muted) !important;
}

body.corp-site .home-faq .faq-q,
body.corp-site .home-faq .faq-answer p {
    color: var(--corp-text) !important;
}

body.corp-site .home-faq .faq-answer p {
    color: var(--corp-text-secondary) !important;
}

body.corp-site .testimonial-card,
body.corp-site .testimonial-card p {
    color: var(--corp-text-secondary) !important;
}

body.corp-site .testimonial-card strong {
    color: var(--corp-text) !important;
}

/* دراور منوی موبایل — پس‌زمینه روشن */
body.corp-site .mobile-nav-inner,
body.corp-site .mobile-links a,
body.corp-site .mobile-nav-divider {
    color: var(--corp-text) !important;
}

body.corp-site .mobile-links a {
    background: var(--corp-bg) !important;
}

body.corp-site .mobile-nav-divider {
    color: var(--corp-text-muted) !important;
}

body.corp-site {
    overflow-x: clip;
}

body.corp-site .container {
    width: min(1200px, 92%);
    max-width: 100%;
}

/* نوار پایین موبایل */
body.corp-site .mobile-site-nav-link {
    color: #64748b !important;
}

body.corp-site .mobile-site-nav-link.active {
    color: var(--corp-blue) !important;
}

@media (min-width: 1025px) {
    body.corp-site .nav-toggle {
        display: none !important;
    }

    body.corp-site .mobile-nav {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    body.corp-site .site-header .nav--main {
        display: none !important;
        visibility: hidden !important;
        position: absolute !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }

    body.corp-site .nav-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 60;
        min-width: 44px;
        min-height: 44px;
        color: #f1f5f9 !important;
        background: rgba(148, 163, 184, 0.18);
        border: 1px solid rgba(148, 163, 184, 0.28);
    }

    body.corp-site .mobile-nav {
        z-index: 4000;
    }
}

/* ——— آمار هیرو صفحه اصلی ——— */
body.corp-site .mkt-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(10px, 2vw, 16px);
    margin-top: clamp(24px, 4vw, 32px);
    padding-top: 0;
    border-top: none;
}

body.corp-site .mkt-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: clamp(14px, 2.5vw, 18px) clamp(10px, 2vw, 14px);
    border-radius: var(--corp-radius-lg);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.22);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.corp-site .mkt-stat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.45);
    box-shadow: 0 16px 36px rgba(2, 6, 23, 0.28);
}

body.corp-site .mkt-stat-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
    color: #e0f2fe;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.35), rgba(14, 165, 233, 0.22));
    border: 1px solid rgba(125, 211, 252, 0.25);
}

body.corp-site .mkt-stat-icon .fa-check {
    font-size: 1.05rem;
    color: #bae6fd;
}

body.corp-site .mkt-stat-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

body.corp-site .mkt-stat-card strong {
    font-size: clamp(1.15rem, 2.8vw, 1.45rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff !important;
    letter-spacing: -0.02em;
}

body.corp-site .mkt-stat-card span {
    font-size: clamp(0.72rem, 1.8vw, 0.82rem);
    line-height: 1.5;
    color: #cbd5e1 !important;
}

@media (max-width: 520px) {
    body.corp-site .mkt-hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    body.corp-site .mkt-stat-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 12px 8px;
    }

    body.corp-site .mkt-stat-icon {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
        margin-bottom: 2px;
    }

    body.corp-site .mkt-stat-card strong {
        font-size: 1rem;
    }

    body.corp-site .mkt-stat-card span {
        font-size: 0.62rem;
        line-height: 1.35;
    }
}

/* ═══ فروشگاه — هدر لیست روشن ═══ */
body.corp-site .shop-list-header {
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    box-shadow: var(--corp-shadow);
    padding: clamp(20px, 3vw, 28px);
    border-radius: var(--corp-radius-lg);
}

body.corp-site .shop-list-header::before,
body.corp-site .shop-list-header::after {
    display: none;
}

body.corp-site .shop-header-text h1 {
    color: var(--corp-text) !important;
}

body.corp-site .shop-header-text p,
body.corp-site .shop-category-description,
body.corp-site .shop-meta {
    color: var(--corp-text-muted) !important;
}

body.corp-site .shop-header-text .eyebrow {
    color: var(--corp-blue) !important;
    background: rgba(29, 78, 216, 0.08);
    border: 1px solid rgba(29, 78, 216, 0.15);
    padding: 4px 12px;
    border-radius: 999px;
    display: inline-block;
}

body.corp-site .shop-category-description a {
    color: var(--corp-blue);
}

body.corp-site .shop-filter-panel {
    background: var(--corp-bg);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius);
    padding: 16px 18px;
}

body.corp-site .filter-title {
    color: var(--corp-text) !important;
}

body.corp-site .shop-filter input,
body.corp-site .shop-filter select,
body.corp-site .filter-field input,
body.corp-site .filter-field select {
    background: #fff !important;
    color: var(--corp-text) !important;
    border: 1.5px solid var(--corp-border) !important;
}

body.corp-site .shop-filter option {
    background: #fff;
    color: var(--corp-text);
}

body.corp-site .filter-field label {
    color: var(--corp-text-secondary) !important;
}

/* ═══ جزئیات محصول ═══ */
body.corp-site .corp-product-detail-page {
    padding-top: 0;
}

body.corp-site .corp-product-detail-page .section {
    padding-top: 28px;
    padding-bottom: 40px;
}

body.corp-site .corp-product-detail__inner {
    max-width: 1180px;
    margin-inline: auto;
}

body.corp-site .corp-product-detail-grid,
body.corp-site .product-detail-grid.corp-product-detail-grid {
    display: grid;
    /* ستون ۱: گالری (راست در RTL) — عرض محدود | ستون ۲: خلاصه (چپ) — انعطاف‌پذیر */
    grid-template-columns: minmax(260px, min(400px, 38vw)) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 36px);
    align-items: start;
    min-width: 0;
}

/* ستون رسانه: گالری + توضیحات کوتاه (دسکتاپ/تبلت) */
body.corp-site .corp-product-detail-grid > .corp-product-media {
    align-self: start;
    justify-self: stretch;
    display: grid;
    gap: 14px;
    min-width: 0;
    position: sticky;
    top: calc(var(--corp-header-h, 72px) + 16px);
    height: fit-content;
    max-height: calc(100vh - var(--corp-header-h, 72px) - 24px);
    overflow: auto;
    scrollbar-width: thin;
}

body.corp-site .corp-product-gallery {
    display: grid;
    gap: 12px;
    padding: 12px;
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius-lg);
    box-shadow: var(--corp-shadow-sm);
}

body.corp-site .corp-product-gallery .gallery-main {
    position: relative;
    aspect-ratio: 4 / 3;
    max-height: min(420px, 48vh);
    padding: 12px;
    background: linear-gradient(160deg, #f8fafc 0%, #eef2ff 100%);
    border: 1px solid var(--corp-border);
    border-radius: 14px;
    cursor: zoom-in;
}

body.corp-site .corp-product-gallery .gallery-main .main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    display: block;
    cursor: zoom-in;
    transition: transform 0.25s ease;
}

body.corp-site .corp-product-gallery .gallery-main:hover .main-image {
    transform: scale(1.02);
}

body.corp-site .corp-product-gallery .gallery-main .media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
}

body.corp-site .corp-product-gallery .gallery-main .media-placeholder.tall {
    min-height: 200px;
    aspect-ratio: unset;
    height: 100%;
}

body.corp-site .corp-gallery-zoom {
    position: absolute;
    inset-inline-start: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: none;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, transform 0.2s ease;
}

body.corp-site .corp-gallery-zoom:hover {
    background: rgba(29, 78, 216, 0.92);
    transform: translateY(-1px);
}

body.corp-site .corp-product-gallery .discount-chip {
    z-index: 2;
}

body.corp-site .corp-gallery-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 0;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

body.corp-site .corp-gallery-thumbs .thumb {
    flex: 0 0 auto;
    width: 72px;
    min-width: 72px;
    border: 2px solid var(--corp-border);
    background: #fff;
    padding: 4px;
    border-radius: 10px;
    cursor: pointer;
    scroll-snap-align: start;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.corp-site .corp-gallery-thumbs .thumb img {
    width: 100%;
    height: 56px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    display: block;
}

body.corp-site .corp-gallery-thumbs .thumb:hover {
    border-color: var(--corp-blue);
}

body.corp-site .corp-gallery-thumbs .thumb.active {
    border-color: var(--corp-blue);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.2);
}

/* باکس توضیحات کوتاه زیر گالری */
body.corp-site .corp-product-short {
    padding: clamp(16px, 2.5vw, 20px);
    direction: rtl;
    text-align: right;
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius-lg);
    box-shadow: var(--corp-shadow-sm);
}

body.corp-site .corp-product-short__title {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--corp-text);
}

body.corp-site .corp-product-short__text {
    margin: 0;
    color: var(--corp-text-secondary);
    line-height: 1.85;
    font-size: 0.95rem;
}

body.corp-site .corp-product-short__gallery-hint {
    margin: 12px 0 0;
    font-size: 0.85rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

body.corp-site .corp-product-short__gallery-hint i {
    margin-top: 2px;
    color: var(--corp-blue);
}

/* لایت‌باکس گالری */
body.corp-site .corp-gallery-lightbox.open {
    z-index: 5000;
}

body.corp-site .corp-gallery-lightbox .gallery-slide img {
    max-height: min(85vh, 900px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

body.corp-site .corp-gallery-lightbox__hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    pointer-events: none;
}

@media (min-width: 901px) {
    body.corp-site .corp-gallery-thumbs {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
        overflow-x: visible;
        flex-wrap: wrap;
    }

    body.corp-site .corp-gallery-thumbs .thumb {
        width: auto;
        min-width: 0;
    }
}

body.corp-site .corp-product-summary {
    padding: clamp(20px, 3vw, 28px);
    position: static;
    align-self: start;
}

body.corp-site .corp-product-buybox {
    margin-top: 16px;
    padding: 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(29, 78, 216, 0.04) 0%, var(--corp-surface) 100%);
    border: 1px solid var(--corp-border);
    box-shadow: var(--corp-shadow-sm);
    position: sticky;
    top: calc(var(--corp-header-h, 72px) + 16px);
    z-index: 1;
}

body.corp-site .corp-product-buybox .price-stack {
    margin-top: 0;
}

body.corp-site .corp-product-demo-card .product-demo-media {
    border-radius: 14px;
    overflow: hidden;
    margin-top: 12px;
}

body.corp-site .corp-product-demo-card h2 {
    margin: 0 0 8px;
    color: var(--corp-text);
}

body.corp-site .corp-product-summary .summary-top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

body.corp-site .corp-product-summary h1 {
    color: var(--corp-text);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    margin: 0 0 12px;
    line-height: 1.35;
}

body.corp-site .corp-product-summary .lead {
    color: var(--corp-text-secondary) !important;
    line-height: 1.75;
}

body.corp-site .corp-product-summary .price-stack {
    margin: 16px 0;
}

body.corp-site .corp-product-summary .price-main {
    color: var(--corp-blue);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

body.corp-site .corp-product-highlights,
body.corp-site .product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

body.corp-site .corp-product-summary .meta-tag,
body.corp-site .meta-tag {
    background: rgba(29, 78, 216, 0.08);
    border: 1px solid rgba(29, 78, 216, 0.18);
    color: var(--corp-blue);
}

body.corp-site .corp-product-summary .product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 0.88rem;
    margin-bottom: 14px;
    direction: rtl;
    text-align: right;
}

/* ═══ مزایای خرید — خلاصه محصول (همیشه، با یا بدون کلاس perk) ═══ */
body.corp-site .corp-product-summary ul.trust-list,
body.corp-site .product-summary.card ul.trust-list,
body.corp-site .corp-product-summary ul.corp-product-perks,
body.corp-site .corp-product-summary ul.corp-product-trust {
    list-style: none !important;
    margin: 0 0 20px !important;
    padding: 14px !important;
    display: grid !important;
    gap: 10px !important;
    direction: rtl;
    text-align: right;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.08) 0%, rgba(56, 189, 248, 0.05) 100%) !important;
    border: 1px solid rgba(29, 78, 216, 0.18) !important;
    border-radius: 14px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 4px 14px rgba(29, 78, 216, 0.06) !important;
    color: var(--corp-text) !important;
}

body.corp-site .corp-product-summary ul.trust-list > li,
body.corp-site .product-summary.card ul.trust-list > li {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 14px !important;
    margin: 0 !important;
    position: static !important;
    padding-right: 14px !important;
    background: #fff !important;
    border: 1px solid var(--corp-border) !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05) !important;
    color: var(--corp-text) !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    line-height: 1.55 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.corp-site .corp-product-summary ul.trust-list > li:hover,
body.corp-site .product-summary.card ul.trust-list > li:hover {
    transform: translateY(-1px);
    border-color: rgba(29, 78, 216, 0.32) !important;
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.12) !important;
}

/* آیکن داخل قالب جدید */
body.corp-site .corp-product-perk__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(145deg, #1d4ed8 0%, #2563eb 100%);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.28);
}

body.corp-site .corp-product-perk__text {
    flex: 1;
    min-width: 0;
    color: var(--corp-text);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.55;
}

/* قالب قدیمی: فقط li متنی — آیکن با Font Awesome */
body.corp-site .corp-product-summary ul.trust-list > li.corp-product-perk::before,
body.corp-site .corp-product-summary ul.trust-list > li:has(.corp-product-perk__icon)::before {
    display: none !important;
    content: none !important;
}

body.corp-site .corp-product-summary ul.trust-list > li:not(.corp-product-perk)::before,
body.corp-site .product-summary.card ul.trust-list > li:not(.corp-product-perk)::before {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(145deg, #1d4ed8 0%, #2563eb 100%);
    color: #fff;
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', FontAwesome;
    font-weight: 900;
    font-size: 1rem;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.28);
    position: static !important;
    margin: 0;
}

body.corp-site .corp-product-summary ul.trust-list > li:not(.corp-product-perk):nth-child(1)::before,
body.corp-site .product-summary.card ul.trust-list > li:not(.corp-product-perk):nth-child(1)::before {
    content: '\f0ed';
}

body.corp-site .corp-product-summary ul.trust-list > li:not(.corp-product-perk):nth-child(2)::before,
body.corp-site .product-summary.card ul.trust-list > li:not(.corp-product-perk):nth-child(2)::before {
    content: '\f518';
}

body.corp-site .corp-product-summary ul.trust-list > li:not(.corp-product-perk):nth-child(3)::before,
body.corp-site .product-summary.card ul.trust-list > li:not(.corp-product-perk):nth-child(3)::before {
    content: '\f590';
}

body.corp-site .corp-product-purchase {
    display: grid;
    gap: 10px;
    margin: 16px 0;
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-product-purchase__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

body.corp-site .corp-product-purchase__note {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
}

body.corp-site .corp-product-downloads {
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(29, 78, 216, 0.06);
    border: 1px dashed rgba(29, 78, 216, 0.2);
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-product-downloads h3 {
    margin: 0 0 12px;
    color: var(--corp-text);
    font-size: 1rem;
}

body.corp-site .corp-product-detail__actions {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    justify-content: flex-start;
}

body.corp-site .corp-product-detail-sections {
    display: grid;
    gap: 18px;
    margin-top: 8px;
}

body.corp-site .corp-product-detail-sections .card {
    padding: clamp(18px, 3vw, 24px);
}

body.corp-site .corp-product-detail-sections h2,
body.corp-site .product-detail-sections h2,
body.corp-site .product-detail-sections h3 {
    color: var(--corp-text);
    margin-top: 0;
}

body.corp-site .product-description,
body.corp-site .product-description p,
body.corp-site .corp-product-detail-sections p,
body.corp-site .product-detail-sections p,
body.corp-site .product-detail-sections li {
    color: var(--corp-text-secondary) !important;
}

body.corp-site .corp-product-related {
    background: var(--corp-bg);
}

body.corp-site .corp-product-related__head {
    margin-bottom: 20px;
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-product-related__head h2 {
    margin: 0 0 6px;
    color: var(--corp-text);
}

body.corp-site .corp-product-guide__card {
    padding: clamp(18px, 3vw, 24px);
    direction: rtl;
    text-align: right;
}

body.corp-site .corp-product-guide__card h2 {
    margin: 0 0 8px;
}

body.corp-site .corp-product-guide__nav {
    margin-top: 16px;
}

body.corp-site .reviews-shell-pro {
    margin-top: 8px;
}

body.corp-site .review-card,
body.corp-site .update-list li {
    color: var(--corp-text-secondary);
}

@media (max-width: 900px) {
    body.corp-site .corp-product-detail-grid,
    body.corp-site .product-detail-grid.corp-product-detail-grid {
        grid-template-columns: 1fr;
    }

    body.corp-site .corp-product-detail-grid > .corp-product-media {
        position: static;
        max-height: none;
        overflow: visible;
        max-width: 100%;
        margin-inline: auto;
    }

    body.corp-site .corp-product-gallery .gallery-main {
        max-height: min(400px, 62vw);
        aspect-ratio: 4 / 3;
    }

    body.corp-site .corp-product-short {
        max-width: 100%;
    }

    body.corp-site .corp-product-buybox {
        position: static;
    }
}

@media (max-width: 640px) {
    body.corp-site .corp-product-gallery .gallery-main {
        max-height: min(320px, 72vw);
        padding: 10px;
    }

    body.corp-site .corp-gallery-zoom span {
        display: none;
    }

    body.corp-site .corp-gallery-zoom {
        padding: 10px 12px;
    }

    body.corp-site .corp-gallery-thumbs .thumb {
        width: 64px;
        min-width: 64px;
    }

    body.corp-site .corp-gallery-thumbs .thumb img {
        height: 48px;
    }
}

@media (max-width: 640px) {
    body.corp-site .corp-product-detail-page {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }

    body.corp-site .corp-product-detail__actions,
    body.corp-site .corp-product-detail__actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    body.corp-site .corp-product-purchase__btn {
        width: 100%;
    }

    body.corp-site .corp-product-guide__nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ═══ جزئیات سرویس ═══ */
body.corp-site .corp-service-page .service-detail-main h1 {
    margin-top: 0;
}

body.corp-site .service-detail-main p,
body.corp-site .service-detail-main li {
    color: var(--corp-text-secondary);
    line-height: 1.9;
}

body.corp-site .service-detail-side.card {
    position: sticky;
    top: 96px;
}

body.corp-site .service-spec-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--corp-border);
    font-size: 0.95rem;
}

body.corp-site .service-spec-row strong {
    color: var(--corp-text);
}

body.corp-site .service-spec-row span {
    color: var(--corp-text-muted);
}

/* ═══ پنل کاربری ═══ */
body.corp-site .dashboard-page {
    background: var(--corp-bg);
}

body.corp-site .dashboard-page .section {
    background: transparent;
    border: none;
    padding-top: 32px;
    padding-bottom: 48px;
}

body.corp-site .dashboard-sidebar {
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius-lg);
    box-shadow: var(--corp-shadow);
}

body.corp-site .dashboard-hero {
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 55%, #ffffff 100%);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius-lg);
}

body.corp-site .dashboard-hero h1 {
    color: var(--corp-text);
}

body.corp-site .dashboard-hero .muted {
    color: var(--corp-text-muted) !important;
}

body.corp-site .nav-link {
    color: var(--corp-text-secondary);
    background: var(--corp-bg);
}

body.corp-site .nav-link:hover {
    color: var(--corp-text);
    background: #e8eef6;
}

body.corp-site .nav-link.active {
    color: #fff;
    background: var(--corp-gradient-brand);
}

body.corp-site .user-card strong {
    color: var(--corp-text);
}

body.corp-site .list-item {
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius);
}

body.corp-site .list-item h3,
body.corp-site .list-item h4 {
    color: var(--corp-text);
}

body.corp-site .quick-item {
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    color: var(--corp-text);
}

body.corp-site .quick-item .label {
    color: var(--corp-text-muted) !important;
}

body.corp-site .info-grid div {
    color: var(--corp-text-secondary);
}

body.corp-site .info-grid strong {
    color: var(--corp-text);
}

body.corp-site .ticket-meta,
body.corp-site .ticket-meta span {
    color: var(--corp-text-muted) !important;
}

body.corp-site .table-wrap,
body.corp-site table {
    color: var(--corp-text);
}

body.corp-site .dashboard-page .btn.ghost {
    background: var(--corp-surface);
    color: var(--corp-blue);
    border-color: var(--corp-border-strong);
}

body.corp-site .placeholder {
    background: var(--corp-bg);
    color: var(--corp-text-muted);
    border: 1px dashed var(--corp-border);
}

body.corp-site .profile-notice {
    color: var(--corp-text);
}

body.corp-site .password-notice {
    color: #fff;
}

body.corp-site .password-notice__text,
body.corp-site .password-notice .notice-inner > span {
    color: #fff !important;
}

body.corp-site .password-notice .btn.ghost {
    color: #fff;
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

body.corp-site .password-notice .btn.ghost:hover {
    background: rgba(15, 23, 42, 0.75);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

body.corp-site .profile-notice:not(.password-notice) .btn.ghost {
    color: var(--corp-blue);
    background: #fff;
}

body.corp-site .sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.corp-site .sidebar-actions .btn {
    width: 100%;
    justify-content: center;
}

body.corp-site .dashboard-sidebar-logout {
    color: var(--corp-text-secondary, #64748b);
    border-color: var(--corp-border);
}

body.corp-site .dashboard-sidebar-logout:hover {
    color: #b91c1c;
    border-color: rgba(185, 28, 28, 0.35);
    background: #fef2f2;
}

@media (max-width: 720px) {
    body.corp-site .dashboard-sidebar-logout {
        display: none;
    }
}

body.corp-site .reviews-topbar h2,
body.corp-site .review-list-head h3,
body.corp-site .rating-score {
    color: var(--corp-text);
}

body.corp-site .rating-break-label,
body.corp-site .rating-break-count {
    color: var(--corp-text-secondary);
}

body.corp-site .review-card,
body.corp-site .reviews-hero {
    color: var(--corp-text);
}

body.corp-site .product-body h3 a {
    color: var(--corp-text);
}

body.corp-site .product-spec-label {
    color: var(--corp-text-muted);
}

body.corp-site .product-spec-value {
    color: var(--corp-text);
}
