:root {
    --brand-navy: #0b2a57;
    --brand-orange: #ff6b00;
    --brand-sky: #2f7cf6;
    --brand-ink: #111c33;
    --brand-muted: #607089;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-strong: #ffffff;
    --surface-soft: #f4f7fc;
    --border: rgba(11, 42, 87, 0.1);
    --border-strong: rgba(11, 42, 87, 0.16);
    --shadow: 0 28px 70px rgba(11, 42, 87, 0.12);
    --shadow-soft: 0 18px 40px rgba(11, 42, 87, 0.08);
    --radius-xl: 36px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --content-width: min(1240px, calc(100vw - 32px));
    --service-hero-title-size: clamp(2rem, 3.2vw, 3.15rem);
    --font-ui: "Thmanyah", Tahoma, Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body,
button,
input,
select,
textarea {
    font-family: var(--font-ui);
    font-synthesis: none;
}

:where(table, th, td, input[type="number"], input[type="tel"], a[href^="tel:"]) {
    font-variant-numeric: lining-nums tabular-nums;
}

body {
    margin: 0;
    color: var(--brand-ink);
    background:
        radial-gradient(circle at 50% 18%, rgba(47, 124, 246, 0.12), transparent 24%),
        radial-gradient(circle at 18% 92%, rgba(47, 124, 246, 0.09), transparent 22%),
        radial-gradient(circle at 82% 8%, rgba(255, 107, 0, 0.08), transparent 20%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 38%, #f5f8fc 100%);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-shell {
    min-height: 100vh;
}

.site-header__inner,
.hero,
.section {
    width: var(--content-width);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(11, 42, 87, 0.06);
}

.site-header__inner {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
}

.brand__mark {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
}

.brand__name {
    margin: 0;
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
    color: var(--brand-navy);
}

.brand__tagline {
    margin: 4px 0 0;
    color: var(--brand-muted);
    font-size: 0.9rem;
}

.site-nav {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
}

.site-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.site-nav a,
.site-nav__lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--brand-ink);
    font-weight: 700;
    transition: 180ms ease;
}

.site-nav a:hover {
    color: var(--brand-navy);
    background: rgba(11, 42, 87, 0.05);
}

.site-nav a.is-active {
    color: var(--brand-navy);
    position: relative;
}

.site-nav a.is-active::after {
    content: "";
    position: absolute;
    right: 16px;
    left: 16px;
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
    background: var(--brand-sky);
}

.site-nav__lang {
    background: rgba(11, 42, 87, 0.05);
    color: var(--brand-muted);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 18px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--header-primary {
    background: linear-gradient(135deg, var(--brand-navy), #173f86);
    color: #fff;
    box-shadow: 0 14px 30px rgba(11, 42, 87, 0.18);
}

.button--header-secondary {
    background: #fff;
    color: var(--brand-navy);
    border-color: rgba(11, 42, 87, 0.18);
    box-shadow: 0 10px 28px rgba(11, 42, 87, 0.08);
}

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-navy), #3757ba);
    box-shadow: 0 16px 34px rgba(31, 76, 171, 0.24);
}

.button--secondary {
    color: var(--brand-navy);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(11, 42, 87, 0.16);
    box-shadow: 0 10px 30px rgba(11, 42, 87, 0.08);
}

.hero {
    position: relative;
    padding: 58px 0 88px;
    text-align: center;
    isolation: isolate;
}

.hero__ambient,
.hero__line {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.hero__ambient {
    border-radius: 50%;
    filter: blur(8px);
}

.hero__ambient--one {
    top: 130px;
    left: 50%;
    width: 820px;
    height: 820px;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at center, rgba(47, 124, 246, 0.24), rgba(47, 124, 246, 0.07) 48%, transparent 70%);
}

.hero__ambient--two {
    bottom: 40px;
    left: 22%;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle at center, rgba(47, 124, 246, 0.18), transparent 72%);
}

.hero__line {
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(47, 124, 246, 0.18), transparent);
    transform-origin: top center;
}

.hero__line--one {
    top: -60px;
    left: 14%;
    height: 760px;
    transform: rotate(22deg);
}

.hero__line--two {
    top: -120px;
    right: 18%;
    height: 840px;
    transform: rotate(-28deg);
}

.hero__content {
    max-width: 980px;
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(11, 42, 87, 0.08);
    box-shadow: 0 12px 30px rgba(11, 42, 87, 0.06);
    color: var(--brand-navy);
    font-size: 0.95rem;
    font-weight: 700;
}

.eyebrow::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-sky));
    box-shadow: 0 0 0 6px rgba(255, 107, 0, 0.08);
}

.hero h2,
.section-title h2 {
    margin: 20px 0 16px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero h2 {
    font-size: clamp(3rem, 6vw, 5.6rem);
    max-width: 14ch;
    margin-right: auto;
    margin-left: auto;
}

.hero p {
    margin: 0 auto;
    max-width: 60ch;
    color: #35507e;
    font-size: 1.16rem;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 30px 0 20px;
    flex-wrap: wrap;
}

.hero__actions--form {
    justify-content: flex-start;
    margin-bottom: 0;
}

.hero-strip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(11, 42, 87, 0.08);
    box-shadow: 0 12px 32px rgba(11, 42, 87, 0.06);
}

.hero-strip span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--brand-muted);
    font-weight: 700;
}

.hero-strip span:not(:last-child)::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(11, 42, 87, 0.22);
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 34px auto 0;
    max-width: 980px;
}

.hero-point,
.highlight-card,
.service-card,
.deliverable-card,
.process-card,
.stack-card,
.contact-card,
.contact-form,
.about-panel,
.info-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.hero-point {
    padding: 20px 16px;
    text-align: center;
}

.hero-point strong {
    display: block;
    margin-bottom: 6px;
    color: var(--brand-navy);
    font-size: 1.16rem;
}

.hero-point span {
    color: var(--brand-muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.hero-preview {
    position: relative;
    margin-top: 34px;
}

.hero-note {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-navy), #21499a);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(11, 42, 87, 0.22);
}

.hero-note--right {
    top: 102px;
    right: -16px;
}

.hero-note--left {
    bottom: 56px;
    left: -16px;
}

.hero-window {
    position: relative;
    width: min(100%, 1120px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 34px 90px rgba(17, 28, 51, 0.18);
}

.hero-window::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.16)),
        radial-gradient(circle at 25% 120%, rgba(47, 124, 246, 0.16), transparent 28%);
    pointer-events: none;
}

.hero-window__topbar {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #1c2433;
    color: #fff;
}

.hero-window__dots {
    display: flex;
    gap: 8px;
}

.hero-window__dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.hero-window__address {
    display: inline-flex;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
    font-weight: 700;
}

.hero-window__live {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(47, 124, 246, 0.24);
    color: #cfe0ff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero-window__body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 20px;
    padding: 24px;
}

.hero-window__panel {
    padding: 26px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(11, 42, 87, 0.95), rgba(24, 64, 126, 0.94)),
        linear-gradient(135deg, rgba(255, 107, 0, 0.16), rgba(47, 124, 246, 0.18));
    color: #fff;
}

.hero-window__label {
    display: inline-flex;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #d7e5ff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero-window__panel h3 {
    margin: 18px 0 18px;
    font-size: 1.9rem;
    line-height: 1.22;
}

.hero-window__panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.hero-window__panel li {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-window__dashboard {
    display: grid;
    gap: 16px;
    align-content: start;
}

.hero-window__stats,
.hero-window__cards {
    display: grid;
    gap: 14px;
}

.hero-window__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-window__stats article,
.hero-window__card,
.hero-window__banner {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(11, 42, 87, 0.08);
    box-shadow: 0 10px 24px rgba(11, 42, 87, 0.06);
}

.hero-window__stats span,
.hero-window__banner span,
.hero-window__card p {
    color: var(--brand-muted);
}

.hero-window__stats strong,
.hero-window__banner strong,
.hero-window__card strong {
    display: block;
    margin-top: 6px;
    color: var(--brand-navy);
    font-size: 1.02rem;
}

.hero-window__banner {
    display: grid;
    gap: 6px;
    text-align: right;
    background:
        linear-gradient(135deg, rgba(47, 124, 246, 0.08), rgba(255, 107, 0, 0.08)),
        rgba(255, 255, 255, 0.92);
}

.hero-window__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-window__card p {
    margin: 10px 0 0;
    font-size: 0.94rem;
}

.section {
    position: relative;
    z-index: 1;
    padding: 44px 0;
}

.section--hero-followup {
    margin-top: -52px;
    padding-top: 0;
}

.section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.section-title h2 {
    font-size: clamp(2rem, 2.2vw, 3rem);
    margin-bottom: 10px;
}

.section-title p {
    margin: 0;
    color: var(--brand-muted);
    max-width: 62ch;
}

.highlights,
.services-grid,
.deliverables,
.process-grid,
.stack-grid,
.contact-layout {
    display: grid;
    gap: 18px;
}

.highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-card,
.service-card,
.deliverable-card,
.process-card,
.stack-card,
.contact-card,
.about-panel,
.info-panel,
.contact-form {
    padding: 24px;
}

.highlight-card h3,
.service-card h3,
.deliverable-card h3,
.process-card h3,
.stack-card h3,
.about-panel h3,
.contact-card h3,
.contact-form h3 {
    margin: 0 0 12px;
    font-size: 1.22rem;
}

.highlight-card p,
.service-card p,
.deliverable-card p,
.process-card p,
.stack-card p,
.about-panel p,
.contact-card p,
.info-panel p {
    margin: 0;
    color: var(--brand-muted);
}

.about {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
}

.about-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.about-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
}

.about-list span {
    width: 14px;
    height: 14px;
    margin-top: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-sky));
    box-shadow: 0 0 0 6px rgba(255, 107, 0, 0.08);
}

.info-panel {
    display: grid;
    gap: 18px;
    background:
        linear-gradient(180deg, rgba(11, 42, 87, 0.96), rgba(11, 42, 87, 0.9)),
        linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(47, 124, 246, 0.2));
    color: #fff;
}

.info-panel h3,
.info-panel p,
.info-panel li {
    color: inherit;
}

.info-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.info-panel li {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.section--about-showcase {
    width: 100%;
    max-width: none;
    padding: 62px 0 78px;
    overflow: hidden;
    --about-ink: var(--brand-navy);
    --about-muted: var(--brand-muted);
    --about-accent: var(--brand-sky);
    --about-accent-strong: #3757ba;
    --about-accent-soft: rgba(47, 124, 246, 0.16);
    --about-secondary: var(--brand-orange);
    position: relative;
}

.section--about-showcase::before,
.section--about-showcase::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(8px);
}

.section--about-showcase::before {
    top: 72px;
    inset-inline-start: max(2%, 24px);
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(47, 124, 246, 0.18), rgba(47, 124, 246, 0.08) 48%, transparent 72%);
}

.section--about-showcase::after {
    bottom: 36px;
    inset-inline-end: 5%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.16), rgba(255, 107, 0, 0.05) 52%, transparent 74%);
}

