/*!
 * 7AM-VISION — clean corporate "digital destination" theme
 * Light, minimal, content-portal style. LTR + RTL. Bilingual.
 * Authored from scratch (no third-party CSS copied).
 */

/* ============ 1. Tokens ============ */
:root {
    --bg: #ffffff;
    --bg-2: #f5f6f8;
    --bg-3: #edf0f4;
    --ink: #17202b;
    --ink-2: #38434f;
    --muted: #6b7682;
    --line: #e3e7ec;
    --accent: #d8232a;
    --accent-2: #b51d23;
    --accent-ink: #ffffff;

    --container: 1200px;
    --gutter: clamp(16px, 4vw, 40px);
    --radius: 8px;
    --radius-lg: 14px;
    --shadow: 0 8px 30px -12px rgba(20, 32, 48, .16);
    --shadow-sm: 0 2px 10px -4px rgba(20, 32, 48, .14);
    --ease: cubic-bezier(.2, .7, .3, 1);

    --header-h: 76px;
    --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
[dir="rtl"] { --font: "Cairo", system-ui, sans-serif; }

/* ============ 2. Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.18; color: var(--ink); letter-spacing: -.01em; }
p { margin: 0 0 1rem; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ============ 3. Layout ============ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(54px, 7vw, 96px); }
.section--gray { background: var(--bg-2); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }

.sec-head { text-align: center; max-width: 720px; margin: 0 auto clamp(34px, 4vw, 56px); }
.sec-head--left { text-align: start; margin-inline: 0; }
.eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
[dir="rtl"] .eyebrow { letter-spacing: 0; }
.sec-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.sec-text { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* ============ 4. Buttons & links ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .55em;
    font-weight: 600;
    font-size: .95rem;
    padding: 13px 26px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: var(--accent-2); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: #fff; color: var(--accent); }

.readmore {
    display: inline-flex;
    align-items: center;
    gap: .4em;
    font-weight: 600;
    font-size: .92rem;
    color: var(--accent);
}
.readmore svg { width: 15px; transition: transform .2s var(--ease); }
.readmore:hover svg { transform: translateX(3px); }
[dir="rtl"] .readmore svg { transform: scaleX(-1); }
[dir="rtl"] .readmore:hover svg { transform: scaleX(-1) translateX(3px); }

/* ============ 5. Header / nav ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }
.brand { display: inline-flex; align-items: center; gap: .5ch; font-weight: 800; font-size: 1.35rem; letter-spacing: -.02em; color: var(--ink); }
.brand b { color: var(--accent); }
.brand img { height: 34px; width: auto; }

.nav__menu { display: flex; align-items: center; gap: 2px; }
.nav__link {
    font-size: .92rem;
    font-weight: 500;
    color: var(--ink-2);
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
    transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link:hover { color: var(--accent); }
.nav__link.is-active { color: var(--accent); font-weight: 600; }

.nav__right { display: flex; align-items: center; gap: 10px; }
.lang-link { font-size: .85rem; font-weight: 700; color: var(--ink-2); padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; }
.lang-link:hover { border-color: var(--accent); color: var(--accent); }

.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 8px; background: #fff; cursor: pointer; position: relative; }
.burger span, .burger span::before, .burger span::after { content: ""; position: absolute; inset-inline-start: 50%; width: 18px; height: 2px; background: var(--ink); transform: translateX(-50%); transition: transform .3s var(--ease), opacity .2s; }
.burger span { top: 50%; margin-top: -1px; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
body.nav-open .burger span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ============ 6. Hero ============ */
.hero {
    position: relative;
    padding-block: clamp(56px, 8vw, 110px);
    background:
        radial-gradient(60% 90% at 100% 0%, rgba(216, 35, 42, .06), transparent 60%),
        linear-gradient(180deg, var(--bg-2), var(--bg));
    overflow: hidden;
}
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero__title { font-size: clamp(2.2rem, 5.2vw, 3.9rem); line-height: 1.08; }
.hero__title .accent { color: var(--accent); }
.hero__text { color: var(--ink-2); font-size: clamp(1.05rem, 1.6vw, 1.2rem); margin: 22px 0 30px; max-width: 56ch; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__visual { position: relative; }
.hero__visual img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.hero__badge { position: absolute; inset-block-end: -18px; inset-inline-start: -18px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px 20px; }
.hero__badge b { color: var(--accent); font-size: 1.6rem; display: block; }
.hero__badge span { font-size: .82rem; color: var(--muted); }

/* hero slider */
.hero__slider { display: grid; }
.hero__slide { grid-area: 1 / 1; opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); pointer-events: none; }
.hero__slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.hero__dots { display: flex; gap: 9px; margin-top: 28px; }
.hero__dot { width: 30px; height: 5px; border-radius: 999px; background: var(--line); border: 0; padding: 0; cursor: pointer; transition: background .25s var(--ease), width .25s var(--ease); }
.hero__dot.is-active { background: var(--accent); width: 44px; }

/* ---- dark hero band with animated background ---- */
.hero--dark {
    background: #0e1220;
    color: #fff;
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-block: clamp(96px, 14vh, 150px) clamp(72px, 10vh, 112px);
}
.hero--dark .hero__inner { position: relative; z-index: 2; max-width: 780px; margin-inline: auto; text-align: center; width: 100%; }
.hero--dark .hero__title { color: #fff; }
.hero--dark .hero__text { color: rgba(255, 255, 255, .78); margin-inline: auto; }
.hero--dark .eyebrow { color: var(--accent); }
.hero--dark .hero__actions { justify-content: center; }
.hero--dark .btn--ghost { background: transparent; border-color: rgba(255, 255, 255, .35); color: #fff; }
.hero--dark .btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .06); }
.hero--dark .hero__dots { justify-content: center; }
.hero--dark .hero__dot { background: rgba(255, 255, 255, .25); }
.hero--dark .hero__dot.is-active { background: var(--accent); }

.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__bg canvas { width: 100%; height: 100%; display: block; }
.rings { position: absolute; inset: 0; overflow: hidden; }
.rings span { position: absolute; border-radius: 50%; border: 3px solid; opacity: .55; animation: drift 16s ease-in-out infinite; }
.rings .r1 { top: 12%; inset-inline-start: 20%; width: 200px; height: 200px; border-color: #ff5a6e; }
.rings .r2 { bottom: 4%; inset-inline-start: 5%; width: 300px; height: 300px; border-color: #6a4bff; animation-delay: -4s; }
.rings .r3 { top: 22%; inset-inline-end: 9%; width: 120px; height: 120px; border-color: #ff8a3c; animation-delay: -8s; }
.rings .r4 { top: 6%; inset-inline-end: 30%; width: 86px; height: 86px; border-color: #6a4bff; opacity: .4; animation-delay: -12s; }
@keyframes drift { 0%, 100% { transform: none; } 50% { transform: translate(26px, -32px); } }

.hero__scroll { position: absolute; inset-block-end: 22px; inset-inline: 0; margin-inline: auto; width: max-content; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 9px; color: rgba(255, 255, 255, .65); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
[dir="rtl"] .hero__scroll { letter-spacing: 0; }
.hero__scroll .mouse { width: 24px; height: 38px; border: 2px solid rgba(255, 255, 255, .5); border-radius: 14px; position: relative; }
.hero__scroll .mouse::before { content: ""; position: absolute; top: 7px; inset-inline-start: 50%; width: 3px; height: 7px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 1; transform: translate(-50%, 0); } 100% { opacity: 0; transform: translate(-50%, 10px); } }
@media (prefers-reduced-motion: reduce) { .rings span, .hero__scroll .mouse::before { animation: none; } }

/* division / feature icons */
.card__ic { width: 58px; height: 58px; border-radius: 15px; background: rgba(216, 35, 42, .08); color: var(--accent); display: grid; place-items: center; margin-bottom: 20px; }
.card__ic svg { width: 28px; height: 28px; }

/* process / steps */
.step__n { font-size: 1rem; font-weight: 800; color: var(--accent); letter-spacing: .06em; margin-bottom: 12px; }

/* quote band */
.quote { text-align: center; max-width: 860px; margin-inline: auto; }
.quote__mark { font-size: 3.4rem; line-height: 1; color: var(--accent); font-weight: 800; }
.quote p { font-size: clamp(1.3rem, 2.7vw, 2rem); font-weight: 600; color: var(--ink); line-height: 1.4; margin: 8px 0 0; }
.quote cite { display: block; margin-top: 22px; color: var(--muted); font-style: normal; font-weight: 600; }

/* ============ 7. Stat counters (light) ============ */
.stats { background: var(--bg-2); border-block: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); text-align: center; }
.stat { position: relative; padding: 6px 4px; }
.stat:not(:last-child)::after { content: ""; position: absolute; inset-inline-end: 0; inset-block: 16%; width: 1px; background: var(--line); }
.stat__num { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.stat__num .suffix { color: var(--accent); }
.stat__label { color: var(--muted); font-size: .95rem; margin-top: 6px; }

/* ============ 8. Logo carousel ============ */
.logos { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logos__track { display: inline-flex; align-items: center; gap: clamp(36px, 6vw, 80px); white-space: nowrap; animation: scroll-x 32s linear infinite; }
.logos:hover .logos__track { animation-play-state: paused; }
.logo-chip { height: 40px; display: inline-flex; align-items: center; opacity: .55; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.logo-chip:hover { opacity: 1; filter: none; }
.logo-chip img, .logo-chip svg { height: 40px; width: auto; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
[dir="rtl"] .logos__track { animation-name: scroll-x-rtl; }
@keyframes scroll-x-rtl { to { transform: translateX(50%); } }

/* ============ 9. Brand / product cards ============ */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(18px, 2vw, 28px); }
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card__logo { height: 56px; display: flex; align-items: center; margin-bottom: 18px; }
.card__logo img, .card__logo svg { max-height: 56px; width: auto; }
.card__title { font-size: 1.3rem; margin-bottom: 8px; }
.card__tag { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.card__text { color: var(--muted); font-size: .98rem; flex: 1; }
.card__foot { margin-top: 18px; }

/* media card (interactives / portfolio) */
.media-card { display: block; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-2); border: 1px solid var(--line); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.media-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.media-card__img { aspect-ratio: 16 / 10; overflow: hidden; }
.media-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.media-card:hover .media-card__img img { transform: scale(1.05); }
.media-card__body { padding: 18px 20px; }
.media-card__title { font-size: 1.1rem; }
.media-card__meta { color: var(--muted); font-size: .88rem; margin-top: 4px; }

/* ============ 10. Split feature ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.feature-list { display: grid; gap: 16px; margin-top: 22px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); }
.feature-list li::before { content: ""; flex: 0 0 22px; height: 22px; border-radius: 50%; margin-top: 2px; background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat; }

/* ============ 11. Clients grid ============ */
.clients-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.client-cell { background: #fff; aspect-ratio: 3 / 2; display: grid; place-items: center; padding: 20px; }
.client-cell img, .client-cell svg { max-height: 46px; max-width: 80%; width: auto; opacity: .65; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.client-cell:hover img, .client-cell:hover svg { opacity: 1; filter: none; }

/* ============ 12. CTA band ============ */
.cta { background: var(--accent); color: #fff; text-align: center; }
.cta h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta p { color: rgba(255, 255, 255, .9); max-width: 60ch; margin: 14px auto 26px; }

/* ============ 13. Forms ============ */
.form-grid { display: grid; gap: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field textarea {
    width: 100%; font: inherit; color: var(--ink);
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 13px 15px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(216, 35, 42, .12); }
.field textarea { min-height: 130px; resize: vertical; }
.recaptcha-wrap { display: flex; overflow: hidden; }
[dir="rtl"] .recaptcha-wrap { justify-content: flex-start; }
.form-msg { min-height: 1.2em; font-size: .92rem; }
.form-msg.is-ok { color: #1c9e63; }
.form-msg.is-err { color: var(--accent); }
.is-hidden { position: absolute; left: -9999px; }

/* contact info rows */
.info-row { display: flex; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-row__ic { flex: 0 0 44px; height: 44px; border-radius: 10px; background: rgba(216, 35, 42, .08); color: var(--accent); display: grid; place-items: center; }
.info-row__ic svg { width: 20px; }
.info-row__label { font-size: .8rem; color: var(--muted); }
.info-row__value { font-weight: 600; }

/* ============ 14. Page hero (inner) ============ */
.page-hero { background: var(--bg-2); border-bottom: 1px solid var(--line); padding-block: clamp(40px, 6vw, 76px); }
.page-hero__title { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.page-hero__text { color: var(--muted); margin-top: 12px; max-width: 60ch; }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--accent); }

/* prose (privacy etc.) */
.prose { max-width: 800px; }
.prose h2 { font-size: 1.4rem; margin: 32px 0 12px; }
.prose p { color: var(--ink-2); }
.prose ul.bullet { list-style: disc; padding-inline-start: 22px; color: var(--ink-2); display: grid; gap: 8px; margin-bottom: 1rem; }

/* accordion (faq/careers) */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn { width: 100%; text-align: start; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; background: none; border: 0; cursor: pointer; font-size: 1.08rem; font-weight: 600; color: var(--ink); }
.acc__ic { flex: 0 0 18px; height: 18px; position: relative; }
.acc__ic::before, .acc__ic::after { content: ""; position: absolute; inset-block-start: 50%; inset-inline-start: 0; width: 18px; height: 2px; background: var(--accent); transform: translateY(-50%); transition: transform .3s; }
.acc__ic::after { transform: translateY(-50%) rotate(90deg); }
.acc__item.is-open .acc__ic::after { transform: translateY(-50%) rotate(0); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel p { color: var(--muted); padding-bottom: 20px; margin: 0; }

/* ============ 15. Footer (light) ============ */
.footer { background: var(--bg-2); color: var(--ink-2); border-top: 1px solid var(--line); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(24px, 3vw, 48px); padding-block: clamp(44px, 5vw, 72px); }
.footer__brand b { color: var(--accent); }
.footer__about { margin-top: 14px; font-size: .95rem; max-width: 36ch; color: var(--muted); }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; color: var(--ink); transition: background .2s, border-color .2s, color .2s; }
.footer__social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer__social svg { width: 16px; }
.footer__col h4 { color: var(--ink); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { font-size: .94rem; color: var(--ink-2); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid var(--line); padding-block: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .88rem; color: var(--muted); }

/* ============ 16. Reveal + misc ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
.skip-link { position: absolute; inset-inline-start: 12px; inset-block-start: -60px; z-index: 200; background: var(--accent); color: #fff; padding: 10px 18px; border-radius: 999px; font-weight: 600; transition: inset-block-start .2s; }
.skip-link:focus { inset-block-start: 12px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; } .reveal { opacity: 1; transform: none; } html { scroll-behavior: auto; } }

/* ============ 17. Responsive ============ */
@media (max-width: 1080px) {
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .clients-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
    .nav__menu { position: fixed; inset: var(--header-h) 0 0 0; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; background: #fff; padding: 12px var(--gutter); transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto; }
    [dir="rtl"] .nav__menu { transform: translateX(-100%); }
    body.nav-open .nav__menu { transform: none; }
    .nav__link { padding: 15px 6px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
    .burger { display: block; }
    .hero__grid { grid-template-columns: 1fr; }
    .hero__visual { order: -1; max-width: 520px; }
    .split { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .hero__title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
    .footer__top { grid-template-columns: 1fr; }
    .footer__bottom { justify-content: center; text-align: center; }
    .recaptcha-wrap { transform: scale(.86); transform-origin: left top; }
    [dir="rtl"] .recaptcha-wrap { transform-origin: right top; }
}
