/* =========================================================================
   SHADOW LINE — Advertising Agency
   Dark cinematic "spotlight & shadow" theme. Self-contained (no framework).
   ========================================================================= */

:root {
    --bg:        #07080c;
    --bg-2:      #0d0f16;
    --panel:     #12141d;
    --panel-2:   #171a25;
    --line:      rgba(255, 255, 255, .08);
    --line-2:    rgba(255, 255, 255, .14);
    --ink:       #f4f5f7;
    --muted:     #9aa0ad;
    --muted-2:   #6b7180;
    --gold:      #e7b13b;
    --gold-2:    #f6d485;
    --gold-soft: rgba(231, 177, 59, .16);
    --glow:      rgba(231, 177, 59, .22);
    --radius:    18px;
    --radius-lg: 28px;
    --shadow:    0 30px 80px -30px rgba(0, 0, 0, .8);
    --maxw:      1240px;
    --ease:      cubic-bezier(.19, 1, .22, 1);
    --font-display: 'Syne', 'Cairo', system-ui, sans-serif;
    --font-body:    'Inter', 'Cairo', system-ui, sans-serif;
    --spot-x: 50%;
    --spot-y: 0%;
}

[dir="rtl"] {
    --font-display: 'Cairo', 'Syne', system-ui, sans-serif;
    --font-body:    'Cairo', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Cursor-following spotlight + ambient shadow atmosphere */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(600px circle at var(--spot-x) var(--spot-y), var(--glow), transparent 60%),
        radial-gradient(900px circle at 90% 0%, rgba(231,177,59,.06), transparent 55%),
        radial-gradient(1200px circle at 10% 100%, rgba(90,110,255,.05), transparent 55%);
    transition: background .2s ease;
}

