:root {
    --green-950: #071b13;
    --green-900: #0b2f20;
    --green-800: #0f4a2c;
    --green-700: #126339;
    --green-600: #147849;
    --green-100: #e8f5ef;
    --orange-600: #e97913;
    --orange-500: #f28a18;
    --cyan-500: #19a7c7;
    --ink: #101613;
    --muted: #5e6b64;
    --line: #dce5df;
    --paper: #ffffff;
    --soft: #f5f8f6;
    --soft-green: #eef8f2;
    --shadow: 0 18px 44px rgba(7, 27, 19, 0.12);
    --shadow-soft: 0 12px 30px rgba(7, 27, 19, 0.08);
    --radius: 8px;
    --wrap: 1240px;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

@font-face {
    font-family: "CairoLocal";
    src: url("../fonts/cairo-400.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "CairoLocal";
    src: url("../fonts/cairo-600.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "CairoLocal";
    src: url("../fonts/cairo-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    overflow-x: hidden;
}

html[dir="rtl"] body,
[dir="rtl"] body {
    font-family: "CairoLocal", "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

svg {
    width: 1.15em;
    height: 1.15em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.wrap {
    width: min(calc(100% - 40px), var(--wrap));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(220, 229, 223, 0.75);
    transition: box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(7, 27, 19, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.brand-mark {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    color: var(--green-800);
    font-size: 1.05rem;
}

.brand-text span {
    color: var(--orange-600);
    font-weight: 700;
    font-size: 0.78rem;
    line-height: 1.2;
    margin-top: 3px;
}

.main-nav {
    margin-inline-start: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    position: relative;
    padding: 10px 13px;
    color: #17211c;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: var(--radius);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--green-700);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms var(--ease);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--green-800);
    font-weight: 800;
    min-height: 42px;
    padding: 0 8px;
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--green-800);
    border-radius: var(--radius);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
    white-space: nowrap;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--green-800), var(--green-600));
    color: var(--paper);
    box-shadow: 0 14px 28px rgba(18, 99, 57, 0.22);
}

.btn-accent {
    background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
    color: var(--paper);
    box-shadow: 0 14px 28px rgba(233, 121, 19, 0.24);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.82);
    color: var(--green-800);
    border-color: var(--green-700);
}

.btn-small {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.88rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-800);
    font-weight: 850;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 42%, rgba(238,248,242,0.72) 100%),
        linear-gradient(135deg, rgba(18,99,57,0.08) 1px, transparent 1px);
    background-size: auto, 56px 56px;
    border-bottom: 1px solid var(--line);
}

.hero-skyline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 42%;
    object-fit: cover;
    object-position: bottom center;
    opacity: 0.74;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(0deg, rgba(15, 74, 44, 0.08), transparent);
    pointer-events: none;
}

.hero-grid {
    min-height: calc(100vh - 78px);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 44px;
    padding: 62px 0 52px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin: 0;
    max-width: 620px;
    color: var(--green-900);
    font-size: clamp(2.5rem, 4vw, 3.45rem);
    line-height: 1.16;
    font-weight: 900;
}

[dir="rtl"] .hero h1 {
    font-size: clamp(2.4rem, 3.7vw, 3.25rem);
    line-height: 1.2;
}

.hero-title > span {
    display: block;
}

.accent-text {
    color: var(--orange-600);
}

.hero-lead {
    margin: 22px 0 0;
    max-width: 610px;
    color: #243129;
    font-size: 1.04rem;
    line-height: 1.82;
}

.hero-note {
    margin: 12px 0 0;
    max-width: 590px;
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-media {
    position: relative;
    z-index: 2;
    min-height: 610px;
}

.merchant-photo {
    position: absolute;
    top: 8px;
    right: 0;
    width: 72%;
    height: 500px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

[dir="rtl"] .merchant-photo {
    right: auto;
    left: 0;
}

.merchant-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

[dir="rtl"] .merchant-photo img {
    transform: scaleX(-1);
}

.phone-mock {
    position: absolute;
    left: 0;
    top: 42px;
    width: 270px;
    min-height: 0;
    padding: 0;
    border-radius: 28px;
    color: var(--ink);
    background: #111;
    border: 9px solid #111;
    box-shadow: 0 24px 46px rgba(7, 27, 19, 0.26);
    overflow: hidden;
    margin: 0;
}

[dir="rtl"] .phone-mock {
    left: auto;
    right: 0;
}

.official-app-phone img {
    width: 100%;
    height: auto;
    border-radius: 18px;
}

.phone-top,
.balance-card,
.phone-list div,
.quick-actions span {
    border-radius: var(--radius);
}

.phone-top {
    display: flex;
    justify-content: space-between;
    color: var(--green-900);
    font-size: 0.8rem;
    font-weight: 800;
}

.balance-card {
    margin-top: 24px;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.balance-card span,
.phone-list span,
.mini-phone small,
.pos-terminal small {
    color: var(--muted);
    font-size: 0.78rem;
}

.balance-card strong {
    display: block;
    margin-top: 7px;
    color: var(--green-800);
    font-size: 1.55rem;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 18px;
}

.quick-actions span {
    min-height: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
    padding: 8px;
    background: var(--soft-green);
    color: var(--green-800);
    font-size: 0.78rem;
    font-weight: 800;
}

.quick-actions svg {
    width: 20px;
    height: 20px;
    color: var(--green-700);
}

.phone-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.phone-list div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 13px 12px;
    background: var(--paper);
    border: 1px solid var(--line);
}

.phone-list strong {
    color: var(--orange-600);
    font-size: 0.86rem;
}

.phone-list .positive {
    color: var(--green-700);
}

.store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.compact-store-links {
    margin-top: 30px;
}

.store-links a {
    min-width: 128px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.84);
    box-shadow: var(--shadow-soft);
}

.store-copy {
    display: grid;
    gap: 2px;
}

.store-copy span,
.store-links a > span:not(.store-icon):not(.store-copy) {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
}

.store-copy strong,
.store-links a > strong {
    color: var(--ink);
    font-size: 0.93rem;
}

.store-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--paper);
}

.store-icon svg {
    width: 18px;
    height: 18px;
}

.store-icon-play {
    background: linear-gradient(135deg, #20a75a, #19a7c7);
}

.store-icon-apple {
    background: #101613;
}

.store-icon-apple svg,
.store-icon-play svg {
    fill: currentColor;
    stroke: none;
}

.store-icon-web {
    background: var(--green-800);
}

.metrics-band {
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    color: var(--paper);
}

.inner-metrics {
    margin-top: -1px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.metrics-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.metric {
    min-height: 138px;
    padding: 30px 28px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-content: center;
    gap: 4px 18px;
    border-inline-start: 1px solid rgba(255,255,255,0.18);
}

.metric:first-child {
    border-inline-start: 0;
}

.metric svg {
    grid-row: span 2;
    width: 44px;
    height: 44px;
    color: #dcefe6;
}

.metric strong {
    color: var(--orange-500);
    font-size: 2.65rem;
    line-height: 0.95;
}

.metric span:last-child {
    color: #e6f3ed;
    font-weight: 750;
}

.section {
    padding: 86px 0;
}

.section-light {
    background: var(--paper);
}

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

.split-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 28px;
}

.kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--green-800);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.section h2,
.trust-copy h2,
.detail-copy h2,
.page-hero h1 {
    margin: 0;
    color: var(--ink);
    font-size: 2.35rem;
    line-height: 1.12;
    font-weight: 900;
}

.section-head p,
.trust-copy p,
.detail-copy p,
.page-hero p,
.apps-copy p,
.about-grid p,
.devices-card p {
    color: var(--muted);
    max-width: 680px;
    font-size: 1rem;
}

.service-grid,
.category-grid,
.devices-grid,
.team-grid,
.value-grid,
.process-grid {
    display: grid;
    gap: 18px;
}

.service-grid {
    grid-template-columns: repeat(6, 1fr);
}

.home-service-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.home-service-grid .service-card {
    min-height: 242px;
    padding: 22px;
}

.home-service-grid .service-card h3 {
    margin-top: 26px;
    font-size: 0.96rem;
    line-height: 1.45;
}

.home-service-grid .service-card p {
    font-size: 0.84rem;
    line-height: 1.65;
}

.service-grid-large {
    grid-template-columns: repeat(3, 1fr);
}

.service-card,
.category-card,
.device-card,
.team-card,
.value-card,
.process-card {
    position: relative;
    min-height: 230px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.service-card:hover,
.category-card:hover,
.device-card:hover,
.team-card:hover,
.value-card:hover,
.process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 99, 57, 0.35);
    box-shadow: var(--shadow-soft);
}

.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--green-700);
    border: 1px solid rgba(18, 99, 57, 0.18);
    border-radius: var(--radius);
    background: var(--soft-green);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-num {
    position: absolute;
    top: 22px;
    right: 22px;
    color: var(--orange-600);
    font-weight: 900;
}

