/* ============================================
   BLACKBRIDGE PARTNERS — STYLESHEET
   Direction Artistique: Institutional, cold, architectural
   Signature: bridge motif, strong verticals, B&W photography
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

/* --- Custom Cursor: removed ---*/

/* --- Gotham: Self-hosted ---
   Place Gotham font files (woff2/woff) in /fonts/ folder
   and uncomment the @font-face below.

@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Bold.woff2') format('woff2'),
         url('fonts/Gotham-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Medium.woff2') format('woff2'),
         url('fonts/Gotham-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Book.woff2') format('woff2'),
         url('fonts/Gotham-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
*/

:root {
    --black: #000000;
    --anthracite: #1A1A1A;
    --dark-surface: #111111;
    --off-white: #F5F5F5;
    --paper: #ECECEC;
    --gray-mid: #777777;
    --gray-light: #BBBBBB;
    --gray-border: #2A2A2A;
    --gray-border-light: #D5D5D5;

    /* Gotham with close fallbacks */
    --font-heading: 'Gotham', 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
    /* Inter for body */
    --font-body: 'Inter', 'Helvetica Neue', 'Arial', sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--anthracite);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

::selection {
    background: var(--anthracite);
    color: var(--off-white);
}

/* --- Container --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: none;
}

.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
    pointer-events: none;
    z-index: -1;
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 2;
}

.nav-logo-img {
    height: 32px;
    width: auto;
    filter: invert(1) brightness(2);
    transition: filter 0.4s ease;
}

/* Nav on light background */
.nav--on-light .nav-logo-img {
    filter: none;
}

.nav--on-light .lang-btn {
    color: rgba(20, 20, 20, 0.4);
}

.nav--on-light .lang-btn:hover {
    color: rgba(20, 20, 20, 0.8);
}

.nav--on-light .lang-btn.active {
    color: var(--anthracite);
    border-color: rgba(20, 20, 20, 0.25);
}

.nav--on-light .nav-toggle span {
    background: var(--anthracite);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
}

.lang-btn {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.4);
    background: none;
    border: 1px solid transparent;
    padding: 6px 10px;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.lang-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.lang-btn.active {
    color: var(--off-white);
    border-color: rgba(255, 255, 255, 0.25);
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 0;
    padding: 6px 6px 6px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Desktop nav links inside pill */
.nav-links-desktop {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links-desktop a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links-desktop a:hover {
    color: var(--off-white);
    opacity: 1;
}

/* Mobile fullscreen menu - hidden on desktop */
.nav-links {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--off-white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 0;
    padding: 10px 24px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--off-white);
    color: var(--black);
    border-color: var(--off-white);
    opacity: 1;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--off-white);
    transition: all 0.3s ease;
}

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(2.5px, 2.5px);
}

.nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(2.5px, -2.5px);
}

