/* POSTEX Landing — professional marketing page + AR/EN */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Cairo:wght@400;600;700;800&display=swap');

:root {
    --red: #EF4444;
    --green: #25D366;
    --green-dark: #075E54;
    --accent: #F47B36;
    --accent-hover: #FF9957;
    --accent-dark: #D96528;
    --accent-glow: rgba(244, 123, 54, 0.35);
    --accent-soft: rgba(244, 123, 54, 0.14);
    --gold: var(--accent);
    --gold-dark: var(--accent-dark);
    --gold-light: var(--accent-hover);
    --gold-glow: var(--accent-glow);
    --cyan: #40D3FF;
    --cyan-soft: #53BDEB;
    --cyan-glow: rgba(64, 211, 255, 0.28);
    --bg: #0a0e17;
    --bg-1: #0d1117;
    --bg-2: #161b22;
    --surface: #1c2333;
    --border: rgba(255, 153, 87, 0.22);
    --border-accent: rgba(244, 123, 54, 0.28);
    --text: #ffffff;
    --text-1: #e3eefc;
    --text-muted: #9cb5d2;
    --tab-bg: rgba(244, 123, 54, 0.1);
    --tab-border: var(--accent);
    --panel-blue-bg:
        radial-gradient(circle at 12% 50%, rgba(91, 122, 255, 0.24), transparent 26%),
        radial-gradient(circle at 90% 50%, rgba(56, 190, 255, 0.22), transparent 28%),
        linear-gradient(105deg, rgba(20, 28, 79, 0.96) 0%, rgba(19, 44, 102, 0.96) 45%, rgba(18, 53, 99, 0.96) 72%, rgba(24, 104, 143, 0.96) 100%);
    --header-h: 72px;
    --max-w: 1500px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html[lang="ar"] body,
body.is-rtl {
    font-family: 'Cairo', sans-serif;
}
body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}
body.is-rtl { font-family: 'Cairo', 'Poppins', sans-serif; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { width: min(var(--max-w), calc(100% - 48px)); margin-inline: auto; }

/* ── Header — dashboard blue panel + orange accent ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: var(--panel-blue-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), inset 0 -1px 0 rgba(170, 221, 255, 0.08);
}
.header-inner {
    height: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.brand img { height: 34px; width: auto; }
.brand-text {
    font-weight: 800;
    font-size: 1.02rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
    display: inline-flex;
    align-items: baseline;
    gap: 0.32em;
    line-height: 1.2;
}
.brand-accent {
    color: var(--accent-hover);
    text-shadow: 0 0 14px rgba(244, 123, 54, 0.28);
}
.brand-plain { color: #fff; }

.brand-postex { gap: 12px; }
.brand-logo-wrap {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.brand-logo-wrap-sm {
    width: 36px;
    height: 36px;
}
.brand-logo-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(244, 123, 54, 0.35));
}
.brand-logo-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
}
.brand-postex .brand-text {
    font-size: 1.08rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}
.brand-postex .brand-accent {
    background: linear-gradient(135deg, #FF9957, #F47B36);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 26px;
    flex: 1;
    justify-content: center;
}

.nav-desktop a {
    font-size: 0.86rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    opacity: 1;
    transition: color .2s;
    white-space: nowrap;
    position: relative;
}
.nav-desktop a:hover { color: var(--gold); }
.nav-desktop a::after {
    content: '';
    position: absolute;
    inset-inline: 0;
    bottom: -6px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transform: scaleX(0.6);
    transition: opacity .2s, transform .2s;
}
.nav-desktop a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    transition: background .2s, color .2s;
}
.lang-toggle:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.lang-toggle i { font-size: 0.9rem; }

.lang-toggle:hover {
    background: rgba(244, 123, 54, 0.1);
    color: var(--gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 22px;
    border-radius: 20px;
    font-size: 0.86rem;
    font-weight: 700;
    transition: all .2s;
    white-space: nowrap;
}
.btn-ghost {
    color: var(--text);
    border: 1px solid rgba(244, 123, 54, 0.38);
    background: rgba(244, 123, 54, 0.04);
}
.btn-ghost:hover {
    background: rgba(244, 123, 54, 0.12);
    border-color: var(--gold);
    color: var(--gold-light);
}
.btn-green-solid {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #111;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 4px 18px rgba(244, 123, 54, 0.28);
}
.btn-green-solid:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(244, 123, 54, 0.35);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 18px rgba(244, 123, 54, 0.25);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-1px);
}
.btn-green-outline {
    color: var(--gold);
    border: 1px solid rgba(244, 123, 54, 0.45);
    background: transparent;
}
.btn-green-outline:hover {
    background: rgba(244, 123, 54, 0.12);
    color: #fff;
    border-color: var(--gold);
}

.menu-toggle {
    display: none;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    color: var(--text);
    font-size: 1.15rem;
}
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0,0,0,0.94);
    padding: 88px 24px 24px;
    flex-direction: column;
    gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-size: 1.05rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: var(--text-1);
}
.mobile-nav .close-nav {
    position: absolute; top: 20px;
    inset-inline-end: 20px;
    font-size: 1.5rem; color: var(--text-muted);
}

/* ── Hero split layout ── */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--header-h);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    background: radial-gradient(circle at 20% 20%, rgba(64, 211, 255, 0.06), transparent 35%), var(--bg);
    overflow: hidden;
}

.hero-visual {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    overflow: hidden;
    background: #050812;
    grid-column: 1;
    grid-row: 1;
}

.hero-copy {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px clamp(24px, 4vw, 64px) 120px;
    min-height: calc(100vh - var(--header-h));
    grid-column: 2;
    grid-row: 1;
}

html[dir="rtl"] .hero {
    grid-template-columns: 0.95fr 1.05fr;
}
html[dir="rtl"] .hero-visual { grid-column: 2; }
html[dir="rtl"] .hero-copy {
    grid-column: 1;
    text-align: right;
    align-items: flex-end;
}

html[dir="ltr"] .hero-copy {
    text-align: left;
    align-items: flex-start;
}