[dir="rtl"] .service-num {
    right: auto;
    left: 22px;
}

.service-card h3 {
    margin: 30px 0 10px;
    color: var(--ink);
    font-size: 1rem;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.trust-band {
    background:
        linear-gradient(135deg, rgba(7, 27, 19, 0.98), rgba(15, 74, 44, 0.96)),
        linear-gradient(45deg, rgba(25,167,199,0.16) 1px, transparent 1px);
    background-size: auto, 70px 70px;
    color: var(--paper);
}

.trust-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 44px;
    align-items: center;
    padding: 70px 0;
}

.trust-copy h2,
.trust-copy p {
    color: var(--paper);
}

.trust-copy .kicker,
.trust-items svg {
    color: #8ee4bd;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius);
    overflow: hidden;
}

.trust-items div {
    min-height: 175px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    border-inline-start: 1px solid rgba(255,255,255,0.18);
}

.trust-items div:first-child {
    border-inline-start: 0;
}

.trust-items svg {
    width: 34px;
    height: 34px;
}

.trust-items strong {
    font-size: 1rem;
}

.trust-items span {
    color: #bcd6ca;
    font-size: 0.84rem;
}

.compliance-row {
    background: rgba(255,255,255,0.95);
    color: var(--ink);
}

.compliance-row .wrap {
    min-height: 82px;
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    gap: 22px;
    padding: 16px 0;
}

.compliance-row span {
    color: var(--green-800);
    font-size: 0.82rem;
    font-weight: 900;
}

.compliance-row strong {
    color: #26352d;
    font-size: 0.9rem;
    line-height: 1.75;
}

.tabs {
    display: grid;
    gap: 18px;
}

.tab-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.tab-list button {
    min-height: 44px;
    border: 0;
    border-inline-start: 1px solid var(--line);
    background: var(--paper);
    color: var(--green-900);
    font-weight: 800;
    cursor: pointer;
}

.tab-list button:first-child {
    border-inline-start: 0;
}

.tab-list button.is-active {
    background: var(--green-800);
    color: var(--paper);
}

.partner-panel,
.logo-wall {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.partner-panel.is-active,
.logo-wall {
    display: grid;
}

.network-name {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--green-800);
}

.network-name svg {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    color: var(--orange-600);
}

.network-name strong {
    font-size: 0.98rem;
}

.network-disclaimer {
    margin: 0;
    padding: 16px 18px;
    border-inline-start: 3px solid var(--orange-500);
    background: #fff8ef;
    color: #5e4934;
    font-size: 0.9rem;
}
.apps-section {
    background: linear-gradient(135deg, #eef8f2, #ffffff 58%, #eaf8f9);
}

.apps-grid {
    display: grid;
    grid-template-columns: 1fr minmax(250px, 340px) 0.9fr;
    gap: 30px;
    align-items: center;
}

.apps-copy h2 {
    margin: 0;
    color: var(--green-900);
    font-size: 2.45rem;
    line-height: 1.12;
}

.device-showcase {
    min-height: 380px;
    position: relative;
}

.product-showcase {
    margin: 0;
    min-height: 0;
    display: grid;
    place-items: center;
}

.product-showcase img {
    width: auto;
    max-width: 100%;
    max-height: 227px;
    border-radius: var(--radius);
    object-fit: contain;
    box-shadow: 0 20px 46px rgba(18, 99, 57, 0.13);
}

.mini-phone,
.pos-terminal {
    position: absolute;
    border-radius: 24px;
    background: #f7fbf8;
    border: 8px solid #111;
    box-shadow: var(--shadow);
}

.mini-phone {
    left: 22px;
    top: 24px;
    width: 178px;
    height: 330px;
    padding: 24px 16px;
}

.mini-phone span,
.pos-terminal strong {
    color: var(--green-800);
    font-weight: 900;
}

.mini-phone strong {
    display: block;
    margin-top: 50px;
    color: var(--green-900);
    font-size: 3rem;
}

.pos-terminal {
    right: 36px;
    top: 44px;
    width: 170px;
    height: 310px;
    transform: rotate(8deg);
    padding: 28px 16px;
    background: linear-gradient(160deg, var(--paper), var(--soft-green));
}

.pos-terminal span {
    display: block;
    width: 54px;
    height: 34px;
    margin-bottom: 54px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--green-700), var(--orange-500));
}

.devices-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.9);
    box-shadow: var(--shadow-soft);
}

.devices-card h3 {
    margin: 0 0 8px;
}

.device-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 22px 0;
}

.device-mini-grid a {
    min-height: 92px;
    display: grid;
    place-items: center;
    gap: 8px;
    text-align: center;
    padding: 10px;
    color: var(--green-800);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    font-size: 0.78rem;
    font-weight: 800;
}

.page-hero {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(238,248,242,0.92)),
        linear-gradient(135deg, rgba(18,99,57,0.09) 1px, transparent 1px);
    background-size: auto, 58px 58px;
    border-bottom: 1px solid var(--line);
}

.page-hero-inner {
    padding: 84px 0 72px;
}

.breadcrumb {
    display: flex;
    gap: 9px;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.breadcrumb a {
    color: var(--green-800);
    font-weight: 800;
}

.page-hero h1 {
    max-width: 780px;
    font-size: 3.4rem;
}

.page-hero p {
    max-width: 760px;
    margin: 20px 0 0;
    font-size: 1.1rem;
}

.service-detail {
    padding: 82px 0;
    background: var(--soft);
}

.service-detail.detail-alt {
    background: var(--paper);
}

.detail-grid,
.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.detail-alt .detail-grid {
    grid-template-columns: 1.2fr 0.8fr;
}

.detail-alt .detail-visual {
    order: 2;
}

.detail-visual {
    min-height: 340px;
    display: grid;
    place-items: center;
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--soft-green), var(--paper));
}

.detail-visual svg {
    width: 110px;
    height: 110px;
    color: var(--green-700);
}

.detail-num {
    position: absolute;
    top: 22px;
    left: 22px;
    color: var(--orange-600);
    font-size: 3rem;
    font-weight: 900;
}

[dir="rtl"] .detail-num {
    left: auto;
    right: 22px;
}

.services-catalog {
    background: var(--paper);
}

.services-catalog-head {
    align-items: flex-end;
    margin-bottom: 34px;
}

.services-catalog-head .section-head {
    max-width: 790px;
}

.services-count {
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    display: grid;
    place-items: center;
    align-content: center;
    color: var(--green-800);
    border: 1px solid rgba(18, 99, 57, 0.18);
    border-radius: 50%;
    background: var(--soft-green);
    box-shadow: var(--shadow-soft);
    line-height: 1.1;
    text-align: center;
}

.services-count strong {
    display: block;
    color: var(--orange-600);
    font-size: 2rem;
    font-weight: 900;
}

.services-count span {
    display: block;
    margin-top: 5px;
    font-size: 0.75rem;
    font-weight: 800;
}

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

.service-showcase-card {
    min-width: 0;
    min-height: 410px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) * 2);
    background: var(--paper);
    box-shadow: 0 10px 28px rgba(7, 27, 19, 0.045);
    transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.service-showcase-card:hover,
.service-showcase-card:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(18, 99, 57, 0.36);
    box-shadow: var(--shadow-soft);
}

.service-showcase-card:focus-visible {
    outline: 3px solid rgba(233, 121, 19, 0.38);
    outline-offset: 3px;
}

.service-showcase-media {
    position: relative;
    aspect-ratio: 3 / 2;
    display: block;
    overflow: hidden;
    background: var(--soft-green);
}

.service-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms var(--ease);
}

.service-showcase-card:hover .service-showcase-media img,
.service-showcase-card:focus-visible .service-showcase-media img {
    transform: scale(1.035);
}

.service-showcase-body {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px;
}

.service-showcase-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-showcase-meta .service-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
}

.service-showcase-meta .service-icon svg {
    width: 23px;
    height: 23px;
}

.service-showcase-meta .service-num {
    position: static;
    margin-inline-start: auto;
    color: var(--orange-600);
    font-size: 0.88rem;
}

.service-showcase-card h3 {
    margin: 18px 0 9px;
    color: var(--green-900);
    font-size: 1rem;
    line-height: 1.45;
}

.service-card-summary {
    flex: 1;
    display: block;
    color: var(--muted);
    font-size: 0.83rem;
    line-height: 1.67;
}

.service-showcase-link {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
    padding-top: 14px;
    color: var(--green-800);
    border-top: 1px solid var(--line);
    font-size: 0.78rem;
    font-weight: 900;
}

.service-showcase-link svg {
    width: 17px;
    height: 17px;
}

.service-detail-rich {
    padding: 96px 0;
    scroll-margin-top: 84px;
    overflow: clip;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    gap: 72px;
    align-items: center;
}