.about-showcase {
    position: relative;
    z-index: 1;
    display: grid;
    direction: ltr;
    align-items: start;
    width: var(--content-width);
    margin: 0 auto;
    gap: clamp(40px, 5vw, 84px);
    padding: 0;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.site-rtl .about-showcase {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.site-ltr .about-showcase {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.about-showcase__visual {
    grid-column: 1;
    position: relative;
    min-height: 680px;
    display: grid;
    place-items: center;
}

.about-showcase__copy {
    grid-column: 2;
    position: relative;
    z-index: 2;
    display: grid;
    gap: 22px;
    max-width: 690px;
    justify-self: end;
    padding-top: 22px;
    text-align: start;
}

.site-rtl .about-showcase__copy {
    direction: rtl;
}

.site-ltr .about-showcase__copy {
    grid-column: 1;
    direction: ltr;
    justify-self: start;
}

.site-ltr .about-showcase__visual {
    grid-column: 2;
}

.about-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(47, 124, 246, 0.1);
    color: var(--about-accent);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 14px 30px rgba(31, 76, 171, 0.08);
}

.about-showcase h2 {
    margin: 0;
    color: var(--about-ink);
    max-width: 100%;
    font-size: clamp(2.3rem, 3.55vw, 3.85rem);
    line-height: 1.16;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.about-showcase__lead {
    margin: 0;
    max-width: 34ch;
    color: rgba(11, 42, 87, 0.86);
    font-size: clamp(1.06rem, 1.5vw, 1.34rem);
    font-weight: 700;
    line-height: 1.72;
}

.about-showcase__story {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(240px, 0.96fr);
    gap: 16px;
    align-items: stretch;
}

.about-showcase__body {
    display: grid;
    gap: 14px;
    padding: 20px 22px;
    border: 1px solid rgba(11, 42, 87, 0.08);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 255, 0.86));
    box-shadow: 0 18px 44px rgba(11, 42, 87, 0.07);
    backdrop-filter: blur(14px);
}

.about-showcase__body p {
    position: relative;
    padding-inline-start: 18px;
}

.site-rtl .about-showcase__body p {
    padding-inline-start: 0;
    padding-inline-end: 18px;
}

.about-showcase__body p::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0.28em;
    width: 4px;
    height: calc(100% - 0.56em);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand-sky), var(--brand-orange));
}

.site-rtl .about-showcase__body p::before {
    inset-inline-start: auto;
    inset-inline-end: 0;
}

.about-showcase__body p,
.about-showcase__mission p,
.about-feature p {
    margin: 0;
    color: var(--about-muted);
}

.about-showcase__mission {
    display: grid;
    gap: 10px;
    padding: 20px 22px;
    border-radius: 28px;
    border: 1px solid rgba(11, 42, 87, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 255, 0.88));
    box-shadow: 0 18px 44px rgba(11, 42, 87, 0.08);
    backdrop-filter: blur(14px);
}

.about-showcase__mission span {
    color: var(--about-accent);
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.about-showcase__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-feature {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 12px;
    min-height: 100%;
    padding: 20px 18px;
    border-radius: 24px;
    border: 1px solid rgba(11, 42, 87, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.9));
    box-shadow: 0 18px 36px rgba(11, 42, 87, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.about-feature::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--brand-sky), var(--brand-orange));
}

.about-feature strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(47, 124, 246, 0.1);
    box-shadow: inset 0 0 0 1px rgba(47, 124, 246, 0.08);
    color: var(--about-accent);
    font-size: 1rem;
    font-weight: 900;
}

.about-feature p {
    font-weight: 700;
    line-height: 1.75;
}

.about-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 44px rgba(11, 42, 87, 0.12);
    border-color: rgba(47, 124, 246, 0.2);
}

.about-showcase__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 58px;
    margin-top: 6px;
    padding: 0 28px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-sky));
    box-shadow: 0 18px 44px rgba(31, 76, 171, 0.24);
    transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.about-showcase__cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(31, 76, 171, 0.3);
    filter: saturate(1.06);
}

.about-stage {
    position: relative;
    width: min(100%, 660px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.about-stage__glow {
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 124, 246, 0.24), rgba(47, 124, 246, 0.06) 56%, transparent 74%);
    filter: blur(12px);
    animation: aboutPulse 8s ease-in-out infinite;
}

.about-stage__rings {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.about-stage__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(47, 124, 246, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08));
}

.about-stage__ring--outer {
    width: 100%;
    height: 100%;
    animation: aboutSlowSpin 30s linear infinite;
}

.about-stage__ring--middle {
    width: 82%;
    height: 82%;
    border-color: rgba(47, 124, 246, 0.16);
}

.about-stage__ring--inner {
    width: 66%;
    height: 66%;
    border-color: rgba(255, 107, 0, 0.14);
}

.about-stage__core {
    position: relative;
    z-index: 2;
    width: 64%;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.98), rgba(239, 245, 255, 0.78) 56%, rgba(230, 237, 255, 0.22) 100%);
    box-shadow:
        inset 0 0 0 1px rgba(47, 124, 246, 0.08),
        0 28px 70px rgba(11, 42, 87, 0.14);
}

.about-stage__main,
.about-orbit-item__icon img,
.about-ambient-card img {
    filter: saturate(1.02) brightness(1.01);
}

.about-stage__main {
    position: relative;
    z-index: 3;
    width: 118%;
    max-width: none;
    animation: aboutFloat 7s ease-in-out infinite;
    filter:
        saturate(1.02)
        brightness(1.02)
        drop-shadow(0 28px 42px rgba(31, 76, 171, 0.16));
}

.about-orbit-item {
    position: absolute;
    z-index: 4;
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center;
    animation: aboutBob 6.2s ease-in-out infinite;
}

.about-orbit-item__icon {
    width: 92px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    padding: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(11, 42, 87, 0.14);
}

.about-orbit-item__icon img {
    width: 100%;
}

.about-orbit-item span {
    max-width: 164px;
    padding: 11px 18px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.45;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-sky));
    box-shadow: 0 16px 36px rgba(31, 76, 171, 0.22);
}

.about-orbit-item--top {
    top: 6%;
    inset-inline-end: 11%;
    animation-delay: -1.4s;
}

.about-orbit-item--left {
    top: 24%;
    inset-inline-start: -1%;
    animation-delay: -0.6s;
}

.about-orbit-item--bottom {
    bottom: -5%;
    inset-inline-start: 16%;
    animation-delay: -1.8s;
}

.about-orbit-item--right {
    bottom: -3%;
    inset-inline-end: -3%;
    animation-delay: -0.9s;
}

.about-ambient-card {
    position: absolute;
    z-index: 3;
    border: 1px solid rgba(11, 42, 87, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 50px rgba(11, 42, 87, 0.1);
    backdrop-filter: blur(16px);
}

.about-ambient-card img {
    width: 100%;
}

.about-ambient-card--code {
    width: 25%;
    bottom: 19%;
    inset-inline-start: -11%;
    padding: 12px;
    transform: rotate(-8deg);
    animation: aboutSway 8s ease-in-out infinite;
}

.about-ambient-card--check {
    width: 20%;
    bottom: 27%;
    inset-inline-end: 8%;
    padding: 10px;
    animation: aboutBob 7.4s ease-in-out infinite;
}

@keyframes aboutFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

@keyframes aboutBob {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes aboutPulse {
    0%,
    100% {
        transform: scale(0.96);
        opacity: 0.72;
    }

    50% {
        transform: scale(1.03);
        opacity: 1;
    }
}

@keyframes aboutSlowSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes aboutSway {
    0%,
    100% {
        transform: translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateY(-12px) rotate(-4deg);
    }
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 88px;
    height: 88px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.16), transparent 65%);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.service-tag,
.stack-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(11, 42, 87, 0.06);
    color: var(--brand-navy);
    font-size: 0.9rem;
    font-weight: 700;
}

.deliverables {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.deliverable-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.96));
}

.deliverable-card--company-value {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 28px 24px 26px;
    text-align: center;
}

.deliverable-card__icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: min(100%, 188px);
    aspect-ratio: 1;
    margin: 0 auto;
    padding: 14px;
    border-radius: 34px;
    border: 1px solid rgba(47, 124, 246, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 255, 0.9)),
        radial-gradient(circle at 50% 18%, rgba(255, 107, 0, 0.08), transparent 42%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 22px 40px rgba(11, 42, 87, 0.09);
}

.deliverable-card__icon::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 26px;
    background: radial-gradient(circle at 50% 32%, rgba(47, 124, 246, 0.11), transparent 64%);
}

.deliverable-card__icon img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 154px;
    max-height: 154px;
    object-fit: contain;
    filter: drop-shadow(0 14px 26px rgba(31, 76, 171, 0.14));
    transition: transform 220ms ease, filter 220ms ease;
}

.deliverable-card__body {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.deliverable-card--company-value h3 {
    margin: 0;
    color: var(--brand-navy);
    font-size: 1.4rem;
    line-height: 1.45;
}

.deliverable-card--company-value p {
    margin: 0;
    color: #6a7c9a;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.9;
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
    position: relative;
    padding-top: 78px;
}

.process-step {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-navy), #14427c);
    color: #fff;
    font-weight: 700;
}

.stack-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
}

.stack-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.stack-card {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.contact-layout {
    grid-template-columns: 0.95fr 1.05fr;
}

.contact-stack {
    display: grid;
    gap: 18px;
}

.contact-card strong {
    color: var(--brand-navy);
}

.contact-card small {
    display: block;
    margin-top: 10px;
    color: var(--brand-muted);
}

.contact-form__intro {
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    display: grid;
    gap: 8px;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    font-weight: 700;
    color: var(--brand-navy);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid rgba(11, 42, 87, 0.12);
    background: #fff;
    color: var(--brand-ink);
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
    min-height: 140px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(47, 124, 246, 0.65);
    box-shadow: 0 0 0 4px rgba(47, 124, 246, 0.12);
}

.field-error {
    color: #be123c;
    font-size: 0.88rem;
}

.flash-message {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.18);
    color: #166534;
    font-weight: 700;
}

.footer {
    position: relative;
    margin-top: 64px;
    padding: 0 0 28px;
    background:
        radial-gradient(circle at 20% 0%, rgba(47, 124, 246, 0.16), transparent 28%),
        radial-gradient(circle at 80% 8%, rgba(255, 107, 0, 0.1), transparent 22%),
        linear-gradient(180deg, #10366f 0%, #0b2a57 100%);
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-navy), var(--brand-sky), var(--brand-orange), var(--brand-sky), var(--brand-navy));
}

.footer__shell {
    width: var(--content-width);
    margin: 0 auto;
    position: relative;
}

.footer__panel {
    position: relative;
    z-index: 3;
    margin-top: -1px;
    padding: 36px 38px 34px;
    border-radius: 0 0 34px 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96)),
        rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 26px 70px rgba(8, 27, 57, 0.18);
}

.footer__panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, rgba(11, 42, 87, 0.9), rgba(47, 124, 246, 0.9), rgba(255, 107, 0, 0.78));
}

.footer__intro {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 34px;
}

.footer__intro::before {
    content: "";
    position: absolute;
    top: -34px;
    left: 50%;
    width: 520px;
    height: 220px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(47, 124, 246, 0.14), transparent 72%);
    filter: blur(8px);
    pointer-events: none;
    z-index: -1;
}

.footer__brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    text-align: right;
}

.footer__logo {
    width: 84px;
    height: 84px;
    flex-shrink: 0;
}

.footer__brand {
    margin: 0;
    color: var(--brand-navy);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.05;
}

.footer__tagline {
    margin: 6px 0 0;
    color: #6f809a;
    font-size: 1rem;
    font-weight: 700;
}

.footer__description {
    max-width: 760px;
    margin: 18px auto 0;
    color: #5f7089;
    font-size: 1.02rem;
}

