/* ============================================================
   NORM INVESTMENT LLC — Premium Corporate Design System
   Theme: Dark Grey / Silver / White / Gold Accent
   ============================================================ */

:root {
    /* Ink (dark grey scale) */
    --ink-950: #0b0d0f;
    --ink-900: #101317;
    --ink-850: #14181d;
    --ink-800: #1a1f25;
    --ink-700: #242b33;
    --ink-600: #313a45;

    /* Silver / White */
    --silver-100: #f6f7f8;
    --silver-200: #e6e9ec;
    --silver-300: #c8cdd4;
    --silver-400: #a8afb9;
    --silver-500: #8b939f;

    /* Gold accent */
    --gold-200: #f0dfae;
    --gold-300: #e6cd8a;
    --gold-400: #d5b563;
    --gold-500: #c2a04a;
    --gold-600: #a3822f;
    --gold-700: #7d6222;

    --gold-grad: linear-gradient(120deg, #ecd691 0%, #c9a54e 45%, #96762a 100%);
    --gold-grad-soft: linear-gradient(120deg, rgba(236, 214, 145, .18), rgba(150, 118, 42, .06));

    --font-head: 'Marcellus', 'Cairo', serif;
    --font-body: 'Inter', 'Tajawal', sans-serif;

    --container: 1200px;
    --radius: 14px;
    --shadow-1: 0 10px 30px rgba(0, 0, 0, .35);
    --shadow-2: 0 24px 60px rgba(0, 0, 0, .5);
    --ease: cubic-bezier(.22, .61, .36, 1);
}

html[data-theme="light"] {
    --ink-950: #e9e5dc;
    --ink-900: #f8f7f3;
    --ink-850: #f0ede6;
    --ink-800: #ffffff;
    --ink-700: #e4dfd5;
    --ink-600: #d1cabe;
    --silver-100: #17212b;
    --silver-200: #28333e;
    --silver-300: #46525e;
    --silver-400: #626e79;
    --silver-500: #78838d;
    --gold-200: #5f430c;
    --gold-300: #74510d;
    --gold-400: #865f10;
    --gold-500: #9b7118;
    --gold-600: #74500c;
    --gold-700: #563a08;
    --gold-grad: linear-gradient(120deg, #b9871d 0%, #8a5d0b 48%, #684307 100%);
    --gold-grad-soft: linear-gradient(120deg, rgba(185, 135, 29, .22), rgba(104, 67, 7, .09));
    --shadow-1: 0 10px 30px rgba(38, 43, 48, .12);
    --shadow-2: 0 24px 60px rgba(38, 43, 48, .16);
}

html[dir="rtl"] body,
html[lang="ar"] body {
    --font-head: 'Cairo', serif;
    --font-body: 'Tajawal', sans-serif;
    letter-spacing: 0 !important;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--ink-900);
    color: var(--silver-200);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold-400); text-decoration: none; transition: color .25s var(--ease); cursor: pointer; }
a:hover { color: var(--gold-300); }

h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--silver-100); font-weight: 400; line-height: 1.25; }

::selection { background: var(--gold-500); color: var(--ink-950); }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

/* ---------- Utilities ---------- */
.text-gold { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.center { text-align: center; }

.kicker {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: .78rem; letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold-400); font-weight: 600;
}
.kicker::before { content: ""; width: 42px; height: 1px; background: var(--gold-grad); }
.kicker.k-center::after { content: ""; width: 42px; height: 1px; background: var(--gold-grad); }

.section { padding: 110px 0; position: relative; }
.section.alt { background: var(--ink-850); }
.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin: 18px 0 16px; }
.section-sub { color: var(--silver-400); font-size: 1.05rem; }

.gold-rule { width: 74px; height: 2px; background: var(--gold-grad); border: 0; margin: 22px 0; }
.center .gold-rule { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 34px; min-height: 48px;
    font-family: var(--font-body); font-size: .92rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    border-radius: 3px; border: 1px solid transparent;
    cursor: pointer; position: relative; overflow: hidden;
    transition: all .35s var(--ease);
}
.btn i { transition: transform .35s var(--ease); }
.btn:hover i { transform: translateX(4px); }
html[dir="rtl"] .btn:hover i { transform: translateX(-4px); }