.service-detail-rich.detail-alt .service-detail-grid {
    grid-template-columns: minmax(0, 0.97fr) minmax(0, 1.03fr);
}

.service-detail-rich.detail-alt .service-detail-media {
    order: 2;
}

.service-detail-media {
    position: relative;
    min-width: 0;
    margin: 0;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border: 1px solid rgba(18, 99, 57, 0.16);
    border-radius: calc(var(--radius) * 2.25);
    background: var(--soft-green);
    box-shadow: 0 24px 60px rgba(7, 27, 19, 0.14);
}

.service-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-image-badge {
    position: absolute;
    inset-inline-end: 18px;
    bottom: 18px;
    min-width: 94px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 10px 15px;
    color: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(7, 27, 19, 0.88);
    box-shadow: 0 12px 30px rgba(7, 27, 19, 0.22);
    backdrop-filter: blur(12px);
}

.service-image-badge span,
.service-image-badge svg {
    width: 24px;
    height: 24px;
}

.service-image-badge strong {
    color: #ff9d3f;
    font-size: 0.95rem;
}

.service-detail-copy {
    min-width: 0;
    max-width: 590px;
}

.service-detail-label {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
}

.service-detail-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    color: var(--green-700);
    border: 1px solid rgba(18, 99, 57, 0.18);
    border-radius: 13px;
    background: var(--soft-green);
}

.service-detail-icon svg {
    width: 25px;
    height: 25px;
}

.service-detail-copy h2 {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(2.1rem, 3.2vw, 3.25rem);
    line-height: 1.16;
    letter-spacing: -0.035em;
}

[dir="rtl"] .service-detail-copy h2 {
    letter-spacing: 0;
    line-height: 1.32;
}

.service-detail-copy .service-lead {
    max-width: 590px;
    margin: 19px 0 0;
    color: var(--green-800);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.75;
}

.service-detail-copy .service-description {
    max-width: 590px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.82;
}

.service-capabilities {
    margin-top: 28px;
}

.service-capabilities h3 {
    margin: 0 0 13px;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 900;
}

.service-feature-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    margin: 0;
}

.service-feature-grid li {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 12px 13px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 750;
    line-height: 1.55;
}

.detail-alt .service-feature-grid li {
    background: var(--soft);
}

.service-feature-grid svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 1px;
    color: var(--green-700);
}

.service-detail-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
}

.service-detail-actions .text-link svg,
.service-showcase-link svg {
    transition: transform 180ms var(--ease);
}

.service-detail-actions .text-link:hover svg,
.service-showcase-card:hover .service-showcase-link svg {
    transform: translateX(3px);
}

[dir="rtl"] .service-detail-actions .text-link:hover svg,
[dir="rtl"] .service-showcase-card:hover .service-showcase-link svg {
    transform: rotate(180deg) translateX(3px);
}

.services-process {
    border-top: 1px solid var(--line);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 700;
}

.check-list svg {
    color: var(--green-700);
    flex: 0 0 auto;
}

.process-section,
.timeline-section,
.partner-wall {
    background: var(--soft);
}

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

.process-card {
    min-height: 190px;
}

.process-card span {
    color: var(--orange-600);
    font-weight: 900;
}

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

.category-card ul,
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 9px;
}

.category-card li {
    color: var(--muted);
}

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

.device-card {
    min-height: 180px;
    display: grid;
    align-content: center;
    gap: 10px;
    color: var(--green-800);
}

.device-card svg {
    width: 38px;
    height: 38px;
}

.device-card span {
    color: var(--muted);
}

.device-card small {
    color: var(--orange-600);
    font-weight: 850;
}

.trust-mini {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.trust-mini span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green-800);
    font-weight: 850;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.about-stats div {
    min-height: 150px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.about-stats strong {
    display: block;
    color: var(--orange-600);
    font-size: 2.4rem;
}

.about-stats span {
    color: var(--muted);
    font-weight: 800;
}

.about-vision {
    padding: 76px 0;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.vision-grid article {
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--radius);
}

.vision-grid svg {
    color: #8ee4bd;
    width: 42px;
    height: 42px;
}

.vision-grid h2,
.vision-grid p {
    color: var(--paper);
}

.value-grid {
    grid-template-columns: repeat(5, 1fr);
}

.value-card {
    min-height: 138px;
    display: grid;
    align-content: center;
    gap: 12px;
    color: var(--green-800);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.timeline-item {
    min-height: 132px;
    padding: 22px;
    border-radius: var(--radius);
    background: var(--paper);
    border: 1px solid var(--line);
}

.timeline-item strong {
    display: block;
    color: var(--orange-600);
    font-size: 1.55rem;
}

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

.team-card {
    min-height: 188px;
}

.team-card > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--green-800);
    color: var(--paper);
    font-weight: 900;
}

.team-card p {
    color: var(--muted);
}

.contact-section {
    padding-top: 72px;
}

.contact-grid {
    align-items: start;
    grid-template-columns: 0.8fr 1.2fr;
}

.contact-info-card,
.contact-form-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.contact-info-card h2,
.contact-form-card h2 {
    margin-top: 0;
}

.contact-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.contact-row svg {
    color: var(--green-700);
    width: 24px;
    height: 24px;
}

.contact-row div {
    display: grid;
    gap: 4px;
}

.contact-row span,
.contact-row a {
    color: var(--muted);
}

form {
    display: grid;
    gap: 18px;
}

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

label {
    display: grid;
    gap: 8px;
    color: var(--green-900);
    font-weight: 850;
}

input,
select,
textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--soft);
    outline: none;
    transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green-700);
    box-shadow: 0 0 0 4px rgba(18, 99, 57, 0.12);
}

.honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.form-alert {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: var(--radius);
    margin-bottom: 18px;
}

.form-alert[hidden] {
    display: none;
}

.form-alert.success {
    color: var(--green-900);
    border: 1px solid rgba(18, 99, 57, 0.25);
    background: var(--soft-green);
}

.form-alert.error {
    color: #842c00;
    border: 1px solid rgba(233, 121, 19, 0.28);
    background: #fff3e7;
}

.closing-cta {
    background: linear-gradient(135deg, var(--green-800), var(--green-600));
    color: var(--paper);
}

.closing-inner {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.closing-inner h2 {
    margin: 0;
    font-size: 1.85rem;
}

.closing-inner p {
    margin: 8px 0 0;
    color: #e6f3ed;
}

.site-footer {
    color: #d9e7de;
    background: var(--green-950);
    padding: 58px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 1fr 0.8fr 1fr;
    gap: 36px;
}

.footer-brand p,
.site-footer li,
.site-footer a {
    color: #aebfb5;
}

.site-footer h3 {
    margin: 0;
    color: var(--paper);
    font-size: 1rem;
}

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

.footer-service-list li {
    min-width: 0;
}

.footer-service-list a {
    display: inline-block;
    line-height: 1.45;
}

.footer-logo .brand-text strong {
    color: var(--paper);
}

.social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.social-row a {
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius);
    color: var(--paper);
    font-size: 0.82rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: #aebfb5;
    font-size: 0.88rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.skip-link {
    position: fixed;
    inset-inline-start: 18px;
    top: 10px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: var(--radius);
    background: var(--green-900);
    color: var(--paper);
    font-weight: 800;
    transform: translateY(-140%);
    transition: transform 160ms var(--ease);
}

.skip-link:focus {
    transform: translateY(0);
}

:where(a, button, input, select, textarea):focus-visible {
    outline: 3px solid var(--orange-500);
    outline-offset: 3px;
}

main:focus {
    outline: none;
}

.btn-quiet {
    background: transparent;
    color: var(--green-800);
    border-color: var(--line);
}

.btn-quiet:hover {
    background: var(--soft-green);
    border-color: var(--green-700);
}

.brand-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 8px 12px;
    border: 1px solid #cce2d4;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--green-800);
    box-shadow: var(--shadow-soft);
}

.brand-eyebrow strong {
    font-weight: 900;
}

.brand-eyebrow span {
    color: var(--orange-600);
    font-size: 0.82em;
    font-weight: 750;
}

.hero-note {
    font-weight: 750;
}

.compact-store-links a {
    flex: 1 1 165px;
}

.store-copy strong {
    line-height: 1.3;
}

.facts-band .metric {
    grid-template-columns: auto 1fr;
    gap: 16px;
}

.facts-band .metric svg {
    grid-row: auto;
    width: 38px;
    height: 38px;
}

.facts-band .metric strong {
    align-self: center;
    color: var(--paper);
    font-size: 1rem;
    line-height: 1.5;
}

.trust-copy p + p,
.security-card p + p {
    margin-top: 14px;
}

.category-icon,
.directory-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: var(--radius);
    background: var(--soft-green);
    color: var(--green-800);
}

.category-icon svg,
.directory-icon svg {
    width: 24px;
    height: 24px;
}