/* ── Hero cinematic + video stack ── */
.hero-cinema {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    opacity: 0.35;
}
.hero-orb-1 {
    width: 420px; height: 420px;
    top: -8%; inset-inline-start: -6%;
    background: radial-gradient(circle, rgba(244, 123, 54, 0.22), transparent 70%);
    animation: orbDrift 14s ease-in-out infinite alternate;
}
.hero-orb-2 {
    width: 360px; height: 360px;
    bottom: -12%; inset-inline-end: -4%;
    background: radial-gradient(circle, rgba(56, 190, 255, 0.18), transparent 70%);
    animation: orbDrift 18s ease-in-out infinite alternate-reverse;
}
.hero-orb-3 {
    width: 280px; height: 280px;
    top: 42%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(37, 211, 102, 0.1), transparent 70%);
    animation: orbDrift 11s ease-in-out infinite alternate;
}
@keyframes orbDrift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(24px, -18px) scale(1.08); }
}
.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 45% 42%, black 20%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse at 45% 42%, black 20%, transparent 72%);
}
.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    z-index: 0;
}
/* ── Hero animated shipping images ── */
.hero-image-stack {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background: #050812;
}
.hero-image-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}
.hero-image-slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-slide-bg {
    position: absolute;
    inset: -12%;
    background: url('../images/dashboard-pro-bg.svg') center/cover no-repeat;
    animation: heroKenBurnsBg 14s ease-in-out infinite alternate;
}
.hero-slide-bg-alt {
    filter: hue-rotate(-8deg) saturate(1.1);
    animation-name: heroKenBurnsBgAlt;
}
.hero-slide-bg-wa {
    background:
        radial-gradient(circle at 30% 40%, rgba(37, 211, 102, 0.18), transparent 45%),
        url('../images/dashboard-pro-bg.svg') center/cover no-repeat;
    animation-name: heroKenBurnsBgWa;
}
@keyframes heroKenBurnsBg {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.14) translate(-2.5%, -1.5%); }
}
@keyframes heroKenBurnsBgAlt {
    0% { transform: scale(1.08) translate(1.5%, 0); }
    100% { transform: scale(1.2) translate(-1%, -2%); }
}
@keyframes heroKenBurnsBgWa {
    0% { transform: scale(1.05) translate(-1%, 1%); }
    100% { transform: scale(1.16) translate(2%, -1%); }
}
.hero-slide-photo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(58%, 440px);
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 2;
    filter: drop-shadow(0 28px 70px rgba(244, 123, 54, 0.42));
    animation: heroKenBurnsPhoto 10s ease-in-out infinite alternate;
}
.hero-slide-photo-sm {
    width: min(48%, 360px);
    animation-name: heroKenBurnsPhotoSm;
}
@keyframes heroKenBurnsPhoto {
    0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    100% { transform: translate(-50%, -52%) scale(1.08) rotate(1.5deg); }
}
@keyframes heroKenBurnsPhotoSm {
    0% { transform: translate(-50%, -50%) scale(0.95); }
    100% { transform: translate(-50%, -48%) scale(1.05); }
}
.hero-slide-icons {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}
.hero-slide-icons i {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.25rem;
    background: rgba(8, 12, 22, 0.75);
    border: 1px solid rgba(255, 153, 87, 0.35);
    color: var(--accent-hover);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    animation: heroIconFloat 5s ease-in-out infinite;
}
.hero-slide-icons i:nth-child(1) { top: 18%; inset-inline-end: 14%; animation-delay: 0s; }
.hero-slide-icons i:nth-child(2) { bottom: 22%; inset-inline-start: 12%; animation-delay: -2.2s; }
.hero-slide-whatsapp .hero-slide-icons i { color: #25D366; border-color: rgba(37, 211, 102, 0.4); }
@keyframes heroIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.hero-slide-badge {
    position: absolute;
    bottom: 18%;
    inset-inline-start: 8%;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
    background: rgba(8, 12, 22, 0.72);
    border: 1px solid rgba(255, 153, 87, 0.35);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.hero-slide-badge i { color: var(--accent-hover); }

.hero-video-stack,
.hero-video-slide,
.hero-logistics-canvas,
.hero-video-badge { display: none !important; }

.hero-stage,
.hero-app-stack { display: none !important; }

.hero-stage {
    transform: rotateY(14deg) rotateX(4deg) translateZ(0);
    transform-style: preserve-3d;
    animation: heroTilt 9s ease-in-out infinite alternate;
}
html[dir="rtl"] .hero-app-stack {
    transform: rotateY(-14deg) rotateX(4deg) translateZ(0);
}
@keyframes heroTilt {
    0% { transform: rotateY(14deg) rotateX(4deg) translateY(0); }
    100% { transform: rotateY(10deg) rotateX(2deg) translateY(-10px); }
}
html[dir="rtl"] .hero-app-stack {
    animation-name: heroTiltRtl;
}
@keyframes heroTiltRtl {
    0% { transform: rotateY(-14deg) rotateX(4deg) translateY(0); }
    100% { transform: rotateY(-10deg) rotateX(2deg) translateY(-10px); }
}
.hero-app-window {
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(18, 24, 48, 0.98), rgba(10, 14, 28, 0.98));
    border: 1px solid rgba(255, 153, 87, 0.28);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 0 80px rgba(244, 123, 54, 0.12);
}
.hero-app-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-app-chrome .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.hero-app-chrome .dot.red { background: #ff5f57; }
.hero-app-chrome .dot.yellow { background: #febc2e; }
.hero-app-chrome .dot.green { background: #28c840; }
.hero-app-url {
    flex: 1;
    margin-inline: 8px;
    padding: 5px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    font-family: ui-monospace, monospace;
    direction: ltr;
    text-align: center;
}
.hero-app-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.62rem;
    font-weight: 800;
    color: #25D366;
    letter-spacing: 0.06em;
}
.hero-app-live i { font-size: 0.45rem; animation: livePulse 1.4s ease infinite; }
@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}
.hero-app-body {
    display: grid;
    grid-template-columns: 52px 1fr;
    min-height: 320px;
}
.hero-app-sidebar {
    background: var(--panel-blue-bg);
    border-inline-end: 1px solid rgba(255, 153, 87, 0.18);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.hero-sidebar-logo img {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
}
.hero-nav-item {
    width: 34px; height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
}
.hero-nav-item.active {
    background: rgba(244, 123, 54, 0.18);
    color: var(--accent-hover);
    box-shadow: inset 0 0 0 1px rgba(244, 123, 54, 0.35);
}
.hero-app-main {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background:
        radial-gradient(circle at 100% 0%, rgba(244, 123, 54, 0.08), transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(56, 190, 255, 0.06), transparent 35%);
}
.hero-app-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.hero-app-header h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}
.hero-app-header p {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 600;
}
.hero-app-sync {
    font-size: 0.62rem;
    font-weight: 800;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(244, 123, 54, 0.12);
    color: var(--accent-hover);
    border: 1px solid rgba(244, 123, 54, 0.28);
    white-space: nowrap;
}
.hero-app-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.hero-stat {
    padding: 8px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}
.hero-stat strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}
.hero-stat span {
    font-size: 0.58rem;
    color: var(--text-muted);
    font-weight: 700;
}
.hero-stat.ok strong { color: #25D366; }
.hero-stat.warn strong { color: var(--accent-hover); }
.hero-stat.wa strong { color: #53BDEB; }
.hero-app-table {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.22);
}
.hero-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.9fr;
    gap: 8px;
    padding: 8px 10px;
    font-size: 0.66rem;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.hero-row.head {
    background: rgba(244, 123, 54, 0.08);
    color: var(--text-muted);
    font-weight: 800;
    font-size: 0.6rem;
}
.hero-row.active-row {
    background: rgba(244, 123, 54, 0.06);
    box-shadow: inset 3px 0 0 var(--accent);
}
html[dir="rtl"] .hero-row.active-row {
    box-shadow: inset -3px 0 0 var(--accent);
}
.hero-row span:first-child {
    font-family: ui-monospace, monospace;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    direction: ltr;
}
.hero-row .pill {
    justify-self: start;
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.58rem;
    white-space: nowrap;
}
.hero-row .pill.ok { background: rgba(37, 211, 102, 0.15); color: #25D366; }
.hero-row .pill.warn { background: rgba(244, 123, 54, 0.15); color: var(--accent-hover); }
.hero-row .pill.blue { background: rgba(83, 189, 235, 0.15); color: #53BDEB; }
.hero-app-map {
    position: relative;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 153, 87, 0.16);
    background: rgba(8, 12, 24, 0.65);
}
.hero-app-map canvas {
    width: 100%;
    height: 100%;
    display: block;
}
.hero-map-label {
    position: absolute;
    inset-inline-start: 10px;
    top: 8px;
    font-size: 0.58rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 1;
}
.hero-map-label i { color: var(--accent-hover); }
.hero-float-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(8, 12, 22, 0.92);
    border: 1px solid rgba(255, 153, 87, 0.24);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    z-index: 5;
    max-width: 220px;
    animation: chipFloat 6s ease-in-out infinite;
}
.hero-float-chip strong {
    display: block;
    font-size: 0.72rem;
    color: #fff;
    margin-bottom: 2px;
}
.hero-float-chip p {
    font-size: 0.62rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}
.hero-float-chip img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.22);
}
.hero-float-chip i {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 123, 54, 0.15);
    color: var(--accent-hover);
    font-size: 1rem;
    flex-shrink: 0;
}
.chip-wa {
    top: -6%;
    inset-inline-end: -4%;
    animation-delay: 0s;
}
.chip-pod {
    bottom: -4%;
    inset-inline-start: -2%;
    animation-delay: -2.5s;
}
@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-video-wrap,
.hero-brand-stage-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.hero-brand-stage {
    position: relative;
    width: min(420px, 72vw);
    height: min(420px, 72vw);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.hero-brand-logo {
    width: 58%;
    height: auto;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 0 40px rgba(244, 123, 54, 0.45));
    animation: brandFloat 5s ease-in-out infinite;
}
.hero-brand-glow {
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 123, 54, 0.22), transparent 70%);
    z-index: 0;
    animation: brandGlow 4s ease-in-out infinite;
}
.hero-brand-ring {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    border: 2px solid rgba(244, 123, 54, 0.18);
    z-index: 2;
    animation: ringPulse 3s ease-in-out infinite;
}
.hero-brand-ring-2 {
    inset: 0;
    border-width: 1px;
    border-color: rgba(244, 123, 54, 0.08);
    animation-delay: -1.2s;
}
.hero-brand-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(244, 123, 54, 0.12), transparent 45%),
        radial-gradient(circle at 70% 80%, rgba(83, 189, 235, 0.08), transparent 40%),
        url('../images/dashboard-pro-bg.svg') center/cover no-repeat;
    opacity: 0.35;
}
@keyframes brandFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@keyframes brandGlow {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.08); opacity: 1; }
}
@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.55; }
    50% { transform: scale(1.06); opacity: 0.15; }
}

