/* ============================================================
   Future Systems — 2026 site theme
   Overrides the legacy layout with a modern editorial system.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

:root {
    --brand: #1a72b9;
    --brand-hover: #155f9a;
    --brand-deep: #0e4d82;
    --brand-soft: #8cc4ed;
    --brand-tint: #e8f3fb;
    --brand-muted: rgba(26, 114, 185, 0.18);
    --blue: var(--brand);
    --blue-deep: var(--brand-deep);
    --ink: #07141f;
    --ink-soft: #102233;
    --paper: #f3f7fb;
    --white: #ffffff;
    --wash: radial-gradient(80% 60% at 100% 0%, rgba(26, 114, 185, 0.08), transparent 55%),
        linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
    --line: rgba(26, 114, 185, 0.12);
    --line-strong: rgba(26, 114, 185, 0.22);
    --muted: #5b7388;
    --text: #16324a;
    --red: #c73b4d;
    --radius: 24px;
    --radius-sm: 16px;
    --shadow: 0 24px 60px rgba(7, 20, 31, 0.08);
    --shadow-soft: 0 10px 30px rgba(26, 114, 185, 0.08);
    --shadow-brand: 0 16px 40px -16px rgba(26, 114, 185, 0.45);
    --nav-h: 76px;
    --font: "Plus Jakarta Sans", "IBM Plex Sans Arabic", Cairo, sans-serif;
    --font-ar: "IBM Plex Sans Arabic", Cairo, sans-serif;
}

html[lang="ar"],
html[lang^="ar"],
html.is-ar {
    --font: var(--font-ar);
}

html.is-ar body.site *:not(i),
html.is-ar body.site *:not(i)::before,
html.is-ar body.site *:not(i)::after {
    font-family: var(--font-ar) !important;
    letter-spacing: 0 !important;
}

html.is-ar .site-kicker,
html.is-ar .fsp-eyebrow {
    text-transform: none;
}

body.site {
    font-family: var(--font);
    background: var(--paper);
    color: var(--text);
    overflow-x: hidden;
}

body.site *:not(i),
body.site *:not(i)::before,
body.site *:not(i)::after {
    font-family: inherit;
}

@media (prefers-reduced-motion: reduce) {
    .fsp-orbit__ring,
    .fsp-orbit__glow,
    .site-marquee__track {
        animation: none !important;
    }
}

body.site img {
    max-width: 100%;
    height: auto;
}

body.site .fsp-visual--full img,
body.site .site-card .image img,
body.site .site-project img {
    height: 100%;
}

body.site ::placeholder {
    font-family: inherit;
    color: #94a3b8;
}

body.site ::-webkit-scrollbar {
    width: 10px;
    background: #e8edf3;
}

body.site ::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background: #94a3b8;
}

/* ----- shell ------------------------------------------------ */

.site-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.site-section {
    padding: 88px 0;
    background: var(--paper);
}

.site-section--white {
    background: var(--white);
}

.site-section--ink {
    background: var(--ink);
    color: #fff;
}

.site-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.site-heading--start {
    margin-inline: 0;
    text-align: start;
}

.site-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-muted, rgba(26, 114, 185, 0.12));
}

.site-heading h2,
.site-heading h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 750;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: var(--ink);
}

.site-section--ink .site-heading h2,
.site-section--ink .site-heading h1 {
    color: #fff;
}

.site-heading p,
.site-lead {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
}

.site-section--ink .site-heading p,
.site-section--ink .site-lead {
    color: rgba(255, 255, 255, 0.68);
}

/* ----- header ----------------------------------------------- */

body.site .header {
    position: absolute;
    top: 0;
    inset-inline: 0;
    z-index: 2000;
    width: 100%;
    isolation: isolate;
    background: var(--wash);
    border-bottom: 1px solid rgba(26, 114, 185, 0.12);
    box-shadow: 0 10px 30px rgba(7, 20, 31, 0.06);
}

body.site .header::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand) 20%, var(--brand-soft) 50%, var(--brand) 80%, transparent);
}

body.site .header.is-scrolled {
    background: var(--wash);
}

body.site .header .inner,
body.site .site-nav {
    width: min(1180px, calc(100% - 40px));
    height: var(--nav-h);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

body.site .header .inner::before {
    display: none;
}

body.site .header .logo,
body.site .site-nav__logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    width: auto;
    transform: none;
}