.network-directory {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.directory-group {
    min-height: 132px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.directory-group .directory-icon {
    margin: 0;
}

.directory-group p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.network-governance,
.device-safety,
.governance-section,
.operating-model {
    background: var(--soft);
}

.identity-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}

.identity-card img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    grid-row: span 2;
}

.identity-card div {
    display: grid;
    gap: 4px;
}

.identity-card strong {
    color: var(--green-800);
    font-size: 1.35rem;
}

.identity-card span {
    color: var(--orange-600);
    font-weight: 800;
}

.identity-card p {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.about-value-grid {
    grid-template-columns: repeat(4, 1fr);
}

.about-value-grid .value-card {
    grid-template-columns: auto 1fr;
    align-items: start;
}

.about-value-grid .value-card svg {
    width: 28px;
    height: 28px;
}

.about-value-grid .value-card p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.security-card {
    align-self: stretch;
}

.security-card p {
    font-size: 0.9rem;
}

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

.form-privacy-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.form-privacy-note a {
    color: var(--green-800);
    text-decoration: underline;
    text-underline-offset: 3px;
}

[hidden] {
    display: none !important;
}
@media (max-width: 1120px) {
    .header-actions .btn {
        display: none;
    }

    .hero-grid,
    .apps-grid,
    .trust-grid,
    .detail-grid,
    .detail-alt .detail-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .detail-alt .detail-visual {
        order: 0;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero h1 {
        font-size: 3rem;
    }

    [dir="rtl"] .hero h1 {
        font-size: 2.9rem;
    }

    .hero-media {
        min-height: 600px;
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
    }

    .service-grid,
    .service-grid-large {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-items,
    .metrics-grid,
    .devices-grid,
    .value-grid,
    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .apps-grid {
        align-items: stretch;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .wrap {
        width: min(calc(100% - 28px), var(--wrap));
    }

    .header-inner {
        min-height: 70px;
    }

    .nav-toggle {
        display: inline-flex;
        margin-inline-start: auto;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        min-height: 44px;
    }

    .header-actions {
        margin-inline-start: 0;
    }

    .brand {
        gap: 7px;
    }

    .brand-mark {
        width: 50px;
        height: 50px;
    }

    .brand-text {
        display: flex;
    }

    .brand-text strong {
        font-size: 0.88rem;
    }

    .brand-text span {
        font-size: 0.64rem;
    }

    .hero-grid {
        padding: 42px 0;
        gap: 32px;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-lead {
        font-size: 1.05rem;
    }

    .hero-media {
        min-height: 590px;
        max-width: 680px;
    }

    .merchant-photo {
        position: absolute;
        width: 88%;
        height: 350px;
        top: 22px;
    }

    .phone-mock {
        position: absolute;
        top: 48px;
        width: 240px;
        margin: 0;
    }

    .metrics-grid,
    .metrics-grid.three,
    .service-grid,
    .service-grid-large,
    .trust-items,
    .partner-panel,
    .logo-wall,
    .category-grid,
    .devices-grid,
    .process-grid,
    .team-grid,
    .value-grid,
    .vision-grid,
    .about-stats,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .metric,
    .trust-items div {
        border-inline-start: 0;
        border-top: 1px solid rgba(255,255,255,0.18);
    }

    .metric:first-child,
    .trust-items div:first-child {
        border-top: 0;
    }

    .split-head,
    .closing-inner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .section,
    .service-detail {
        padding: 58px 0;
    }

    .section h2,
    .trust-copy h2,
    .detail-copy h2,
    .page-hero h1,
    .apps-copy h2 {
        font-size: 2rem;
    }

    .page-hero-inner {
        padding: 58px 0 52px;
    }

    .tab-list {
        display: flex;
        overflow-x: auto;
    }

    .tab-list button {
        min-width: 170px;
    }

    .device-showcase {
        min-height: 430px;
    }

    .product-showcase img {
        max-height: 420px;
    }

    .compliance-row .wrap {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .mini-phone {
        left: 0;
    }

    .pos-terminal {
        right: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-actions,
    .store-links {
        flex-direction: column;
    }

    .store-links a,
    .btn {
        width: 100%;
    }

    .metric strong {
        font-size: 2.1rem;
    }

    .phone-mock {
        border-width: 8px;
        min-height: 0;
        width: 210px;
        top: 52px;
    }

    .mini-phone,
    .pos-terminal {
        transform: none;
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        margin: 0 auto 18px;
    }

    .device-showcase,
    .product-showcase {
        min-height: auto;
    }

    .product-showcase img {
        max-height: 380px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 820px) {
    .hero-grid {
        padding-top: 34px;
    }

    .hero h1 {
        font-size: clamp(2.15rem, 9vw, 2.75rem);
        line-height: 1.18;
    }

    [dir="rtl"] .hero h1 {
        font-size: clamp(2.05rem, 8.6vw, 2.65rem);
    }

    .hero-media {
        min-height: 590px;
    }

    .facts-band .metric {
        min-height: 104px;
        border-top: 1px solid rgba(255,255,255,0.18);
    }

    .facts-band .metric:first-child {
        border-top: 0;
    }

    .network-directory,
    .about-value-grid {
        grid-template-columns: 1fr;
    }

    .directory-group {
        min-height: auto;
    }

    .identity-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .identity-card img {
        grid-row: auto;
        margin: 0 auto;
    }

    .identity-card p {
        grid-column: auto;
    }

    .form-row {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .brand-eyebrow {
        font-size: 0.82rem;
    }

    .hero-actions .btn,
    .compact-store-links a {
        width: 100%;
    }

    .merchant-photo {
        height: 280px;
        width: 92%;
    }

    .hero-media {
        min-height: 540px;
    }

    .phone-mock {
        min-height: 0;
        width: 210px;
        top: 52px;
    }

    .directory-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1120px) {
    .service-showcase-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-detail-grid,
    .service-detail-rich.detail-alt .service-detail-grid {
        gap: 48px;
    }
}

@media (max-width: 980px) {
    .service-detail-grid,
    .service-detail-rich.detail-alt .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-rich.detail-alt .service-detail-media {
        order: 0;
    }

    .service-detail-media,
    .service-detail-copy {
        width: 100%;
        max-width: 760px;
        margin-inline: auto;
    }
}

@media (max-width: 820px) {
    .services-catalog-head {
        align-items: flex-start;
    }

    .services-count {
        width: 84px;
        height: 84px;
        flex-basis: 84px;
    }

    .service-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-rich {
        padding: 68px 0;
    }

    .service-detail-grid,
    .service-detail-rich.detail-alt .service-detail-grid {
        gap: 34px;
    }

    .service-feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .services-catalog-head {
        margin-bottom: 24px;
    }

    .services-count {
        display: none;
    }

    .service-showcase-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .service-showcase-card {
        min-height: 0;
        display: grid;
        grid-template-columns: 126px minmax(0, 1fr);
    }

    .service-showcase-media {
        height: 100%;
        min-height: 220px;
        aspect-ratio: auto;
    }

    .service-showcase-body {
        padding: 15px;
    }

    .service-showcase-meta .service-icon {
        width: 40px;
        height: 40px;
    }

    .service-showcase-card h3 {
        margin-top: 12px;
        font-size: 0.94rem;
    }

    .service-card-summary {
        font-size: 0.78rem;
        line-height: 1.58;
    }

    .service-showcase-link {
        margin-top: 12px;
        padding-top: 11px;
        font-size: 0.73rem;
    }

    .service-detail-media {
        border-radius: calc(var(--radius) * 1.5);
    }

    .service-image-badge {
        inset-inline-end: 12px;
        bottom: 12px;
        min-height: 44px;
        padding: 8px 13px;
    }

    .service-detail-copy h2 {
        font-size: 2rem;
    }

    .service-detail-copy .service-lead {
        font-size: 1rem;
    }

    .service-detail-actions {
        align-items: stretch;
        flex-direction: column;
    }
}

/* About page */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.about-hero {
    padding: 56px 0 78px;
    overflow: hidden;
    background: var(--soft);
    border-bottom: 1px solid var(--line);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 64px;
    align-items: center;
}

.about-hero-copy .breadcrumb {
    margin-bottom: 28px;
}

.about-hero-copy .brand-eyebrow {
    margin-bottom: 22px;
}

.about-hero-copy h1 {
    max-width: 690px;
    margin: 0;
    color: var(--green-900);
    font-size: clamp(2.9rem, 5vw, 4.65rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

[dir="rtl"] .about-hero-copy h1 {
    letter-spacing: 0;
}

.about-hero-copy > p {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.85;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.about-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin: 26px 0 0;
    padding: 22px 0 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.about-trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-800);
    font-size: 0.83rem;
    font-weight: 800;
}

.about-trust-list svg {
    width: 19px;
    height: 19px;
    color: var(--orange-600);
}

.about-hero-media,
.about-map-card,
.about-model-media {
    position: relative;
    margin: 0;
}

.about-hero-media {
    min-height: 540px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--green-900);
    box-shadow: var(--shadow);
}

.about-hero-media picture,
.about-hero-media img {
    width: 100%;
    height: 100%;
}

.about-hero-media img {
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.about-image-note {
    position: absolute;
    inset-inline-start: 20px;
    bottom: 20px;
    width: min(420px, calc(100% - 40px));
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.about-image-note-icon,
.about-card-icon,
.about-network-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    color: var(--green-700);
    background: var(--green-100);
}

.about-image-note-icon {
    color: var(--paper);
    background: var(--green-800);
}

.about-image-note svg,
.about-card-icon svg,
.about-network-icon svg {
    width: 24px;
    height: 24px;
}

.about-image-note > span:last-child {
    display: grid;
    gap: 3px;
}

.about-image-note strong {
    color: var(--green-900);
    font-size: 0.96rem;
}

.about-image-note small {
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.55;
}

.about-story-grid,
.about-coverage-grid,
.about-model-grid {
    display: grid;
    align-items: center;
    gap: 72px;
}

.about-story-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.about-story-copy h2,
.about-coverage-copy h2,
.about-model-copy h2,
.about-branches-head h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.16;
    font-weight: 900;
}

.about-story-copy p,
.about-coverage-copy > p,
.about-branches-head p {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.9;
}

.about-value-stack {
    display: grid;
    gap: 14px;
}

.about-value-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 21px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--soft);
}

.about-value-card:nth-child(2) .about-card-icon,
.about-coverage-points article:nth-child(2) .about-card-icon {
    color: var(--orange-600);
    background: #fff2e5;
}

.about-value-card h3,
.about-coverage-points h3,
.about-model-step h3 {
    margin: 0;
    color: var(--green-900);
    font-size: 1rem;
}

.about-value-card p,
.about-coverage-points p,
.about-model-step p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

.about-scale-section {
    color: var(--paper);
    background: var(--green-900);
}

.about-section-head {
    max-width: 790px;
}

.about-scale-section .kicker {
    color: #8ee4bd;
}

.about-scale-section .about-section-head h2,
.about-scale-section .about-section-head p {
    color: var(--paper);
}

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

.about-metric-card {
    min-height: 278px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.about-metric-card .about-card-icon {
    color: var(--green-900);
    background: #8ee4bd;
}

.about-metric-number {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-top: 30px;
    color: var(--paper);
}

.about-metric-number bdi {
    font-size: clamp(2.35rem, 4vw, 3.45rem);
    font-weight: 900;
    line-height: 1;
}

.about-metric-number span {
    color: #8ee4bd;
    font-size: 0.95rem;
    font-weight: 900;
}

.about-metric-card h3 {
    margin: 14px 0 0;
    color: var(--paper);
    font-size: 1rem;
}

.about-metric-card p {
    margin: 8px 0 0;
    color: #d7e8df;
    font-size: 0.82rem;
    line-height: 1.7;
}

.about-data-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 22px;
    margin-bottom: 0;
    color: #c6dcd1;
    font-size: 0.78rem;
}

.about-data-note svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: #8ee4bd;
}

.about-network-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr) 46px minmax(0, 1fr) 46px minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-network-node {
    min-height: 258px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}

.about-network-node:nth-of-type(7) {
    border-color: #bfdacb;
    background: var(--soft-green);
}

.about-network-node strong {
    display: block;
    margin-top: 28px;
    color: var(--orange-600);
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
}

.about-network-node h3 {
    margin: 13px 0 0;
    color: var(--green-900);
    font-size: 0.96rem;
}

.about-network-node p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.65;
}

.about-network-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
}

.about-network-connector svg {
    width: 24px;
    height: 24px;
}

[dir="rtl"] .about-network-connector svg {
    transform: rotate(180deg);
}

.about-coverage-section {
    background: var(--soft-green);
}

.about-coverage-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.about-map-card {
    overflow: hidden;
    border: 1px solid #cfe2d7;
    border-radius: 18px;
    background: #f5ead5;
    box-shadow: var(--shadow);
}

.about-map-stage {
    position: relative;
    isolation: isolate;
    background: #f5ead5;
}

.about-map-stage picture {
    display: block;
}

.about-map-card img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.about-map-markers {
    position: absolute;
    z-index: 3;
    inset: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    pointer-events: none;
}

.about-map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.about-map-marker button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 4px 8px 4px 5px;
    color: var(--green-900);
    font: inherit;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(7, 95, 55, 0.34);
    border-radius: 999px;
    box-shadow: 0 7px 18px rgba(5, 57, 34, 0.17);
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.about-map-marker button:hover,
.about-map-marker button:focus-visible {
    z-index: 5;
    border-color: var(--orange-600);
    box-shadow: 0 9px 22px rgba(5, 57, 34, 0.22);
    transform: translateY(-2px);
    outline: 3px solid rgba(236, 114, 20, 0.2);
    outline-offset: 2px;
}

.about-marker-rank {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    color: var(--paper);
    background: var(--green-700);
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 0.65rem;
    font-weight: 900;
}

.about-marker-value {
    min-width: 36px;
    font-family: Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    white-space: nowrap;
}

.about-marker-tooltip {
    position: absolute;
    z-index: 8;
    bottom: calc(100% + 9px);
    left: 50%;
    display: grid;
    gap: 2px;
    width: max-content;
    max-width: 220px;
    padding: 9px 11px;
    color: var(--paper);
    text-align: start;
    background: var(--green-900);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(3, 39, 23, 0.24);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 5px);
    transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
    pointer-events: none;
}

.about-marker-tooltip::after {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top-color: var(--green-900);
    content: ";
    transform: translateX(-50%);
}

.about-marker-tooltip strong {
    font-size: 0.78rem;
    line-height: 1.45;
}

.about-marker-tooltip small {
    color: #cfe9dc;
    font-size: 0.68rem;
    line-height: 1.4;
}

.about-map-marker button:hover .about-marker-tooltip,
.about-map-marker button:focus-visible .about-marker-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.about-map-marker.is-alexandria { top: 12%; left: 33%; }
.about-map-marker.is-dakahlia { top: 9%; left: 59%; }
.about-map-marker.is-sharqia { top: 19%; left: 73%; }
.about-map-marker.is-beheira { top: 24%; left: 36%; }
.about-map-marker.is-gharbia { top: 19%; left: 51%; }
.about-map-marker.is-monufia { top: 29%; left: 46%; }
.about-map-marker.is-qalyubia { top: 31%; left: 64%; }
.about-map-marker.is-cairo-group { top: 40%; left: 61%; }
.about-map-marker.is-minya { top: 57%; left: 55%; }
.about-map-marker.is-sohag { top: 74%; left: 61%; }

.about-map-marker.is-alexandria .about-marker-tooltip,
.about-map-marker.is-dakahlia .about-marker-tooltip,
.about-map-marker.is-sharqia .about-marker-tooltip {
    top: calc(100% + 9px);
    bottom: auto;
}

.about-map-marker.is-alexandria .about-marker-tooltip::after,
.about-map-marker.is-dakahlia .about-marker-tooltip::after,
.about-map-marker.is-sharqia .about-marker-tooltip::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: var(--green-900);
}

.about-map-card figcaption {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 16px 18px;
    color: var(--muted);
    background: var(--paper);
    border-top: 1px solid var(--line);
    font-size: 0.78rem;
    line-height: 1.6;
}

.about-map-card figcaption svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--orange-600);
}