.footer__chips {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.footer__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(11, 42, 87, 0.05);
    border: 1px solid rgba(11, 42, 87, 0.08);
    color: var(--brand-navy);
    font-size: 0.92rem;
    font-weight: 700;
}

.footer__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 1.2fr;
    gap: 18px;
}

.footer__column {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(11, 42, 87, 0.08);
    box-shadow: 0 14px 34px rgba(11, 42, 87, 0.06);
}

.footer__column h4 {
    margin: 0 0 14px;
    color: var(--brand-navy);
    font-size: 1.12rem;
}

.footer__column p {
    margin: 0;
    color: var(--brand-muted);
}

.footer__links {
    display: grid;
    gap: 10px;
}

.footer__links a,
.footer__links span {
    color: #5d6d86;
    font-weight: 700;
}

.footer__links a:hover {
    color: var(--brand-navy);
}

.footer__column--cta {
    background:
        linear-gradient(180deg, rgba(11, 42, 87, 0.96), rgba(22, 64, 129, 0.94)),
        linear-gradient(135deg, rgba(255, 107, 0, 0.16), rgba(47, 124, 246, 0.16));
    color: #fff;
}

.footer__column--cta h4,
.footer__column--cta p {
    color: inherit;
}

.footer__location {
    margin-top: 18px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
}

.footer__location .contact-location__icon {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.footer__location strong,
.footer__location span {
    color: #fff;
}

.footer__location span {
    font-weight: 700;
}

.footer__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.footer__column--cta .button--secondary {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.footer__wavebox {
    position: relative;
    z-index: 2;
    height: 88px;
    margin-top: -6px;
    overflow: hidden;
}

.footer__wave {
    position: absolute;
    bottom: -18px;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.footer__wave--one {
    right: -2%;
    width: 34%;
    height: 76px;
    background: rgba(255, 255, 255, 0.16);
}

.footer__wave--two {
    right: 20%;
    width: 30%;
    height: 54px;
    background: rgba(47, 124, 246, 0.18);
}

.footer__wave--three {
    left: 24%;
    width: 33%;
    height: 84px;
    background: rgba(255, 255, 255, 0.1);
}

.footer__wave--four {
    left: -3%;
    width: 28%;
    height: 62px;
    background: rgba(47, 124, 246, 0.16);
}

.footer__bottom {
    position: relative;
    z-index: 3;
    padding: 10px 0 0;
}

.footer__bottom-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    min-height: 68px;
}

.footer__social,
.footer__legal {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer__social {
    justify-content: flex-start;
}

.footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 900;
    text-transform: lowercase;
}

.footer__social a:hover {
    background: rgba(255, 107, 0, 0.2);
    border-color: rgba(255, 107, 0, 0.4);
}

.footer__copy {
    text-align: center;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.95rem;
}

.footer__legal {
    justify-content: flex-end;
}

.footer__legal a,
.footer__legal button {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.footer__legal button {
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    cursor: pointer;
}

.footer__legal a:hover,
.footer__legal button:hover {
    color: #fff;
}

.footer__legal a:focus-visible,
.footer__legal button:focus-visible,
.policy-modal__close:focus-visible,
.policy-modal__action:focus-visible {
    outline: 3px solid rgba(47, 124, 246, 0.34);
    outline-offset: 4px;
}

body.modal-is-open {
    overflow: hidden;
}

.policy-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    padding: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.policy-modal[hidden] {
    display: none !important;
}

.policy-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 20, 43, 0.58);
    backdrop-filter: blur(8px);
}

.policy-modal__dialog {
    position: relative;
    width: min(880px, 100%);
    max-height: min(88vh, 940px);
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin: auto;
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(47, 124, 246, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), #f9fbff);
    border: 1px solid rgba(11, 42, 87, 0.12);
    box-shadow: 0 40px 100px rgba(8, 20, 43, 0.28);
}

.policy-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 30px 18px;
    border-bottom: 1px solid rgba(11, 42, 87, 0.1);
}

.policy-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(47, 124, 246, 0.1);
    color: var(--brand-navy);
    font-size: 0.9rem;
    font-weight: 700;
}

.policy-modal__header h2 {
    margin: 10px 0 10px;
    color: var(--brand-navy);
    font-size: clamp(1.85rem, 4vw, 2.6rem);
    line-height: 1.2;
}

.policy-modal__summary {
    margin: 0;
    max-width: 62ch;
    color: var(--brand-muted);
}

.policy-modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(11, 42, 87, 0.14);
    background: rgba(11, 42, 87, 0.04);
    color: var(--brand-navy);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.policy-modal__close:hover {
    transform: translateY(-1px);
    background: rgba(47, 124, 246, 0.12);
    border-color: rgba(47, 124, 246, 0.28);
}

.policy-modal__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: rgba(11, 42, 87, 0.03);
    border-bottom: 1px solid rgba(11, 42, 87, 0.08);
    color: var(--brand-muted);
    font-size: 0.95rem;
}

.policy-modal__meta strong {
    color: var(--brand-ink);
}

.policy-modal__body {
    overflow-y: auto;
    min-height: 0;
    padding: 24px 30px 30px;
    -webkit-overflow-scrolling: touch;
}

.policy-modal__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    padding: 20px 30px 28px;
    border-top: 1px solid rgba(11, 42, 87, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 250, 255, 0.98));
}

.policy-modal__action {
    min-width: 170px;
}

.policy-modal__section + .policy-modal__section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(11, 42, 87, 0.08);
}

.policy-modal__section h3 {
    margin: 0 0 12px;
    color: var(--brand-navy);
    font-size: 1.16rem;
}

.policy-modal__section p {
    margin: 0 0 12px;
    color: var(--brand-ink);
}

.policy-modal__section ul {
    margin: 0;
    padding-inline-start: 22px;
    list-style: disc;
}

.policy-modal__section li + li {
    margin-top: 10px;
}

@media (max-width: 760px) {
    .policy-modal {
        align-items: start;
        justify-items: stretch;
        padding: 12px;
    }

    .policy-modal__dialog {
        width: 100%;
        max-height: calc(100vh - 24px);
        max-height: calc(100dvh - 24px);
        border-radius: 24px;
    }

    .policy-modal__header {
        padding: 22px 20px 16px;
    }

    .policy-modal__meta,
    .policy-modal__body {
        padding-inline: 20px;
    }

    .policy-modal__footer {
        padding: 18px 20px 22px;
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .policy-modal__action {
        width: 100%;
        min-width: 0;
    }

    .policy-modal__body {
        padding-bottom: 24px;
    }
}


/* Contact icon buttons */
.contact-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    min-width: 0;
    border-radius: 18px;
    color: #fff;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 30px rgba(11, 42, 87, 0.16);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.contact-action:hover {
    transform: translateY(-3px);
    filter: saturate(1.08);
    box-shadow: 0 18px 38px rgba(11, 42, 87, 0.22);
}

.contact-action svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: currentColor;
}

.contact-action span {
    min-width: 0;
    text-align: center;
}

.contact-action--whatsapp {
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.contact-action--phone {
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-sky));
}