body.site .header .logo img,
body.site .site-nav__logo img {
    width: auto;
    height: 40px;
    object-fit: contain;
    filter: brightness(0);
}

body.site .header .links,
body.site .site-nav__links {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

body.site .header .links li {
    flex: 0 0 auto;
}

body.site .site-nav__mobile-only {
    display: none;
}

body.site .header .links .link,
body.site .site-nav__links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

body.site .header .links .link::after {
    display: none;
}

body.site .header .links .link:hover,
body.site .site-nav__links a:hover {
    color: var(--brand);
    background: var(--brand-muted);
}

body.site .header .links .link.active,
body.site .site-nav__links a.active {
    color: #fff;
    background: var(--brand);
    box-shadow: none;
}

body.site .header .userActions,
body.site .site-nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

body.site .header .search {
    display: none !important;
}

body.site .header .userActions > .link,
body.site .site-nav__lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(26, 114, 185, 0.18);
    border-radius: 999px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    background: #fff;
}

body.site .header .userActions > .link:hover,
body.site .site-nav__lang:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

body.site .site-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-brand);
}

body.site .site-nav__cta:hover {
    transform: translateY(-1px);
    background: var(--brand-hover);
}

body.site .header .menu,
body.site .site-nav__menu {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--brand);
    color: #fff;
    cursor: pointer;
}

/* ----- hero / profile slider -------------------------------- */

body.site .fsp--hero {
    border-bottom: 0;
}

body.site .fsp-inner {
    padding-top: calc(var(--nav-h) + 28px);
}

body.site .fsp-title {
    letter-spacing: -0.05em;
}

body.site .fsp-btn {
    border-radius: 999px;
    min-height: 50px;
    padding: 0 22px;
}

body.site .fsp-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
}

body.site .fsp-slide--light .fsp-arrow {
    border-color: rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
}

body.site .fsp-dots {
    padding: 0;
    border-radius: 0;
    background: none;
}

/* ----- stats ------------------------------------------------ */

.site-stats {
    position: relative;
    padding: 32px 0 36px;
    background: var(--wash);
    border-block: 1px solid rgba(26, 114, 185, 0.08);
    overflow: hidden;
}

.site-stats::before {
    content: "";
    position: absolute;
    inset-inline-start: -10%;
    top: -40%;
    width: 42%;
    height: 180%;
    background: radial-gradient(circle, rgba(26, 114, 185, 0.1), transparent 68%);
    pointer-events: none;
}

.site-stats__wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.site-stats .count,
.site-stat {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 188px;
    padding: 28px 22px 26px;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(26, 114, 185, 0.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    width: auto;
    height: auto;
    overflow: hidden;
}

.site-stats .count::before,
.site-stats .count::after {
    display: none !important;
}

.site-stat::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-soft), var(--brand));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.site-stat:hover {
    transform: translateY(-6px);
    border-color: rgba(26, 114, 185, 0.22);
    box-shadow: 0 24px 50px -28px rgba(15, 23, 42, 0.28);
}

.site-stat:hover::after {
    opacity: 1;
}

.site-stat__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: var(--brand-tint);
    color: var(--brand);
}

.site-stat__icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.site-stats .count span,
.site-stat strong {
    display: block;
    font-size: clamp(34px, 3.6vw, 52px);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--brand-deep);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.site-stats .count p,
.site-stat span {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--muted);
}

/* ----- introduce -------------------------------------------- */

body.site .introduce-section {
    gap: 64px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 88px 20px;
    background: transparent;
}

body.site .about-us-page .introduce-section,
body.site .introduce-section {
    background: transparent;
}

body.site .introduce-section .image {
    width: min(46%, 520px);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

body.site .introduce-section .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.site .introduce-section .shadow {
    display: none;
}

body.site .introduce-section .text h2 {
    margin-bottom: 16px;
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 750;
    letter-spacing: -0.04em;
    color: var(--ink);
}

body.site .introduce-section .text p {
    padding: 0;
    border: 0;
    border-radius: 0;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--muted);
}

/* ----- cards / grids ---------------------------------------- */

.site-cards,
body.site .services-section .card-wrapper,
body.site .features-section .card-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px 0;
    overflow: visible;
}

body.site .services-section .swiper-wrapper,
body.site .features-section .swiper-wrapper,
body.site .projects-section .swiper-wrapper {
    display: contents;
}