/* Fine film grain overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: .05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #000; }

/* ---- Layout helpers -------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.section { padding: clamp(70px, 10vw, 140px) 0; position: relative; z-index: 2; }
.center { text-align: center; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body);
    font-size: 12.5px; font-weight: 600; letter-spacing: .28em;
    text-transform: uppercase; color: var(--gold);
    margin: 0 0 22px;
}
[dir="rtl"] .eyebrow { letter-spacing: .04em; }
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); opacity: .7; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.04; margin: 0; letter-spacing: -.02em; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 { letter-spacing: 0; line-height: 1.2; }

.h-section { font-size: clamp(2rem, 5vw, 3.4rem); }
.lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.18rem); max-width: 62ch; }

.gold { color: var(--gold); }
.outline-text {
    color: transparent;
    -webkit-text-stroke: 1.4px rgba(255,255,255,.4);
}

/* ---- Buttons --------------------------------------------------------- */
.btn {
    --pad: 15px 30px;
    display: inline-flex; align-items: center; gap: 10px;
    padding: var(--pad);
    font-family: var(--font-body);
    font-weight: 600; font-size: 15px; letter-spacing: .01em;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .35s var(--ease), background .3s, color .3s, box-shadow .4s, border-color .3s;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold {
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: #12100a;
    box-shadow: 0 12px 40px -12px var(--glow);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 50px -12px var(--glow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
[dir="rtl"] .btn svg { transform: scaleX(-1); }

/* ---- Navigation ------------------------------------------------------ */
.nav {
    position: fixed; inset: 0 0 auto 0; z-index: 60;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(24px, 5vw, 60px);
    transition: background .4s, backdrop-filter .4s, padding .4s, border-color .4s;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(7, 8, 12, .72);
    backdrop-filter: blur(16px) saturate(140%);
    border-color: var(--line);
    padding-top: 12px; padding-bottom: 12px;
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand-logo { height: 72px; width: auto; display: block; transition: height .4s var(--ease); }
.nav.scrolled .brand-logo { height: 58px; }
.footer-logo { height: 88px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links.mobile { display: none; }
.nav-links a {
    padding: 9px 16px; font-size: 14.5px; font-weight: 500; color: var(--muted);
    border-radius: 100px; transition: color .25s, background .25s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
    content: ""; position: absolute; left: 16px; right: 16px; bottom: 2px; height: 2px;
    background: var(--gold); border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 14px; border: 1px solid var(--line-2); border-radius: 100px;
    font-size: 13px; font-weight: 600; color: var(--ink); transition: border-color .25s, color .25s;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 30px; height: 22px; position: relative; }
.nav-toggle span { position: absolute; left: 0; height: 2px; width: 100%; background: var(--ink); transition: .3s; }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
body.menu-open .nav-toggle span:nth-child(1) { top: 10px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ---- Hero ------------------------------------------------------------ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 120px; padding-bottom: 60px; overflow: hidden; }
.hero-bg-word {
    position: absolute; inset: auto 0 -6% 0; z-index: 0; text-align: center;
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(6rem, 26vw, 26rem); line-height: .8; letter-spacing: -.04em;
    color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.05);
    pointer-events: none; user-select: none; white-space: nowrap;
}
.hero-inner { position: relative; z-index: 3; }
.hero h1 {
    font-size: clamp(2.9rem, 9.5vw, 8.2rem);
    line-height: .92; margin: 18px 0 0;
}
[dir="rtl"] .hero h1 { line-height: 1.05; }
.hero h1 .light { color: var(--muted); font-weight: 300; -webkit-text-stroke: 0; }
.hero h1 .spot {
    position: relative; color: var(--gold);
    background: linear-gradient(180deg, var(--gold-2), var(--gold));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-lead { margin: 30px 0 0; max-width: 58ch; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-meta { display: flex; align-items: center; gap: 26px; margin-top: 46px; flex-wrap: wrap; }
.hero-meta .since { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--gold); }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted-2); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; }
.scroll-cue .line { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Motto ribbon */
.motto {
    position: relative; z-index: 2; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(231,177,59,.05), transparent);
}
.motto .wrap { padding-top: 46px; padding-bottom: 46px; }
.motto p {
    margin: 0; font-family: var(--font-display); font-weight: 700;
    font-size: clamp(1.3rem, 3.2vw, 2.4rem); line-height: 1.25; letter-spacing: -.01em;
    max-width: 22ch;
}
.motto .q { color: var(--gold); font-size: 2.4em; line-height: 0; vertical-align: -.35em; }
.motto .sig { margin-top: 18px; color: var(--muted); font-family: var(--font-body); font-weight: 600; font-size: 14px; letter-spacing: .04em; }

/* ---- Trusted by (auto-scrolling logos) ------------------------------- */
.trusted { border-bottom: 1px solid var(--line); background: var(--bg-2); position: relative; z-index: 2; padding: 34px 0 38px; }
.trusted__head { text-align: center; margin-bottom: 22px; }
.trusted__head .eyebrow { display: inline-flex; }
.trusted__viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.trusted__track { display: flex; width: max-content; will-change: transform; animation: trusted-scroll var(--trusted-dur, 36s) linear infinite; }
.trusted__set { display: flex; gap: 18px; padding-inline-end: 18px; }
.trusted:hover .trusted__track { animation-play-state: paused; }
[dir="rtl"] .trusted__track { animation-direction: reverse; }
@keyframes trusted-scroll { to { transform: translateX(-50%); } }

/* ---- Section heading block ------------------------------------------ */
.sec-head { max-width: 720px; }
.sec-head.center { margin: 0 auto; }
.sec-head p { margin: 16px 0 0; color: var(--muted); }

/* ---- Services grid --------------------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 60px; }
.svc {
    position: relative; overflow: hidden;
    padding: 40px; border: 1px solid var(--line); border-radius: var(--radius-lg);
    background: linear-gradient(180deg, var(--panel), var(--bg-2));
    transition: transform .5s var(--ease), border-color .4s, box-shadow .5s;
}
.svc::before {
    content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .5s;
    background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 0%), var(--gold-soft), transparent 60%);
}
.svc:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.svc:hover::before { opacity: 1; }
.svc__num { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--gold); letter-spacing: .1em; }
.svc__icon { width: 54px; height: 54px; margin: 22px 0 26px; color: var(--gold); }
.svc h3 { font-size: 1.7rem; }
.svc p { color: var(--muted); margin: 14px 0 0; font-size: 15.5px; }
.svc__go { position: absolute; top: 40px; inset-inline-end: 40px; width: 40px; height: 40px; border: 1px solid var(--line-2); border-radius: 50%; display: grid; place-items: center; color: var(--muted); transition: .4s; }
.svc:hover .svc__go { background: var(--gold); color: #000; border-color: var(--gold); }
[dir="rtl"] .svc__go svg { transform: scaleX(-1); }

/* ---- About / split --------------------------------------------------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-body p { color: var(--muted); font-size: 1.06rem; }
.about-visual { position: relative; }
.about-frame {
    position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
    aspect-ratio: 4 / 5; background:
        radial-gradient(120% 90% at 70% 0%, rgba(231,177,59,.24), transparent 55%),
        linear-gradient(180deg, var(--panel-2), #05060a);
    display: grid; place-items: center;
}
.about-frame .big-shadow {
    font-family: var(--font-display); font-weight: 800; font-size: clamp(4rem, 12vw, 9rem);
    line-height: .85; text-align: center; letter-spacing: -.03em;
}
.about-frame .big-shadow .l1 { color: var(--ink); }
.about-frame .big-shadow .l2 { color: transparent; -webkit-text-stroke: 1.5px var(--gold); }
.badge-float {
    position: absolute; inset-inline-end: -18px; bottom: -18px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #12100a;
    border-radius: 20px; padding: 18px 22px; text-align: center; box-shadow: 0 20px 50px -18px var(--glow);
}
.badge-float b { font-family: var(--font-display); font-size: 2rem; display: block; line-height: 1; }
.badge-float span { font-size: 12px; font-weight: 600; }

/* ---- Generated imagery ---------------------------------------------- */
.hero-bg-img { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center top; }
.hero-bg-img::after {
    content: ""; position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(7,8,12,.5), rgba(7,8,12,.18) 42%, var(--bg) 96%),
        radial-gradient(130% 110% at 50% -12%, transparent 36%, var(--bg) 100%);
}
.about-frame { padding: 0; }
.about-frame .frame-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.founder-portrait { overflow: hidden; }
.founder-portrait .portrait-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; z-index: 0; }
.founder-portrait::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 55%, rgba(5,6,10,.6)); pointer-events: none; }
.founder-portrait .ring { z-index: 2; }