.about-map-card figcaption span {
    display: grid;
    gap: 3px;
}

.about-map-card figcaption strong {
    color: var(--green-900);
    font-size: 0.78rem;
}

.about-map-card figcaption small {
    color: var(--muted);
    font-size: 0.71rem;
}

.about-map-mobile-cards {
    display: none;
}

.about-map-instruction {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 13px !important;
    padding: 8px 11px;
    color: var(--green-800) !important;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #cfe2d7;
    border-radius: 8px;
    font-size: 0.78rem !important;
    font-weight: 800;
    line-height: 1.5 !important;
}

.about-map-instruction svg {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    color: var(--orange-600);
}

.about-coverage-points {
    display: grid;
    gap: 13px;
    margin: 28px 0 24px;
}

.about-coverage-points article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 15px 0;
    border-bottom: 1px solid #cfe2d7;
}

.about-coverage-points article:last-child {
    border-bottom: 0;
}

.about-coverage-points .about-card-icon {
    width: 42px;
    height: 42px;
}

.about-coverage-points .about-card-icon svg {
    width: 21px;
    height: 21px;
}

.about-model-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
}

.about-model-steps {
    display: grid;
    gap: 12px;
}

.about-model-step {
    display: grid;
    grid-template-columns: 38px 48px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
}

.about-model-number {
    color: var(--orange-600);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 48px;
}

.about-model-media {
    min-height: 690px;
    overflow: hidden;
    border-radius: 18px;
    background: var(--green-900);
    box-shadow: var(--shadow);
}

