/* ============================================
   Desert Falcons Collective — Engineers Page
   Each section has a deliberately distinct layout.
   ============================================ */

/* ===================================================
   SECTION 1 — HERO
   Full-screen cinematic. Centered title. Blueprint overlay.
   =================================================== */
.eng-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0A0A0A;
}

.eng-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.55) 40%, rgba(10,10,10,1) 100%),
        url('images/city-skyline.jpg') center center / cover no-repeat;
}

/* Blueprint grid overlay */
.eng-blueprint-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.bpg-v, .bpg-h { position: absolute; background: rgba(255,255,255,0.025); }
.bpg-v { width: 1px; height: 100%; top: 0; }
.bpg-h { height: 1px; width: 100%; left: 0; }
.bpg-v1 { left: 20%; }
.bpg-v2 { left: 80%; }
.bpg-h1 { top: 30%; }
.bpg-h2 { top: 70%; }

.bpg-cross {
    position: absolute;
    width: 16px;
    height: 16px;
}
.bpg-cross::before, .bpg-cross::after {
    content: '';
    position: absolute;
    background: rgba(184,145,90,0.3);
}
.bpg-cross::before { width: 1px; height: 100%; left: 50%; top: 0; }
.bpg-cross::after  { height: 1px; width: 100%; top: 50%; left: 0; }
.bpg-cross-1 { left: 20%; top: 30%; transform: translate(-50%,-50%); }
.bpg-cross-2 { left: 80%; top: 70%; transform: translate(-50%,-50%); }

/* Hero content */
.eng-hero-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 960px;
}

.eng-hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.eyebrow-line {
    display: block;
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.12);
}
.eyebrow-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.eng-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    display: block;
    -webkit-text-fill-color: #FFFFFF;
}
.hero-em {
    display: block;
    font-style: italic;
    color: #B8915A;
    -webkit-text-fill-color: #B8915A;
}

.eng-hero-sub {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.55);
    margin-bottom: 5rem;
}

.eng-hero-scroll-prompt {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.625rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    animation: heroFloat 2.2s ease-in-out infinite;
}
.scroll-icon { width: 22px; height: 22px; color: #B8915A; }

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Corner tick marks */
.eng-hero-corners { position: absolute; inset: 2.5rem; pointer-events: none; z-index: 2; }
.hc {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: rgba(184,145,90,0.35);
    border-style: solid;
}
.hc-tl { top:0; left:0;  border-width: 1px 0 0 1px; }
.hc-tr { top:0; right:0; border-width: 1px 1px 0 0; }
.hc-bl { bottom:0; left:0;  border-width: 0 0 1px 1px; }
.hc-br { bottom:0; right:0; border-width: 0 1px 1px 0; }

/* ===================================================
   SHARED UTIL
   =================================================== */
.section-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    user-select: none;
}
.section-num--light { color: rgba(255,255,255,0.07); }
.section-rule {
    display: block;
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    margin: 1rem auto;
}
.section-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.625rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #B8915A;
    writing-mode: vertical-rl;
}

/* ===================================================
   SECTION 2 — THE CHALLENGE
   Layout: Pinned vertical label left + body text right.
   3-column stat bar below, full width.
   =================================================== */
.eng-challenge {
    background: #111111;
    padding: 10rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.eng-challenge-inner {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    align-items: start;
}
@media (max-width: 800px) {
    .eng-challenge-inner { grid-template-columns: 1fr; gap: 2rem; padding: 0 2rem; }
    .section-name { writing-mode: horizontal-tb; }
    .section-rule { width: 40px; height: 1px; margin: 0; }
}

.eng-challenge-label-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.5rem;
    gap: 0;
}

.eng-challenge-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.eng-challenge-lead {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3125rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
}

.eng-challenge-text {
    font-size: 0.9375rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.25rem;
}

/* Stat bar */
.eng-stat-bar {
    display: flex;
    align-items: stretch;
    margin-top: 7rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 700px) {
    .eng-stat-bar { flex-direction: column; }
    .eng-stat-divider { width: 100%; height: 1px; }
}

.eng-stat-item {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem;
    font-weight: 300;
    color: #B8915A;
    line-height: 1;
}

.stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    max-width: 200px;
    line-height: 1.6;
}