.contact-action--email {
    background: linear-gradient(135deg, #cb5a00, var(--brand-orange));
}

.contact-action--linkedin {
    background: linear-gradient(135deg, #005f93, #0a66c2);
}

.info-panel .contact-actions {
    margin-top: 4px;
}

.info-panel .contact-action {
    flex: 1 1 160px;
    background-blend-mode: normal;
}

.contact-card--direct .contact-actions {
    margin-top: 18px;
    margin-bottom: 14px;
}

.contact-location,
.footer__location {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(11, 42, 87, 0.08);
}

.contact-location__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(47, 124, 246, 0.16), rgba(11, 42, 87, 0.08));
    color: var(--brand-sky);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.contact-location__icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-location__content {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.contact-location {
    margin-bottom: 14px;
    background: rgba(11, 42, 87, 0.035);
}

.contact-location strong,
.footer__location strong {
    font-size: 0.9rem;
}

.contact-location strong {
    color: var(--brand-navy);
}

.contact-location span {
    color: var(--brand-muted);
    font-weight: 700;
}

.footer__actions--contact .contact-action {
    min-height: 50px;
    padding-inline: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.footer__social a svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

@media (max-width: 1200px) {
    .hero-window__body,
    .stack-grid,
    .contact-layout,
    .about {
        grid-template-columns: 1fr;
    }

    .hero-window__cards,
    .highlights,
    .services-grid,
    .deliverables,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-note {
        display: none;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .site-header__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .header-actions,
    .brand,
    .site-nav {
        grid-column: auto;
        grid-row: auto;
        justify-self: center;
    }

    .hero {
        padding-top: 40px;
    }

    .hero h2 {
        font-size: clamp(2.7rem, 9vw, 4rem);
    }

    .hero-points,
    .hero-window__stats,
    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .deliverable-card--company-value {
        padding: 24px 20px;
    }

    .deliverable-card__icon {
        width: min(100%, 168px);
    }

    .footer__panel {
        padding: 30px 26px 28px;
    }

    .footer__brand-lockup {
        flex-direction: column;
        text-align: center;
    }

    .footer__bottom-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__social,
    .footer__legal {
        justify-content: center;
    }
}

@media (max-width: 760px) {
    .hero,
    .section {
        width: min(100vw - 24px, 1240px);
    }

    .site-header__inner {
        width: min(100vw - 24px, 1240px);
        padding: 14px 0;
    }

    .header-actions,
    .hero__actions {
        width: 100%;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .site-nav ul,
    .hero-strip {
        gap: 8px;
    }

    .hero-window__topbar {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .hero-window__stats,
    .hero-window__cards,
    .highlights,
    .services-grid,
    .deliverables,
    .process-grid,
    .hero-points,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        align-items: start;
        flex-direction: column;
    }

    .footer {
        padding-bottom: 22px;
    }

    .footer__shell {
        width: min(100vw - 24px, 1240px);
    }

    .footer__panel {
        padding: 26px 18px 22px;
        border-radius: 0 0 28px 28px;
    }

    .footer__description {
        font-size: 0.96rem;
    }

    .footer__actions {
        flex-direction: column;
    }

    .footer__actions .button,
    .contact-action {
        width: 100%;
    }

    .contact-actions,
    .footer__actions--contact {
        flex-direction: column;
        align-items: stretch;
    }

    .footer__wavebox {
        height: 64px;
    }

    .footer__copy {
        font-size: 0.9rem;
    }
}


/* ===============================
   Tam Soft - مختصر Hero احترافي
   =============================== */

.hero.hero-simple {
    position: relative;
    width: 100%;
    max-width: none;
    min-height: 640px;
    margin: 0;
    padding: 86px 24px 74px;
    overflow: hidden;
    text-align: center;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% 42%, rgba(47, 124, 246, 0.28), rgba(47, 124, 246, 0.08) 30%, transparent 58%),
        radial-gradient(circle at 78% 12%, rgba(255, 107, 0, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.hero.hero-simple::before,
.hero.hero-simple::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
    z-index: -2;
}

.hero.hero-simple::before {
    top: -120px;
    right: -12%;
    width: 740px;
    height: 740px;
    border-radius: 50%;
    background: rgba(47, 124, 246, 0.08);
    filter: blur(10px);
}

.hero.hero-simple::after {
    left: -12%;
    bottom: -180px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: rgba(11, 42, 87, 0.06);
    filter: blur(12px);
}

.hero-simple__glow {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.hero-simple__glow--one {
    top: 90px;
    left: 50%;
    width: 820px;
    height: 420px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(47, 124, 246, 0.28), transparent 68%);
    filter: blur(8px);
}

.hero-simple__glow--two {
    top: 0;
    right: 12%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(47, 124, 246, 0.18), transparent);
    transform: rotate(-32deg);
}

.hero-simple__content {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100vw - 32px));
    margin: 0 auto;
}

.hero-simple__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(11, 42, 87, 0.08);
    color: var(--brand-navy);
    font-size: 0.98rem;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(11, 42, 87, 0.08);
}

.hero-simple h1 {
    max-width: 850px;
    margin: 28px auto 18px;
    color: #182033;
    font-size: clamp(3rem, 5.3vw, 5.4rem);
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.hero-simple__lead {
    max-width: 720px;
    margin: 0 auto;
    color: #315286;
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    font-weight: 700;
    line-height: 1.9;
}

.hero-simple__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-simple__tags {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(11, 42, 87, 0.08);
    box-shadow: 0 20px 48px rgba(11, 42, 87, 0.09);
}

.hero-simple__tags span {
    display: inline-flex;
    align-items: center;
    color: #516582;
    font-size: 0.98rem;
    font-weight: 900;
    white-space: nowrap;
}

.hero-simple__tags span:not(:last-child)::after {
    content: "•";
    margin-right: 14px;
    color: #a8b4c6;
}

.hero-simple__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: min(880px, 100%);
    margin: 50px auto 0;
}

.hero-simple__cards article {
    min-height: 118px;
    padding: 28px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(11, 42, 87, 0.08);
    box-shadow: 0 22px 50px rgba(11, 42, 87, 0.09);
}

.hero-simple__cards h3 {
    margin: 0 0 10px;
    color: var(--brand-navy);
    font-size: 1.35rem;
    font-weight: 900;
}

.hero-simple__cards p {
    margin: 0;
    color: #607089;
    font-size: 1rem;
    font-weight: 700;
}

/* ===============================
   Tam Soft - Motion Layer
   =============================== */

.site-header {
    animation: tamsoftHeaderDrop 0.7s ease both;
}

.brand__mark {
    animation: tamsoftSoftFloat 4.8s ease-in-out infinite;
}

.hero.hero-simple::before {
    animation: tamsoftOrbDrift 12s ease-in-out infinite alternate;
}

.hero.hero-simple::after {
    animation: tamsoftOrbDrift 14s ease-in-out infinite alternate-reverse;
}

.hero-simple__glow--one {
    animation: tamsoftGlowPulse 5.5s ease-in-out infinite;
}

.hero-simple__glow--two {
    animation: tamsoftLineScan 6s ease-in-out infinite;
    transform-origin: center;
}

.hero-simple__label,
.hero-simple h1,
.hero-simple__lead,
.hero-simple__actions,
.hero-simple__tags,
.hero-simple__cards article {
    opacity: 0;
    animation: tamsoftRiseIn 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-simple__label {
    animation-delay: 0.12s;
}

.hero-simple h1 {
    animation-delay: 0.24s;
}

.hero-simple__lead {
    animation-delay: 0.36s;
}

.hero-simple__actions {
    animation-delay: 0.48s;
}

.hero-simple__tags {
    animation-delay: 0.58s;
}

.hero-simple__cards article:nth-child(1) {
    animation-delay: 0.68s;
}

.hero-simple__cards article:nth-child(2) {
    animation-delay: 0.78s;
}

.hero-simple__cards article:nth-child(3) {
    animation-delay: 0.88s;
}

.button,
.service-card,
.deliverable-card,
.process-card,
.about-panel,
.info-panel,
.contact-card,
.contact-form,
.footer__panel,
.hero-simple__cards article {
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}

.service-card:hover,
.deliverable-card:hover,
.process-card:hover,
.about-panel:hover,
.info-panel:hover,
.contact-card:hover,
.hero-simple__cards article:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(11, 42, 87, 0.14);
}

.deliverable-card--company-value:hover .deliverable-card__icon img {
    transform: translateY(-4px) scale(1.02);
    filter: drop-shadow(0 18px 30px rgba(31, 76, 171, 0.18));
}

.is-revealable {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.72s ease,
        transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.is-revealable.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section.is-revealable:nth-of-type(2n),
.service-card.is-revealable:nth-child(2n),
.deliverable-card.is-revealable:nth-child(2n),
.process-card.is-revealable:nth-child(2n) {
    transition-delay: 90ms;
}

.service-card.is-revealable:nth-child(3n),
.deliverable-card.is-revealable:nth-child(3n),
.process-card.is-revealable:nth-child(3n) {
    transition-delay: 180ms;
}

@keyframes tamsoftHeaderDrop {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tamsoftRiseIn {
    from {
        opacity: 0;
        transform: translateY(26px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes tamsoftSoftFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes tamsoftGlowPulse {
    0%,
    100% {
        opacity: 0.72;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.06);
    }
}

@keyframes tamsoftLineScan {
    0%,
    100% {
        opacity: 0.55;
        transform: rotate(-32deg) translateY(-16px);
    }

    50% {
        opacity: 1;
        transform: rotate(-32deg) translateY(22px);
    }
}

@keyframes tamsoftOrbDrift {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(24px, 18px, 0) scale(1.05);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .is-revealable {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 980px) {
    .hero.hero-simple {
        min-height: auto;
        padding: 66px 18px 58px;
    }

    .hero-simple h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-simple__cards {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

@media (max-width: 760px) {
    .hero-simple__actions {
        flex-direction: column;
    }

    .hero-simple__actions .button {
        width: 100%;
    }

    .hero-simple__tags {
        width: 100%;
        border-radius: 24px;
    }

    .hero-simple__tags span:not(:last-child)::after {
        margin-right: 10px;
    }
}

/* =========================================================
   Tam Soft SVG Logo + Loading Screen
   ضع ملف الشعار هنا: public/images/tamsvg.svg
   ========================================================= */

.brand__mark,
.footer__logo {
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 24px rgba(11, 42, 87, 0.08);
}

.brand__mark {
    padding: 4px;
}

.footer__logo {
    padding: 6px;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(47, 124, 246, 0.13), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    transition:
        opacity 460ms ease,
        visibility 460ms ease;
}

.site-loader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader__content {
    display: grid;
    justify-items: center;
    gap: 18px;
    transform: translateY(-4px);
}

.site-loader__logo {
    width: clamp(145px, 14vw, 230px);
    height: clamp(145px, 14vw, 230px);
    object-fit: contain;
    filter: drop-shadow(0 22px 42px rgba(11, 42, 87, 0.14));
    animation: tamsoftLoaderLogo 1.8s ease-in-out infinite;
}

.site-loader__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.site-loader__dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #9badc9;
    animation: tamsoftLoaderDot 1.15s ease-in-out infinite;
}

.site-loader__dots span:nth-child(2) {
    animation-delay: 0.16s;
}

.site-loader__dots span:nth-child(3) {
    animation-delay: 0.32s;
}

@keyframes tamsoftLoaderLogo {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.035);
        opacity: 0.94;
    }
}

@keyframes tamsoftLoaderDot {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.45;
        background: #9badc9;
    }

    50% {
        transform: translateY(-6px);
        opacity: 1;
        background: var(--brand-orange);
    }
}

@media (max-width: 760px) {
    .site-loader__logo {
        width: 155px;
        height: 155px;
    }

    .brand__mark {
        width: 52px;
        height: 52px;
    }

    .footer__logo {
        width: 74px;
        height: 74px;
    }
}
.site-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, rgba(47, 124, 246, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.site-loader__logo {
    width: 150px;
    max-width: 70vw;
    height: auto;
    display: block;
    object-fit: contain;
    animation: loaderLogoPulse 1.5s ease-in-out infinite;
}

.site-loader__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.site-loader__dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #9badc9;
    animation: loaderDot 1.2s ease-in-out infinite;
}

.site-loader__dots span:nth-child(2) {
    animation-delay: 0.18s;
}

.site-loader__dots span:nth-child(3) {
    animation-delay: 0.36s;
}

@keyframes loaderLogoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.9;
    }
}

@keyframes loaderDot {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.45;
        background: #9badc9;
    }

    50% {
        transform: translateY(-6px);
        opacity: 1;
        background: #0b2a57;
    }
}
/* ================================
   Mobile Header - Logo Colors
================================ */

.mobile-header-actions {
    display: none;
}

@media (max-width: 760px) {

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: #ffffff;
        border-top: 2px solid #ff6b00;
        border-bottom: 1px solid rgba(11, 42, 87, 0.08);
        box-shadow: 0 8px 24px rgba(11, 42, 87, 0.06);
    }

    .site-header__inner {
        width: 100%;
        min-height: 92px;
        padding: 16px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    /* إخفاء عناصر الديسكتوب */
    .site-header .header-actions,
    .site-header .site-nav {
        display: none;
    }

    /* الشعار */
    .brand {
        order: 2;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin: 0;
        flex-shrink: 0;
    }

    .brand__mark {
        width: 54px;
        height: 54px;
        object-fit: contain;
        order: 2;
    }

    .brand > div {
        order: 1;
        text-align: right;
    }

    .brand__name {
        margin: 0;
        font-size: 1.7rem;
        line-height: 1;
        font-weight: 900;
        color: #0b2a57;
        white-space: nowrap;
    }

    .brand__tagline {
        margin: 4px 0 0;
        font-size: 0.78rem;
        color: #8a94a6;
        white-space: nowrap;
    }

    /* أزرار يمين الهيدر */
    .mobile-header-actions {
        order: 1;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    /* زر اللغة */
    .mobile-lang-btn {
        min-height: 48px;
        padding: 0 18px;
        border-radius: 14px;
        background: linear-gradient(135deg, #ff6b00, #ff8c2f);
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 900;
        box-shadow: 0 12px 24px rgba(255, 107, 0, 0.20);
    }

    .mobile-lang-btn svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
    }

    /* زر القائمة */
    .mobile-menu-btn {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        border: 2px solid #0b2a57;
        background: #ffffff;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 0;
        cursor: pointer;
        box-shadow: 0 10px 22px rgba(11, 42, 87, 0.08);
    }

    .mobile-menu-btn span {
        width: 25px;
        height: 2px;
        border-radius: 999px;
        background: #0b2a57;
        display: block;
    }

    .hero,
    .hero-simple {
        padding-top: 56px;
    }
}

@media (max-width: 420px) {

    .site-header__inner {
        min-height: 84px;
        padding: 14px 14px;
    }

    .brand__mark {
        width: 48px;
        height: 48px;
    }

    .brand__name {
        font-size: 1.45rem;
    }

    .brand__tagline {
        font-size: 0.72rem;
    }

    .mobile-lang-btn {
        min-height: 44px;
        padding: 0 14px;
        font-size: 0.9rem;
    }

    .mobile-menu-btn {
        width: 48px;
        height: 48px;
    }

    .mobile-menu-btn span {
        width: 22px;
    }
}

/* =====================================================
   TAM SOFT - FINAL MOBILE HEADER
   Mobile layout like reference, using logo colors.
   Place at end of public/css/site.css
===================================================== */

.mobile-header-actions {
    display: none;
}

.mobile-menu-panel {
    display: none;
}

@media (max-width: 760px) {
    .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
        background: #ffffff !important;
        border-top: 2px solid var(--brand-orange) !important;
        border-bottom: 1px solid rgba(11, 42, 87, 0.08) !important;
        box-shadow: 0 8px 24px rgba(11, 42, 87, 0.06) !important;
        backdrop-filter: none !important;
    }

    .site-header__inner {
        width: 100% !important;
        min-height: 92px !important;
        padding: 14px 16px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        margin: 0 auto !important;
        text-align: right !important;
    }

    .site-header .header-actions,
    .site-header .site-nav {
        display: none !important;
    }

    .site-header .brand {
        order: 2 !important;
        display: inline-flex !important;
        direction: ltr !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        justify-self: auto !important;
        max-width: calc(100vw - 190px) !important;
        overflow: hidden !important;
    }

    .site-header .brand__mark {
        width: 54px !important;
        height: 54px !important;
        object-fit: contain !important;
        flex-shrink: 0 !important;
        order: 1 !important;
    }

    .site-header .brand > div {
        order: 2 !important;
        direction: rtl !important;
        text-align: right !important;
        min-width: 0 !important;
    }

    .site-header .brand__name {
        margin: 0 !important;
        font-size: 1.65rem !important;
        line-height: 1 !important;
        font-weight: 900 !important;
        color: var(--brand-navy) !important;
        white-space: nowrap !important;
    }

    .site-header .brand__tagline {
        margin: 5px 0 0 !important;
        font-size: 0.76rem !important;
        line-height: 1.2 !important;
        color: #8a94a6 !important;
        white-space: nowrap !important;
    }

    .mobile-header-actions {
        order: 1 !important;
        display: inline-flex !important;
        direction: ltr !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 10px !important;
        flex-shrink: 0 !important;
    }

    .mobile-lang-btn {
        min-height: 48px !important;
        padding: 0 18px !important;
        border-radius: 14px !important;
        background: linear-gradient(135deg, var(--brand-orange), #ff8c2f) !important;
        color: #ffffff !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        font-size: 0.95rem !important;
        font-weight: 900 !important;
        text-decoration: none !important;
        box-shadow: 0 12px 24px rgba(255, 107, 0, 0.20) !important;
    }

    .mobile-lang-btn svg {
        width: 21px !important;
        height: 21px !important;
        fill: currentColor !important;
    }

    .mobile-menu-btn {
        width: 54px !important;
        height: 54px !important;
        min-width: 54px !important;
        border-radius: 50% !important;
        border: 2px solid var(--brand-navy) !important;
        background: #ffffff !important;
        display: inline-flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        padding: 0 !important;
        margin: 0 !important;
        cursor: pointer !important;
        box-shadow: 0 10px 22px rgba(11, 42, 87, 0.08) !important;
    }

    .mobile-menu-btn span {
        width: 25px !important;
        height: 2px !important;
        border-radius: 999px !important;
        background: var(--brand-navy) !important;
        display: block !important;
        transition: transform 180ms ease, opacity 180ms ease !important;
    }

    .mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
    }

    .mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
        opacity: 0 !important;
    }

    .mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
    }

    .mobile-menu-panel {
        display: block !important;
        background: #ffffff !important;
        border-top: 1px solid rgba(11, 42, 87, 0.08) !important;
        box-shadow: 0 20px 40px rgba(11, 42, 87, 0.10) !important;
    }

    .mobile-menu-panel[hidden] {
        display: none !important;
    }

    .mobile-menu-panel__inner {
        width: min(100% - 28px, 520px) !important;
        margin: 0 auto !important;
        padding: 12px 0 16px !important;
        display: grid !important;
        gap: 8px !important;
    }

    .mobile-menu-panel__link {
        min-height: 44px !important;
        padding: 0 14px !important;
        border-radius: 14px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(11, 42, 87, 0.04) !important;
        color: var(--brand-navy) !important;
        font-weight: 900 !important;
        text-decoration: none !important;
    }

    .mobile-menu-panel__actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        margin-top: 4px !important;
    }

    .mobile-menu-panel__actions .button {
        width: 100% !important;
        min-height: 46px !important;
        border-radius: 14px !important;
        padding: 0 12px !important;
        font-size: 0.92rem !important;
    }

    .site-header .button {
        width: auto !important;
    }

    body > .mobile-lang-btn,
    body > .mobile-menu-btn,
    .site-shell > .mobile-lang-btn,
    .site-shell > .mobile-menu-btn {
        display: none !important;
    }

    .hero,
    .hero-simple {
        padding-top: 52px !important;
    }
}