body.site .services-section .swiper-slide,
body.site .features-section .swiper-slide,
body.site .projects-section .swiper-slide {
    width: auto !important;
    margin: 0 !important;
}

body.site .slider-section .swiper-pagination,
body.site .slider-section .swiper-slide-button {
    display: none !important;
}

body.site .slider-section .message-section {
    max-width: 680px;
    margin: -20px auto 40px;
    padding: 0;
    border: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
    color: var(--muted);
}

body.site .head {
    justify-content: center;
    padding: 0 20px 8px;
}

body.site .head h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 750;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.site-card,
body.site .slider-section .slide {
    height: 100%;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-card .image,
body.site .slider-section .slide .image {
    width: 100%;
    height: 180px;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #eef3f8;
}

.site-card .image img,
body.site .slider-section .slide .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-card .text h2,
.site-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.site-card .text p,
.site-card p {
    margin: 0;
    line-height: 1.65;
    color: var(--muted);
}

.site-section--white .site-card .image {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    background: rgba(26, 114, 185, 0.08);
}

.site-section--white .site-card .image img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.site-projects {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.site-project {
    margin: 0;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    background: #dbe4ee;
}

.site-project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.site-project:hover img {
    transform: scale(1.05);
}

body.site .slider-section .slide {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

body.site .slider-section .slide .image {
    width: 100%;
    height: 180px;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #eef3f8;
}

body.site .slider-section .slide .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.site .features-section .slide .image {
    height: 72px;
    width: 72px;
    background: rgba(26, 114, 185, 0.08);
    display: grid;
    place-items: center;
}

body.site .features-section .slide .image img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

body.site .slider-section .slide .text {
    gap: 8px;
    margin: 0;
}

body.site .slider-section .slide .text h2 {
    font-size: 20px;
    text-align: start;
    letter-spacing: -0.03em;
    color: var(--ink);
}

body.site .slider-section .slide .text p {
    line-height: 1.65;
    text-align: start;
    color: var(--muted);
}

body.site .slider-section .slide .action {
    display: none;
}

/* projects */

body.site .projects-section {
    background: var(--white);
}

body.site .projects-section .card-wrapper {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

body.site .projects-section .slide {
    padding: 0;
    overflow: hidden;
    border: 0;
    min-height: 220px;
}

body.site .projects-section .slide .image {
    height: 220px;
    border-radius: 0;
}

body.site .projects-section .slide:hover img {
    transform: scale(1.04);
}

body.site .projects-section .slide img {
    transition: transform 0.5s ease;
}

/* faster services */

body.site .faster-services-section {
    padding: 88px 0 96px;
    background: var(--paper);
}

body.site .faster-services-section .head h2 {
    color: #fff;
}

body.site .faster-services-section .cards {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr);
}

body.site .faster-services-section .card {
    padding: 22px;
    border-radius: 22px;
    background: #121826;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

body.site .faster-services-section .card .image {
    width: 72px;
    height: 72px;
    padding: 14px;
    border-radius: 18px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
}

body.site .faster-services-section .card h2 {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

/* clients + trademarks */

body.site .clients-section,
body.site .trademarks-section {
    padding: 80px 0;
    background: var(--white);
}

body.site .trademarks-section {
    background: var(--paper);
}

body.site .clients-grid,
body.site .trademarks-grid {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    padding: 0;
}

body.site .client-item,
body.site .trademark-item {
    aspect-ratio: auto;
    min-height: 96px;
    max-width: none;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--white);
    display: grid;
    place-items: center;
}

body.site .client-item:hover,
body.site .trademark-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border-color: var(--line-strong);
}

body.site .client-item img,
body.site .trademark-item img {
    width: auto;
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

/* ----- page hero -------------------------------------------- */

.page-hero {
    position: relative;
    min-height: 360px;
    padding: calc(var(--nav-h) + 56px) 20px 72px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(60% 80% at 12% 10%, rgba(26, 114, 185, 0.28), transparent 55%),
        radial-gradient(50% 60% at 90% 0%, rgba(26, 114, 185, 0.2), transparent 50%),
        linear-gradient(165deg, #07090f 0%, #101826 100%);
    color: #fff;
    text-align: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(70% 70% at 50% 40%, #000 10%, transparent 75%);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
}

.page-hero .site-kicker {
    margin-inline: auto;
}

.page-hero h1,
.page-hero h2 {
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.1;
    color: #fff;
}

.page-hero p {
    margin: 0 auto;
    max-width: 520px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
}

body.site .section-with-text {
    display: none;
}

/* ----- contact ---------------------------------------------- */

body.site .contact-us-page,
body.site .about-us-page,
body.site .common-questions-page {
    background: var(--paper);
}

body.site .contact-us-section.fadeUp,
body.site .contact-us-section.p-30 {
    width: min(1100px, calc(100% - 40px));
    margin: -48px auto 80px;
    padding: 28px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

body.site .contact-us-page .contact-us-section .inner {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
}

body.site .contact-us-page form {
    gap: 14px;
    box-shadow: none;
}

body.site .contact-us-page form .group input,
body.site .contact-us-page form .group textarea,
body.site .contact-us-page form .group select {
    height: auto;
    min-height: 54px;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 14px;
    border: 1px solid var(--line-strong);
    background: #f8fafc;
    color: var(--ink);
}

body.site .contact-us-page form textarea {
    min-height: 160px;
}

body.site .contact-us-page form .action {
    box-shadow: none;
    border-radius: 999px;
    overflow: hidden;
}

body.site .contact-us-page form .action .link,
body.site .site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    box-shadow: var(--shadow-brand);
}

body.site .site-btn:hover,
body.site .contact-us-page form .action .link:hover {
    background: var(--brand-hover);
}

body.site .contact-us-page form .action .link i {
    position: static;
    transform: none;
    border: 0;
    padding: 0;
    height: auto;
}

.site-contact {
    width: min(1100px, calc(100% - 40px));
    margin: -56px auto 80px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.site-contact__info {
    padding: 40px 36px;
    background: var(--ink);
    color: #fff;
}

.site-contact__info h2 {
    margin: 0 0 10px;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.site-contact__info p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.7;
}

.site-contact__info a,
.site-contact__info li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    line-height: 1.6;
}

.site-contact__info i {
    margin-top: 3px;
    color: #7db7e6;
}

.site-contact__form {
    padding: 40px 36px;
}

.site-contact__form form,
body.site .contact-us-page form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: none;
}

.site-contact__form .group {
    display: flex;
    gap: 12px;
}

.site-contact__form input,
.site-contact__form textarea,
body.site .contact-us-page form .group input,
body.site .contact-us-page form .group textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 14px;
    border: 1px solid var(--line-strong);
    background: #f8fafc;
    color: var(--ink);
    outline: none;
}

.site-contact__form textarea {
    min-height: 160px;
    resize: vertical;
}

.site-contact__form .action .link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-brand);
}

.site-alert {
    margin-bottom: 16px;
    padding: 12px 16px;
    border-radius: 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.site-alert--ok { background: #147a4a; }
.site-alert--err { background: #9b1c2e; }

/* ----- faq -------------------------------------------------- */

body.site .questions-section {
    width: min(860px, calc(100% - 40px));
    margin: -48px auto 80px;
    padding: 28px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
}

body.site .questions-section .head {
    justify-content: start;
    padding: 8px 8px 20px;
}

body.site .questions-section .head h2 {
    font-size: 28px;
}

body.site .questions-section .questions > ul {
    gap: 10px;
}

body.site .questions-section .questions > ul > li {
    padding: 6px 8px 6px 4px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #f8fafc;
}

body.site .questions-section .head-question {
    margin: 0;
    padding: 14px 12px;
    cursor: pointer;
}

body.site .questions-section .head-question h2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
}

body.site .questions-section .head-question i {
    width: 36px;
    height: 36px;
    font-size: 13px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    box-shadow: none;
}

body.site .questions-section .questions > ul > li > ul {
    padding: 0 16px 16px 52px;
}

body.site .questions-section .questions > ul > li > ul.show {
    display: block;
}

body.site .questions-section .questions > ul > li > ul li {
    list-style: none;
    color: var(--muted);
    line-height: 1.7;
}

/* ----- legal article ---------------------------------------- */

.site-article {
    width: min(820px, calc(100% - 40px));
    margin: -48px auto 80px;
    padding: 40px 36px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.site-article h1,
.site-article h2 {
    letter-spacing: -0.03em;
    color: var(--ink);
}

.site-article h1 {
    font-size: 32px;
    margin: 0 0 16px;
}

.site-article h2 {
    font-size: 20px;
    margin: 28px 0 10px;
}

.site-article p,
.site-article li {
    color: var(--muted);
    line-height: 1.8;
}

.site-article ul {
    padding-inline-start: 20px;
    list-style: disc;
}

/* ----- cta band --------------------------------------------- */

.site-cta {
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
    text-align: center;
    background:
        radial-gradient(50% 80% at 50% 0%, rgba(26, 114, 185, 0.22), transparent 60%),
        var(--ink);
    color: #fff;
}

.site-cta::before {
    content: "";
    position: absolute;
    width: 40%;
    height: 40%;
    top: -10%;
    inset-inline-end: -8%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--brand-glow, rgba(26, 114, 185, 0.35)), transparent 70%);
    animation: fsp-pulse 6s ease-in-out infinite;
}

.site-cta h2 {
    margin: 0 auto 12px;
    max-width: 920px;
    font-size: clamp(22px, 3.2vw, 36px);
    letter-spacing: -0.03em;
    line-height: 1.35;
}

.site-cta p {
    margin: 0 auto 28px;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.64);
}

body.site .site-cta .site-btn {
    width: auto;
    min-width: 220px;
    max-width: 280px;
    margin-inline: auto;
    padding-inline: 32px;
    background: #fff;
    color: var(--brand-deep);
}

/* ----- footer ----------------------------------------------- */

body.site .footer {
    padding: 72px 20px 0;
    background: var(--wash);
    color: var(--muted);
    overflow: hidden;
}

body.site .footer,
body.site .footer * {
    font-weight: 500 !important;
}

body.site .site-foot__brand h2,
body.site .site-foot__col h3,
body.site .site-foot__contact h3,
body.site .site-foot__support h3,
body.site .site-foot__meta strong {
    font-weight: 700 !important;
}

body.site .site-foot__brand h2 {
    font-weight: 800 !important;
}

body.site .site-foot__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

body.site .site-foot__grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.5fr) minmax(220px, 1fr) minmax(240px, 1.15fr) minmax(220px, 0.95fr);
    gap: 40px 32px;
    align-items: start;
    padding-bottom: 40px;
}