.eng-stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.06);
    flex-shrink: 0;
}

/* ===================================================
   SECTION 3 — CLARIFICATION
   Layout: Full-width amber-tinted banner.
   Icon + heading left, body + split right.
   =================================================== */
.eng-clarification {
    background: #0D0B08;
    border-top: 1px solid rgba(200,100,30,0.15);
    border-bottom: 1px solid rgba(200,100,30,0.15);
}

.eng-clarification-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 7rem 3rem;
}
@media (max-width: 700px) {
    .eng-clarification-inner { padding: 5rem 2rem; }
}

.eng-clar-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.eng-clar-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: #C87840;
    margin-top: 0.5rem;
}
.eng-clar-icon svg { width: 100%; height: 100%; }

.eng-clar-eyebrow {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C87840;
    margin-bottom: 1rem;
}

.eng-clar-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.25;
}

.eng-clar-body {
    font-size: 0.9375rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.6);
    max-width: 780px;
    margin-bottom: 3.5rem;
    padding-left: 4rem;
}
@media (max-width: 600px) { .eng-clar-body { padding-left: 0; } }

.eng-clar-split {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(200,100,30,0.2);
    margin-left: 4rem;
}
@media (max-width: 600px) { .eng-clar-split { margin-left: 0; flex-direction: column; } }

.eng-clar-half {
    flex: 1;
    padding: 2.5rem 3rem;
}

.clar-split-label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.eng-clar-no { background: rgba(180,60,60,0.06); }
.eng-clar-no .clar-split-label { color: rgba(200,80,80,0.7); }
.eng-clar-no p { color: rgba(255,255,255,0.5); font-size: 0.9375rem; margin: 0; }

.eng-clar-yes { background: rgba(30,74,59,0.1); }
.eng-clar-yes .clar-split-label { color: #2A6350; }
.eng-clar-yes p { color: rgba(255,255,255,0.7); font-size: 0.9375rem; margin: 0; }

.eng-clar-rule {
    width: 1px;
    background: rgba(200,100,30,0.2);
    flex-shrink: 0;
}

/* ===================================================
   SECTION 4 — DISCIPLINES
   Layout: Full-width numbered row list.
   Each discipline = a horizontal strip with
   number | icon | name + areas | gold accent bar.
   =================================================== */
.eng-disciplines {
    background: #111111;
    padding: 10rem 0;
}

.eng-disciplines-header {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 3rem;
    display: flex;
    align-items: baseline;
    gap: 2.5rem;
}
@media (max-width: 700px) {
    .eng-disciplines-header { flex-direction: column; gap: 0.5rem; padding: 0 2rem; }
}

.eng-disc-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: #FFFFFF;
}

.eng-disc-subhead {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
}

.eng-disc-list { display: flex; flex-direction: column; }

.eng-disc-row {
    display: grid;
    grid-template-columns: 80px 64px 1fr 4px;
    align-items: center;
    gap: 0;
    padding: 0 3rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    min-height: 120px;
    border-top: 1px solid rgba(255,255,255,0.05);
    transition: background 0.25s ease;
    position: relative;
}

.eng-disc-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.05); }

.eng-disc-row:hover { background: rgba(255,255,255,0.015); }

.eng-disc-num-col {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.08);
    user-select: none;
    padding-right: 2rem;
}

.eng-disc-icon-col {
    width: 48px;
    height: 48px;
    color: rgba(184,145,90,0.6);
    flex-shrink: 0;
    margin-right: 2.5rem;
}
.eng-disc-icon-col svg { width: 100%; height: 100%; }
.eng-disc-row:hover .eng-disc-icon-col { color: #B8915A; }

.eng-disc-content { padding: 2.5rem 2.5rem 2.5rem 0; }

.eng-disc-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.eng-disc-areas {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.5rem;
}

.eng-disc-areas li {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.4);
    position: relative;
    padding-left: 0.85rem;
}
.eng-disc-areas li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #B8915A;
}

/* Right-edge gold accent bar (appears on hover) */
.eng-disc-bar {
    width: 3px;
    height: 100%;
    background: #B8915A;
    opacity: 0;
    transition: opacity 0.25s ease;
    position: absolute;
    right: 0;
    top: 0;
}
.eng-disc-row:hover .eng-disc-bar { opacity: 1; }