@media (max-width: 420px) {
    .site-header__inner {
        min-height: 84px !important;
        padding: 12px 14px !important;
        gap: 8px !important;
    }

    .site-header .brand {
        gap: 8px !important;
        max-width: calc(100vw - 165px) !important;
    }

    .site-header .brand__mark {
        width: 48px !important;
        height: 48px !important;
    }

    .site-header .brand__name {
        font-size: 1.42rem !important;
    }

    .site-header .brand__tagline {
        font-size: 0.68rem !important;
    }

    .mobile-header-actions {
        gap: 8px !important;
    }

    .mobile-lang-btn {
        min-height: 44px !important;
        padding: 0 13px !important;
        font-size: 0.86rem !important;
        border-radius: 13px !important;
    }

    .mobile-lang-btn svg {
        width: 19px !important;
        height: 19px !important;
    }

    .mobile-menu-btn {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
    }

    .mobile-menu-btn span {
        width: 22px !important;
    }

    .mobile-menu-panel__actions {
        grid-template-columns: 1fr !important;
    }
}

/* Cache marker: tamsoft-mobile-header-v26 */

/* ===============================
   Tam Soft - English / LTR Support
   =============================== */

.site-ltr {
    direction: ltr;
}

.site-ltr .brand {
    justify-self: start;
}

.site-ltr .header-actions {
    justify-self: end;
}

.site-ltr .section-title,
.site-ltr .about-panel,
.site-ltr .info-panel,
.site-ltr .service-card,
.site-ltr .deliverable-card,
.site-ltr .process-card,
.site-ltr .contact-card,
.site-ltr .contact-form,
.site-ltr .footer__column,
.site-ltr .footer__description,
.site-ltr .footer__copy {
    text-align: left;
}

.site-ltr .hero-simple__tags span:not(:last-child)::after {
    margin-right: 0;
    margin-left: 14px;
}

.site-ltr .field input,
.site-ltr .field select,
.site-ltr .field textarea {
    direction: ltr;
    text-align: left;
}

@media (max-width: 760px) {
    .site-ltr .site-header__inner {
        text-align: left !important;
    }

    .site-ltr .site-header .brand {
        order: 1 !important;
        direction: ltr !important;
    }

    .site-ltr .site-header .brand > div {
        direction: ltr !important;
        text-align: left !important;
    }

    .site-ltr .mobile-header-actions {
        order: 2 !important;
        direction: ltr !important;
    }
}

/* ===============================
   Tam Soft - Visual Refinements
   =============================== */

.site-header {
    box-shadow: 0 18px 50px rgba(11, 42, 87, 0.06);
}

.section {
    scroll-margin-top: 124px;
}

.section-title {
    margin-bottom: 34px;
}

.eyebrow {
    position: relative;
    box-shadow: 0 14px 34px rgba(11, 42, 87, 0.08);
}

.eyebrow::before {
    content: "";
    width: 12px;
    height: 12px;
    margin-inline-end: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-sky));
    box-shadow: 0 0 0 7px rgba(255, 107, 0, 0.12);
}

.hero.hero-simple {
    min-height: min(760px, calc(100vh - 92px));
    display: grid;
    align-items: center;
}

.hero-simple h1 {
    text-wrap: balance;
}

.hero-simple__lead,
.section-title p,
.service-card p,
.deliverable-card p,
.process-card p,
.contact-card p {
    text-wrap: pretty;
}

.hero-simple__cards article,
.service-card,
.deliverable-card,
.process-card,
.about-panel,
.info-panel,
.contact-card,
.contact-form,
.footer__column {
    border-color: rgba(11, 42, 87, 0.1);
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.94));
}

.service-card,
.deliverable-card,
.process-card {
    min-height: 100%;
}

.service-card::after,
.deliverable-card::before,
.process-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(47, 124, 246, 0.18), transparent 68%);
    filter: blur(2px);
}

.service-card::after {
    top: -70px;
    inset-inline-end: -70px;
    width: 150px;
    height: 150px;
}

.deliverable-card,
.process-card {
    position: relative;
    overflow: hidden;
}

.deliverable-card::before,
.process-card::after {
    bottom: -80px;
    inset-inline-start: -80px;
    width: 170px;
    height: 170px;
}

.process-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-step {
    box-shadow: 0 16px 30px rgba(11, 42, 87, 0.18);
}

.contact-card--direct,
.contact-form {
    box-shadow: 0 24px 60px rgba(11, 42, 87, 0.08);
}

.footer {
    margin-top: 86px;
    padding: 42px 0 32px;
}

.footer__panel {
    margin-top: 0;
    border-radius: 34px;
}

.footer__panel::before {
    border-radius: 999px 999px 0 0;
}

.footer__column--cta {
    background:
        linear-gradient(180deg, rgba(11, 42, 87, 0.96), rgba(22, 64, 129, 0.94)),
        linear-gradient(135deg, rgba(255, 107, 0, 0.16), rgba(47, 124, 246, 0.16));
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 24px 60px rgba(11, 42, 87, 0.18);
}

.info-panel {
    background:
        linear-gradient(180deg, rgba(11, 42, 87, 0.96), rgba(11, 42, 87, 0.9)),
        linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(47, 124, 246, 0.2));
    color: #fff;
}

.site-ltr .hero-simple h1 {
    margin-right: 0;
    margin-left: 0;
    max-width: 9.5ch;
    font-size: clamp(2.9rem, 4.9vw, 5.05rem);
    line-height: 1.08;
    letter-spacing: -0.055em;
}

.site-ltr .hero-simple__content {
    width: var(--content-width);
}

.site-ltr .hero-simple__lead {
    max-width: 34rem;
}

.site-ltr .hero-simple__layout {
    grid-template-columns: minmax(0, 560px) minmax(380px, 1fr);
    align-items: center;
    justify-content: space-between;
    gap: clamp(32px, 4vw, 58px);
}

.site-ltr .hero-simple__copy {
    width: 100%;
    max-width: 560px;
    justify-self: start;
}

.site-ltr .hero-simple__stage {
    width: min(100%, 560px);
    justify-self: end;
}

.site-ltr .section-title:not(.section-title--services) > div {
    max-width: 640px;
}

.site-ltr .section-title:not(.section-title--services) p {
    max-width: 34rem;
}

.site-ltr .hero-simple__copy .hero-simple__label,
.site-ltr .hero-simple__copy h1,
.site-ltr .hero-simple__copy .hero-simple__lead,
.site-ltr .hero-simple__copy .hero-simple__actions {
    opacity: 1;
    transform: none;
    animation: none;
}

.site-ltr .process-step {
    right: auto;
    left: 20px;
}

.site-ltr .process-card {
    padding-right: 24px;
    padding-left: 24px;
}

.site-ltr .footer__brand-lockup {
    text-align: left;
}

@media (max-width: 980px) {
    .hero.hero-simple {
        min-height: auto;
    }

    .section {
        scroll-margin-top: 104px;
    }
}

/* =====================================================
   Tam Soft - Animated Workstation Hero
   ===================================================== */

.hero-simple__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
}

.hero-simple__copy {
    max-width: 620px;
    text-align: start;
}

.hero-simple__label {
    justify-content: flex-start;
}

.hero-simple h1 {
    max-width: 11ch;
    margin: 28px 0 18px;
}

.hero-simple__lead {
    max-width: 60ch;
    margin: 0;
}

.hero-simple__actions {
    justify-content: flex-start;
}

.hero-simple__tags {
    justify-content: flex-start;
}