@media (max-width: 900px) {
    .nav-inner {
        padding: 0 24px;
    }
    .nav-right .nav-pill {
        display: none;
    }
    .nav-toggle {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .lang-switcher {
        display: flex;
        position: absolute;
        right: 64px;
        top: 50%;
        transform: translateY(-50%);
    }
    .lang-btn {
        font-size: 10px;
        padding: 4px 8px;
    }
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--black);
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 36px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        padding: 0;
        margin: 0;
        z-index: 1000;
        list-style: none;
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }
    .nav-links a {
        font-size: 18px;
        color: var(--off-white);
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }
    html[dir="rtl"] .nav-inner {
        flex-direction: row;
    }
    html[dir="rtl"] .lang-switcher {
        right: 64px;
        left: auto;
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: transparent;
    overflow: clip;
    overflow-y: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-photo {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: none !important;
    opacity: 1 !important;
}

@media (max-width: 900px) {
    .hero-photo img {
        object-position: 70% center;
    }
}

.hero-overlay {
    display: none;
}

/* Descriptive text block — right side, vertically centered */
.hero-desc {
    position: absolute;
    right: 40px;
    top: 56%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 380px;
    text-align: left;
}

.hero-desc-bold {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    color: var(--off-white);
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(28px);
    animation: wordReveal 0.8s var(--ease-out) 0.65s forwards;
}

.hero-desc-light {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: translateY(28px);
    animation: wordReveal 0.8s var(--ease-out) 0.85s forwards;
}

/* Big title — bottom left */
.hero-content {
    position: absolute;
    bottom: 60px;
    left: 40px;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(48px, 8vw, 110px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--off-white);
    will-change: transform, opacity;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: wordReveal 0.8s var(--ease-out) forwards;
}

.hero-title .word:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title .word:nth-child(3) {
    animation-delay: 0.45s;
}

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

/* Scroll arrow — bottom right */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.hero-scroll:hover {
    border-color: var(--off-white);
    color: var(--off-white);
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-content {
        left: 24px;
        bottom: 48px;
    }
    .hero-desc {
        position: absolute;
        top: auto;
        bottom: 170px;
        left: 24px;
        right: 24px;
        max-width: 420px;
        transform: none;
        text-align: left;
        padding: 0;
    }
    html[dir="rtl"] .hero-content {
        left: auto;
        right: 24px;
    }
    html[dir="rtl"] .hero-desc {
        left: 24px;
        right: 24px;
        max-width: none;
        text-align: right;
    }
    .hero-scroll {
        right: 24px;
        bottom: 24px;
        width: 40px;
        height: 40px;
    }
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ============================================
   PHOTO STRIP — 3-column visual break
   ============================================ */
.photo-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    background: var(--black);
    padding: 2px 0;
}

.photo-strip-item {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.15);
    transition: transform 0.6s var(--ease-out), filter 0.6s ease;
}

.photo-strip-item:hover img {
    transform: scale(1.05);
    filter: grayscale(100%) contrast(1.3);
}

@media (max-width: 768px) {
    .photo-strip {
        grid-template-columns: 1fr;
    }
    .photo-strip-item {
        height: 200px;
    }
}

/* ============================================
   SECTIONS — General
   ============================================ */
.section {
    padding: 160px 0;
    position: relative;
    z-index: 20;
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
}

.section--dark {
    background-color: var(--anthracite);
    color: var(--off-white);
}

.section--light {
    background-color: var(--off-white);
    color: var(--anthracite);
}

/* --- Section Header: index + title --- */
.section-header {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 72px;
}

.section-index {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 10px;
    flex-shrink: 0;
}

.section-index-number {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--gray-mid);
    letter-spacing: 0.04em;
}

.section-index-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gray-border-light);
}

.section-index--light .section-index-line {
    background: var(--gray-border);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(32px, 5vw, 56px);
    letter-spacing: normal;
    line-height: 1.05;
}

.subsection-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(20px, 3vw, 32px);
    letter-spacing: normal;
}

@media (max-width: 600px) {
    .section-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 48px;
    }
}

/* --- Content Grid --- */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.content-grid--asymmetric {
    grid-template-columns: 1.4fr 1fr;
    gap: 100px;
}

@media (max-width: 900px) {
    .content-grid,
    .content-grid--asymmetric {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* --- Body Text --- */
.body-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 400;
    margin-bottom: 20px;
    color: inherit;
}

.body-text--lead {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 28px;
}

.body-text--small {
    font-size: 13px;
    line-height: 1.7;
    color: var(--gray-mid);
}

/* Content photo placeholder */
.content-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
}

.content-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
}

/* --- Fade-in on scroll --- */
.fade-in {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   STATS
   ============================================ */
.stat-block {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 42px;
    letter-spacing: normal;
    line-height: 1;
}

.stat-line {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--gray-border-light);
    margin: 12px 0;
}

.section--dark .stat-line,
.section--light .stat-line {
    background: var(--gray-border-light);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-mid);
}

/* ============================================
   FULL-WIDTH PHOTO SECTIONS
   ============================================ */
.photo-full {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
}