/* Fade only toward the text column — keep video visible on the visual side */
.hero-visual-shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}
html[dir="ltr"] .hero-visual-shade {
    background: linear-gradient(90deg, rgba(5, 8, 18, 0.08) 0%, transparent 42%, rgba(5, 8, 18, 0.22) 78%, rgba(5, 8, 18, 0.55) 100%);
}
html[dir="rtl"] .hero-visual-shade {
    background: linear-gradient(270deg, rgba(5, 8, 18, 0.08) 0%, transparent 42%, rgba(5, 8, 18, 0.22) 78%, rgba(5, 8, 18, 0.55) 100%);
}

.hero-chart-canvas { display: none; }

.hero-title {
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #ffffff;
}
html[dir="rtl"] .hero-title {
    letter-spacing: 0;
    line-height: 1.35;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    margin-bottom: 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--accent-hover);
    background: rgba(244, 123, 54, 0.1);
    border: 1px solid rgba(244, 123, 54, 0.35);
    box-shadow: none;
}
.hero-kicker i { color: var(--accent-hover); }
.hero-desc {
    font-size: clamp(0.88rem, 1.4vw, 1rem);
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 28px;
}
html[dir="rtl"] .hero-desc {
    margin-inline-start: 0;
    margin-inline-end: 0;
    max-width: 540px;
}

.hero-panels {
    position: relative;
    width: 100%;
    max-width: 560px;
    min-height: clamp(180px, 22vh, 240px);
    margin-bottom: 8px;
}
.hero-tab-panel {
    display: none;
    animation: heroPanelIn .35s ease;
}
.hero-tab-panel.active { display: block; }
@keyframes heroPanelIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    border-bottom: 1px solid rgba(244, 123, 54, 0.16);
    margin-bottom: 0;
    width: 100%;
    max-width: 560px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.hero-tabs::-webkit-scrollbar { display: none; }