.hero-simple__cards {
    width: min(1180px, 100%);
    margin: 42px auto 0;
}

.hero-simple__stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 548px;
    opacity: 0;
    animation: tamsoftHeroStageIn 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-delay: 0.56s;
}

.hero-simple__stage::before,
.hero-simple__stage::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero-simple__stage::before {
    content: none;
}

.hero-simple__stage::after {
    inset: 14% 18% 14%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(47, 124, 246, 0.18), transparent 72%);
    filter: blur(10px);
}

.hero-simple__orb {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.8;
}

.hero-simple__orb--one {
    top: 34px;
    inset-inline-end: 24px;
    width: 92px;
    height: 92px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.32), rgba(255, 107, 0, 0.02) 70%);
    animation: tamsoftHeroOrbDrift 8s ease-in-out infinite;
}

.hero-simple__orb--two {
    bottom: 44px;
    inset-inline-start: 18px;
    width: 138px;
    height: 138px;
    background: radial-gradient(circle, rgba(47, 124, 246, 0.26), rgba(47, 124, 246, 0.04) 70%);
    animation: tamsoftHeroOrbDrift 9.5s ease-in-out infinite reverse;
}

.hero-simple__orb--three {
    top: 182px;
    inset-inline-start: 38px;
    width: 26px;
    height: 26px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(11, 42, 87, 0.12);
    animation: tamsoftHeroSparkle 4.5s ease-in-out infinite;
}

.hero-illustration {
    --hero-illustration-y: 10px;
    --hero-illustration-scale-start: 1.1;
    --hero-illustration-scale-mid: 1.13;
    position: relative;
    z-index: 2;
    display: block;
    width: min(100%, 620px);
    height: auto;
    overflow: visible;
    transform: translateY(var(--hero-illustration-y)) scale(var(--hero-illustration-scale-start));
    transform-origin: center;
    filter: drop-shadow(0 28px 54px rgba(11, 42, 87, 0.14));
    will-change: transform;
    animation: tamsoftHeroImageFloat 7.2s ease-in-out infinite;
}

.hero-illustration__bubble,
.hero-illustration__panel,
.hero-illustration__chair,
.hero-illustration__desk,
.hero-illustration__monitor,
.hero-illustration__keyboard,
.hero-illustration__mouse,
.hero-illustration__person,
.hero-illustration__plant {
    transform-box: fill-box;
    transform-origin: center;
}

.hero-illustration__bubble {
    animation: tamsoftHeroBubbleFloat 6s ease-in-out infinite;
}

.hero-illustration__panel--rear {
    animation: tamsoftHeroPanelRear 6.6s ease-in-out infinite;
}

.hero-illustration__panel--front {
    animation: tamsoftHeroPanelFront 5.8s ease-in-out infinite;
}

.hero-illustration__chair {
    animation: tamsoftHeroChairFloat 6.2s ease-in-out infinite;
}

.hero-illustration__desk {
    animation: tamsoftHeroDeskFloat 6.2s ease-in-out infinite;
}

.hero-illustration__monitor {
    animation: tamsoftHeroMonitorFloat 5.4s ease-in-out infinite;
}

.hero-illustration__keyboard {
    animation: tamsoftHeroKeyboardShift 4.6s ease-in-out infinite;
}

.hero-illustration__mouse {
    animation: tamsoftHeroMouseNudge 4.2s ease-in-out infinite;
}

.hero-illustration__person {
    animation: tamsoftHeroPersonLean 5.8s ease-in-out infinite;
}

.hero-illustration__plant {
    transform-origin: center bottom;
    animation: tamsoftHeroPlantSway 5.5s ease-in-out infinite;
}

.hero-illustration__code rect:not(.hero-illustration__cursor) {
    animation: tamsoftHeroCodePulse 3s ease-in-out infinite;
}

.hero-illustration__code rect:nth-child(2n) {
    animation-delay: 0.3s;
}

.hero-illustration__code rect:nth-child(3n) {
    animation-delay: 0.6s;
}

.hero-illustration__cursor {
    animation: tamsoftHeroCursorBlink 1s steps(1, end) infinite;
}

@keyframes tamsoftHeroStageIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tamsoftHeroImageFloat {
    0%,
    100% {
        transform: translateY(var(--hero-illustration-y)) scale(var(--hero-illustration-scale-start)) rotate(0deg);
    }

    50% {
        transform: translateY(calc(var(--hero-illustration-y) - 14px)) scale(var(--hero-illustration-scale-mid)) rotate(-1.5deg);
    }
}

@keyframes tamsoftHeroBubbleFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes tamsoftHeroPanelRear {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-4px, -8px);
    }
}

@keyframes tamsoftHeroPanelFront {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(2px, -10px);
    }
}

@keyframes tamsoftHeroChairFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes tamsoftHeroDeskFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

@keyframes tamsoftHeroMonitorFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes tamsoftHeroKeyboardShift {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(3px, 2px);
    }
}

@keyframes tamsoftHeroMouseNudge {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }
}

@keyframes tamsoftHeroPersonLean {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes tamsoftHeroPlantSway {
    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-3deg);
    }
}

@keyframes tamsoftHeroCodePulse {
    0%,
    100% {
        opacity: 0.58;
    }

    50% {
        opacity: 1;
    }
}

@keyframes tamsoftHeroCursorBlink {
    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0.14;
    }
}

@keyframes tamsoftHeroOrbDrift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -10px, 0) scale(1.06);
    }
}

