:root {
    --blue: #2956A6;
    --blue-deep: #0B2B5B;
    --orange: #FA9003;
    --red: #EE1807;
    --green: #33AA52;
    --white: #FFFFFF;
    --ink: #1F2933;
    --muted: #5F6D7A;
    --line: #D8E0EA;
    --soft: #F5F7FA;
    --panel: #FFFFFF;
    --shadow: 0 20px 60px rgba(18, 42, 80, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, Aptos, Manrope, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
}

body.rtl {
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

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

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

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 20;
    padding: 10px 14px;
    background: var(--ink);
    color: var(--white);
    border-radius: 4px;
}

.skip-link:focus {
    top: 16px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.nav-shell {
    min-height: 78px;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 168px;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 13px;
    font-weight: 700;
    color: #10233F;
}

.site-nav a {
    padding: 28px 0 24px;
    border-bottom: 3px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.language-link {
    min-width: 72px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    text-align: center;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    background: var(--white);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 6px;
    border: 1px solid var(--blue);
    color: var(--blue);
    background: var(--white);
    font-weight: 800;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
}

.button-primary {
    background: var(--blue);
    color: var(--white);
}

.button-action {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--white);
}

.button:hover,
.button:focus,
.language-link:hover,
.language-link:focus {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(41, 86, 166, .16);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--blue);
}

.membership-row {
    width: min(960px, calc(100% - 40px));
    margin: 44px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.membership-row [class*="col-"] {
    float: none;
    width: auto;
    min-height: 1px;
}

.member-link {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    text-align: center;
    font-weight: 800;
    box-shadow: 0 14px 40px rgba(18, 42, 80, .08);
}

.member-link:hover,
.member-link:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(41, 86, 166, .16);
}

.membership-icon {
    font-size: 30px;
    line-height: 1;
}

.membership-row .h5 {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
}

.bg-blueblack {
    background: var(--blue-deep);
    color: var(--white);
}

.bg-gray {
    background: var(--soft);
    color: var(--ink);
}

.bg-orange {
    background: var(--orange);
    color: var(--white);
}

.bg-greenblue {
    background: var(--green);
    color: var(--white);
}

.bg-red {
    background: var(--red);
    color: var(--white);
}

.bg-blue {
    background: var(--blue);
    color: var(--white);
}

.bg-opslayer {
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    color: var(--white);
}

.bg-opslayer-soft {
    background: linear-gradient(135deg, var(--soft), #EAF1FB);
    color: var(--blue-deep);
}

.member-link-featured {
    border-color: rgba(41, 86, 166, .22);
}

.MemberLoginBox.MemberLoginPage,
.MemberLoginPage,
#MemberLoginPage {
    width: min(540px, calc(100% - 40px));
    margin: 42px auto 64px;
    padding: 0;
}

.MemberLoginBox .form-content,
.MemberLoginPage .form-content {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.sign-in-title,
.MemberLoginBox .h3 {
    margin: 0 0 18px;
    color: var(--blue-deep);
    font-size: 28px;
    font-weight: 900;
    text-align: center;
}

.form-group {
    margin: 0 0 14px;
}

.form-group label {
    display: block;
    margin: 0 0 6px;
    color: var(--blue-deep);
    font-weight: 800;
}

.checkbox label,
.label-Checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-weight: 700;
}

.form-Checkbox {
    width: 18px;
    height: 18px;
}

.Forgot,
.Register,
.form-break {
    text-align: center;
}

.Forgot a,
.Register a,
.member-only-css a,
.text-muted {
    color: var(--blue);
    font-weight: 800;
}

.member-only-css {
    width: min(720px, calc(100% - 40px));
    margin: 32px auto 0;
    padding: 16px 18px;
    border: 1px solid rgba(41, 86, 166, .2);
    border-radius: 8px;
    background: #F0F5FF;
    color: var(--ink);
}

.member-only-css span {
    color: var(--blue-deep);
    font-weight: 900;
}

.Error,
.error {
    display: block;
    width: min(720px, calc(100% - 40px));
    margin: 20px auto;
    padding: 12px 14px;
    border: 1px solid rgba(238, 24, 7, .25);
    border-radius: 6px;
    background: #fff1f0;
    color: #8f1208;
    font-weight: 800;
}

.form-control {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
}

.form-control:focus {
    outline: 3px solid rgba(41, 86, 166, .16);
    border-color: var(--blue);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 16px;
    border: 1px solid var(--blue);
    border-radius: 6px;
    background: var(--white);
    color: var(--blue);
    font: inherit;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
}

.btn-info,
.btn-primary,
.btn-success {
    background: var(--blue);
    color: var(--white);
}

.btn-lg {
    min-height: 48px;
    padding: 12px 18px;
}

.btn-block {
    width: 100%;
}

.text-message,
.alert {
    width: min(760px, calc(100% - 40px));
    margin: 20px auto;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--soft);
    color: var(--ink);
}

.bg-danger,
.alert-danger {
    border-color: rgba(238, 24, 7, .25);
    background: #fff1f0;
    color: #8f1208;
}