@media (max-width: 700px) {
    .eng-disc-row {
        grid-template-columns: 48px 1fr 4px;
        padding: 1.5rem 2rem;
        min-height: unset;
    }
    .eng-disc-icon-col { display: none; }
}

/* ===================================================
   SECTION 5 — KEY CHALLENGES
   Layout: Full-screen Tuwaiq BG. Centered heading.
   Large centered italic quote, then 5 challenge items
   in a single horizontal strip below.
   =================================================== */
.eng-key-challenges {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10rem 0;
}

.eng-kc-bg {
    position: absolute; inset: 0; z-index: 0;
    background: url('images/desert-dunes.jpg') center center / cover no-repeat;
}
.eng-kc-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.88) 0%,
        rgba(10,10,10,0.75) 50%,
        rgba(10,10,10,0.92) 100%
    );
}

.eng-kc-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.eng-kc-header { margin-bottom: 3rem; }

.eng-kc-tag {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}

.eng-kc-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: #FFFFFF;
}

.eng-kc-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    font-style: italic;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    max-width: 820px;
    margin: 0 auto 6rem;
    position: relative;
}
.eng-kc-quote strong { color: #FFFFFF; font-style: normal; font-weight: 400; }

.eng-kc-qmark {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem;
    color: #B8915A;
    opacity: 0.4;
    line-height: 0;
    vertical-align: -0.4em;
}
.eng-kc-qmark--close { margin-left: 0.2em; }

/* 5 challenges in a horizontal strip */
.eng-kc-challenges {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid rgba(255,255,255,0.07);
    text-align: left;
}
@media (max-width: 900px) {
    .eng-kc-challenges { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .eng-kc-challenges { grid-template-columns: 1fr; }
}

.eng-kc-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.eng-kc-item:last-child { border-right: none; }

.kc-num {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    color: #B8915A;
    margin-bottom: 1rem;
}

.kc-rule {
    width: 30px;
    height: 1px;
    background: rgba(184,145,90,0.35);
    margin-bottom: 1.25rem;
}

.kc-body strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.kc-body p {
    font-size: 0.75rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

/* ===================================================
   SECTION 6 — WHAT WE'RE LOOKING FOR
   Layout: Editorial table. Column headers top.
   Each row: icon | quality name | reason.
   Clean horizontal rules, no card boxes.
   =================================================== */
.eng-qualities {
    background: #0A0A0A;
    padding: 10rem 0;
}

.eng-qualities-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 3rem;
}
@media (max-width: 700px) {
    .eng-qualities-inner { padding: 0 2rem; }
}

.eng-qualities-header {
    display: flex;
    align-items: flex-end;
    gap: 3rem;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.eng-qual-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}
.eng-qual-subhead {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
}

/* Table */
.eng-qual-table { display: flex; flex-direction: column; }

.eng-qual-table-head {
    display: grid;
    grid-template-columns: 40px 260px 1fr;
    gap: 2rem;
    padding: 0 0 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0;
}
.qth-quality, .qth-matters {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.625rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #B8915A;
}
.qth-quality { grid-column: 2; }

@media (max-width: 700px) {
    .eng-qual-table-head { display: none; }
}

.eng-qual-row {
    display: grid;
    grid-template-columns: 40px 260px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s ease;
}

.eng-qual-row:hover { background: rgba(255,255,255,0.015); }

@media (max-width: 700px) {
    .eng-qual-row {
        grid-template-columns: 32px 1fr;
        grid-template-rows: auto auto;
        gap: 0.75rem 1rem;
    }
    .eng-qual-name { grid-column: 2; }
    .eng-qual-reason { grid-column: 2; grid-row: 2; }
}

.eng-qual-icon {
    width: 22px;
    height: 22px;
    color: rgba(184,145,90,0.5);
    flex-shrink: 0;
}
.eng-qual-icon svg { width: 100%; height: 100%; }
.eng-qual-row:hover .eng-qual-icon { color: #B8915A; }

.eng-qual-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #FFFFFF;
}

.eng-qual-reason {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
}

/* ===================================================
   SECTION 7 — CALL TO ACTION
   Layout: Immersive full-screen.
   Deep green radial. Massive italic centred quote.
   Single oversized CTA button.
   =================================================== */
.eng-cta {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.eng-cta-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 60%, rgba(30,74,59,0.35) 0%, transparent 65%),
        #0A0A0A;
}
.eng-cta-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h80v80H0z' fill='none' stroke='rgba(255,255,255,0.015)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

.eng-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 6rem 3rem;
}