@keyframes tamsoftHeroSparkle {
    0%,
    100% {
        transform: scale(0.88);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.site-ltr .hero-simple h1 {
    margin-right: 0;
    margin-left: 0;
    max-width: 9.5ch;
}

@media (max-width: 1120px) {
    .hero-simple__layout {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    }

    .hero-simple__copy {
        max-width: 560px;
    }
}

@media (max-width: 980px) {
    .hero-simple__layout {
        grid-template-columns: 1fr;
    }

    .hero-simple__copy {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-simple__label,
    .hero-simple__actions,
    .hero-simple__tags {
        justify-content: center;
    }

    .hero-simple h1 {
        max-width: 14ch;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-simple__lead {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-simple__stage {
        width: min(100%, 620px);
        min-height: 470px;
        margin: 0 auto;
    }

    .hero-simple__cards {
        margin-top: 30px;
    }

    .site-ltr .hero-simple__layout {
        grid-template-columns: 1fr;
    }

    .site-ltr .hero-simple__copy {
        width: min(100%, 720px);
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .site-ltr .hero-simple__label,
    .site-ltr .hero-simple__actions,
    .site-ltr .hero-simple__tags {
        justify-content: center;
    }

    .site-ltr .hero-simple h1 {
        max-width: 14ch;
        margin-right: auto;
        margin-left: auto;
    }

    .site-ltr .hero-simple__lead {
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .site-ltr .hero-simple__stage {
        width: min(100%, 620px);
        min-height: 470px;
        margin: 0 auto;
        justify-self: center;
    }
}

@media (max-width: 760px) {
    .hero-simple__layout {
        gap: 20px;
    }

    .hero-simple__stage {
        min-height: 392px;
    }

    .hero-simple__stage::before {
        inset: 24px 4px 10px;
        border-radius: 30px;
    }

    .hero-illustration {
        --hero-illustration-y: 8px;
        --hero-illustration-scale-start: 1.04;
        --hero-illustration-scale-mid: 1.065;
    }

    .site-ltr .hero-simple__layout {
        gap: 20px;
    }

    .site-ltr .hero-simple h1 {
        max-width: 10ch;
        font-size: clamp(2.3rem, 12vw, 3.7rem);
    }

    .site-ltr .hero-simple__stage {
        min-height: 392px;
    }
}

@media (max-width: 560px) {
    .hero-simple__stage {
        min-height: 332px;
    }

    .hero-simple__stage::after {
        inset: 18% 12% 16%;
    }

    .hero-simple__orb--two {
        display: none;
    }

    .hero-simple__cards {
        gap: 16px;
    }

    .hero-illustration {
        --hero-illustration-y: 4px;
        --hero-illustration-scale-start: 1;
        --hero-illustration-scale-mid: 1.025;
    }

    .site-ltr .hero-simple__stage {
        min-height: 332px;
    }

    .site-ltr .hero-simple h1 {
        max-width: 9ch;
        font-size: clamp(2.1rem, 11.5vw, 3.2rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-simple__stage,
    .hero-simple__orb,
    .hero-illustration,
    .hero-illustration__bubble,
    .hero-illustration__panel,
    .hero-illustration__chair,
    .hero-illustration__desk,
    .hero-illustration__monitor,
    .hero-illustration__keyboard,
    .hero-illustration__mouse,
    .hero-illustration__person,
    .hero-illustration__plant,
    .hero-illustration__code rect {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .hero-illustration {
        transform: translateY(var(--hero-illustration-y)) scale(var(--hero-illustration-scale-start)) !important;
    }
}

@media (max-width: 1200px) {
    .about-showcase,
    .site-rtl .about-showcase,
    .site-ltr .about-showcase {
        grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
        gap: clamp(28px, 4vw, 40px);
    }

    .about-showcase__visual {
        min-height: 560px;
    }

    .about-showcase__copy {
        max-width: 100%;
        justify-self: stretch;
        padding-top: 0;
    }

    .about-showcase__story {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .about-showcase__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .about-showcase,
    .site-rtl .about-showcase,
    .site-ltr .about-showcase {
        grid-template-columns: 1fr;
        width: min(1240px, calc(100vw - 24px));
        gap: clamp(32px, 4vw, 40px);
        padding: 0;
    }

    .about-showcase__visual,
    .about-showcase__copy,
    .site-ltr .about-showcase__visual,
    .site-ltr .about-showcase__copy {
        grid-column: auto;
    }

    .about-showcase h2 {
        font-size: clamp(1.9rem, 8.2vw, 2.55rem);
        line-height: 1.16;
    }

    .about-showcase__visual {
        order: 2;
        min-height: 420px;
        padding-top: 6px;
    }

    .about-showcase__copy,
    .site-ltr .about-showcase__copy {
        order: 1;
        gap: 18px;
    }

    .about-showcase__lead {
        max-width: 100%;
        font-size: 0.98rem;
        line-height: 1.85;
    }

    .about-showcase__story {
        gap: 14px;
    }

    .about-showcase__features {
        grid-template-columns: 1fr;
    }

    .about-stage {
        width: min(100%, 360px);
    }

    .about-stage__core {
        width: 64%;
    }

    .about-orbit-item__icon {
        width: 64px;
        padding: 10px;
    }

    .about-orbit-item span {
        max-width: 118px;
        padding: 9px 11px;
        font-size: 0.78rem;
    }

    .about-orbit-item--top {
        top: 1%;
        inset-inline-end: 7%;
    }

    .about-orbit-item--left {
        top: 24%;
        inset-inline-start: -2%;
    }

    .about-orbit-item--bottom {
        bottom: -4%;
        inset-inline-start: 12%;
    }

    .about-orbit-item--right {
        bottom: -2%;
        inset-inline-end: -2%;
    }

    .about-ambient-card--code {
        width: 26%;
        bottom: 22%;
        inset-inline-start: -10%;
    }

    .about-ambient-card--check {
        width: 20%;
        bottom: 28%;
        inset-inline-end: 7%;
    }

    .about-showcase__body,
    .about-showcase__mission {
        padding: 18px 16px;
        border-radius: 22px;
    }

    .about-feature {
        padding: 18px 16px;
        border-radius: 22px;
    }

    .about-showcase__cta {
        width: 100%;
        min-height: 54px;
    }
}

@media (max-width: 420px) {
    .about-showcase,
    .site-rtl .about-showcase,
    .site-ltr .about-showcase {
        width: min(1240px, calc(100vw - 18px));
        gap: 22px;
    }

    .about-showcase h2 {
        font-size: clamp(1.75rem, 9vw, 2.2rem);
    }

    .about-showcase__visual {
        min-height: 320px;
    }

    .about-stage {
        width: min(100%, 320px);
    }

    .about-orbit-item__icon {
        width: 56px;
        padding: 9px;
    }

    .about-orbit-item span {
        max-width: 108px;
        font-size: 0.73rem;
        line-height: 1.45;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-stage__glow,
    .about-stage__ring--outer,
    .about-stage__main,
    .about-orbit-item,
    .about-ambient-card--code,
    .about-ambient-card--check {
        animation: none !important;
    }
}

.site-ltr .hero-simple__copy--ltr {
    display: grid !important;
    align-content: center !important;
    justify-self: start !important;
    gap: 22px !important;
    min-height: 460px !important;
    position: relative;
    z-index: 4;
    opacity: 1 !important;
    visibility: visible !important;
}

.site-ltr .hero-simple__copy--ltr .hero-simple__label,
.site-ltr .hero-simple__copy--ltr h1,
.site-ltr .hero-simple__copy--ltr .hero-simple__lead,
.site-ltr .hero-simple__copy--ltr .hero-simple__actions {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
}

.site-ltr .hero-simple__copy--ltr h1 {
    max-width: 11ch !important;
    margin: 0 !important;
    color: var(--brand-navy) !important;
}

.site-ltr .hero-simple__copy--ltr .hero-simple__lead {
    max-width: 38rem !important;
    margin: 0 !important;
    color: #315286 !important;
}

.site-ltr .hero-simple__copy--ltr .hero-simple__actions {
    margin-top: 0 !important;
}

.hero-ltr-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
}

.hero-ltr-copy {
    position: relative;
    z-index: 4;
    display: grid;
    align-content: center;
    gap: 22px;
    max-width: 560px;
    text-align: left;
}

.hero-ltr-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(11, 42, 87, 0.08);
    color: var(--brand-navy);
    font-size: 0.98rem;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(11, 42, 87, 0.08);
}

.hero-ltr-title {
    margin: 0;
    color: var(--brand-navy);
    font-size: clamp(2.9rem, 4.9vw, 4.95rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.05em;
    max-width: 10ch;
}

.hero-ltr-lead {
    margin: 0;
    max-width: 38rem;
    color: #315286;
    font-size: clamp(1.04rem, 1.3vw, 1.24rem);
    font-weight: 700;
    line-height: 1.85;
}

.hero-ltr-actions {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 1120px) {
    .hero-ltr-shell {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    }
}

@media (max-width: 980px) {
    .hero-ltr-shell {
        grid-template-columns: 1fr;
    }

    .hero-ltr-copy {
        margin: 0 auto;
        text-align: center;
    }

    .hero-ltr-label,
    .hero-ltr-actions {
        justify-content: center;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-ltr-title,
    .hero-ltr-lead {
        max-width: 100%;
    }
}

@media (max-width: 760px) {
    .hero-ltr-shell {
        gap: 20px;
    }

    .hero-ltr-title {
        font-size: clamp(2.2rem, 8vw, 3.6rem);
    }

    .hero-ltr-actions {
        flex-direction: column;
    }

    .hero-ltr-actions .button {
        width: 100%;
    }
}

@media (min-width: 761px) {
    .site-ltr .about-showcase {
        display: grid !important;
        grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr) !important;
        align-items: start !important;
    }

    .site-ltr .about-showcase__copy {
        grid-column: 1 !important;
        order: 1 !important;
        justify-self: start !important;
    }

    .site-ltr .about-showcase__visual {
        display: grid !important;
        grid-column: 2 !important;
        order: 2 !important;
        min-height: 560px !important;
        place-items: center !important;
    }
}

.section--services .section-title,
.section--services .services-grid {
    width: 100%;
    margin-inline: auto;
}

.section-title--services {
    align-items: end;
    margin-bottom: 28px;
}

.site-ltr .section-title--services {
    gap: clamp(20px, 3vw, 36px);
}

.site-ltr .section-title--services > div {
    flex: 1 1 52%;
    max-width: 42rem;
}

.site-ltr .section-title--services h2 {
    max-width: 16ch;
    font-size: clamp(2.5rem, 3.45vw, 4rem);
    line-height: 1.08;
    text-wrap: balance;
}

.site-ltr .section-title--services p {
    flex: 0 1 30rem;
    max-width: 30rem;
    font-size: 1.02rem;
    line-height: 1.85;
}

.services-grid.services-grid--media {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card.service-card--with-media {
    position: relative;
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 156px;
    padding: 18px 20px;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.92));
    border: 1px solid rgba(11, 42, 87, 0.1);
    box-shadow: 0 18px 42px rgba(11, 42, 87, 0.08);
    backdrop-filter: blur(12px);
}

.service-card.service-card--with-media::before {
    top: -60px;
    inset-inline-end: -60px;
    width: 154px;
    height: 154px;
    background: radial-gradient(circle, rgba(47, 124, 246, 0.18), transparent 68%);
}

.service-card.service-card--with-media::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, rgba(47, 124, 246, 0.9), rgba(255, 107, 0, 0.72));
    opacity: 0;
    transition: opacity 220ms ease;
}

.service-card.service-card--with-media:hover::after {
    opacity: 1;
}

.service-card__media {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: 108px;
}

.service-card__media::before {
    content: "";
    position: absolute;
    inset: 15% 5%;
    border-radius: 50%;
    background: rgba(47, 124, 246, 0.09);
    filter: blur(10px);
}

.service-card__media img {
    position: relative;
    z-index: 1;
    width: min(136px, 100%);
    max-height: 114px;
    object-fit: contain;
    filter: drop-shadow(0 14px 22px rgba(31, 76, 171, 0.15));
    transition: transform 220ms ease, filter 220ms ease;
}

.service-card--with-media:hover .service-card__media img {
    transform: translateY(-4px) scale(1.03);
    filter: drop-shadow(0 18px 28px rgba(31, 76, 171, 0.18));
}

.service-card__content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.service-card--with-media h3 {
    margin: 0 0 8px;
    color: var(--brand-navy);
    font-size: 1.06rem;
    font-weight: 900;
    line-height: 1.35;
}

.service-card--with-media p {
    color: #7082a0;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.65;
}

.service-card--with-media .service-tags {
    margin-top: 12px;
    gap: 8px;
}

.service-card--with-media .service-tag {
    min-height: 26px;
    padding-inline: 10px;
    background: rgba(11, 42, 87, 0.055);
    box-shadow: inset 0 0 0 1px rgba(11, 42, 87, 0.04);
    font-size: 0.72rem;
}

.service-card--wide {
    grid-column: span 2;
    grid-template-columns: 150px minmax(0, 1fr);
    min-height: 142px;
}

.service-card--wide .service-card__media img {
    width: 150px;
    max-height: 124px;
}

.site-ltr .service-card.service-card--with-media {
    grid-template-columns: 124px minmax(0, 1fr);
    min-height: 196px;
}

.site-ltr .service-card--wide {
    grid-template-columns: 150px minmax(0, 1fr);
    min-height: 182px;
}

.site-ltr .service-card--with-media h3 {
    font-size: 1.12rem;
    line-height: 1.45;
}

.site-ltr .service-card--with-media p {
    font-size: 0.88rem;
    line-height: 1.78;
}

.site-ltr .service-card--with-media .service-tag {
    font-size: 0.76rem;
}

.site-rtl .service-card.service-card--with-media {
    min-height: 196px;
}

.site-rtl .service-card--wide {
    min-height: 182px;
}

.site-rtl .service-card--with-media h3 {
    font-size: 1.12rem;
    line-height: 1.45;
}

.site-rtl .service-card--with-media p {
    font-size: 0.88rem;
    line-height: 1.78;
}

.site-rtl .service-card--with-media .service-tag {
    font-size: 0.76rem;
}

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

    .service-card--wide {
        grid-column: span 2;
    }
}

@media (max-width: 880px) {
    .section-title--services {
        align-items: start;
        flex-direction: column;
    }

    .site-ltr .section-title--services > div,
    .site-ltr .section-title--services p {
        flex: 0 1 auto;
        max-width: 100%;
    }

    .site-ltr .section-title--services h2 {
        max-width: 100%;
    }

    .section--services .section-title,
    .section--services .services-grid {
        width: 100%;
    }

    .service-card.service-card--with-media,
    .service-card--wide {
        grid-column: auto;
        grid-template-columns: 132px minmax(0, 1fr);
        min-height: 170px;
        padding: 18px;
    }

    .site-ltr .service-card.service-card--with-media,
    .site-ltr .service-card--wide {
        grid-template-columns: 132px minmax(0, 1fr);
        min-height: 184px;
    }

    .site-rtl .service-card.service-card--with-media,
    .site-rtl .service-card--wide {
        min-height: 184px;
    }

    .services-grid.services-grid--media {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .service-card.service-card--with-media,
    .service-card--wide {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 18px 16px;
    }

    .service-card__media {
        min-height: 110px;
    }

    .service-card__media img,
    .service-card--wide .service-card__media img {
        width: min(148px, 72%);
        max-height: 122px;
    }

    .service-card--with-media .service-tags {
        justify-content: center;
    }

    .deliverable-card--company-value {
        padding: 22px 18px;
    }

    .deliverable-card__icon {
        width: min(100%, 146px);
        padding: 12px;
        border-radius: 28px;
    }

    .deliverable-card__icon::before {
        inset: 12px;
        border-radius: 20px;
    }

    .deliverable-card--company-value h3 {
        font-size: 1.22rem;
    }

    .deliverable-card--company-value p {
        font-size: 0.94rem;
        line-height: 1.82;
    }
}

.service-card--link {
    cursor: pointer;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card--link:hover {
    transform: translateY(-6px);
    border-color: rgba(47, 124, 246, 0.22);
    box-shadow: 0 24px 54px rgba(11, 42, 87, 0.12);
}

.service-card__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--brand-sky);
    font-size: 0.85rem;
    font-weight: 700;
}

.service-card__action::after {
    content: "→";
    font-size: 0.95rem;
}

.section--web-projects {
    position: relative;
}

.section--web-projects::before,
.section--web-projects::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
    filter: blur(12px);
}

.section--web-projects::before {
    top: 72px;
    inset-inline-start: 6%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.12), transparent 68%);
}

.section--web-projects::after {
    bottom: 18px;
    inset-inline-end: 8%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(47, 124, 246, 0.16), transparent 70%);
}

.section--web-projects .section-title {
    align-items: flex-start;
}

.section--web-projects .section-title p {
    max-width: 46ch;
    line-height: 1.9;
}

.web-projects-stack {
    display: grid;
    gap: 24px;
}

.web-project {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
    gap: 22px;
    padding: 28px;
    border: 1px solid rgba(11, 42, 87, 0.08);
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.94));
    box-shadow: 0 24px 60px rgba(11, 42, 87, 0.1);
    overflow: hidden;
    isolation: isolate;
}

.web-project::before {
    content: "";
    position: absolute;
    inset: auto auto -90px -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.72), transparent 72%);
    opacity: 0.9;
}

.web-project::after {
    content: "";
    position: absolute;
    top: -30px;
    inset-inline-end: -24px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.95;
}