.bg-success,
.alert-success {
    border-color: rgba(51, 170, 82, .25);
    background: #effaf2;
    color: #166534;
}

.bg-warning,
.alert-warning {
    border-color: rgba(250, 144, 3, .25);
    background: #fff7ed;
    color: #92400e;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(245, 247, 250, .94) 52%, rgba(226, 239, 255, .76) 100%),
        radial-gradient(circle at 86% 18%, rgba(41, 86, 166, .12), transparent 34%);
    border-bottom: 1px solid var(--line);
}

.hero::after,
.deep-band::after,
.cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(41, 86, 166, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(41, 86, 166, .08) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, transparent, #000 32%, #000 76%, transparent);
}

.hero-grid {
    position: relative;
    z-index: 1;
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: 42px;
    align-items: center;
    padding: 72px 0;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 20px;
    color: var(--blue-deep);
    font-size: 52px;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero h1 span {
    display: block;
}

.text-blue {
    color: var(--blue);
}

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

.text-green {
    color: var(--green);
}

.text-red {
    color: var(--red);
}

.hero-copy {
    color: #20324A;
    font-size: 18px;
    max-width: 650px;
}

.hero-note {
    margin-top: 24px;
    font-weight: 800;
    color: var(--blue-deep);
}

.hero-note em {
    color: var(--green);
    font-style: normal;
}

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

.hero-diagram {
    display: grid;
    gap: 16px;
    align-content: center;
}

.diagram-label {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--ink);
}

.system-row,
.team-row,
.result-list,
.orbit-grid {
    display: grid;
    gap: 12px;
}

.system-row {
    grid-template-columns: repeat(5, minmax(76px, 1fr));
}

.team-row {
    grid-template-columns: repeat(5, minmax(76px, 1fr));
}

.system-node,
.team-node,
.result-list li,
.orbit-item {
    min-height: 82px;
    padding: 14px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    display: grid;
    place-items: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(18, 42, 80, .08);
    font-size: 12px;
    font-weight: 800;
}

.node-icon {
    width: 34px;
    height: 34px;
    border: 2px solid var(--blue);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--blue);
    margin-bottom: 6px;
    font-size: 14px;
}

.coordination-layer {
    position: relative;
    min-height: 94px;
    padding: 22px;
    border-radius: 8px;
    background: var(--blue);
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
}

.coordination-layer strong {
    display: block;
    font-size: 18px;
}

.coordination-layer span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
}

.results-card {
    justify-self: end;
    width: min(230px, 100%);
    padding: 18px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.results-card h2 {
    font-size: 15px;
    color: var(--blue);
    text-transform: uppercase;
}

.result-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.result-list li {
    min-height: 42px;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    text-align: left;
}

.rtl .result-list li {
    text-align: right;
}

.section {
    padding: 72px 0;
}

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

.section-head {
    max-width: 820px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-head h1,
.section-head h2 {
    margin-bottom: 12px;
    color: var(--blue-deep);
    font-size: 34px;
    line-height: 1.2;
}

.section-head p {
    color: var(--muted);
    font-size: 17px;
}

.promise-strip {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

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

.promise-item {
    min-height: 150px;
    padding: 30px 28px;
    border-right: 1px solid var(--line);
}

.rtl .promise-item {
    border-right: 0;
    border-left: 1px solid var(--line);
}

.promise-item:last-child {
    border-right: 0;
}

.rtl .promise-item:last-child {
    border-left: 0;
}

.promise-item h2,
.promise-item h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

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

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

.card {
    min-height: 210px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: 0 8px 24px rgba(18, 42, 80, .06);
}

.card h2,
.card h3 {
    color: var(--blue-deep);
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 10px;
}

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

.card ul,
.check-list,
.plain-list {
    margin: 14px 0 0;
    padding-left: 20px;
}

.rtl .card ul,
.rtl .check-list,
.rtl .plain-list {
    padding-left: 0;
    padding-right: 20px;
}

.icon-tile {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 900;
    font-size: 19px;
}

.bg-blue { background: var(--blue); }
.bg-orange { background: var(--orange); }
.bg-red { background: var(--red); }
.bg-green { background: var(--green); }
.bg-ink { background: var(--ink); }

.deep-band {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    background: var(--blue-deep);
    color: var(--white);
}

.deep-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
    gap: 42px;
    align-items: center;
}

.deep-band h2 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.deep-band p,
.deep-band li {
    color: rgba(255, 255, 255, .84);
}

.check-list {
    columns: 2;
    list-style: none;
    padding-left: 0;
}

.check-list li {
    break-inside: avoid;
    margin: 8px 0;
}

.check-list li::before {
    content: "✓";
    color: var(--green);
    margin-right: 8px;
    font-weight: 900;
}

.rtl .check-list li::before {
    margin-right: 0;
    margin-left: 8px;
}

.orbit {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
}

.orbit-center {
    width: 144px;
    height: 144px;
    border-radius: 50%;
    background: var(--white);
    display: grid;
    place-items: center;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}

.orbit-center img {
    width: 98px;
}

.orbit-grid {
    position: absolute;
    inset: 0;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.orbit-item {
    max-width: 180px;
    min-height: 62px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .10);
}

.orbit-item:nth-child(odd) {
    justify-self: start;
}

.orbit-item:nth-child(even) {
    justify-self: end;
}

.steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.step {
    position: relative;
    min-height: 210px;
    padding: 22px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: var(--blue);
    color: var(--white);
    font-weight: 900;
}

.step:nth-child(2) .step-number,
.step:nth-child(6) .step-number {
    background: var(--orange);
}

.step:nth-child(3) .step-number,
.step:nth-child(5) .step-number {
    background: var(--green);
}

.step:nth-child(4) .step-number {
    background: var(--red);
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 26px;
}

.trust-row span {
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 8px;
    color: var(--blue-deep);
    font-weight: 800;
    font-size: 13px;
}

.cta-band {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 42px;
    border-radius: 8px;
    background: var(--blue);
    color: var(--white);
}

.cta-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
}

.cta-band h2 {
    margin-bottom: 8px;
    font-size: 30px;
}

.cta-band p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .88);
}