.btn-gold { background: var(--gold-grad); color: var(--ink-950); box-shadow: 0 8px 24px rgba(196, 161, 69, .25); }
.btn-gold:hover { color: var(--ink-950); box-shadow: 0 12px 34px rgba(196, 161, 69, .45); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--silver-100); border-color: rgba(200, 205, 212, .35); }
.btn-ghost:hover { border-color: var(--gold-400); color: var(--gold-300); transform: translateY(-2px); }

.btn:focus-visible, a:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 3px; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: fixed; inset-inline: 0; top: 0; z-index: 1000;
    transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
    padding: 18px 0;
    background: linear-gradient(180deg, rgba(11, 13, 15, .75), rgba(11, 13, 15, 0));
}
.site-header.scrolled {
    background: rgba(13, 15, 18, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, .45);
    padding: 10px 0;
    border-bottom: 1px solid rgba(196, 161, 69, .15);
}
html[data-theme="light"] .site-header {
    background: linear-gradient(180deg, rgba(248, 247, 243, .96), rgba(248, 247, 243, .68));
}
html[data-theme="light"] .site-header.scrolled {
    background: rgba(248, 247, 243, .94);
    box-shadow: 0 6px 30px rgba(38, 43, 48, .13);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo {
    display: block;
    width: 165px;
    height: auto;
    max-height: 72px;
    object-fit: contain;
}
.theme-logo-light { display: none; }
html[data-theme="light"] .theme-logo-dark { display: none; }
html[data-theme="light"] .theme-logo-light { display: block; }
.site-footer .brand-logo { width: 210px; max-height: none; }
.brand-mark {
    width: 46px; height: 46px; flex: 0 0 46px;
    border: 1.5px solid var(--gold-500); border-radius: 4px;
    display: grid; place-items: center;
    font-family: var(--font-head); font-size: 1.5rem; color: var(--gold-400);
    background: linear-gradient(145deg, rgba(196, 161, 69, .12), transparent);
    transition: all .35s var(--ease);
}
.brand:hover .brand-mark { box-shadow: 0 0 24px rgba(196, 161, 69, .35); transform: rotate(-4deg); }
.brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name b { font-family: var(--font-head); font-weight: 400; font-size: 1.12rem; color: var(--silver-100); letter-spacing: .14em; }
.brand-name span { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-400); }
html[dir="rtl"] .brand-name b { letter-spacing: 0; font-size: 1.2rem; }
html[dir="rtl"] .brand-name span { letter-spacing: 0; font-size: .75rem; }

.main-nav { display: flex; align-items: center; gap: 6px; margin-top: 13px;}
.main-nav a {
    position: relative; padding: 10px 14px; color: var(--silver-200);
    font-size: .88rem; font-weight: 500; letter-spacing: .04em;
    white-space: nowrap;
}
.main-nav a::after {
    content: ""; position: absolute; inset-inline: 14px; bottom: 4px; height: 1.5px;
    background: var(--gold-grad); transform: scaleX(0); transform-origin: center;
    transition: transform .35s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-300); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.theme-toggle {
    width: 42px; height: 42px; flex: 0 0 42px;
    display: grid; place-items: center;
    border: 1px solid rgba(196, 161, 69, .45); border-radius: 50%;
    color: var(--gold-300); background: transparent; cursor: pointer;
    font-size: 1rem; transition: all .3s var(--ease);
}
.theme-toggle:hover {
    color: var(--gold-200); background: rgba(196, 161, 69, .12);
    transform: rotate(15deg);
}
.lang-switch {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 18px; min-height: 42px; border-radius: 3px;
    border: 1px solid rgba(196, 161, 69, .45); color: var(--gold-300);
    font-size: .85rem; font-weight: 600; background: transparent;
    transition: all .3s var(--ease);
}
.lang-switch:hover { background: rgba(196, 161, 69, .12); color: var(--gold-200); }