.web-project--accent-1::after {
    background: radial-gradient(circle, rgba(255, 107, 0, 0.16), transparent 68%);
}

.web-project--accent-2::after {
    background: radial-gradient(circle, rgba(47, 124, 246, 0.18), transparent 70%);
}

.web-project__copy {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: start;
    gap: 18px;
    text-align: start;
}

.web-project__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.web-project__index,
.web-project__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    font-weight: 900;
}

.web-project__index {
    min-width: 56px;
    background: linear-gradient(135deg, var(--brand-navy), #184089);
    color: #ffffff;
    box-shadow: 0 14px 26px rgba(11, 42, 87, 0.18);
}

.web-project__chip {
    background: rgba(47, 124, 246, 0.08);
    color: var(--brand-navy);
    border: 1px solid rgba(47, 124, 246, 0.12);
}

.web-project h3 {
    margin: 0;
    color: var(--brand-navy);
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    line-height: 1.12;
}

.web-project__headline {
    margin: -2px 0 0;
    color: var(--brand-sky);
    font-size: 1.08rem;
    font-weight: 900;
}

.web-project__summary {
    display: grid;
    gap: 12px;
}

.web-project__summary p {
    margin: 0;
    color: #61738e;
    font-size: 1rem;
    line-height: 1.92;
}

.web-project__tags {
    margin-top: 0;
}

.web-project__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.web-project__fact {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(11, 42, 87, 0.08);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 32px rgba(11, 42, 87, 0.06);
}

.web-project__fact span {
    color: var(--brand-muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.web-project__fact strong {
    color: var(--brand-navy);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.6;
    word-break: break-word;
}

.web-project__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.web-project__gallery {
    position: relative;
    overflow: hidden;
    height: 640px;
    direction: ltr;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 243, 255, 0.92));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 22px 44px rgba(11, 42, 87, 0.12);
}

.web-project__slider-track {
    display: flex;
    height: 100%;
    transition: transform 420ms ease;
    will-change: transform;
}

.web-project-slide {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    min-width: 0;
    height: 100%;
    margin: 0;
    padding: 58px 26px 26px;
    box-sizing: border-box;
    overflow: hidden;
}

.web-project-slide::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 34px;
    background:
        radial-gradient(circle at 18px 17px, rgba(255, 107, 0, 0.68) 0 4px, transparent 5px),
        radial-gradient(circle at 36px 17px, rgba(47, 124, 246, 0.5) 0 4px, transparent 5px),
        radial-gradient(circle at 54px 17px, rgba(11, 42, 87, 0.24) 0 4px, transparent 5px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 255, 0.88));
    border-bottom: 1px solid rgba(11, 42, 87, 0.08);
    z-index: 1;
}

.web-project-slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 260ms ease;
}

.web-project:hover .web-project-slide img {
    transform: scale(1.01);
}

.web-project__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: rgba(11, 42, 87, 0.86);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(11, 42, 87, 0.22);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
    backdrop-filter: blur(10px);
}

.web-project__arrow:hover {
    background: var(--brand-sky);
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 20px 40px rgba(31, 76, 171, 0.24);
}

.web-project__arrow span {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}

.web-project__arrow--prev {
    left: 18px;
}

.web-project__arrow--next {
    right: 18px;
}

@media (max-width: 1180px) {
    .web-project {
        grid-template-columns: 1fr;
    }

    .web-project__gallery {
        height: 560px;
    }
}

@media (max-width: 760px) {
    .section--web-projects .section-title {
        gap: 12px;
    }

    .web-project {
        padding: 22px 18px;
        border-radius: 28px;
    }

    .web-project__headline {
        font-size: 1rem;
    }

    .web-project__facts {
        grid-template-columns: 1fr;
    }

    .web-project__actions .button {
        width: 100%;
    }

    .web-project__gallery {
        height: 420px;
    }

    .web-project__arrow {
        width: 50px;
        height: 50px;
    }

    .web-project-slide {
        padding: 56px 22px 22px;
    }
}

@media (max-width: 560px) {
    .web-project h3 {
        font-size: 1.72rem;
    }

    .web-project__meta {
        gap: 8px;
    }

    .web-project__index,
    .web-project__chip {
        min-height: 34px;
        padding: 0 14px;
        font-size: 0.84rem;
    }

    .web-project__gallery {
        height: 320px;
    }

    .web-project__arrow {
        width: 44px;
        height: 44px;
    }

    .web-project__arrow span {
        font-size: 1.6rem;
    }

    .web-project-slide {
        padding: 50px 16px 16px;
    }
}

.section--accounting-hero {
    padding-top: 42px;
}

.accounting-page {
    padding-bottom: 40px;
}

.accounting-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 32px;
    padding: 42px;
    border: 1px solid rgba(11, 42, 87, 0.08);
    border-radius: 36px;
    background:
        radial-gradient(circle at top left, rgba(47, 124, 246, 0.14), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94));
    box-shadow: 0 30px 70px rgba(11, 42, 87, 0.1);
    overflow: hidden;
}

.accounting-hero__copy {
    position: relative;
    z-index: 1;
}

.accounting-hero__copy h2 {
    margin: 14px 0 16px;
    color: var(--brand-navy);
    font-size: var(--service-hero-title-size);
    line-height: 1.12;
    text-wrap: balance;
}

.accounting-hero__copy p {
    max-width: 60ch;
    margin: 0;
    color: #5f718c;
    font-size: 1rem;
    line-height: 1.9;
}

.accounting-hero__visual {
    position: relative;
    display: grid;
    min-height: 320px;
    place-items: center;
}

.accounting-hero__glow {
    position: absolute;
    inset: 10% 12%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 124, 246, 0.2), rgba(255, 107, 0, 0.08), transparent 72%);
    filter: blur(18px);
}

.accounting-hero__card {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: 260px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 28px 56px rgba(31, 76, 171, 0.14);
    backdrop-filter: blur(16px);
}

.accounting-hero__card img {
    width: min(100%, 320px);
    object-fit: contain;
    filter: drop-shadow(0 22px 34px rgba(31, 76, 171, 0.18));
}

.accounting-overview__panel {
    display: grid;
    gap: 20px;
    padding: 32px;
    border: 1px solid rgba(11, 42, 87, 0.08);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.92));
    box-shadow: var(--shadow-soft);
}

.accounting-overview__panel p {
    margin: 0;
    color: #62748f;
    font-size: 1rem;
    line-height: 1.9;
}

.accounting-featured-system {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 22px;
    margin-bottom: 28px;
}

.accounting-featured-system__copy,
.accounting-featured-system__panel {
    padding: 30px;
    border: 1px solid rgba(11, 42, 87, 0.08);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.92));
    box-shadow: var(--shadow-soft);
}

.accounting-featured-system__copy h2 {
    margin: 12px 0 8px;
    color: var(--brand-navy);
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.15;
}

.accounting-featured-system__subtitle {
    margin: 0 0 12px;
    color: var(--brand-sky);
    font-size: 1.12rem;
    font-weight: 900;
}

.accounting-featured-system__copy p:last-child {
    margin: 0 0 20px;
    color: #61738f;
    line-height: 1.9;
}

.accounting-featured-system__preview {
    overflow: hidden;
    border: 1px solid rgba(47, 124, 246, 0.12);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(229, 238, 252, 0.88), rgba(255, 255, 255, 0.98));
    box-shadow: 0 20px 42px rgba(11, 42, 87, 0.08);
}

.accounting-featured-system__preview img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.accounting-featured-system__panel {
    display: grid;
    gap: 18px;
}

.accounting-featured-system__meta strong {
    display: block;
    margin-bottom: 14px;
    color: var(--brand-navy);
    font-size: 1rem;
    font-weight: 900;
}

.accounting-featured-system__points {
    display: grid;
    gap: 12px;
}

.accounting-featured-system__client-note {
    display: grid;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(11, 42, 87, 0.08);
    background:
        linear-gradient(135deg, rgba(47, 124, 246, 0.08), rgba(255, 107, 0, 0.08)),
        rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 32px rgba(11, 42, 87, 0.06);
}

.accounting-featured-system__client-note span {
    color: var(--brand-muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.accounting-featured-system__client-note p {
    margin: 0;
    color: var(--brand-navy);
    font-weight: 700;
    line-height: 1.9;
}

.accounting-featured-system__client-note a {
    color: var(--brand-sky);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}

.accounting-featured-system__linkbox {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(47, 124, 246, 0.07);
    border: 1px solid rgba(47, 124, 246, 0.12);
}

.accounting-featured-system__linkbox span {
    color: var(--brand-muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.accounting-featured-system__linkbox a {
    color: var(--brand-sky);
    font-size: 1rem;
    font-weight: 900;
    word-break: break-all;
}

.accounting-featured-system__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.accounting-featured-system--alternate .accounting-featured-system__copy {
    order: 2;
}

.accounting-featured-system--alternate .accounting-featured-system__panel {
    order: 1;
}

.accounting-overview__points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.accounting-point {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(47, 124, 246, 0.08);
    color: var(--brand-navy);
    font-weight: 700;
    line-height: 1.75;
}

.accounting-systems-grid,
.accounting-benefits-grid {
    display: grid;
    gap: 18px;
}

.accounting-systems-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.accounting-system-card,
.accounting-benefit-card {
    padding: 26px;
    border: 1px solid rgba(11, 42, 87, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.92));
    box-shadow: 0 18px 42px rgba(11, 42, 87, 0.08);
}

.accounting-system-card h3,
.accounting-benefit-card h3 {
    margin: 0 0 10px;
    color: var(--brand-navy);
    font-size: 1.14rem;
    font-weight: 900;
    line-height: 1.45;
}

.accounting-system-card p,
.accounting-benefit-card p {
    margin: 0;
    color: #667893;
    font-size: 0.94rem;
    line-height: 1.85;
}

.accounting-system-card .service-tags {
    margin-top: 16px;
}

.accounting-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.accounting-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 32px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(11, 42, 87, 0.98), rgba(47, 124, 246, 0.9));
    box-shadow: 0 26px 62px rgba(11, 42, 87, 0.16);
}

.accounting-cta__copy h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.2;
}

.accounting-cta__copy p {
    max-width: 56ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.85;
}

.accounting-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.footer__panel--compact {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 28px;
    align-items: start;
}

.footer__column--compact-links .footer__actions {
    margin-top: 18px;
}

.footer--compact .footer__bottom-inner {
    justify-content: center;
}

@media (max-width: 1120px) {
    .accounting-hero,
    .accounting-featured-system,
    .footer__panel--compact {
        grid-template-columns: 1fr;
    }

    .accounting-systems-grid,
    .accounting-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .accounting-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .accounting-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .section--accounting-hero {
        padding-top: 24px;
    }

    .accounting-hero,
    .accounting-featured-system__copy,
    .accounting-featured-system__panel,
    .accounting-overview__panel,
    .accounting-cta {
        padding: 26px 20px;
    }

    .accounting-hero {
        grid-template-columns: 1fr;
    }

    .accounting-hero__visual {
        min-height: 240px;
    }

    .accounting-overview__points,
    .accounting-systems-grid,
    .accounting-benefits-grid {
        grid-template-columns: 1fr;
    }

    .accounting-cta__actions {
        width: 100%;
    }

    .accounting-featured-system__actions {
        width: 100%;
    }

    .accounting-featured-system__actions .button,
    .accounting-cta__actions .button {
        width: 100%;
        justify-content: center;
    }
}