.eng-cta-tag {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 3rem;
}

.eng-cta-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    line-height: 1.45;
    margin-bottom: 4rem;
}

.eng-cta-em {
    display: block;
    color: #B8915A;
    font-style: italic;
    margin-top: 0.5rem;
}

.eng-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
}

/* RTL Overrides — auto-generated */

/* Corner marks: swap left↔right positioning */
html[dir="rtl"] .hc-tl { left: auto; right: 0; border-width: 1px 1px 0 0; }
html[dir="rtl"] .hc-tr { right: auto; left: 0; border-width: 1px 0 0 1px; }
html[dir="rtl"] .hc-bl { left: auto; right: 0; border-width: 0 1px 1px 0; }
html[dir="rtl"] .hc-br { right: auto; left: 0; border-width: 0 0 1px 1px; }

/* Blueprint grid crosses: left positioning decorative — swap for accurate RTL */
html[dir="rtl"] .bpg-cross-1 { left: auto; right: 20%; }
html[dir="rtl"] .bpg-cross-2 { left: auto; right: 80%; }

/* Blueprint cross ::after uses left:0 — flip to right:0 */
html[dir="rtl"] .bpg-cross::after { left: auto; right: 0; }

/* Disc areas: bullet uses left:0, padding-left */
html[dir="rtl"] .eng-disc-areas li {
    padding-left: 0;
    padding-right: 0.85rem;
}
html[dir="rtl"] .eng-disc-areas li::before {
    left: auto;
    right: 0;
}

/* Disc num column: padding-right in LTR → padding-left in RTL */
html[dir="rtl"] .eng-disc-num-col {
    padding-right: 0;
    padding-left: 2rem;
}

/* Disc icon: margin-right → margin-left */
html[dir="rtl"] .eng-disc-icon-col {
    margin-right: 0;
    margin-left: 2.5rem;
}

/* Disc content: padding-right 0 → padding-left 0 in RTL */
html[dir="rtl"] .eng-disc-content {
    padding: 2.5rem 0 2.5rem 2.5rem;
}

/* Disc bar: positioned right:0 → left:0 in RTL */
html[dir="rtl"] .eng-disc-bar {
    right: auto;
    left: 0;
}

/* Clar body: padding-left → padding-right */
html[dir="rtl"] .eng-clar-body {
    padding-left: 0;
    padding-right: 4rem;
}
@media (max-width: 600px) {
    html[dir="rtl"] .eng-clar-body { padding-right: 0; }
}

/* Clar split: margin-left → margin-right */
html[dir="rtl"] .eng-clar-split {
    margin-left: 0;
    margin-right: 4rem;
}
@media (max-width: 600px) {
    html[dir="rtl"] .eng-clar-split { margin-right: 0; }
}

/* Key challenges: text-align left → right in RTL */
html[dir="rtl"] .eng-kc-challenges {
    text-align: right;
}

/* Key challenge items: border-right on last-child from LTR,
   in RTL the first child should lose its border */
html[dir="rtl"] .eng-kc-item {
    border-right: 1px solid rgba(255,255,255,0.07);
    border-left: none;
}
html[dir="rtl"] .eng-kc-item:first-child {
    border-right: none;
}
html[dir="rtl"] .eng-kc-item:last-child {
    border-right: 1px solid rgba(255,255,255,0.07);
}

/* Investor profile item hover: translateX(6px) → translateX(-6px) */
html[dir="rtl"] .ipl-item:hover {
    transform: translateX(-6px);
}

/* Hero: text-align:center in LTR — keep centred in RTL */
html[dir="rtl"] .eng-hero-inner,
html[dir="rtl"] .eng-hero-inner *,
html[dir="rtl"] .eng-hero-title,
html[dir="rtl"] .eng-hero-eyebrow,
html[dir="rtl"] .eng-hero-sub {
    text-align: center !important;
}