.photo-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
}

.photo-full-caption {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 2;
}

.photo-full-caption span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
    background: rgba(0,0,0,0.5);
    padding: 8px 16px;
}

.photo-full-overlay-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: rgba(0,0,0,0.4);
}

.photo-full-big-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(64px, 14vw, 160px);
    color: var(--off-white);
    line-height: 1;
    letter-spacing: normal;
}

.photo-full-small-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.06em;
    margin-top: 16px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .photo-full {
        height: 50vh;
    }
    .photo-full-caption {
        left: 24px;
        bottom: 24px;
    }
}

/* ============================================
   BRIDGE SECTION — Cards
   ============================================ */
.bridge-intro {
    max-width: 700px;
    margin-bottom: 80px;
}

.bridge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 120px;
}

.bridge-card {
    display: flex;
    flex-direction: column;
    background: var(--dark-surface);
    transition: transform 0.22s ease-out, border-color 0.22s ease-out;
    border: 1px solid var(--gray-border);
    will-change: transform;
    pointer-events: auto;
}

.bridge-card:hover {
    border-color: rgba(255,255,255,0.15);
}

.bridge-card-icon {
    padding: 32px 28px 0;
    color: rgba(255,255,255,0.35);
}

.bridge-card-content {
    padding: 24px 28px 32px;
}

.bridge-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    color: var(--off-white);
}

.bridge-card-content .body-text {
    font-size: 14px;
    color: rgba(245, 245, 245, 0.6);
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .bridge-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================
   HIGHLIGHT BLOCK (100% compliance)
   ============================================ */
.highlight-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 48px 40px;
    background: var(--anthracite);
}

.highlight-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(56px, 8vw, 96px);
    color: var(--off-white);
    line-height: 1;
    letter-spacing: normal;
    margin-bottom: 16px;
}

.highlight-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(245,245,245,0.55);
}

/* ============================================
   PARTNER STATS
   ============================================ */
.partner-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-border);
}

.partner-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.partner-stat-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 32px;
    color: var(--off-white);
    line-height: 1;
    letter-spacing: normal;
}

.partner-stat-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-mid);
}

@media (max-width: 600px) {
    .partner-stats {
        flex-direction: column;
        gap: 24px;
    }
}

/* ============================================
   TRANSACTION PROTOCOL
   ============================================ */
.protocol-section {
    padding-top: 48px;
}

.protocol-section .section-header {
    margin-bottom: 48px;
}

.protocol-steps {
    display: flex;
    flex-direction: column;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-border);
    align-items: start;
}

.step:first-child {
    border-top: 1px solid var(--gray-border);
}

.step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.step-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: rgba(255,255,255,0.15);
    line-height: 1;
}

.step-line {
    width: 1px;
    height: 40px;
    background: var(--gray-border);
    margin-top: 12px;
}

.step-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    color: var(--off-white);
}

.step-content .body-text {
    margin-bottom: 0;
    font-size: 14px;
    color: rgba(245, 245, 245, 0.55);
}

@media (max-width: 600px) {
    .step {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .step-left {
        flex-direction: row;
        gap: 16px;
    }
    .step-line {
        width: 40px;
        height: 1px;
        margin-top: 0;
    }
}

/* ============================================
   COMPLIANCE — Cards Grid
   ============================================ */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 80px;
    background: var(--gray-border-light);
}

.compliance-card {
    background: var(--off-white);
    padding: 48px 40px;
    transition: background 0.3s ease;
}

.compliance-card:hover {
    background: var(--paper);
}

.compliance-card-index {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--gray-border-light);
    margin-bottom: 20px;
    line-height: 1;
}

.compliance-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.compliance-card-line {
    width: 24px;
    height: 1px;
    background: var(--anthracite);
    margin-bottom: 16px;
}

.compliance-card .body-text {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--gray-mid);
}

@media (max-width: 768px) {
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    .compliance-card {
        padding: 32px 24px;
    }
}

/* ============================================
   CONTACT
   ============================================ */
