/**
 * emadbrz – Hero section: creative, gold/yellow accents, entrance animations.
 */

.emadbrz-hero {
    --hero-gold: #d4a017;
    --hero-gold-light: #e6b422;
    --hero-gold-soft: rgba(212, 160, 23, 0.25);
    --hero-amber: #f59e0b;
    --hero-yellow: #fbbf24;
    background: #000;
    padding: clamp(2.5rem, 6vw, 4rem) 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient glow behind content (gold tint) */
.emadbrz-hero::before {
    content: '';
    position: absolute;
    inset: -20% 30% -20% -20%;
    background: radial-gradient(ellipse 80% 60% at 30% 50%, var(--hero-gold-soft) 0%, transparent 60%);
    pointer-events: none;
}
.emadbrz-hero--rtl .emadbrz-hero::before {
    inset: -20% -20% -20% 30%;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, var(--hero-gold-soft) 0%, transparent 60%);
}

/* Inner: در فارسی (RTL) محتوا راست، عکس چپ؛ در انگلیسی (LTR) برعکس */
.emadbrz-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 3.5rem);
}

/* فارسی */
.emadbrz-hero--rtl .emadbrz-hero__inner {
    flex-direction: row-reverse;
    direction: ltr;
}
.emadbrz-hero--rtl .emadbrz-hero__inner .emadbrz-hero__content {
    order: 1;
}
.emadbrz-hero--rtl .emadbrz-hero__inner .emadbrz-hero__media {
    order: 2;
}

/* ========== Content: انیمیشن ورود پلکانی ========== */
@keyframes emadbrz-hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes emadbrz-hero-line-in {
    from {
        transform: scaleX(0);
        opacity: 0.5;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes emadbrz-hero-glow-pulse {
    0%, 100% { box-shadow: 0 0 20px var(--hero-gold-soft); }
    50% { box-shadow: 0 0 32px rgba(212, 160, 23, 0.4); }
}

.emadbrz-hero__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15rem;
    position: relative;
    z-index: 1;
}

.emadbrz-hero__content > * {
    animation: emadbrz-hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.emadbrz-hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.emadbrz-hero__content > *:nth-child(2) { animation-delay: 0.25s; }
.emadbrz-hero__content > *:nth-child(3) { animation-delay: 0.4s; }
.emadbrz-hero__content > *:nth-child(4) { animation-delay: 0.5s; }
.emadbrz-hero__content > *:nth-child(5) { animation-delay: 0.6s; }
.emadbrz-hero__content > *:nth-child(6) { animation-delay: 0.7s; }
.emadbrz-hero__content > *:nth-child(7) { animation-delay: 0.8s; }
.emadbrz-hero__content > *:nth-child(8) { animation-delay: 0.9s; }
.emadbrz-hero__content > *:nth-child(9) { animation-delay: 1s; }
.emadbrz-hero__content > *:nth-child(n+10) { animation-delay: 1.05s; }

/* عنوان تایپ‌رایتر: فقط ظاهر شدن با فید */
.emadbrz-hero__content > .emadbrz-hero__title--typewriter {
    animation-delay: 0.4s;
}

/* وقتی بلوک محتوا خودش dir="rtl" دارد (زبان فارسی) */
.emadbrz-hero__content[dir="rtl"] {
    direction: rtl;
    align-items: flex-start;
    text-align: start;
}

/* زیرعنوان: خط طلایی + رنگ زرد/طلایی */
.emadbrz-hero__subtitle {
    margin: 0;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hero-gold-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.emadbrz-hero__subtitle::before {
    content: '';
    display: inline-block;
    width: 2.5rem;
    height: 3px;
    background: linear-gradient(90deg, var(--hero-gold), var(--hero-yellow));
    border-radius: 2px;
    animation: emadbrz-hero-line-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s backwards;
}
.emadbrz-hero__content[dir="rtl"] .emadbrz-hero__subtitle::before {
    order: 1;
    background: linear-gradient(270deg, var(--hero-gold), var(--hero-yellow));
}

/* عنوان: گرادیان سفید به طلایی + سایه نرم */
.emadbrz-hero__title {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 45%, var(--hero-gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px var(--hero-gold-soft);
    max-width: 18ch;
}

/* Typewriter: متن تایپ‌شده + مکان‌نما */
.emadbrz-hero__title--typewriter {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.05em;
}

.emadbrz-hero__title-cursor {
    display: inline-block;
    font-weight: 400;
    opacity: 0.9;
    animation: emadbrz-hero-cursor-blink 0.9s step-end infinite;
}

@keyframes emadbrz-hero-cursor-blink {
    0%, 60% { opacity: 1; }
    61%, 100% { opacity: 0.2; }
}

/* توضیحات: حاشیه طلایی نرم + فاصله بیشتر */
.emadbrz-hero__description {
    margin: 0;
    padding-inline-start: 1rem;
    border-inline-start: 3px solid var(--hero-gold);
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    max-width: 420px;
}
.emadbrz-hero__content[dir="rtl"] .emadbrz-hero__description {
    margin-inline-end: 0;
    padding-inline-start: 0;
    padding-inline-end: 1rem;
    border-inline-start: none;
    border-inline-end: 3px solid var(--hero-gold);
}

.emadbrz-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 0.35rem;
}

.emadbrz-hero__content[dir="rtl"] .emadbrz-hero__actions {
    flex-direction: row-reverse;
}

.emadbrz-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
    min-height: 44px;
}

/* دکمه اصلی: طلایی با درخشش */
.emadbrz-hero__btn--primary {
    background: linear-gradient(135deg, var(--hero-gold) 0%, var(--hero-amber) 100%);
    color: #000;
    border: none;
    box-shadow: 0 4px 20px var(--hero-gold-soft);
}
.emadbrz-hero__btn--primary:hover {
    background: linear-gradient(135deg, var(--hero-gold-light) 0%, var(--hero-yellow) 100%);
    color: #000;
    transform: translateY(-2px);
    animation: emadbrz-hero-glow-pulse 1.5s ease-in-out infinite;
}

/* دکمه ثانویه: حاشیه طلایی */
.emadbrz-hero__btn--secondary {
    background: transparent;
    color: var(--hero-gold-light);
    border: 2px solid rgba(212, 160, 23, 0.5);
}
.emadbrz-hero__btn--secondary:hover {
    border-color: var(--hero-gold);
    color: var(--hero-yellow);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--hero-gold-soft);
}

/* ========== Stats: دایره‌های پراکنده، نامتقارن، با فاصله زیاد ========== */
.emadbrz-hero__stats {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 2.5rem 3rem;
    margin: 0;
    padding: 2rem 0 0;
    list-style: none;
}

.emadbrz-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
    transition: transform 0.35s ease;
}
.emadbrz-hero__stat:nth-child(1) {
    align-self: flex-end;
    transform: rotate(-4deg);
}
.emadbrz-hero__stat:nth-child(2) {
    align-self: center;
    transform: rotate(2deg);
}
.emadbrz-hero__stat:nth-child(3) {
    align-self: flex-start;
    transform: rotate(-3deg);
}
.emadbrz-hero__stat:hover {
    transform: rotate(0deg) scale(1.05);
}
.emadbrz-hero__stat:nth-child(1):hover { transform: rotate(0deg) scale(1.05); }
.emadbrz-hero__stat:nth-child(2):hover { transform: rotate(0deg) scale(1.05); }
.emadbrz-hero__stat:nth-child(3):hover { transform: rotate(0deg) scale(1.05); }