body.site .site-foot__brand h2,
body.site .site-foot__col h3,
body.site .site-foot__contact h3,
body.site .site-foot__support h3 {
    margin: 0 0 16px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink);
}

body.site .site-foot__brand h2 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
}

body.site .site-foot__about {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
    text-align: start;
}

body.site .site-foot__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.site .site-foot__social a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid rgba(26, 114, 185, 0.14);
    background: #fff;
    color: var(--brand);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.site .site-foot__social a:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

body.site .site-foot__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

body.site .site-foot__col ul,
body.site .site-foot__contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.site .site-foot__col a {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text);
    text-decoration: none;
}

body.site .site-foot__col a:hover {
    color: var(--brand);
}

body.site .site-foot__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

body.site .site-foot__ico {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(26, 114, 185, 0.14);
    color: var(--brand);
    font-size: 14px;
}

body.site .site-foot__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    padding-top: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--text);
    text-decoration: none;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
}

body.site .site-foot__meta[dir="ltr"] {
    direction: ltr;
    unicode-bidi: isolate;
    text-align: start;
    white-space: nowrap;
    overflow-wrap: normal;
}

body.site .site-foot__meta strong {
    font-weight: 600;
    color: var(--ink);
}

body.site .site-foot__meta span {
    color: var(--muted);
    font-size: 13px;
}