.nav-toggle {
    display: none; width: 46px; height: 46px; border: 1px solid rgba(200, 205, 212, .25);
    background: transparent; border-radius: 4px; cursor: pointer; position: relative; z-index: 1100;
}
.nav-toggle span {
    display: block; width: 20px; height: 2px; background: var(--silver-100);
    margin: 4px auto; transition: all .35s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 1080px) {
    .main-nav {
        position: fixed; inset: 0; z-index: 1050;
        flex-direction: column; justify-content: center; gap: 8px;
        background: rgba(11, 13, 15, .97);
        backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
        opacity: 0; visibility: hidden; transition: all .4s var(--ease);
    }
    html[data-theme="light"] .main-nav { background: rgba(248, 247, 243, .98); }
    .main-nav.open { opacity: 1; visibility: visible; }
    .main-nav a { font-size: 1.25rem; padding: 14px 20px; }
    .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100svh;
    padding: 140px 0 120px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
    background:
        radial-gradient(1100px 500px at 80% -10%, rgba(196, 161, 69, .13), transparent 60%),
        radial-gradient(900px 600px at -10% 110%, rgba(49, 58, 69, .55), transparent 60%),
        linear-gradient(180deg, var(--ink-950), var(--ink-900) 70%);
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(200, 205, 212, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 205, 212, .045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 75%);
    animation: gridDrift 26s linear infinite;
}
@keyframes gridDrift {
    from { background-position: 0 0, 0 0; }
    to { background-position: 72px 72px, 72px 72px; }
}
.hero-bg-photo {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: .22; filter: grayscale(35%) contrast(1.05);
    animation: kenBurns 22s ease-in-out infinite alternate;
}
@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.09); }
}
.hero-orb {
    position: absolute; border-radius: 50%; filter: blur(90px); opacity: .35; pointer-events: none;
}
.hero-orb.o1 { width: 480px; height: 480px; background: rgba(196, 161, 69, .16); top: -140px; inset-inline-end: -120px; animation: float1 14s ease-in-out infinite alternate; }
.hero-orb.o2 { width: 380px; height: 380px; background: rgba(139, 147, 159, .14); bottom: -120px; inset-inline-start: -100px; animation: float1 18s ease-in-out infinite alternate-reverse; }
@keyframes float1 {
    from { transform: translate(0, 0); }
    to { transform: translate(-40px, 40px); }
}