/* عدد داخل دایره – بدون باکس، فقط دایره با حاشیه طلایی */
.emadbrz-hero__stat-value {
    width: 4.25rem;
    height: 4.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    font-variant-numeric: tabular-nums;
    color: var(--hero-gold-light);
    background: transparent;
    border: 2px solid rgba(212, 160, 23, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.emadbrz-hero__stat:hover .emadbrz-hero__stat-value {
    border-color: var(--hero-gold);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(212, 160, 23, 0.3), 0 0 28px var(--hero-gold-soft);
}

.emadbrz-hero__stat-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    max-width: 5rem;
    line-height: 1.35;
}

/* ========== Highlights: کارت‌های شماره‌دار با استایل خلاقانه ========== */
.emadbrz-hero__highlights {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: hero-highlight;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 420px;
}

.emadbrz-hero__highlight {
    counter-increment: hero-highlight;
    position: relative;
    padding: 1rem 1rem 1rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
    background: linear-gradient(160deg, rgba(20, 20, 22, 0.9) 0%, rgba(12, 12, 14, 0.95) 100%);
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.emadbrz-hero__highlight::before {
    content: counter(hero-highlight, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #000;
    background: linear-gradient(135deg, var(--hero-gold-light) 0%, var(--hero-amber) 100%);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--hero-gold-soft);
    flex-shrink: 0;
}
.emadbrz-hero__highlight:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 160, 23, 0.5);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 160, 23, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.emadbrz-hero__content[dir="rtl"] .emadbrz-hero__highlights {
    direction: rtl;
}

.emadbrz-hero__content[dir="rtl"] .emadbrz-hero__highlight {
    padding: 1rem 1.25rem 1rem 1rem;
}

/* ========== Trust line (خط اعتماد زیر دکمه‌ها) ========== */
.emadbrz-hero__trust {
    margin: 0;
    padding-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.emadbrz-hero__trust::before {
    content: '';
    width: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, var(--hero-gold), transparent);
}
.emadbrz-hero__content[dir="rtl"] .emadbrz-hero__trust::before {
    background: linear-gradient(270deg, var(--hero-gold), transparent);
}

/* Media column */
.emadbrz-hero__media {
    flex: 0 0 min(48%, 520px);
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emadbrz-hero__img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.emadbrz-hero__placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-width: 420px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 16px;
}

/* ========== Hero Media Gallery: ۴ تایی (۲×۲) + فید، زاویه، ارتفاع یکی‌درمیان ========== */
.emadbrz-hero__media--gallery {
    width: 100%;
    max-width: min(100%, 380px);
    margin: 0 auto;
    transform: rotate(-2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* فقط ۴ تصویر در یک زمان؛ گرادیان فید بالا و پایین */
.emadbrz-hero__media-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
}

.emadbrz-hero__media-viewport::before,
.emadbrz-hero__media-viewport::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 28%;
    pointer-events: none;
    z-index: 2;
}
.emadbrz-hero__media-viewport::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    border-radius: 18px 18px 0 0;
}
.emadbrz-hero__media-viewport::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    border-radius: 0 0 18px 18px;
}