.page-hero {
    padding: 88px 0 58px;
    background: linear-gradient(90deg, var(--white), var(--soft));
    border-bottom: 1px solid var(--line);
}

.page-hero .shell {
    max-width: 980px;
}

.page-hero h1 {
    max-width: 880px;
}

.lede {
    font-size: 19px;
    color: #33445C;
    max-width: 880px;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    gap: 34px;
    align-items: start;
}

.feature-panel {
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--soft);
}

.feature-panel h2 {
    color: var(--blue-deep);
}

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

.kpi {
    min-height: 98px;
    padding: 16px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--blue-deep);
    font-weight: 900;
    display: grid;
    place-items: center;
    text-align: center;
}

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

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

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

.form-field label {
    font-weight: 800;
    color: var(--blue-deep);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 10px 12px;
    font: inherit;
    background: var(--white);
}

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

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.status-box {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--soft);
    color: var(--blue-deep);
    font-weight: 800;
}

.site-footer {
    background: var(--ink);
    color: var(--white);
    padding: 54px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
}

.footer-grid h2 {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--white);
}

.footer-grid a,
.footer-grid span {
    display: block;
    color: rgba(255, 255, 255, .78);
    margin: 7px 0;
}

.footer-brand img {
    width: 190px;
    background: var(--white);
    border-radius: 6px;
    padding: 6px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, .78);
}

.slogan span:nth-child(1) { color: #7EA8F1; }
.slogan span:nth-child(2) { color: var(--orange); }
.slogan span:nth-child(3) { color: var(--green); }

.footer-cta {
    margin-top: 16px;
    width: max-content;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

@media (max-width: 1060px) {
    .nav-shell {
        grid-template-columns: 170px auto auto;
    }

    .nav-toggle {
        display: inline-block;
        justify-self: end;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        padding: 18px 24px;
        border-bottom: 1px solid var(--line);
        background: var(--white);
        box-shadow: 0 16px 32px rgba(18, 42, 80, .10);
    }

    .site-nav.is-open {
        display: grid;
        justify-content: stretch;
    }

    .site-nav a {
        padding: 11px 0;
        border-bottom: 1px solid var(--line);
    }

    .hero-grid,
    .deep-grid,
    .split {
        grid-template-columns: 1fr;
    }

    .results-card {
        justify-self: stretch;
        width: 100%;
    }

    .card-grid,
    .card-grid.four,
    .steps,
    .trust-row,
    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 720px) {
    .shell {
        width: min(100% - 28px, 1180px);
    }

    .nav-shell {
        min-height: 72px;
        grid-template-columns: 150px auto;
    }

    .brand img {
        width: 145px;
    }

    .nav-actions {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: stretch;
        padding-bottom: 12px;
    }

    .nav-actions .button,
    .language-link {
        flex: 1;
    }

    .site-nav {
        top: 118px;
    }

    h1 {
        font-size: 38px;
    }

    .hero-grid {
        min-height: auto;
        padding: 48px 0;
    }

    .system-row,
    .team-row,
    .card-grid,
    .card-grid.two,
    .card-grid.four,
    .steps,
    .trust-row,
    .kpi-grid,
    .promise-grid,
    .footer-grid,
    .form-grid,
    .cta-content {
        grid-template-columns: 1fr;
    }

    .promise-item,
    .rtl .promise-item {
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding: 54px 0;
    }

    .deep-band {
        padding: 58px 0;
    }

    .check-list {
        columns: 1;
    }

    .orbit {
        min-height: auto;
        gap: 14px;
    }

    .orbit-grid {
        position: static;
        grid-template-columns: 1fr;
    }

    .orbit-item:nth-child(odd),
    .orbit-item:nth-child(even) {
        justify-self: stretch;
        max-width: none;
    }

    .cta-band {
        padding: 28px;
    }

    .footer-bottom {
        display: grid;
    }
}