html[dir="rtl"] .hero-tabs { justify-content: flex-start; }
html[dir="rtl"] .hero-tab {
    font-size: 0.74rem;
    padding: 10px 11px;
}
.hero-tab {
    padding: 12px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    transition: all .2s;
    margin-bottom: -1px;
    white-space: nowrap;
    flex: 0 0 auto;
}
.hero-tab.active {
    color: var(--gold-light);
    background: linear-gradient(180deg, rgba(244, 123, 54, 0.14), rgba(244, 123, 54, 0.04));
    border-bottom-color: var(--gold);
    box-shadow: inset 0 0 0 1px rgba(244, 123, 54, 0.18);
}
.hero-tab:hover:not(.active) {
    color: #fff;
    background: rgba(244, 123, 54, 0.06);
}

/* Ticker — full width at hero bottom */
.ticker-wrap {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 10;
    grid-column: 1 / -1;
    border-top: 1px solid var(--border);
    background: rgba(13, 17, 23, 0.96);
    backdrop-filter: blur(12px);
    overflow: hidden;
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 50s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
html[dir="rtl"] .ticker-track {
    animation-name: tickerScrollRtl;
}
@keyframes tickerScrollRtl {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-inline-end: 1px solid rgba(255,255,255,0.06);
    min-width: 260px;
}
.ticker-label {
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    color: var(--text-muted);
}
.ticker-value {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    direction: ltr;
}
.ticker-value span {
    font-weight: 600;
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-inline-start: 4px;
}
.ticker-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}
.ticker-icon.orange { background: rgba(244, 123, 54, 0.15); color: var(--accent-hover); }
.ticker-icon.green { background: rgba(37, 211, 102, 0.15); color: #25D366; }
.ticker-icon.blue { background: rgba(83, 189, 235, 0.15); color: #53BDEB; }
.ticker-icon.red { background: rgba(239, 68, 68, 0.15); color: #EF4444; }
.ticker-pair {
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.4px;
    direction: ltr;
}
.ticker-prices {
    font-size: 0.8rem;
    color: var(--text-muted);
    direction: ltr;
}
.ticker-prices .bid { color: var(--text); }
.ticker-signal {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ticker-signal.up { background: rgba(0,202,117,0.22); color: var(--green); }
.ticker-signal.down { background: rgba(255,67,64,0.22); color: var(--red); }
.ticker-signal svg { width: 18px; height: 18px; }
.ticker-trade {
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(244, 123, 54, 0.45);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    background: rgba(244, 123, 54, 0.06);
    transition: all .2s;
}
.ticker-trade:hover {
    background: rgba(244, 123, 54, 0.18);
    color: #fff;
    border-color: var(--gold);
}

/* ── Sections ── */
.section { padding: 88px 0; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 680px;
    margin: 0 auto;
}
.section-dark { background: var(--bg); }
.section-elevated {
    background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
}
.section-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}
.gold-line {
    width: 110px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--cyan), var(--accent), transparent);
    margin: 18px auto 0;
    border-radius: 3px;
    box-shadow: 0 0 16px rgba(64, 211, 255, 0.22);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.feature-card {
    background: linear-gradient(145deg, rgba(28, 35, 51, 0.82), rgba(22, 27, 34, 0.95));
    border: 1px solid rgba(64, 211, 255, 0.12);
    border-radius: 14px;
    padding: 28px 22px;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.feature-card:hover {
    border-color: rgba(244, 123, 54, 0.42);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(244, 123, 54, 0.1);
}
.feature-icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: rgba(244, 123, 54, 0.12);
    color: var(--accent-hover);
    border: 1px solid rgba(64, 211, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--gold-light); }
.feature-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }
html[dir="rtl"] .feature-card { text-align: right; }
html[dir="rtl"] .feature-icon { margin-inline-end: auto; }

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.plan-card {
    background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
    border: 1px solid rgba(64, 211, 255, 0.12);
    border-top: 3px solid rgba(244, 123, 54, 0.55);
    border-radius: 16px;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .2s, box-shadow .2s;
}
.plan-card:hover {
    border-color: rgba(244, 123, 54, 0.35);
    box-shadow: 0 8px 28px rgba(244, 123, 54, 0.08);
}
.plan-card li::before { content: '✓ '; color: var(--gold); font-weight: 700; }
.plan-card h3 { font-size: 1.15rem; color: var(--gold); font-weight: 700; }
.plan-card .plan-meta { font-size: 0.78rem; color: var(--text-muted); }
.plan-card ul { list-style: none; font-size: 0.8rem; color: #bbb; flex: 1; }
.plan-card li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(244, 123, 54, 0.06);
}
html[dir="rtl"] .plan-card { text-align: right; }

.plat-icon { color: var(--gold); margin-inline-end: 8px; }
.plat-icon-green { color: var(--green); }
.platform-card h3 { display: flex; align-items: center; gap: 4px; }
html[dir="rtl"] .platform-card { text-align: right; }
html[dir="rtl"] .platform-card h3 { flex-direction: row-reverse; justify-content: flex-end; }

.cta-banner {
    border-radius: 18px;
    padding: 56px 36px;
    text-align: center;
    background: linear-gradient(135deg, rgba(244, 123, 54, 0.12), rgba(20, 28, 79, 0.55));
    border: 1px solid rgba(64, 211, 255, 0.24);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(244, 123, 54, 0.08);
}
.cta-banner h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, var(--accent-hover), var(--cyan-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-banner p { color: var(--text-muted); margin-bottom: 22px; }

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-box .num {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1.1;
}
.stat-box .lbl { font-size: 0.9rem; color: var(--text); margin-top: 6px; font-weight: 600; }
.stat-box .sub { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.platform-card {
    border: 1px solid rgba(64, 211, 255, 0.12);
    border-radius: 14px;
    background: linear-gradient(145deg, var(--bg-2), var(--bg-1));
    padding: 22px;
    transition: border-color .2s, box-shadow .2s;
}
.platform-card:hover {
    border-color: rgba(244, 123, 54, 0.38);
    box-shadow: 0 8px 24px rgba(244, 123, 54, 0.08);
}
.platform-card h3 { font-size: 0.95rem; margin-bottom: 8px; font-weight: 700; color: var(--gold-light); }
.platform-card p { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 14px; min-height: 48px; }

.site-footer {
    padding: 56px 0 90px;
    border-top: 1px solid rgba(64, 211, 255, 0.18);
    background: linear-gradient(180deg, var(--bg-1), var(--bg));
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 28px;
}
.footer-grid h4 {
    font-size: 0.78rem;
    color: var(--gold);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.footer-grid a, .footer-grid p {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 7px;
    line-height: 1.55;
}
.footer-grid a:hover { color: var(--text); }
html[dir="rtl"] .footer-grid { text-align: right; }
.footer-copy {
    font-size: 0.74rem;
    color: #666;
    text-align: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}
.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #25D366;
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-wa-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.36);
    color: #fff !important;
}
.footer-phone {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.02em;
}
.footer-phone:hover { color: var(--text); }

.risk-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: linear-gradient(180deg, var(--bg-1), var(--bg));
    padding: 12px 20px;
    font-size: 0.7rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(64, 211, 255, 0.18);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.risk-bar p { flex: 1; line-height: 1.5; }
.risk-close { color: var(--text-muted); font-size: 1.15rem; flex-shrink: 0; }
.risk-bar.hidden { display: none; }
body.risk-hidden { padding-bottom: 0; }
body:not(.risk-hidden) { padding-bottom: 64px; }

/* Mobile */
@media (max-width: 1100px) {
    .nav-desktop { display: none; }
    .menu-toggle { display: flex; }
    .header-inner {
        justify-content: space-between;
        gap: 8px;
    }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .platform-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-band { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: 52vh auto;
    }
    .hero-visual,
    html[dir="rtl"] .hero-visual {
        grid-column: 1;
        grid-row: 1;
        min-height: 52vh;
    }
    .hero-copy,
    html[dir="rtl"] .hero-copy {
        grid-column: 1;
        grid-row: 2;
        min-height: auto;
        padding: 28px 20px 110px;
        align-items: stretch;
    }
    html[dir="ltr"] .hero-copy { text-align: left; }
    html[dir="rtl"] .hero-copy { text-align: right; }
    .hero-desc { margin-inline: 0; max-width: none; }
    .hero-panels { max-width: none; min-height: auto; }
    .hero-tabs { max-width: none; }
    .hero-app-stack {
        transform: none;
        animation: none;
        width: min(520px, 94%);
    }
    html[dir="rtl"] .hero-app-stack { transform: none; animation: none; }
    .chip-wa { top: -2%; inset-inline-end: 0; max-width: 190px; transform: scale(0.92); }
    .chip-pod { bottom: -2%; inset-inline-start: 0; transform: scale(0.92); }
    .hero-app-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-app-body { min-height: 280px; }
    .features-grid, .plans-grid, .platform-grid, .stats-band { grid-template-columns: 1fr; }
    .header-actions .btn-ghost { display: none; }
    .ticker-item { min-width: 260px; }
}

/* ══════════════════════════════════════════════════════════════
   Saudia Cargo style — full-screen hero + sections
   ══════════════════════════════════════════════════════════════ */

.site-header--hero {
    background: rgba(8, 18, 40, 0.35);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    backdrop-filter: blur(8px);
    transition: background .35s, border-color .35s, box-shadow .35s, backdrop-filter .35s;
}
.site-header--hero .nav-desktop a {
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85), 0 0 2px rgba(0, 0, 0, 0.9);
}
.site-header--hero .nav-desktop a::after { display: none; }
.site-header--hero .nav-desktop a:hover { color: #fff; opacity: 1; }
.site-header--hero .brand-plain { color: #fff; }
.site-header--hero .lang-toggle { color: rgba(255, 255, 255, 0.85); }
.site-header--hero .btn-hero-login {
    color: #fff;
    font-size: 0.86rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    height: auto;
}
.site-header--hero .btn-hero-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.45);
}
.site-header--hero .menu-toggle { color: #fff; }
.site-header--hero.is-scrolled {
    background: var(--panel-blue-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), inset 0 -1px 0 rgba(170, 221, 255, 0.08);
}
.site-header--hero.is-scrolled .btn-hero-login {
    border-color: rgba(244, 123, 54, 0.38);
    color: var(--text);
}

.sc-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    grid-template-rows: 1fr auto auto;
    grid-template-areas: "spacer" "body" "cards";
    overflow: hidden;
    background: #0a1628;
}
.sc-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    grid-area: spacer / body / cards;
}
.sc-hero-video-stack { display: none !important; }
.sc-hero-image-stack {
    position: absolute;
    inset: 0;
}
.sc-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
}
.sc-hero-slide.active {
    opacity: 1;
    z-index: 1;
}
.sc-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    animation: scHeroKenBurns 22s ease-in-out infinite alternate;
}
.sc-hero-slide.is-custom {
    background: #0a1628;
}
.sc-hero-slide.is-custom img {
    object-fit: contain;
    object-position: center center;
    width: 100%;
    height: 100%;
    animation: none !important;
    transform: none !important;
}
.sc-hero.sc-hero--full-image .sc-hero-overlay {
    background: linear-gradient(0deg, rgba(4, 10, 24, 0.92) 0%, rgba(4, 10, 24, 0.5) 24%, transparent 52%);
}
html[dir="ltr"] .sc-hero.sc-hero--full-image .sc-hero-overlay {
    background: linear-gradient(0deg, rgba(4, 10, 24, 0.92) 0%, rgba(4, 10, 24, 0.5) 24%, transparent 52%);
}
.sc-hero.sc-hero--full-image .sc-hero-content::before {
    display: none;
}
.sc-hero-slide[data-tab="courier"] img {
    object-position: center 20%;
}
.sc-hero-slide[data-tab="warehouse"] img {
    object-position: center 40%;
}
.sc-hero-slide-alt img {
    animation-name: scHeroKenBurnsAlt;
}
.sc-hero-slide-wa img {
    animation-name: scHeroKenBurnsWa;
}
@keyframes scHeroKenBurns {
    0% { transform: translateZ(0) scale(1); }
    100% { transform: translateZ(0) scale(1.05); }
}
@keyframes scHeroKenBurnsAlt {
    0% { transform: translateZ(0) scale(1.02); }
    100% { transform: translateZ(0) scale(1.06); }
}
@keyframes scHeroKenBurnsWa {
    0% { transform: translateZ(0) scale(1.01); }
    100% { transform: translateZ(0) scale(1.04); }
}
.sc-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
    transform: scale(1.02);
}
.sc-hero-video.active {
    opacity: 1;
    z-index: 1;
}
.sc-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(4, 10, 24, 0.72) 0%, rgba(4, 10, 24, 0.38) 45%, rgba(4, 10, 24, 0.12) 100%),
        linear-gradient(0deg, rgba(4, 10, 24, 0.82) 0%, rgba(4, 10, 24, 0.22) 48%, rgba(4, 10, 24, 0.35) 100%);
    pointer-events: none;
}
html[dir="ltr"] .sc-hero-overlay {
    background:
        linear-gradient(270deg, rgba(4, 10, 24, 0.72) 0%, rgba(4, 10, 24, 0.38) 45%, rgba(4, 10, 24, 0.12) 100%),
        linear-gradient(0deg, rgba(4, 10, 24, 0.82) 0%, rgba(4, 10, 24, 0.22) 48%, rgba(4, 10, 24, 0.35) 100%);
}