.emadbrz-hero__media-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1.2fr 0.8fr 1.2fr 0.8fr 1.2fr 0.8fr 1.2fr 0.8fr;
    width: 100%;
    height: 400%;
    gap: 8px;
    animation: emadbrz-hero-media-scroll 24s linear infinite;
}

@keyframes emadbrz-hero-media-scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.emadbrz-hero__media-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* زاویه یکی‌درمیان برای هر کارت */
.emadbrz-hero__media-strip .emadbrz-hero__media-item:nth-child(4n+1),
.emadbrz-hero__media-strip .emadbrz-hero__media-item:nth-child(4n+4) {
    transform: rotate(-1.2deg);
}
.emadbrz-hero__media-strip .emadbrz-hero__media-item:nth-child(4n+2),
.emadbrz-hero__media-strip .emadbrz-hero__media-item:nth-child(4n+3) {
    transform: rotate(1.2deg);
}

.emadbrz-hero__media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.emadbrz-hero__media-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 80px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

@media (prefers-reduced-motion: reduce) {
    .emadbrz-hero__media-strip {
        animation: none;
    }
}

/* ========== Responsive: گالری/مدیا بالا، محتوا پایین – دقیقاً مثل انگلیسی (LTR و RTL یکسان) ========== */
@media (max-width: 991px) {
    .emadbrz-hero__inner,
    .emadbrz-hero--rtl .emadbrz-hero__inner {
        flex-direction: column;
        gap: 2rem;
    }
    /* ترتیب ثابت: اول مدیا (گالری یا تصویر)، بعد محتوا – LTR و RTL */
    .emadbrz-hero__media,
    .emadbrz-hero__media--gallery,
    .emadbrz-hero--rtl .emadbrz-hero__inner .emadbrz-hero__media,
    .emadbrz-hero--rtl .emadbrz-hero__inner .emadbrz-hero__media--gallery {
        order: -1;
    }
    .emadbrz-hero__content,
    .emadbrz-hero--rtl .emadbrz-hero__inner .emadbrz-hero__content {
        order: 0;
    }
    .emadbrz-hero__media {
        flex: 0 0 auto;
        width: 100%;
        max-width: 420px;
        margin-inline: auto;
    }
    .emadbrz-hero__media--gallery {
        max-width: 360px;
    }
    /* فارسی در رسپانسیو: دقیقاً مثل انگلیسی – وسط‌چین، بدون حاشیه/تراز راست */
    .emadbrz-hero__content[dir="rtl"] {
        align-items: center;
        text-align: center;
    }
    .emadbrz-hero__content[dir="rtl"] .emadbrz-hero__subtitle::before {
        order: 0;
        background: linear-gradient(90deg, var(--hero-gold), var(--hero-yellow));
    }
    .emadbrz-hero__content[dir="rtl"] .emadbrz-hero__description {
        margin-inline: auto;
        padding-inline-start: 0;
        padding-inline-end: 0;
        border-inline-start: none;
        border-inline-end: none;
    }
    .emadbrz-hero__content[dir="rtl"] .emadbrz-hero__trust::before {
        background: linear-gradient(90deg, var(--hero-gold), transparent);
    }
}