.about-model-media picture,
.about-model-media img {
    width: 100%;
    height: 100%;
}

.about-model-media img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: 62% center;
}

.about-model-badges {
    position: absolute;
    inset-inline: 18px;
    bottom: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.about-model-badges span {
    display: grid;
    gap: 3px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 11px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    font-size: 0.76rem;
    font-weight: 800;
}

.about-model-badges strong {
    color: var(--green-800);
    font-size: 1.65rem;
}

.about-structure-section {
    background: var(--soft);
}

.about-leadership-catalog,
.about-leadership-tier {
    display: grid;
    gap: 24px;
}

.about-leadership-catalog {
    gap: 42px;
}

.about-tier-title {
    margin: 0;
    padding-bottom: 13px;
    color: var(--green-800);
    border-bottom: 1px solid #c9d8d0;
    font-size: 0.84rem;
    font-weight: 900;
}

.about-executive-grid,
.about-management-grid {
    display: grid;
    gap: 16px;
}

.about-executive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.about-leader-card {
    min-height: 260px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}

.about-leader-card.is-executive {
    min-height: 285px;
    color: var(--paper);
    background: var(--green-900);
    border-color: var(--green-900);
    box-shadow: var(--shadow);
}

.about-leader-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    color: var(--green-800);
    background: var(--green-100);
}

.about-leader-icon svg {
    width: 27px;
    height: 27px;
}

.is-executive .about-leader-icon {
    color: var(--green-900);
    background: #8ee4bd;
}

.about-leader-copy {
    min-width: 0;
}

.about-leader-role {
    display: block;
    color: var(--orange-600);
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1.55;
}

.is-executive .about-leader-role {
    color: #8ee4bd;
}

.about-leader-card h4 {
    margin: 7px 0 0;
    color: var(--green-900);
    font-size: 1.2rem;
    line-height: 1.35;
}

.about-leader-card p {
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.78;
}

.is-executive h4 {
    color: var(--paper);
    font-size: 1.35rem;
}

.is-executive p {
    color: #d7e8df;
}

.about-branches-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 42px;
    align-items: end;
    margin-bottom: 32px;
}

.about-branches-head > div:first-child {
    max-width: 820px;
}

.about-branch-count {
    width: 174px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 18px;
    border: 1px solid #c8ded1;
    border-radius: 15px;
    color: var(--green-800);
    background: var(--soft-green);
    text-align: center;
}

.about-branch-count strong {
    color: var(--orange-600);
    font-size: 3.7rem;
    line-height: 1;
}

.about-branch-count span {
    font-size: 0.78rem;
    font-weight: 850;
}

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

.about-branch-card {
    min-height: 390px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--paper);
}

.about-branch-primary {
    border-top: 4px solid var(--green-700);
}

.about-branch-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.about-verified,
.about-directory-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--green-800);
    background: var(--green-100);
    font-size: 0.72rem;
    font-weight: 850;
}

.about-branch-city {
    display: block;
    margin-top: 26px;
    color: var(--orange-600);
    font-size: 0.76rem;
    font-weight: 900;
}

.about-branch-card h3 {
    margin: 5px 0 0;
    color: var(--green-900);
    font-size: 1.45rem;
}

.about-branch-card address {
    max-width: 520px;
    margin-top: 15px;
    color: var(--muted);
    font-style: normal;
    line-height: 1.75;
}

.about-branch-card ul {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.about-branch-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--green-800);
    font-size: 0.82rem;
    font-weight: 750;
}

.about-branch-card li svg {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    margin-top: 2px;
    color: var(--orange-600);
}

.about-nearest-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: var(--paper);
    background: var(--green-900);
    border-color: var(--green-900);
}

.about-nearest-card .about-directory-status {
    color: var(--green-900);
    background: #8ee4bd;
}

.about-directory-status svg {
    width: 16px;
    height: 16px;
}

.about-nearest-card h3 {
    margin-top: 28px;
    color: var(--paper);
    font-size: 1.75rem;
}

.about-nearest-card p {
    max-width: 580px;
    margin: 13px 0 0;
    color: #d7e8df;
}

.about-branch-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 28px;
}

.about-nearest-card .btn-outline {
    color: var(--paper);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 1180px) {
    .about-hero-grid,
    .about-story-grid,
    .about-coverage-grid,
    .about-model-grid {
        gap: 42px;
    }

    .about-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .about-hero-grid,
    .about-story-grid,
    .about-coverage-grid,
    .about-model-grid,
    .about-branches-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding-top: 42px;
    }

    .about-hero-copy h1 {
        max-width: 800px;
    }

    .about-hero-media {
        min-height: 520px;
    }

    .about-story-grid {
        align-items: start;
    }

    .about-network-flow {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-network-connector {
        min-height: 42px;
    }

    .about-network-connector svg,
    [dir="rtl"] .about-network-connector svg {
        transform: rotate(90deg);
    }

    .about-network-node {
        min-height: 0;
    }

    .about-model-media {
        min-height: 580px;
    }

    .about-management-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .about-hero {
        padding: 30px 0 48px;
    }

    .about-hero-grid {
        gap: 32px;
    }

    .about-hero-copy .breadcrumb {
        margin-bottom: 20px;
    }

    .about-hero-copy h1 {
        font-size: 2.42rem;
        line-height: 1.13;
    }

    .about-hero-copy > p {
        margin-top: 18px;
        font-size: 0.98rem;
    }

    .about-hero-actions,
    .about-branch-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .about-hero-actions .btn,
    .about-branch-actions .btn {
        width: 100%;
    }

    .about-trust-list {
        display: grid;
        gap: 11px;
    }

    .about-hero-media {
        min-height: 0;
        overflow: visible;
        background: transparent;
        box-shadow: none;
    }

    .about-hero-media img {
        position: static;
        aspect-ratio: 4 / 3;
        border-radius: 15px;
    }

    .about-image-note {
        position: static;
        width: calc(100% - 20px);
        margin: -24px auto 0;
    }

    .about-story-grid,
    .about-coverage-grid,
    .about-model-grid {
        gap: 34px;
    }

    .about-metric-grid,
    .about-executive-grid,
    .about-management-grid {
        grid-template-columns: 1fr;
    }

    .about-metric-card {
        min-height: 0;
    }

    .about-network-node {
        padding: 22px;
    }

    .about-map-card,
    .about-model-media {
        border-radius: 14px;
    }

    .about-map-card img {
        aspect-ratio: 4 / 3;
    }

    .about-map-marker button {
        min-width: 31px;
        min-height: 31px;
        gap: 4px;
        padding: 2px 5px 2px 2px;
    }

    .about-marker-rank {
        width: 25px;
        height: 25px;
        font-size: 0.61rem;
    }

    .about-marker-value {
        display: inline;
        min-width: 0;
        font-size: 0.56rem;
    }

    .about-marker-tooltip {
        max-width: 180px;
    }

    .about-map-mobile-cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin: 0;
        padding: 12px;
        color: var(--green-900);
        background: var(--paper);
        border-top: 1px solid var(--line);
        list-style: none;
    }

    .about-map-mobile-cards li {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 8px;
        align-items: center;
        min-width: 0;
        padding: 9px;
        background: var(--soft-green);
        border: 1px solid #d7e7df;
        border-radius: 9px;
    }

    .about-mobile-rank {
        display: grid;
        place-items: center;
        width: 27px;
        height: 27px;
        color: var(--paper);
        background: var(--green-700);
        border-radius: 50%;
        font-family: Arial, sans-serif;
        font-size: 0.63rem;
        font-weight: 900;
    }

    .about-map-mobile-cards li > span:last-child {
        display: grid;
        min-width: 0;
    }

    .about-map-mobile-cards strong {
        overflow: hidden;
        font-size: 0.7rem;
        line-height: 1.4;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .about-map-mobile-cards small {
        color: var(--orange-600);
        font-family: Arial, sans-serif;
        font-size: 0.69rem;
        font-weight: 900;
    }

    .about-model-media {
        min-height: 510px;
    }

    .about-model-step {
        grid-template-columns: 34px 44px minmax(0, 1fr);
        padding: 14px;
    }

    .about-model-step .about-card-icon {
        width: 44px;
        height: 44px;
    }

    .about-model-number {
        line-height: 44px;
    }

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

    .about-leader-card,
    .about-leader-card.is-executive {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .about-branches-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .about-branch-count {
        width: 100%;
        min-height: 120px;
        flex-direction: row;
    }

    .about-branch-count strong {
        font-size: 3rem;
    }

    .about-branch-card {
        min-height: 0;
        padding: 22px;
    }

    .about-directory-status {
        align-items: flex-start;
        border-radius: 11px;
    }
}

@media (max-width: 480px) {
    .about-map-mobile-cards {
        grid-template-columns: 1fr;
    }

    .about-map-card figcaption {
        padding: 13px;
    }
}

.about-governorate-directory {
    margin-top: 38px;
    padding: 28px;
    border: 1px solid #cfe2d7;
    border-radius: 16px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}

.about-directory-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.about-directory-head > div:first-child {
    max-width: 780px;
}

.about-directory-head h3 {
    margin: 0;
    color: var(--green-900);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.3;
}

.about-directory-head p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.75;
}