.sc-hero-body {
    position: relative;
    z-index: 5;
    grid-area: body;
    width: min(var(--max-w), calc(100% - 48px));
    margin: 0 auto;
    padding: calc(var(--header-h) + 24px) 24px 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 32px;
}
.sc-hero-content {
    max-width: 680px;
    text-align: start;
    position: relative;
}
.sc-hero-content::before {
    content: '';
    position: absolute;
    inset: -20px -28px -20px -12px;
    background: radial-gradient(ellipse at 100% 50%, rgba(4, 10, 24, 0.72), transparent 72%);
    z-index: -1;
    pointer-events: none;
}
html[dir="ltr"] .sc-hero-content::before {
    inset: -20px -12px -20px -28px;
    background: radial-gradient(ellipse at 0% 50%, rgba(4, 10, 24, 0.72), transparent 72%);
}
.sc-hero-title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2.6rem, 6.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow:
        0 4px 24px rgba(0, 0, 0, 0.95),
        0 2px 6px rgba(0, 0, 0, 0.85),
        0 0 1px rgba(0, 0, 0, 1);
    transition: opacity .4s ease;
}
.sc-hero-title.is-fading { opacity: 0; }

.sc-hero-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    padding-bottom: 8px;
}
.sc-hero-progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 120px;
}
.sc-hero-progress span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.28);
    transition: background .3s, transform .3s;
    cursor: pointer;
}
.sc-hero-progress span.active {
    background: #fff;
    transform: scaleX(1.05);
    transform-origin: inline-end;
}