@media (max-width: 767px) {
    .emadbrz-hero {
        min-height: 0;
        padding: clamp(2rem, 5vw, 3rem) 16px;
    }

    .emadbrz-hero__inner {
        gap: 1.75rem;
    }

    .emadbrz-hero__content {
        align-items: center;
        text-align: center;
    }

    .emadbrz-hero__description {
        margin-inline: auto;
        text-align: center;
    }

    .emadbrz-hero__actions {
        justify-content: center;
    }

    .emadbrz-hero__content[dir="rtl"] .emadbrz-hero__actions {
        flex-direction: row;
    }

    .emadbrz-hero__stats {
        justify-content: center;
        gap: 2rem 2.25rem;
        padding-top: 1.5rem;
    }
    .emadbrz-hero__stat-value {
        width: 3.75rem;
        height: 3.75rem;
        font-size: 1.25rem;
    }

    /* هایلایت‌ها: دو ستون جمع‌وجور، فونت و بج کوچک‌تر */
    .emadbrz-hero__highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 300px;
        margin-inline: auto;
    }
    .emadbrz-hero__highlight:nth-child(3):last-child {
        grid-column: 1 / -1;
    }
    .emadbrz-hero__highlight {
        padding: 0.7rem 0.85rem;
        font-size: 0.85rem;
        line-height: 1.35;
        border-radius: 10px;
        gap: 0.35rem;
    }
    .emadbrz-hero__highlight::before {
        width: 1.65rem;
        height: 1.65rem;
        font-size: 0.7rem;
        border-radius: 8px;
    }
    .emadbrz-hero__content[dir="rtl"] .emadbrz-hero__highlight {
        padding: 0.7rem 0.85rem;
    }

    .emadbrz-hero__trust {
        justify-content: center;
    }
    .emadbrz-hero__content[dir="rtl"] .emadbrz-hero__trust {
        justify-content: center;
    }

    .emadbrz-hero__media {
        max-width: 380px;
    }
    .emadbrz-hero__media--gallery {
        max-width: 340px;
    }
    /* گالری بالا: ارتفاع متناسب تا محتوا دیده شود */
    .emadbrz-hero__media--gallery .emadbrz-hero__media-viewport {
        max-height: min(50vh, 320px);
        aspect-ratio: 1 / 1;
    }

    .emadbrz-hero__placeholder {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .emadbrz-hero {
        padding: 1.5rem 12px;
    }

    .emadbrz-hero__inner {
        gap: 1.5rem;
    }

    .emadbrz-hero__stats {
        gap: 1.75rem 2rem;
    }
    .emadbrz-hero__stat-value {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.15rem;
    }

    .emadbrz-hero__actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .emadbrz-hero__btn {
        width: 100%;
    }

    /* ترتیب رسپانسیو (مدیا بالا، محتوا پایین) از ۹۹۱px به ارث می‌رسد */
    .emadbrz-hero__media,
    .emadbrz-hero__media--gallery {
        max-width: 300px;
    }
    .emadbrz-hero__media--gallery .emadbrz-hero__media-viewport {
        max-height: min(48vh, 280px);
    }

    /* هایلایت‌ها در موبایل کوچک: جمع‌وجورتر، افکت لمس */
    .emadbrz-hero__highlights {
        gap: 0.4rem;
        max-width: 100%;
        padding-inline: 2px;
    }
    .emadbrz-hero__highlight {
        padding: 0.55rem 0.65rem;
        font-size: 0.8rem;
        border-radius: 8px;
        gap: 0.25rem;
    }
    .emadbrz-hero__highlight::before {
        width: 1.4rem;
        height: 1.4rem;
        font-size: 0.65rem;
        border-radius: 6px;
    }
    .emadbrz-hero__highlight:active {
        transform: scale(0.98);
        border-color: rgba(212, 160, 23, 0.45);
    }
    .emadbrz-hero__content[dir="rtl"] .emadbrz-hero__highlight {
        padding: 0.55rem 0.65rem;
    }
}

/* موبایل: حاشیه توضیحات وسط‌چین */
@media (max-width: 767px) {
    .emadbrz-hero__description {
        padding-inline-start: 0;
        padding-inline-end: 0;
        border-inline-start: none;
        border-inline-end: none;
        border-top: 2px solid var(--hero-gold);
        padding-top: 0.75rem;
        margin-top: 0.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .emadbrz-hero__content > * {
        animation: none;
    }
    .emadbrz-hero__subtitle::before {
        animation: none;
    }
    .emadbrz-hero__btn--primary:hover {
        animation: none;
    }
}