.about-directory-count {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 999px;
    color: var(--green-800);
    background: var(--green-100);
    font-size: 0.75rem;
    font-weight: 850;
}

.about-directory-count svg {
    width: 18px;
    height: 18px;
    color: var(--orange-600);
}

.about-governorate-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.about-governorate-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 7px 10px;
    align-items: center;
    min-width: 0;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--soft);
}

.about-governorate-list li:first-child {
    border-color: #b8d8c6;
    background: var(--soft-green);
}

.about-governorate-rank {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--paper);
    background: var(--green-700);
    font-family: Arial, sans-serif;
    font-size: 0.67rem;
    font-weight: 900;
}

.about-governorate-list li:first-child .about-governorate-rank {
    background: var(--orange-600);
}

.about-governorate-name {
    min-width: 0;
    overflow: hidden;
    color: var(--green-900);
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.about-governorate-value {
    display: grid;
    justify-items: end;
    gap: 1px;
    min-width: 68px;
}

.about-governorate-value strong {
    color: var(--orange-600);
    font-size: 0.76rem;
    line-height: 1.3;
}

.about-directory-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 18px 0 0;
    padding-top: 17px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 0.74rem;
    line-height: 1.65;
}

.about-directory-note svg {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin-top: 2px;
    color: var(--orange-600);
}

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

@media (max-width: 700px) {
    .about-governorate-directory {
        margin-top: 24px;
        padding: 18px;
        border-radius: 13px;
    }

    .about-directory-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-directory-count {
        width: 100%;
        justify-content: center;
        border-radius: 10px;
    }

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

    .about-governorate-list li {
        padding: 12px;
    }
}

/* About: nationwide operating footprint */
.about-coverage-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: end;
    margin-bottom: 26px;
}

.about-coverage-head > div:first-child {
    max-width: 820px;
}

.about-coverage-head h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.18;
}

.about-coverage-head > div > p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.85;
}

.about-coverage-head .about-map-instruction {
    max-width: 300px;
    margin: 0 !important;
    background: var(--paper);
}

.about-coverage-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.about-coverage-summary article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 2px 11px;
    align-items: center;
    min-width: 0;
    min-height: 102px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid #cfe2d7;
    border-radius: 12px;
}

.about-coverage-summary .about-card-icon {
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
}

.about-coverage-summary article > span:not(.about-card-icon) {
    align-self: end;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.4;
}

.about-coverage-summary strong {
    align-self: start;
    color: var(--green-900);
    font-family: Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1.15;
}

.about-coverage-summary small {
    grid-column: 2;
    margin-top: -3px;
    color: var(--orange-600);
    font-size: 0.62rem;
    font-weight: 850;
}

.about-map-explorer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.31fr);
    gap: 18px;
    align-items: stretch;
}

.about-map-explorer .about-map-card {
    min-width: 0;
    background: #f5ead5;
}

.about-map-explorer .about-map-stage {
    position: relative;
    min-height: 560px;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.about-map-explorer .about-map-stage::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(2, 48, 29, 0.08);
    content: "";
    pointer-events: none;
}

.about-map-explorer .about-map-stage picture,
.about-map-explorer .about-map-stage img {
    width: 100%;
    height: 100%;
}

.about-map-explorer .about-map-stage img {
    display: block;
    aspect-ratio: auto;
    object-fit: cover;
}

.about-map-explorer .about-map-markers {
    position: absolute;
    z-index: 2;
    inset: 16px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: repeat(6, minmax(0, 1fr));
    gap: 8px 11px;
    margin: 0;
    padding: 0;
    list-style: none;
    pointer-events: none;
}

.about-map-explorer .about-map-marker {
    position: static;
    min-width: 0;
    transform: none;
    pointer-events: auto;
}

.about-map-explorer .about-map-marker:nth-child(26) {
    grid-column: 3;
}

.about-map-explorer .about-map-marker button {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 7px;
    align-items: center;
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 5px 7px 5px 5px;
    color: var(--green-900);
    text-align: start;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(6, 94, 55, 0.3);
    border-radius: 9px;
    box-shadow: 0 7px 18px rgba(4, 54, 32, 0.16);
    cursor: pointer;
    transition: transform 150ms ease, border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.about-map-explorer .about-map-marker button:hover,
.about-map-explorer .about-map-marker button:focus-visible,
.about-map-explorer .about-map-marker button[aria-pressed="true"] {
    z-index: 3;
    background: var(--paper);
    border-color: var(--orange-600);
    box-shadow: 0 9px 22px rgba(3, 48, 28, 0.24);
    transform: translateY(-2px);
}

.about-map-explorer .about-map-marker button:focus-visible {
    outline: 3px solid rgba(236, 114, 20, 0.24);
    outline-offset: 2px;
}

.about-map-explorer .about-marker-rank {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    color: var(--paper);
    background: var(--green-700);
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 0.62rem;
    font-weight: 900;
}

.about-map-explorer .about-map-marker button[aria-pressed="true"] .about-marker-rank {
    background: var(--orange-600);
}

.about-marker-copy {
    display: grid;
    min-width: 0;
}

.about-marker-copy strong {
    overflow: hidden;
    color: var(--green-900);
    font-size: 0.66rem;
    font-weight: 900;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.about-marker-copy small {
    overflow: hidden;
    color: var(--orange-600);
    font-family: Arial, sans-serif;
    font-size: 0.58rem;
    font-weight: 900;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.about-map-explorer .about-map-card figcaption {
    display: block;
    padding: 15px 17px;
}

.about-map-caption-copy {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.about-map-caption-copy svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--orange-600);
}

.about-map-caption-copy strong {
    color: var(--green-900);
    font-size: 0.76rem;
    line-height: 1.65;
}

.about-region-panel {
    min-width: 0;
    padding: 18px;
    color: var(--paper);
    background: var(--green-900);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.about-region-detail-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.about-region-detail-head > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--green-900);
    background: var(--paper);
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 900;
}

.about-region-detail-head small {
    color: #9bd8bb;
    font-size: 0.66rem;
    font-weight: 800;
}

.about-region-detail-head h3 {
    margin: 3px 0 0;
    color: var(--paper);
    font-size: 1.15rem;
    line-height: 1.35;
}

.about-region-detail dl {
    display: grid;
    gap: 9px;
    margin: 16px 0 0;
}

.about-region-detail dl > div {
    display: grid;
    gap: 7px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
}

.about-region-detail dt {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #cfe8dc;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1.4;
}

.about-region-detail dt svg {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    color: #76d2aa;
}

.about-region-detail dd {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin: 0;
    color: var(--paper);
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.2;
}

.about-region-detail dd small {
    color: #f1a15d;
    font-family: var(--font-body);
    font-size: 0.61rem;
}

.about-region-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 15px 0 0;
    padding-top: 14px;
    color: #cfe8dc;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    font-size: 0.68rem;
    font-weight: 750;
    line-height: 1.6;
}

.about-region-hint svg {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin-top: 2px;
    color: var(--orange-500);
}

@media (max-width: 1180px) {
    .about-map-explorer {
        grid-template-columns: minmax(0, 1fr) 250px;
    }

    .about-map-explorer .about-map-stage {
        min-height: 520px;
    }

    .about-map-explorer .about-map-markers {
        inset: 12px;
        gap: 6px 8px;
    }

    .about-map-explorer .about-map-marker button {
        gap: 5px;
        min-height: 42px;
        padding: 4px;
    }

    .about-map-explorer .about-marker-rank {
        width: 24px;
        height: 24px;
        font-size: 0.57rem;
    }

    .about-marker-copy strong {
        font-size: 0.6rem;
    }

    .about-marker-copy small {
        font-size: 0.53rem;
    }
}