body:not(.risk-hidden) .sc-hero-cards-wrap {
    padding-bottom: 56px;
}
.sc-hero-cards-wrap {
    position: relative;
    z-index: 6;
    grid-area: cards;
    padding: 0 24px 24px;
}
.sc-hero-cards {
    width: min(var(--max-w), calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.sc-hero-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 118px;
    padding: 20px 16px;
    border-radius: 4px;
    background: rgba(180, 210, 240, 0.88);
    backdrop-filter: blur(12px);
    color: #0c2d5a;
    text-align: center;
    transition: background .25s, transform .25s, box-shadow .25s;
    border: 1px solid rgba(255, 255, 255, 0.45);
}
.sc-hero-card:hover {
    background: rgba(210, 228, 248, 0.96);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.sc-hero-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}
.sc-hero-card-icon i {
    font-size: 1.65rem;
    color: #1a4a7a;
}
.sc-hero-card-label {
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.35;
    color: #0a2540;
}

/* legacy hero styles kept for reference — hidden */
.sc-hero-eyebrow, .sc-hero-sub, .sc-hero-pills, .sc-hero-cta, .sc-hero-dots,
.sc-hero-media .hero-image-stack, .sc-pill { display: none !important; }

.sc-section { padding: 72px 0; }
.sc-section-head {
    text-align: center;
    margin-bottom: 40px;
}
.sc-section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text);
}
.sc-section-head p {
    margin-top: 10px;
    color: var(--text-muted);
    max-width: 560px;
    margin-inline: auto;
}
.features-grid-compact {
    grid-template-columns: repeat(4, 1fr);
}

.sc-solutions {
    padding: 72px 0 80px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%);
    overflow: hidden;
}
.sc-solutions .sc-section-head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
}
.sc-solutions-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px max(24px, calc((100vw - var(--max-w)) / 2 + 24px)) 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.sc-solutions-track::-webkit-scrollbar { display: none; }
.sc-solution-card {
    flex: 0 0 min(320px, 82vw);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px 24px;
    border-radius: 16px;
    background: linear-gradient(155deg, rgba(28, 35, 51, 0.95), rgba(13, 17, 23, 0.98));
    border: 1px solid rgba(64, 211, 255, 0.14);
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.sc-solution-card:hover {
    border-color: rgba(244, 123, 54, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}
.sc-solution-visual {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
}
.sc-sol-1 { background: linear-gradient(135deg, #F47B36, #D96528); }
.sc-sol-2 { background: linear-gradient(135deg, #25D366, #075E54); }
.sc-sol-3 { background: linear-gradient(135deg, #53BDEB, #2563EB); }
.sc-sol-4 { background: linear-gradient(135deg, #FFB347, #F47B36); }
.sc-sol-5 { background: linear-gradient(135deg, #FF6B6B, #EF4444); }
.sc-sol-6 { background: linear-gradient(135deg, #7DD3FC, #38BDF8); }
.sc-solution-card h3 {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--text);
}
.sc-solution-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    flex: 1;
    line-height: 1.55;
}
.sc-solution-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-hover);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
html[dir="ltr"] .sc-solution-link i { transform: rotate(180deg); }

.sc-fleet {
    position: relative;
    padding: 88px 0;
    overflow: hidden;
    text-align: center;
}
.sc-fleet-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(5, 8, 18, 0.88), rgba(19, 44, 102, 0.82)),
        url('../images/hero/slide-logistics-dock.jpg') center/cover no-repeat;
    z-index: 0;
}
.sc-fleet-inner {
    position: relative;
    z-index: 1;
}
.sc-fleet-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 48px;
    color: #fff;
}
.sc-fleet-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.sc-fleet-stat {
    padding: 20px 12px;
}
.sc-fleet-num {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--accent-hover);
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 0 30px rgba(244, 123, 54, 0.35);
}
.sc-fleet-stat h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}
.sc-fleet-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    padding: 12px 28px;
    border-radius: 999px;
    border: 1px solid rgba(244, 123, 54, 0.5);
    background: rgba(244, 123, 54, 0.15);
    transition: background .2s, border-color .2s;
}
.sc-fleet-cta:hover {
    background: rgba(244, 123, 54, 0.28);
    border-color: var(--accent-hover);
}
html[dir="ltr"] .sc-fleet-cta i { transform: rotate(180deg); }

.sc-track-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: center;
    padding: 40px 44px;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--bg-2), var(--bg-1));
    border: 1px solid rgba(64, 211, 255, 0.16);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
.sc-track-copy h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    margin-bottom: 10px;
}
.sc-track-copy p {
    color: var(--text-muted);
    font-size: 0.92rem;
}
.sc-track-form {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
}
.sc-track-field {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: start;
}
.sc-track-field span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.sc-track-field input {
    height: 48px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid rgba(64, 211, 255, 0.22);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 1rem;
    font-family: ui-monospace, monospace;
    transition: border-color .2s;
}
.sc-track-field input:focus {
    outline: none;
    border-color: var(--accent);
}
.sc-track-btn {
    height: 48px;
    padding: 0 28px;
    flex-shrink: 0;
}

.sc-news-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.sc-news-head h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
}
.sc-news-all {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--accent-hover);
    white-space: nowrap;
}
.sc-news-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sc-news-card {
    padding: 24px;
    border-radius: 14px;
    background: linear-gradient(155deg, var(--bg-2), var(--bg-1));
    border: 1px solid rgba(64, 211, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .2s, transform .2s;
}
.sc-news-card:hover {
    border-color: rgba(244, 123, 54, 0.35);
    transform: translateY(-3px);
}
.sc-news-card time {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--accent-hover);
    letter-spacing: 0.04em;
}
.sc-news-card h3 {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}
.sc-news-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    flex: 1;
    line-height: 1.55;
}
.sc-news-card a {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-hover);
    margin-top: 4px;
}