body.site .site-foot__meta:hover {
    color: var(--brand);
}

body.site .site-foot__support p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

body.site .site-foot__form {
    position: relative;
    display: flex;
    align-items: center;
    height: 52px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(26, 114, 185, 0.14);
    box-shadow: var(--shadow-soft);
}

body.site .site-foot__form input {
    flex: 1;
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 56px 0 16px;
    font-size: 14px;
    color: var(--ink);
}

html.is-ar body.site .site-foot__form input {
    padding: 0 16px 0 56px;
}

body.site .site-foot__form input::placeholder {
    color: var(--muted);
}

body.site .site-foot__form button {
    position: absolute;
    inset-inline-end: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 10px;
    background: var(--brand);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
}

body.site .site-foot__form button i {
    width: auto;
    height: auto;
    background: transparent;
    transform: none;
    font-size: 14px;
}

html.is-ar body.site .site-foot__form button i {
    transform: scaleX(-1);
}

body.site .site-foot__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(26, 114, 185, 0.12);
}

body.site .site-foot__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
}

body.site .site-foot__legal a,
body.site .site-foot__copy {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
}

body.site .site-foot__legal a:hover {
    color: var(--brand);
}

@media (max-width: 1100px) {
    body.site .site-foot__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
    }
}

@media (max-width: 700px) {
    body.site .footer {
        padding: 56px 16px 0;
    }

    body.site .site-foot__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    body.site .site-foot__links {
        grid-template-columns: 1fr 1fr;
    }

    body.site .site-foot__meta[dir="ltr"] {
        white-space: normal;
    }

    body.site .site-foot__bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ----- motion ----------------------------------------------- */

body.site .fadeUp,
body.site .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

body.site .fadeUp.show,
body.site .reveal.is-in {
    opacity: 1;
    transform: none;
}

.site-cards .site-card,
.site-projects .site-project,
.site-stats .site-stat {
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-card:hover {
    transform: translateY(-8px);
    border-color: rgba(26, 114, 185, 0.28);
    box-shadow: 0 28px 50px -28px rgba(15, 23, 42, 0.35);
}

.site-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.site-marquee__track {
    display: flex;
    width: max-content;
    gap: 12px;
    animation: site-marquee 42s linear infinite;
}

.site-marquee:hover .site-marquee__track {
    animation-play-state: paused;
}

.site-marquee .client-item,
.site-marquee .trademark-item {
    width: 168px;
    flex: 0 0 168px;
}

@keyframes site-marquee {
    to { transform: translateX(-50%); }
}

@keyframes fsp-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

body.site a,
body.site button,
body.site .site-card,
body.site .client-item,
body.site .trademark-item,
body.site .slider-section .slide {
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* ----- responsive ------------------------------------------- */

@media (max-width: 1100px) {
    .site-stats__wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.site .site-foot__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-cards,
    body.site .services-section .card-wrapper,
    body.site .features-section .card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-projects,
    body.site .projects-section .card-wrapper,
    body.site .faster-services-section .cards,
    body.site .clients-grid,
    body.site .trademarks-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .site-contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    body.site .header .links,
    body.site .site-nav__links {
        position: absolute;
        top: 100%;
        inset-inline: 0;
        z-index: 3;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 14px;
        border-radius: 0 0 18px 18px;
        background: #f8fafc;
        border: 0;
        border-top: 1px solid rgba(26, 114, 185, 0.12);
        box-shadow: 0 18px 40px rgba(7, 20, 31, 0.12);
    }

    body.site .header .links.active,
    body.site .site-nav__links.active {
        display: flex;
    }

    body.site .header .links li,
    body.site .site-nav__links li {
        width: 100%;
        flex: 0 0 auto;
    }

    body.site .header .links .link,
    body.site .site-nav__links a {
        width: 100%;
        justify-content: flex-start;
        text-align: start;
    }

    body.site .site-nav__mobile-only {
        display: list-item;
    }

    body.site .header .menu,
    body.site .site-nav__menu {
        display: grid;
        place-items: center;
    }

    body.site .site-nav__cta {
        display: none;
    }

    body.site .introduce-section {
        flex-direction: column;
        padding: 56px 20px;
        gap: 28px;
    }

    body.site .introduce-section .image {
        width: 100%;
    }

    .site-stats {
        padding: 28px 0 32px;
    }

    .site-stats__wrap {
        grid-template-columns: 1fr;
        width: min(1180px, calc(100% - 32px));
    }

    .site-stats .count,
    .site-stat {
        min-height: 148px;
    }

    body.site .site-foot__grid,
    .site-cards,
    body.site .services-section .card-wrapper,
    body.site .features-section .card-wrapper,
    body.site .projects-section .card-wrapper,
    body.site .faster-services-section .cards,
    body.site .clients-grid,
    body.site .trademarks-grid {
        grid-template-columns: 1fr;
    }

    body.site .clients-grid,
    body.site .trademarks-grid,
    body.site .projects-section .card-wrapper,
    .site-projects {
        grid-template-columns: repeat(2, 1fr);
    }
}