.section--contact {
    padding-bottom: 80px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
}

.contact-main .body-text--lead {
    margin-bottom: 16px;
}

.contact-cta {
    margin-top: 40px;
}

.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 18px 48px;
    transition: all 0.3s ease;
    color: var(--off-white);
    background: var(--anthracite);
}

.btn:hover {
    opacity: 1;
    background: var(--black);
    color: var(--off-white);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-top: 8px;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-mid);
}

.contact-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--anthracite);
    border-bottom: 1px solid var(--gray-border-light);
    display: inline-block;
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.contact-link:hover {
    opacity: 1;
    border-color: var(--anthracite);
}

.contact-text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--gray-mid);
}

.contact-disclaimer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-border-light);
    max-width: 700px;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: var(--gray-mid);
    padding: 48px 0 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 48px;
    position: relative;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-mark {
    color: var(--off-white);
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--off-white);
}

.footer-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: var(--gray-mid);
}

.footer-legal {
    text-align: right;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--gray-mid);
}

.footer-line {
    width: 100%;
    height: 1px;
    background: var(--gray-border);
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .footer-center {
        position: static;
        transform: none;
    }
    .footer-legal {
        text-align: center;
    }
}

/* ============================================
   WHO WE ARE — Minimal intro section
   ============================================ */
.section--whoweare {
    padding: 100px 0;
}

.whoweare-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.whoweare-text {
    font-family: var(--font-body);
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 300;
    line-height: 1.65;
    color: rgba(245, 245, 245, 0.75);
    letter-spacing: 0.01em;
}

/* ============================================
   TRUST BAR — Partner credibility strip
   ============================================ */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 48px 0 72px;
    border-bottom: 1px solid var(--gray-border);
    margin-bottom: 72px;
    flex-wrap: wrap;
}

.trust-item {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.trust-sep {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .trust-bar {
        display: none;
    }
}



/* ============================================
   ANIMATED COUNTER
   ============================================ */
.counter-animated {
    display: inline-block;
}

/* ============================================
   RTL SUPPORT (Arabic)
   ============================================ */
html[dir="rtl"] {
    font-family: 'Noto Sans Arabic', var(--font-body), sans-serif;
}

html[dir="rtl"] body,
html[dir="rtl"] .body-text,
html[dir="rtl"] .hero-desc-bold,
html[dir="rtl"] .hero-desc-light {
    font-family: 'Noto Sans Arabic', var(--font-body), sans-serif;
}

html[dir="rtl"] .hero-title,
html[dir="rtl"] .section-title,
html[dir="rtl"] .subsection-title,
html[dir="rtl"] .bridge-card-title,
html[dir="rtl"] .step-title,
html[dir="rtl"] .compliance-card-title,
html[dir="rtl"] .contact-label,
html[dir="rtl"] .footer-logo,
html[dir="rtl"] .nav-logo {
    font-family: 'Noto Sans Arabic', var(--font-heading), sans-serif;
}

html[dir="rtl"] .hero-content {
    left: auto;
    right: 6vw;
    text-align: right;
}

html[dir="rtl"] .hero-desc {
    right: auto;
    left: 6vw;
    text-align: right;
}

@media (max-width: 768px) {
    html[dir="rtl"] .hero-content {
        right: 24px;
    }
    html[dir="rtl"] .hero-desc {
        right: 24px;
        left: 24px;
        max-width: none;
    }
}

html[dir="rtl"] .hero-scroll {
    right: auto;
    left: 6vw;
}

html[dir="rtl"] .section-index {
    direction: ltr;
}

html[dir="rtl"] .step {
    direction: rtl;
}

html[dir="rtl"] .step-left {
    order: 0;
}

html[dir="rtl"] .nav-pill {
    padding: 6px 28px 6px 6px;
}

html[dir="rtl"] .nav-inner {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-right {
    flex-direction: row-reverse;
}

html[dir="rtl"] .footer-inner {
    direction: rtl;
}