@media (max-width: 1100px) {
    .features-grid-compact { grid-template-columns: repeat(2, 1fr); }
    .sc-fleet-stats { grid-template-columns: repeat(2, 1fr); }
    .sc-news-track { grid-template-columns: repeat(2, 1fr); }
    .sc-track-box { grid-template-columns: 1fr; }
}

/* ── Tablet & Mobile ── */
@media (max-width: 768px) {
    :root {
        --header-h: 56px;
    }

    .container {
        width: min(var(--max-w), calc(100% - 24px));
    }

    .site-header--hero {
        height: var(--header-h);
    }
    .site-header--hero .header-inner {
        width: 100%;
        max-width: none;
        padding: 0 max(12px, env(safe-area-inset-left)) 0 max(12px, env(safe-area-inset-right));
        gap: 8px;
        justify-content: space-between;
    }

    .brand-postex {
        gap: 8px;
        min-width: 0;
        flex: 1 1 auto;
        overflow: hidden;
    }
    .brand-logo-wrap {
        width: 34px;
        height: 34px;
        flex-shrink: 0;
    }
    .brand-postex .brand-text {
        font-size: 0.84rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        min-width: 0;
    }
    .brand-postex .brand-text .brand-plain {
        display: none;
    }

    .header-actions {
        gap: 4px;
        flex-shrink: 0;
        align-items: center;
    }

    #langToggleLabel { display: none; }
    .lang-toggle {
        width: 32px;
        height: 32px;
        padding: 0;
        justify-content: center;
        flex-shrink: 0;
    }

    .site-header--hero .btn-hero-login {
        padding: 0 9px;
        height: 32px;
        font-size: 0.68rem;
        font-weight: 700;
        border-radius: 6px;
        max-width: none;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .menu-toggle {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .mobile-nav {
        padding: calc(var(--header-h) + 20px) 20px 24px;
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }
    .mobile-nav a {
        font-size: 1rem;
        padding: 16px 0;
    }

    /* Hero */
    .sc-hero {
        min-height: 100svh;
        min-height: 100dvh;
        grid-template-rows: 1fr auto auto;
    }
    .sc-hero.sc-hero--full-image {
        grid-template-rows: 1fr auto auto;
    }

    .sc-hero-overlay {
        background:
            linear-gradient(180deg, rgba(4, 10, 24, 0.55) 0%, rgba(4, 10, 24, 0.35) 35%, rgba(4, 10, 24, 0.92) 100%);
    }
    html[dir="ltr"] .sc-hero-overlay {
        background:
            linear-gradient(180deg, rgba(4, 10, 24, 0.55) 0%, rgba(4, 10, 24, 0.35) 35%, rgba(4, 10, 24, 0.92) 100%);
    }

    .sc-hero-body {
        width: 100%;
        padding: 12px 14px 10px;
        grid-template-columns: 1fr;
        gap: 0;
        align-items: stretch;
        align-self: end;
    }

    .sc-hero-content {
        max-width: none;
    }
    .sc-hero-content::before {
        inset: -12px -8px;
        background: radial-gradient(ellipse at 50% 50%, rgba(4, 10, 24, 0.65), transparent 80%);
    }

    .sc-hero-title {
        font-size: clamp(1.45rem, 7vw, 2rem);
        line-height: 1.18;
    }

    .sc-hero-controls {
        display: flex;
        align-items: stretch;
        padding-bottom: 0;
        margin-top: 14px;
    }
    .sc-hero-progress {
        flex-direction: row;
        width: 100%;
        gap: 6px;
    }
    .sc-hero-progress span {
        flex: 1;
        height: 3px;
    }
    .sc-hero-progress span.active {
        transform: none;
    }

    body:not(.risk-hidden) .sc-hero-cards-wrap {
        padding-bottom: max(56px, calc(48px + env(safe-area-inset-bottom)));
    }
    .sc-hero-cards-wrap {
        padding: 0;
        align-self: end;
        width: 100%;
    }
    .sc-hero-cards {
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: row;
        gap: 0;
        background: rgba(7, 18, 38, 0.94);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }
    .sc-hero-card {
        flex: 1 1 0;
        min-width: 0;
        min-height: 0;
        height: auto;
        padding: 7px 3px;
        gap: 3px;
        border-radius: 0;
        background: transparent;
        border: none;
        border-inline-end: 1px solid rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.92);
        -webkit-tap-highlight-color: transparent;
    }
    .sc-hero-card:last-child {
        border-inline-end: none;
    }
    .sc-hero-card:hover {
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.06);
    }
    .sc-hero-card:active {
        transform: none;
        background: rgba(255, 255, 255, 0.1);
    }
    .sc-hero-card-icon {
        width: auto;
        height: auto;
        line-height: 1;
    }
    .sc-hero-card-icon i {
        font-size: 0.82rem;
        color: var(--gold, #F47B36);
    }
    .sc-hero-card-label {
        font-size: 0.56rem;
        font-weight: 700;
        line-height: 1.15;
        color: rgba(255, 255, 255, 0.9);
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        word-break: break-word;
        hyphens: auto;
    }

    .sc-hero-slide img {
        animation: none;
        transform: scale(1.05);
    }

    /* Sections */
    .section,
    .sc-section {
        padding: 52px 0;
    }
    .section-head,
    .sc-section-head {
        margin-bottom: 28px;
    }
    .section-head h2,
    .sc-section-head h2 {
        font-size: clamp(1.35rem, 5vw, 1.65rem);
    }
    .section-head p,
    .sc-section-head p {
        font-size: 0.88rem;
        padding-inline: 4px;
    }

    .features-grid,
    .features-grid-compact,
    .plans-grid,
    .platform-grid,
    .stats-band {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-card,
    .plan-card,
    .platform-card {
        padding: 20px 18px;
    }

    .sc-solutions {
        padding: 52px 0 56px;
    }
    .sc-solutions-track {
        padding-inline: 16px;
        gap: 14px;
    }
    .sc-solution-card {
        flex: 0 0 min(280px, 86vw);
        padding: 22px 18px;
    }

    .sc-fleet {
        padding: 56px 0;
    }
    .sc-fleet-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 28px;
    }
    .sc-fleet-num {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }
    .sc-fleet-stat h4 {
        font-size: 0.82rem;
    }

    .sc-track-box {
        padding: 24px 18px;
        border-radius: 14px;
        gap: 20px;
    }
    .sc-track-form {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .sc-track-field { min-width: 0; }
    .sc-track-btn { width: 100%; }

    .sc-news-head {
        margin-bottom: 20px;
    }
    .sc-news-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 14px;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .sc-news-track::-webkit-scrollbar { display: none; }
    .sc-news-card {
        flex: 0 0 min(280px, 86vw);
        scroll-snap-align: start;
        padding: 20px 18px;
    }

    .cta-banner {
        padding: 32px 20px;
        text-align: center;
    }
    .cta-banner h2 {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    html[dir="rtl"] .footer-grid { text-align: center; }
    .footer-grid .brand-postex {
        justify-content: center;
    }

    .risk-bar {
        padding: 10px 14px;
        padding-bottom: max(10px, env(safe-area-inset-bottom));
        font-size: 0.65rem;
    }
    body:not(.risk-hidden) {
        padding-bottom: max(56px, calc(56px + env(safe-area-inset-bottom)));
    }

    body.nav-open .risk-bar {
        display: none;
    }

    .site-header {
        padding-top: env(safe-area-inset-top, 0px);
    }
}

/* Mobile full-image hero — keep absolute stack so slides overlap correctly */
@media (max-width: 768px) {
    .sc-hero.sc-hero--full-image .sc-hero-image-stack {
        position: absolute;
        inset: 0;
        max-height: none;
    }
    .sc-hero.sc-hero--full-image .sc-hero-slide {
        position: absolute;
        inset: 0;
    }
    .sc-hero.sc-hero--full-image .sc-hero-slide.is-custom img {
        object-fit: contain;
        object-position: center center;
    }
    .sc-hero.sc-hero--full-image .sc-hero-slide.active {
        z-index: 2;
    }
}

/* ── Small phones ── */
@media (max-width: 480px) {
    .site-header--hero .btn-hero-login {
        font-size: 0;
        width: 32px;
        min-width: 32px;
        padding: 0;
        position: relative;
    }
    .site-header--hero .btn-hero-login::before {
        content: '\f2f6';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.82rem;
    }
    .brand-postex .brand-text {
        font-size: 0.78rem;
    }
    .sc-hero-title {
        font-size: clamp(1.35rem, 6.5vw, 1.65rem);
    }
    .sc-hero-card {
        padding: 6px 2px;
    }
    .sc-hero-card-icon i { font-size: 0.75rem; }
    .sc-hero-card-label {
        font-size: 0.52rem;
    }
    .sc-fleet-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}


/* PWA install — landing page */
.btn-install-app {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 34px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    border: 1px solid rgba(244, 123, 54, 0.45);
    background: rgba(244, 123, 54, 0.12);
    color: #ffd4b8;
    transition: background .2s, border-color .2s, transform .15s;
    white-space: nowrap;
}
.btn-install-app:hover {
    background: rgba(244, 123, 54, 0.22);
    border-color: rgba(244, 123, 54, 0.65);
    color: #fff;
}
.btn-install-app.install-ready {
    border-color: #F47B36;
    background: rgba(244, 123, 54, 0.28);
    box-shadow: 0 0 0 1px rgba(244, 123, 54, 0.25);
}
.btn-install-app.is-busy { opacity: 0.65; pointer-events: none; }
.site-header--hero.is-scrolled .btn-install-app {
    color: var(--accent-hover);
    background: rgba(244, 123, 54, 0.1);
}
.btn-install-app--nav {
    width: 100%;
    height: auto;
    margin-top: 8px;
    padding: 14px 16px;
    font-size: 0.95rem;
    border-radius: 10px;
    color: #ffd4b8;
}
.sc-hero-install {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(244, 123, 54, 0.22);
    backdrop-filter: blur(8px);
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    transition: background .2s, transform .15s;
}
.sc-hero-install:hover {
    background: rgba(244, 123, 54, 0.38);
    transform: translateY(-1px);
}
.sc-hero-install.install-ready {
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 24px rgba(244, 123, 54, 0.35);
}
.landing-toast {
    position: fixed;
    bottom: max(72px, calc(64px + env(safe-area-inset-bottom)));
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    z-index: 2000;
    max-width: min(92vw, 360px);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .25s;
    background: rgba(8, 18, 40, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}
.landing-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.landing-toast--success { border-color: rgba(34, 197, 94, 0.45); }
.landing-toast--warning { border-color: rgba(245, 158, 11, 0.45); }
.landing-toast--error { border-color: rgba(239, 68, 68, 0.45); }
.landing-toast--info { border-color: rgba(59, 130, 246, 0.45); }

@media (max-width: 768px) {
    .sc-hero-controls {
        align-items: stretch;
    }
    .btn-install-app .btn-install-app-text { display: none; }
    .btn-install-app {
        width: 32px;
        min-width: 32px;
        padding: 0;
        height: 32px;
    }
    .sc-hero-install {
        width: 100%;
        font-size: 0.78rem;
        padding: 9px 14px;
    }
}