/* Portfolio grid */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 60px; }
.pcard { position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); transition: transform .5s var(--ease), border-color .4s, box-shadow .5s; }
.pcard:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.pcard__img { aspect-ratio: 4 / 3; background-size: cover; background-position: center; position: relative;
    background-color: var(--panel-2); background-image: radial-gradient(120% 90% at 70% 0%, var(--gold-soft), transparent 55%), linear-gradient(180deg, var(--panel-2), #05060a);
    display: grid; place-items: center; }
.pcard__ph { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: transparent; -webkit-text-stroke: 1.4px var(--gold); }
.pcard__body { padding: 24px; }
.pcard__cat { display: inline-block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.pcard__body h3 { font-size: 1.35rem; }
.pcard__body p { color: var(--muted); font-size: 14.5px; margin: 10px 0 0; }
.pcard__link { position: absolute; inset: 0; z-index: 3; }

/* Clients strip */
.clients-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 44px; }
.client { min-width: 150px; height: 92px; flex: 1 1 150px; max-width: 210px; border: 1px solid var(--line); border-radius: var(--radius);
    background: var(--panel); display: grid; place-items: center; padding: 18px; transition: border-color .3s, transform .3s; }
.client:hover { border-color: var(--gold); transform: translateY(-3px); }
.client img { max-height: 54px; max-width: 100%; width: auto; object-fit: contain; filter: grayscale(1) brightness(1.6); opacity: .8; transition: .3s; }
.client:hover img { filter: none; opacity: 1; }
.client span { font-family: var(--font-display); font-weight: 700; color: var(--muted); font-size: 1.05rem; text-align: center; }
.trusted .client { flex: 0 0 190px; width: 190px; max-width: none; min-width: 0; }

/* Full-width cinematic showcase band */
.showcase { position: relative; min-height: 56vh; display: flex; align-items: flex-end; overflow: hidden; z-index: 2; border-block: 1px solid var(--line); }
.showcase__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.showcase::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(7,8,12,.32), rgba(7,8,12,.12) 40%, rgba(7,8,12,.94)); }
.showcase__inner { position: relative; z-index: 2; padding-block: 56px; }
.showcase__inner h2 { max-width: 18ch; }

.motto-card {
    margin-top: 40px; padding: 26px 30px; border: 1px solid var(--gold-soft); border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(231,177,59,.09), transparent);
}
.motto-card .lbl { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }
.motto-card p { margin: 10px 0 0; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; line-height: 1.35; }