@media (max-width: 980px) {
    .about-coverage-head,
    .about-map-explorer {
        grid-template-columns: 1fr;
    }

    .about-coverage-head {
        align-items: start;
    }

    .about-coverage-head .about-map-instruction {
        max-width: none;
    }

    .about-coverage-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-map-explorer .about-map-stage {
        min-height: 570px;
    }

    .about-region-detail dl {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .about-coverage-head {
        gap: 18px;
        margin-bottom: 20px;
    }

    .about-coverage-head h2 {
        font-size: 1.85rem;
    }

    .about-coverage-head > div > p {
        font-size: 0.88rem;
    }

    .about-coverage-summary {
        gap: 8px;
    }

    .about-coverage-summary article {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 3px;
        align-content: start;
        min-height: 118px;
        padding: 12px;
    }

    .about-coverage-summary .about-card-icon {
        grid-row: auto;
        width: 36px;
        height: 36px;
        margin-bottom: 4px;
    }

    .about-coverage-summary small {
        grid-column: auto;
    }

    .about-map-explorer .about-map-card {
        border-radius: 14px;
    }

    .about-map-explorer .about-map-stage {
        min-height: 680px;
        aspect-ratio: auto;
    }

    .about-map-explorer .about-map-markers {
        inset: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(13, minmax(0, 1fr));
        gap: 4px 7px;
    }

    .about-map-explorer .about-map-marker:nth-child(26) {
        grid-column: auto;
    }

    .about-map-explorer .about-map-marker button {
        min-height: 44px;
        border-radius: 8px;
    }

    .about-map-explorer .about-marker-rank {
        width: 25px;
        height: 25px;
    }

    .about-marker-copy strong {
        font-size: 0.63rem;
    }

    .about-marker-copy small {
        font-size: 0.54rem;
    }

    .about-map-explorer .about-map-card figcaption {
        padding: 13px;
    }

    .about-region-panel {
        padding: 16px;
        border-radius: 13px;
    }

    .about-region-detail dl {
        grid-template-columns: 1fr;
    }
}

/* About: leadership profiles */
.about-structure-section {
    overflow: clip;
}

.about-leadership-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.about-leadership-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 12px;
    color: var(--green-800);
    border: 1px solid #c9d8d0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
}

.about-leadership-meta svg {
    width: 18px;
    height: 18px;
}

[dir="rtl"] .about-leadership-meta span:last-child svg,
[dir="rtl"] .about-leader-action svg {
    transform: scaleX(-1);
}

.about-leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.about-leader-item {
    min-width: 0;
}

.about-leader-card {
    width: 100%;
    min-height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    color: var(--ink);
    text-align: start;
    font: inherit;
    border: 1px solid var(--line);
    border-top: 4px solid var(--green-700);
    border-radius: 16px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    appearance: none;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.about-leader-card.is-chief {
    border-top-color: var(--orange-600);
}

.about-leader-card:hover {
    transform: translateY(-5px);
    border-color: #a9c3b5;
    box-shadow: var(--shadow);
}

.about-leader-card:focus-visible {
    outline: 3px solid rgba(236, 114, 20, 0.34);
    outline-offset: 4px;
}

.about-leader-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--green-900);
}

.about-leader-media picture,
.about-leader-media img {
    display: block;
    width: 100%;
    height: 100%;
}

.about-leader-media img {
    object-fit: cover;
    object-position: center 28%;
    transition: transform 240ms ease;
}

.about-leader-card:hover .about-leader-media img,
.about-leader-card:focus-visible .about-leader-media img {
    transform: scale(1.025);
}

.about-leader-level,
.about-leader-image-status {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 900;
    line-height: 1.25;
}

.about-leader-level {
    inset-block-start: 12px;
    inset-inline-start: 12px;
    color: var(--green-900);
    background: #a9edce;
}

.is-chief .about-leader-level {
    color: #522100;
    background: #ffe0c3;
}

.about-leader-image-status {
    inset-inline: 12px;
    inset-block-end: 12px;
    justify-content: center;
    color: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(5, 48, 29, 0.9);
}

.about-leader-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.about-leader-name {
    display: block;
    margin: 0;
    color: var(--green-900);
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1.35;
}

.about-leader-role {
    display: block;
    min-height: 4.65em;
    margin-top: 9px;
    color: var(--orange-600);
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1.55;
}

.about-leader-summary {
    display: -webkit-box;
    margin-top: 14px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.72;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.about-leader-action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
    color: var(--green-800);
    font-size: 0.76rem;
    font-weight: 900;
}

.about-leader-action svg {
    width: 18px;
    height: 18px;
    transition: transform 180ms ease;
}

.about-leader-card:hover .about-leader-action svg {
    transform: translateX(3px);
}

[dir="rtl"] .about-leader-card:hover .about-leader-action svg {
    transform: scaleX(-1) translateX(3px);
}

html.has-open-dialog {
    overflow: hidden;
}

.about-leader-dialog {
    width: min(1050px, calc(100% - 40px));
    max-width: none;
    max-height: calc(100dvh - 40px);
    padding: 0;
    overflow: visible;
    color: var(--ink);
    border: 0;
    border-radius: 18px;
    background: transparent;
    box-shadow: 0 28px 90px rgba(2, 34, 20, 0.32);
}

.about-leader-dialog::backdrop {
    background: rgba(3, 29, 18, 0.82);
    backdrop-filter: blur(5px);
}

.about-leader-dialog-shell {
    position: relative;
    max-height: calc(100dvh - 40px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: var(--paper);
}

.about-leader-dialog-close {
    position: absolute;
    z-index: 5;
    inset-block-start: 16px;
    inset-inline-end: 16px;
    min-width: 76px;
    min-height: 44px;
    padding: 8px 14px;
    color: var(--paper);
    font: inherit;
    font-size: 0.76rem;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(4, 54, 31, 0.9);
    cursor: pointer;
}

.about-leader-dialog-close:hover,
.about-leader-dialog-close:focus-visible {
    background: var(--orange-600);
}

.about-leader-dialog-close:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.88);
    outline-offset: 2px;
}

.about-leader-dialog-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    min-height: 620px;
}

.about-leader-dialog-media {
    position: relative;
    min-height: 620px;
    margin: 0;
    overflow: hidden;
    background: var(--green-900);
}

.about-leader-dialog-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.about-leader-dialog-media figcaption {
    position: absolute;
    inset-inline: 20px;
    inset-block-end: 20px;
    padding: 10px 14px;
    color: var(--paper);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(4, 54, 31, 0.92);
    font-size: 0.7rem;
    font-weight: 900;
}

.about-leader-dialog-content {
    max-height: calc(100dvh - 40px);
    padding: 52px 42px 38px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.about-leader-dialog-level {
    display: inline-flex;
    margin-inline-start: 8px;
    padding: 5px 9px;
    color: var(--green-800);
    border: 1px solid #c9d8d0;
    border-radius: 999px;
    background: var(--soft);
    font-size: 0.68rem;
    font-weight: 900;
}

.about-leader-dialog h3 {
    margin: 20px 0 0;
    color: var(--green-900);
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    line-height: 1.16;
}

.about-leader-dialog-role {
    margin: 12px 0 0;
    color: var(--orange-600);
    font-size: 0.94rem;
    font-weight: 900;
    line-height: 1.6;
}

.about-leader-dialog-summary {
    margin: 18px 0 0;
    color: var(--green-800);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.76;
}

.about-leader-facts {
    margin: 24px 0 0;
}

.about-leader-facts div {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--soft);
}

.about-leader-facts dt {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 900;
}

.about-leader-facts dd {
    margin: 5px 0 0;
    color: var(--green-900);
    font-size: 0.84rem;
    font-weight: 900;
}

.about-leader-dialog-section {
    margin-top: 24px;
}

.about-leader-dialog-section h4 {
    margin: 0;
    color: var(--green-900);
    font-size: 0.9rem;
}

.about-leader-dialog-section p,
.about-leader-dialog-section li {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.78;
}

.about-leader-dialog-section p {
    margin: 10px 0 0;
}

.about-leader-dialog-section ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
    margin: 12px 0 0;
    padding-inline-start: 20px;
}

.about-leader-dialog-note {
    margin: 26px 0 0;
    padding-top: 18px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 0.73rem;
    line-height: 1.7;
}

@media (max-width: 1180px) {
    .about-leadership-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

    .about-leader-dialog-grid {
        grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    }

    .about-leader-dialog-content {
        padding-inline: 30px;
    }
}

@media (max-width: 680px) {
    .about-leadership-meta {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-leadership-meta span {
        justify-content: center;
    }

    .about-leadership-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-leader-media {
        aspect-ratio: 16 / 10;
    }

    .about-leader-copy {
        padding: 20px;
    }

    .about-leader-role {
        min-height: 0;
    }

    .about-leader-summary {
        -webkit-line-clamp: 4;
    }

    .about-leader-dialog {
        width: calc(100% - 16px);
        max-height: calc(100dvh - 16px);
    }

    .about-leader-dialog-shell,
    .about-leader-dialog-content {
        max-height: calc(100dvh - 16px);
    }

    .about-leader-dialog-grid {
        display: block;
        min-height: 0;
        max-height: calc(100dvh - 16px);
        overflow-y: auto;
    }

    .about-leader-dialog-media {
        min-height: 260px;
        aspect-ratio: 16 / 10;
    }

    .about-leader-dialog-content {
        max-height: none;
        padding: 28px 20px 26px;
        overflow: visible;
    }

    .about-leader-dialog-close {
        inset-block-start: 12px;
        inset-inline-end: 12px;
    }

    .about-leader-dialog-section ul {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-leader-card,
    .about-leader-media img,
    .about-leader-action svg {
        transition: none;
    }
}