.hero .container { position: relative; z-index: 2; }
.hero-kicker { margin-bottom: 26px; }
.hero-title {
    font-size: clamp(2.4rem, 5.6vw, 4.4rem);
    max-width: 900px; margin-bottom: 26px; color: #fff;
}
html[data-theme="light"] .hero-title { color: var(--silver-100); }
.hero-sub { max-width: 640px; color: var(--silver-300); font-size: 1.12rem; margin-bottom: 44px; }
.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-scroll {
    position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
    color: var(--silver-400); font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
}
.hero-scroll::after {
    content: ""; width: 1px; height: 44px;
    background: linear-gradient(180deg, var(--gold-400), transparent);
    animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Stats strip */
.stats-strip {
    position: relative; z-index: 3;
    background: linear-gradient(160deg, var(--ink-800), var(--ink-850));
    border: 1px solid rgba(196, 161, 69, .22);
    border-radius: var(--radius);
    box-shadow: var(--shadow-2);
    display: grid; grid-template-columns: repeat(4, 1fr);
    margin-top: -84px;
}
.stat {
    padding: 38px 26px; text-align: center; position: relative;
}
.stat + .stat::before {
    content: ""; position: absolute; inset-inline-start: 0; top: 26%; height: 48%;
    width: 1px; background: linear-gradient(180deg, transparent, rgba(196, 161, 69, .4), transparent);
}
.stat .num {
    font-family: var(--font-head); font-size: 2.5rem; color: var(--gold-300); line-height: 1;
    display: inline-flex; align-items: baseline; gap: 2px;
}
.stat .unit { font-size: 1.3rem; color: var(--gold-500); }
.stat .lbl { margin-top: 10px; color: var(--silver-400); font-size: .86rem; letter-spacing: .06em; text-transform: uppercase; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: linear-gradient(165deg, var(--ink-800), var(--ink-850) 70%);
    border: 1px solid rgba(200, 205, 212, .09);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative; overflow: hidden;
    transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.card::before {
    content: ""; position: absolute; inset-inline: 0; top: 0; height: 2px;
    background: var(--gold-grad); transform: scaleX(0); transform-origin: inline-start;
    transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: rgba(196, 161, 69, .35); box-shadow: var(--shadow-2); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
    width: 62px; height: 62px; border-radius: 8px;
    display: grid; place-items: center; margin-bottom: 24px;
    background: var(--gold-grad-soft);
    border: 1px solid rgba(196, 161, 69, .3);
    color: var(--gold-300); font-size: 1.5rem;
    transition: all .45s var(--ease);
}
.card:hover .card-icon { background: var(--gold-grad); color: var(--ink-950); box-shadow: 0 10px 26px rgba(196, 161, 69, .35); }
.card h3 { font-size: 1.3rem; margin-bottom: 14px; }
.card p { color: var(--silver-400); font-size: .96rem; }
.card .card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-size: .84rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.card .card-link i { transition: transform .3s var(--ease); }
.card:hover .card-link i { transform: translateX(5px); }
html[dir="rtl"] .card:hover .card-link i { transform: translateX(-5px); }

/* Feature / checklist */
.check-list { list-style: none; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--silver-300); }
.check-list li i { color: var(--gold-400); margin-top: 5px; flex: 0 0 auto; }
.check-list.two-col { grid-template-columns: repeat(2, 1fr); }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split .visual { position: relative; }
.frame-visual {
    position: relative; border-radius: var(--radius); overflow: hidden;
    background: linear-gradient(150deg, var(--ink-700), var(--ink-850));
    aspect-ratio: 4/4.6; display: grid; place-items: center;
    border: 1px solid rgba(200, 205, 212, .1);
}
.frame-visual::after {
    content: ""; position: absolute; inset: 18px;
    border: 1px solid rgba(196, 161, 69, .4); border-radius: 8px; pointer-events: none;
}
.frame-visual img { width: 100%; height: 100%; object-fit: cover; }
.frame-visual .ph-icon { font-size: 5rem; color: rgba(196, 161, 69, .35); }
.visual-badge {
    position: absolute; bottom: -26px; inset-inline-end: -18px;
    background: var(--gold-grad); color: var(--ink-950);
    padding: 22px 28px; border-radius: 10px; box-shadow: var(--shadow-2);
    font-family: var(--font-head); font-size: 1.05rem; line-height: 1.3; max-width: 240px;
}

/* Quote / chairman */
.quote-card {
    background: linear-gradient(160deg, var(--ink-800), var(--ink-850));
    border: 1px solid rgba(196, 161, 69, .2);
    border-radius: var(--radius); padding: 56px;
    position: relative;
}
.quote-card::before {
    content: "\201C"; position: absolute; top: 6px; inset-inline-start: 30px;
    font-family: Georgia, serif; font-size: 7rem; line-height: 1; color: rgba(196, 161, 69, .3);
}
.quote-card blockquote { font-family: var(--font-head); font-size: 1.35rem; color: var(--silver-100); line-height: 1.6; }
.quote-card .who { margin-top: 28px; display: flex; align-items: center; gap: 16px; }
.quote-card .who .avatar {
    width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid var(--gold-500);
    display: grid; place-items: center; color: var(--gold-400); font-size: 1.2rem;
}
.quote-card .who b { color: var(--silver-100); display: block; }
.quote-card .who span { color: var(--gold-400); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
    padding: 190px 0 110px; position: relative; overflow: hidden;
    background:
        radial-gradient(900px 400px at 85% 0%, rgba(196, 161, 69, .14), transparent 60%),
        linear-gradient(180deg, var(--ink-950), var(--ink-900));
}
.page-banner::before {
    content: ""; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(200, 205, 212, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 205, 212, .04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 90% at 60% 10%, #000 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 90% at 60% 10%, #000 20%, transparent 70%);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-top: 16px; }
.breadcrumbs { display: flex; gap: 10px; align-items: center; color: var(--silver-400); font-size: .85rem; margin-top: 18px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--silver-300); }
.breadcrumbs i { font-size: .6rem; color: var(--gold-500); }

/* ---------- Sector detail ---------- */
.sector-hero-icon {
    width: 86px; height: 86px; border-radius: 12px; display: grid; place-items: center;
    font-size: 2.2rem; color: var(--gold-300);
    background: var(--gold-grad-soft); border: 1px solid rgba(196, 161, 69, .35);
    margin-bottom: 24px;
}
.focus-chip {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--ink-800); border: 1px solid rgba(200, 205, 212, .12);
    padding: 13px 20px; border-radius: 40px; color: var(--silver-300); font-size: .92rem;
    transition: all .35s var(--ease);
}
.focus-chip i { color: var(--gold-400); font-size: .7rem; }
.focus-chip:hover { border-color: var(--gold-500); color: var(--silver-100); transform: translateY(-3px); }
.chips { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Marquee (partners / regions) ---------- */
.marquee { overflow: hidden; position: relative; padding: 10px 0;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; gap: 20px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
html[dir="rtl"] .marquee-track { animation-name: marqueeRTL; }
@keyframes marqueeRTL { from { transform: translateX(0); } to { transform: translateX(50%); } }

.region-pill {
    display: inline-flex; align-items: center; gap: 12px; white-space: nowrap;
    border: 1px solid rgba(196, 161, 69, .3); border-radius: 50px;
    padding: 16px 30px; color: var(--silver-200); font-family: var(--font-head); font-size: 1.05rem;
    background: linear-gradient(160deg, var(--ink-800), var(--ink-850));
}
.region-pill i { color: var(--gold-400); }

/* ---------- Timeline (growth strategy) ---------- */
.timeline { position: relative; display: grid; gap: 34px; padding-inline-start: 34px; }
.timeline::before {
    content: ""; position: absolute; inset-inline-start: 8px; top: 8px; bottom: 8px; width: 1.5px;
    background: linear-gradient(180deg, var(--gold-400), rgba(196, 161, 69, .1));
}
.timeline-item { position: relative; }
.timeline-item::before {
    content: ""; position: absolute; inset-inline-start: -32px; top: 8px;
    width: 13px; height: 13px; border-radius: 50%;
    background: var(--ink-900); border: 2.5px solid var(--gold-400);
    box-shadow: 0 0 0 5px rgba(196, 161, 69, .12);
}
.timeline-item h4 { font-size: 1.2rem; margin-bottom: 8px; }
.timeline-item p { color: var(--silver-400); }

/* ---------- CTA band ---------- */
.cta-band {
    position: relative; overflow: hidden; text-align: center;
    background:
        radial-gradient(800px 300px at 50% 120%, rgba(196, 161, 69, .2), transparent 65%),
        linear-gradient(160deg, var(--ink-850), var(--ink-950));
    border-top: 1px solid rgba(196, 161, 69, .18);
    border-bottom: 1px solid rgba(196, 161, 69, .18);
}
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); max-width: 760px; margin: 18px auto 18px; }
.cta-band p { max-width: 620px; margin: 0 auto 38px; color: var(--silver-400); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 40px; align-items: start; }
.contact-info-card {
    background: linear-gradient(165deg, var(--ink-800), var(--ink-850));
    border: 1px solid rgba(196, 161, 69, .2); border-radius: var(--radius);
    padding: 44px 38px;
}
.contact-line { display: flex; gap: 18px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(200, 205, 212, .08); }
.contact-line:last-of-type { border-bottom: 0; }
.contact-line .ic {
    width: 46px; height: 46px; flex: 0 0 46px; border-radius: 8px; display: grid; place-items: center;
    background: var(--gold-grad-soft); border: 1px solid rgba(196, 161, 69, .3); color: var(--gold-300);
}
.contact-line b { color: var(--silver-100); display: block; font-weight: 600; font-size: .95rem; }
.contact-line span, .contact-line a { color: var(--silver-400); font-size: .95rem; word-break: break-word; }

.form-card {
    background: linear-gradient(165deg, var(--ink-800), var(--ink-850));
    border: 1px solid rgba(200, 205, 212, .1); border-radius: var(--radius); padding: 44px 38px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .85rem; font-weight: 600; color: var(--silver-300); letter-spacing: .04em; }
.form-field label .req { color: var(--gold-400); }
.form-field input, .form-field textarea {
    background: var(--ink-900); border: 1px solid rgba(200, 205, 212, .15);
    border-radius: 6px; padding: 14px 16px; min-height: 48px; color: var(--silver-100);
    font-family: var(--font-body); font-size: .95rem;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.form-field input:focus, .form-field textarea:focus {
    outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(196, 161, 69, .15);
}
.form-msg { margin-top: 18px; padding: 14px 18px; border-radius: 6px; font-size: .92rem; display: none; }
.form-msg.ok { display: block; background: rgba(46, 160, 90, .12); border: 1px solid rgba(46, 160, 90, .4); color: #7ed6a2; }
.form-msg.err { display: block; background: rgba(220, 60, 60, .1); border: 1px solid rgba(220, 60, 60, .35); color: #f0a1a1; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--ink-950); border-top: 1px solid rgba(196, 161, 69, .16);
    padding: 80px 0 0; position: relative; overflow: hidden;
}
.site-footer::before {
    content: ""; position: absolute; top: -160px; inset-inline-end: -120px; width: 420px; height: 420px;
    border-radius: 50%; background: rgba(196, 161, 69, .05); filter: blur(70px);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; position: relative; }
.footer-col h4 { font-size: 1rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 22px; font-family: var(--font-body); font-weight: 600; }
html[dir="rtl"] .footer-col h4 { letter-spacing: 0; }
.footer-about p { color: var(--silver-400); font-size: .95rem; margin-top: 18px; max-width: 320px; }
.footer-links { list-style: none; display: grid; gap: 12px; }
.footer-links a { color: var(--silver-400); font-size: .95rem; display: inline-flex; gap: 10px; align-items: center; }
.footer-links a i { font-size: .6rem; color: var(--gold-500); transition: transform .3s var(--ease); }
.footer-links a:hover { color: var(--gold-300); }
.footer-links a:hover i { transform: translateX(4px); }
html[dir="rtl"] .footer-links a:hover i { transform: translateX(-4px); }
.footer-contact li { display: flex; gap: 12px; color: var(--silver-400); font-size: .95rem; margin-bottom: 14px; list-style: none; }
.footer-contact li i { color: var(--gold-400); margin-top: 5px; }

.newsletter-form { display: flex; margin-top: 18px; border: 1px solid rgba(200, 205, 212, .18); border-radius: 6px; overflow: hidden; }
.newsletter-form input {
    flex: 1; background: var(--ink-850); border: 0; padding: 13px 16px; color: var(--silver-100);
    font-family: var(--font-body); min-width: 0;
}
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
    background: var(--gold-grad); color: var(--ink-950); border: 0; padding: 0 20px;
    cursor: pointer; font-size: 1rem; transition: filter .3s;
}
.newsletter-form button:hover { filter: brightness(1.1); }

.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-row a {
    width: 42px; height: 42px; border-radius: 6px; display: grid; place-items: center;
    border: 1px solid rgba(200, 205, 212, .18); color: var(--silver-300);
    transition: all .3s var(--ease);
}
.social-row a:hover { background: var(--gold-grad); color: var(--ink-950); border-color: transparent; transform: translateY(-3px); }

.footer-bottom {
    margin-top: 64px; padding: 26px 0;
    border-top: 1px solid rgba(200, 205, 212, .08);
    display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
    color: var(--silver-500); font-size: .85rem;
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.rv-left { transform: translateX(-44px); }
.reveal.rv-right { transform: translateX(44px); }
.reveal.rv-scale { transform: scale(.92); }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}

/* ---------- Login ---------- */
.login-wrap { min-height: 100svh; display: grid; place-items: center; padding: 140px 24px 80px; }
.login-card {
    width: 100%; max-width: 440px;
    background: linear-gradient(165deg, var(--ink-800), var(--ink-850));
    border: 1px solid rgba(196, 161, 69, .25); border-radius: var(--radius);
    padding: 48px 42px; box-shadow: var(--shadow-2);
}
.login-card h1 { font-size: 1.8rem; text-align: center; margin-bottom: 6px; }
.login-card .hint { text-align: center; color: var(--silver-400); font-size: .9rem; margin-bottom: 30px; }
.login-card .error { color: #f0a1a1; text-align: center; margin-bottom: 14px; font-size: .9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .section { padding: 84px 0; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; gap: 48px; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(3)::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .section { padding: 64px 0; }
    .brand-name span { display: none; }
    .brand-name b { font-size: .95rem; }
    .brand-mark { width: 40px; height: 40px; flex-basis: 40px; font-size: 1.25rem; }
    .brand-logo { width: 135px; max-height: 66px; }
    .hero { padding: 120px 0 90px; }
    .hero-scroll { display: none; }
    .page-banner { padding: 140px 0 70px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .stats-strip { grid-template-columns: 1fr 1fr; margin-top: -50px; }
    .stat { padding: 26px 14px; }
    .stat .num { font-size: 1.9rem; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .check-list.two-col { grid-template-columns: 1fr; }
    .quote-card { padding: 38px 26px; }
    .hero-ctas .btn { width: 100%; }
    .visual-badge { position: static; margin-top: 18px; max-width: none; }
    .footer-bottom { justify-content: center; text-align: center; }
}