/* ---- Stats ----------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 70px; }
.stat { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); background: linear-gradient(180deg, var(--gold-2), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.stat span { display: block; margin-top: 10px; color: var(--muted); font-size: 13.5px; }

/* ---- Founder --------------------------------------------------------- */
.founder { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.founder .split { align-items: start; }
.founder-portrait {
    position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
    aspect-ratio: 3 / 4; background:
        radial-gradient(90% 70% at 50% 10%, rgba(231,177,59,.25), transparent 60%),
        linear-gradient(180deg, #1a1c26, #05060a);
    display: grid; place-items: end center; position: sticky; top: 110px;
}
.founder-portrait .silh {
    width: 78%; height: 88%; align-self: end;
    background: radial-gradient(60% 40% at 50% 22%, #2a2d3a, transparent 70%),
                linear-gradient(180deg, #23262f, #0a0b10);
    clip-path: polygon(50% 0, 66% 6%, 72% 22%, 70% 34%, 82% 44%, 88% 100%, 12% 100%, 18% 44%, 30% 34%, 28% 22%, 34% 6%);
    filter: drop-shadow(0 0 40px rgba(231,177,59,.15));
}
.founder-portrait .ring { position: absolute; inset: 22px; border: 1px solid var(--gold-soft); border-radius: 22px; pointer-events: none; }
.founder-quote { margin-top: 8px; }
.founder-quote .role { color: var(--gold); font-weight: 600; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; }
[dir="rtl"] .founder-quote .role { letter-spacing: .02em; }
.founder-story { margin-top: 26px; }
.founder-story p { color: var(--muted); position: relative; padding-inline-start: 22px; margin: 0 0 18px; }
.founder-story p::before { content: ""; position: absolute; inset-inline-start: 0; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); opacity: .5; }
.founder-name { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-top: 8px; }

/* ---- Mission / Vision ------------------------------------------------ */
.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 60px; }
.mv {
    position: relative; padding: 44px; border: 1px solid var(--line); border-radius: var(--radius-lg);
    background: linear-gradient(180deg, var(--panel), var(--bg-2)); overflow: hidden;
}
.mv .glow-orb { position: absolute; width: 260px; height: 260px; border-radius: 50%; filter: blur(60px); opacity: .5; }
.mv:nth-child(1) .glow-orb { background: var(--gold-soft); top: -80px; inset-inline-end: -60px; }
.mv:nth-child(2) .glow-orb { background: rgba(90,110,255,.14); bottom: -80px; inset-inline-start: -60px; }
.mv .num { font-family: var(--font-display); font-weight: 800; color: transparent; -webkit-text-stroke: 1px var(--line-2); font-size: 3rem; }
.mv h3 { font-size: 1.9rem; margin-top: 14px; }
.mv p { color: var(--muted); margin-top: 16px; position: relative; }

/* ---- Solutions ------------------------------------------------------- */
.sol-list { margin-top: 60px; border-top: 1px solid var(--line); }
.sol {
    display: grid; grid-template-columns: 90px 1fr auto; gap: 30px; align-items: center;
    padding: 34px 10px; border-bottom: 1px solid var(--line); position: relative;
    transition: padding .4s var(--ease), background .4s;
}
.sol::after { content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: var(--gold); transition: width .5s var(--ease); }
.sol:hover { padding-inline-start: 26px; background: linear-gradient(90deg, var(--gold-soft), transparent); }
.sol:hover::after { width: 100%; }
.sol .idx { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: transparent; -webkit-text-stroke: 1px var(--gold); }
.sol h3 { font-size: clamp(1.4rem, 2.6vw, 2.1rem); transition: color .3s; }
.sol:hover h3 { color: var(--gold); }
.sol p { color: var(--muted); margin: 8px 0 0; max-width: 70ch; font-size: 15.5px; }
.sol .arrow { width: 46px; height: 46px; border: 1px solid var(--line-2); border-radius: 50%; display: grid; place-items: center; color: var(--muted); transition: .4s; flex: none; }
.sol:hover .arrow { background: var(--gold); border-color: var(--gold); color: #000; transform: rotate(-45deg); }
[dir="rtl"] .sol .arrow svg { transform: scaleX(-1); }
[dir="rtl"] .sol:hover .arrow { transform: rotate(45deg); }

/* ---- CTA band -------------------------------------------------------- */
.cta-band { position: relative; z-index: 2; text-align: center; overflow: hidden; }
.cta-band .wrap { padding: clamp(70px, 10vw, 130px) 24px; }
.cta-band::before {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(60% 120% at 50% 0%, var(--gold-soft), transparent 60%);
}
.cta-band h2 { font-size: clamp(2.2rem, 6vw, 4.6rem); position: relative; z-index: 2; }
.cta-band p { color: var(--muted); margin: 22px auto 0; max-width: 48ch; position: relative; z-index: 2; }
.cta-band .btn { margin-top: 40px; position: relative; z-index: 2; }

/* ---- Contact --------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 70px); margin-top: 60px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.c-card { display: flex; gap: 18px; align-items: center; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); transition: border-color .3s, transform .3s; }
.c-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.c-card .ic { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); }
.c-card .ic svg { width: 22px; height: 22px; }
.c-card .lbl { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); }
.c-card .val { font-weight: 600; margin-top: 3px; }
[dir="ltr"] .c-card .val { direction: ltr; }

.form-panel { padding: clamp(26px, 4vw, 40px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(180deg, var(--panel), var(--bg-2)); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
    width: 100%; padding: 14px 16px; background: var(--bg); color: var(--ink);
    border: 1px solid var(--line-2); border-radius: 12px; font: inherit; font-size: 15px;
    transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%239aa0ad' stroke-width='1.6'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
[dir="rtl"] .field select { background-position: left 16px center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { margin-top: 14px; font-size: 14px; min-height: 20px; }
.form-note.ok { color: #57d38c; }
.form-note.err { color: #ff6b6b; }
.btn.is-loading { pointer-events: none; opacity: .7; }

/* ---- Footer ---------------------------------------------------------- */
.footer { position: relative; z-index: 2; border-top: 1px solid var(--line); background: var(--bg-2); padding: 70px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .blurb { color: var(--muted); margin: 20px 0 0; max-width: 34ch; font-size: 15px; }
.footer h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a, .footer ul li { color: var(--muted); font-size: 15px; transition: color .25s; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 55px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 13px; }
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a { width: 38px; height: 38px; border: 1px solid var(--line-2); border-radius: 50%; display: grid; place-items: center; color: var(--muted); transition: .3s; }
.footer-bottom .socials a:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* ---- Page hero (sub pages) ------------------------------------------ */
.page-hero { padding: 160px 0 70px; position: relative; z-index: 2; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.6rem, 8vw, 6rem); }
.page-hero .crumbs { color: var(--muted-2); font-size: 14px; margin-top: 18px; }
.page-hero .crumbs a:hover { color: var(--gold); }

/* ---- Reveal animations ---------------------------------------------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .trusted__track, .scroll-cue .line { animation: none; }
    .trusted__viewport { overflow-x: auto; }
    html { scroll-behavior: auto; }
}

/* ---- Responsive ------------------------------------------------------ */
@media (max-width: 960px) {
    .split, .contact-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .founder-portrait { position: relative; top: 0; max-width: 420px; }
    .about-visual { max-width: 460px; margin-inline: auto; }
}
@media (max-width: 780px) {
    .nav-links, .nav-right .lang-toggle.desktop, .nav-right .btn.desktop { display: none; }
    .nav-toggle { display: block; }
    .nav-links.mobile {
        display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
        position: fixed; inset: 0 0 auto 0; top: 0; padding: 100px 30px 40px;
        background: rgba(7,8,12,.97); backdrop-filter: blur(20px);
        transform: translateY(-102%); transition: transform .5s var(--ease); z-index: 55;
        border-bottom: 1px solid var(--line);
    }
    body.menu-open .nav-links.mobile { transform: none; }
    .nav-links.mobile a { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; padding: 12px 0; color: var(--ink); }
    .nav-links.mobile a.active::after { display: none; }
    .nav-links.mobile .lang-toggle { margin-top: 20px; }
}
@media (max-width: 620px) {
    body { font-size: 16px; }
    .brand-logo, .nav.scrolled .brand-logo { height: 56px; }
    .services-grid, .mv-grid, .grid-2, .portfolio-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .sol { grid-template-columns: 50px 1fr; }
    .sol .arrow { display: none; }
    .svc { padding: 30px; }
    .svc__go { top: 30px; inset-inline-end: 30px; }
    .badge-float { inset-inline-end: 10px; }
}
