/* =========================================================
   WhiteVue Corporate Site
   Primary: #ff9c00 | Brand: white + orange on charcoal
   ========================================================= */

:root {
    --wv-orange: #ff9c00;
    --wv-orange-deep: #e08900;
    --wv-orange-soft: rgba(255, 156, 0, 0.14);
    --wv-orange-glow: rgba(255, 156, 0, 0.35);
    --wv-black: #0a0a0a;
    --wv-ink: #121212;
    --wv-charcoal: #1a1a1a;
    --wv-slate: #2a2a2a;
    --wv-muted: #6b6b6b;
    --wv-fog: #f4f4f2;
    --wv-paper: #fafaf8;
    --wv-white: #ffffff;
    --wv-line: rgba(255, 255, 255, 0.08);
    --wv-line-dark: rgba(10, 10, 10, 0.08);
    --wv-radius: 14px;
    --wv-radius-sm: 10px;
    --wv-shadow: 0 16px 40px rgba(10, 10, 10, 0.1);
    --font-display: "Outfit", "IBM Plex Sans Arabic", system-ui, sans-serif;
    --font-body: "Source Sans 3", "IBM Plex Sans Arabic", system-ui, sans-serif;
    --font-brand: "Outfit", "Source Sans 3", system-ui, sans-serif;
    --font-stats: "Outfit", "Source Sans 3", system-ui, sans-serif;
    --nav-h: 72px;
    --text-xs: 0.8125rem;
    --text-sm: 0.9375rem;
    --text-base: 1rem;
    --text-md: 1.0625rem;
    --text-lg: 1.125rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 12px);
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--wv-ink);
    background: var(--wv-paper);
    line-height: 1.65;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.22;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--wv-black);
    text-wrap: balance;
}

.noise-overlay {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 999px;
    padding: 0.8rem 1.45rem;
    font-size: 0.9375rem;
    line-height: 1.25;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn-wv-primary {
    background: var(--wv-orange);
    border: 1px solid var(--wv-orange);
    color: var(--wv-black);
    box-shadow: 0 8px 20px rgba(255, 156, 0, 0.22);
}

.btn-wv-primary:hover,
.btn-wv-primary:focus {
    background: var(--wv-orange-deep);
    border-color: var(--wv-orange-deep);
    color: var(--wv-black);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(255, 156, 0, 0.28);
}

.btn-wv-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--wv-white);
}

.btn-wv-outline:hover,
.btn-wv-outline:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--wv-orange);
    color: var(--wv-white);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 0.95rem 1.7rem;
    font-size: 0.98rem;
}

.btn-sm {
    padding: 0.48rem 1.05rem;
    font-size: 0.8125rem;
    letter-spacing: 0.03em;
}

/* ---------- Nav ---------- */
.wv-nav {
    height: var(--nav-h);
    padding: 0.4rem 0;
    background: rgba(10, 10, 10, 0.62);
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.wv-nav.is-scrolled {
    background: rgba(10, 10, 10, 0.94);
    border-bottom-color: var(--wv-line);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.wv-logo {
    height: 34px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
}

.wv-nav .nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    padding: 0.45rem 0.7rem !important;
    transition: color 0.2s ease;
}

.wv-nav .nav-link:hover,
.wv-nav .nav-link.active {
    color: var(--wv-orange);
}

.wv-nav .btn-wv-primary {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.03em;
    padding: 0.5rem 1.1rem;
    color: var(--wv-black) !important;
    background: var(--wv-orange);
    border-color: var(--wv-orange);
    box-shadow: 0 6px 16px rgba(255, 156, 0, 0.2);
}

.wv-nav .btn-wv-primary:hover,
.wv-nav .btn-wv-primary:focus {
    background: var(--wv-orange-deep);
    border-color: var(--wv-orange-deep);
    color: var(--wv-black) !important;
}

.btn-lang {
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.04);
}

.btn-lang:hover,
.btn-lang:focus,
.btn-lang.show {
    color: var(--wv-white);
    border-color: var(--wv-orange);
    background: rgba(255, 156, 0, 0.1);
}

.lang-switch .dropdown-menu {
    background: var(--wv-charcoal);
    border: 1px solid var(--wv-line);
    border-radius: 12px;
    padding: 0.4rem;
    min-width: 11.5rem;
}

.lang-switch .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.7rem;
}

.lang-switch .dropdown-item:hover,
.lang-switch .dropdown-item.active {
    background: var(--wv-orange-soft);
    color: var(--wv-orange);
}

.lang-flag {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    display: inline-block;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.55rem;
}

.navbar-toggler-icon {
    filter: invert(1);
    width: 1.2rem;
    height: 1.2rem;
}

@media (max-width: 991.98px) {
    .wv-nav .navbar-collapse {
        background: rgba(12, 12, 12, 0.98);
        border: 1px solid var(--wv-line);
        border-radius: 16px;
        margin-top: 0.75rem;
        padding: 1rem;
    }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--nav-h) + 2.5rem) 0 0;
    background:
        radial-gradient(ellipse 80% 55% at 70% 20%, rgba(255, 156, 0, 0.16), transparent 55%),
        radial-gradient(ellipse 60% 50% at 15% 80%, rgba(255, 255, 255, 0.05), transparent 50%),
        linear-gradient(165deg, #050505 0%, #121212 45%, #0a0a0a 100%);
    color: var(--wv-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.9;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
    animation: gridDrift 28s linear infinite;
}

.hero-glow {
    position: absolute;
    z-index: 1;
    width: 55vw;
    height: 55vw;
    max-width: 680px;
    max-height: 680px;
    right: -8%;
    top: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 156, 0, 0.22), transparent 68%);
    filter: blur(10px);
    animation: pulseGlow 7s ease-in-out infinite;
}

.hero-orbit {
    position: absolute;
    z-index: 1;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 156, 0, 0.18);
    border-radius: 50%;
    left: -80px;
    bottom: 8%;
    animation: spinSlow 40s linear infinite;
}

.hero-orbit::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--wv-orange);
    top: 18%;
    left: 8%;
    box-shadow: 0 0 18px var(--wv-orange);
}

.hero-orbit-2 {
    width: 280px;
    height: 280px;
    left: auto;
    right: 8%;
    top: 18%;
    bottom: auto;
    border-color: rgba(255, 255, 255, 0.08);
    animation-duration: 55s;
    animation-direction: reverse;
}

.hero-orbit-2::after {
    top: 70%;
    left: 12%;
    width: 7px;
    height: 7px;
}

/* Floating tech accessories */
.tech-floaters {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.tech-item {
    position: absolute;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 156, 0, 0.28);
    color: rgba(255, 156, 0, 0.85);
    font-size: 1.55rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    animation: techFloat 12s ease-in-out infinite;
}

.tech-item.t1 { top: 16%; left: 5%; animation-duration: 11s; }
.tech-item.t2 { top: 22%; right: 6%; animation-duration: 14s; animation-delay: -2s; }
.tech-item.t3 { top: 62%; left: 7%; animation-duration: 13s; animation-delay: -4s; color: rgba(255,255,255,0.6); }
.tech-item.t4 { top: 48%; right: 8%; animation-duration: 15s; animation-delay: -1s; }
.tech-item.t5 { bottom: 18%; left: 18%; animation-duration: 12s; animation-delay: -3s; }
.tech-item.t6 { top: 12%; right: 22%; animation-duration: 16s; animation-delay: -5s; width: 54px; height: 54px; font-size: 1.25rem; }
.tech-item.t7 { bottom: 26%; right: 5%; animation-duration: 13.5s; animation-delay: -6s; }
.tech-item.t8 { top: 72%; right: 24%; animation-duration: 14.5s; animation-delay: -2.5s; width: 52px; height: 52px; font-size: 1.2rem; }
.tech-item.t9 { top: 44%; left: 2%; animation-duration: 17s; animation-delay: -7s; width: 50px; height: 50px; font-size: 1.15rem; }
.tech-item.t10 { bottom: 14%; right: 36%; animation-duration: 12.5s; animation-delay: -1.5s; width: 56px; height: 56px; }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    padding-bottom: 4.5rem;
}

.hero-brand {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    margin-bottom: 1.5rem;
}

.hero-360 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 5.5vw, 3.6rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: var(--wv-orange);
    text-shadow:
        0 0 22px rgba(255, 156, 0, 0.35),
        0 6px 18px rgba(255, 156, 0, 0.2);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    user-select: none;
}

.is-rtl .hero-brand {
    flex-direction: row;
}

.wv-logo-img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
}

.wv-logo-img.wv-wordmark--nav {
    height: 32px;
    width: auto;
    max-width: 180px;
}

.wv-logo-img.wv-wordmark--hero {
    height: clamp(58px, 9.5vw, 92px);
    width: auto;
    max-width: min(480px, 90vw);
    filter: drop-shadow(0 10px 28px rgba(255, 156, 0, 0.22));
}

.wv-logo-img.wv-wordmark--footer {
    height: 48px;
    width: auto;
    max-width: 240px;
    margin-bottom: 0.85rem;
}

/* legacy text wordmark kept only if needed */
.wv-wordmark {
    display: none;
}

.hero-title {
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(1.35rem, 2.4vw, 1.95rem);
    font-weight: 500;
    font-family: var(--font-display);
    letter-spacing: -0.025em;
    line-height: 1.3;
    max-width: 26ch;
    margin-bottom: 1rem;
    text-wrap: balance;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(0.98rem, 1.3vw, 1.1rem);
    max-width: 54ch;
    margin-bottom: 0.85rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.hero-values {
    margin: 0 0 1.55rem;
    color: var(--wv-orange);
    font-family: var(--font-display);
    font-size: clamp(0.72rem, 1vw, 0.8125rem);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.trust-banner {
    position: relative;
    z-index: 2;
    margin-top: auto;
    border-top: 1px solid var(--wv-line);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 0.95rem 0;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

.trust-banner i {
    color: var(--wv-orange);
    margin-inline-end: 0.5rem;
    font-size: 1.15rem;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 156, 0, 0.35);
    background: rgba(255, 156, 0, 0.1);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.hero-location i {
    color: var(--wv-orange);
    font-size: 0.95rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 2.35rem;
    max-width: 560px;
}

.hero-stat {
    position: relative;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.hero-stat::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--wv-orange), rgba(255, 156, 0, 0.2));
}

.hero-stat-value {
    display: block;
    font-family: var(--font-stats);
    font-size: clamp(1.45rem, 2.2vw, 1.85rem);
    font-weight: 600;
    color: var(--wv-orange);
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: lining-nums proportional-nums;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.hero-stat-label {
    display: block;
    margin-top: 0.4rem;
    color: rgba(255, 255, 255, 0.58);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.015em;
}

/* ---------- Capabilities strip ---------- */
.cap-strip {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    padding: 1.6rem 0;
    background: var(--wv-black);
    border-bottom: 1px solid rgba(255, 156, 0, 0.18);
}

.cap-strip-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
}

.cap-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wv-orange);
    white-space: nowrap;
}

.cap-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.cap-chips li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.cap-chips li i {
    color: var(--wv-orange);
    font-size: 1rem;
}

.cap-chips li:hover {
    border-color: rgba(255, 156, 0, 0.45);
    background: rgba(255, 156, 0, 0.1);
    transform: translateY(-1px);
}

/* ---------- Sections ---------- */
.section {
    padding: 6rem 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 3rem;
}

.section-head.text-center {
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(0.78rem, 0.95vw, 0.875rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wv-orange);
    margin-bottom: 0.85rem;
    -webkit-font-smoothing: antialiased;
}

.section-head h2,
.featured-shell h2,
.final-cta-panel h2 {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 2.9vw, 2.35rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.18;
    margin-bottom: 0.9rem;
    text-wrap: balance;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.featured-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.featured-title-link:hover {
    color: var(--wv-orange);
}

.lead-text {
    color: var(--wv-muted);
    font-size: var(--text-md);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 40rem;
}

.section-head.text-center .lead-text {
    margin-left: auto;
    margin-right: auto;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.78) !important;
}

/* ---------- Why / Compare ---------- */
.why-section {
    background:
        linear-gradient(180deg, #ffffff 0%, var(--wv-fog) 100%);
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.compare-col {
    border-radius: var(--wv-radius);
    padding: 1.75rem 1.6rem;
    min-height: 100%;
}

.compare-old {
    background: #efefed;
    border: 1px solid var(--wv-line-dark);
}

.compare-new {
    background: var(--wv-black);
    color: var(--wv-white);
    border: 1px solid rgba(255, 156, 0, 0.35);
    box-shadow: var(--wv-shadow);
}

.compare-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.compare-old .compare-label {
    color: #7a7a7a;
}

.compare-new .compare-label {
    color: var(--wv-orange);
}

.compare-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.compare-col li {
    position: relative;
    padding-inline-start: 1.35rem;
    color: inherit;
    font-size: 0.98rem;
    line-height: 1.55;
}

.compare-old li {
    color: #555;
}

.compare-new li {
    color: rgba(255, 255, 255, 0.86);
}

.compare-col li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.compare-old li::before {
    background: #b0b0b0;
}

.compare-new li::before {
    background: var(--wv-orange);
    box-shadow: 0 0 0 3px rgba(255, 156, 0, 0.18);
}

/* ---------- Pillars ---------- */
.pillars-section {
    position: relative;
    background:
        radial-gradient(ellipse 70% 55% at 50% -10%, rgba(255, 156, 0, 0.12), transparent 55%),
        linear-gradient(180deg, #f3f1ec 0%, #fafaf8 40%, #ffffff 100%);
    overflow: hidden;
}

.pillars-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 10, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
    pointer-events: none;
}

.accent-360 {
    color: var(--wv-orange);
    font-family: inherit;
    font-weight: inherit;
    font-style: normal;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
}

.pillars-section .section-head h2 {
    font-weight: 600;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}

.pillars-section .section-head .lead-text {
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto;
}

.ecosystem-badge {
    text-align: center;
    margin-bottom: 2.75rem;
    position: relative;
}

.eco-badge-inner {
    display: inline-flex;
    align-items: baseline;
    gap: 0.55rem;
    font-family: var(--font-brand);
    font-weight: 700;
    letter-spacing: 0.16em;
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--wv-black);
    background: linear-gradient(135deg, #ffb133 0%, var(--wv-orange) 55%, #e08900 100%);
    padding: 0.95rem 1.85rem;
    border-radius: 999px;
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 28px rgba(255, 156, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.eco-badge-inner .eco-brand {
    color: var(--wv-black);
    letter-spacing: 0.18em;
}

.eco-badge-inner .eco-360 {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.12);
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.95em;
}

.eco-lines {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(780px, 92%);
    height: 1px;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, transparent, rgba(255, 156, 0, 0.45), transparent);
    z-index: 0;
}

.pillars-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.pillar-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    padding: 1.75rem 1.5rem 1.35rem;
    border-radius: 24px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
    border: 1px solid rgba(10, 10, 10, 0.08);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 18px 40px rgba(20, 12, 0, 0.06);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.pillar-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--wv-orange), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pillar-panel:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 156, 0, 0.4);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 28px 55px rgba(20, 12, 0, 0.12);
}

.pillar-panel:hover::before {
    opacity: 1;
}

.pillar-watermark {
    position: absolute;
    top: 0.35rem;
    inset-inline-end: 0.65rem;
    font-family: var(--font-stats);
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.06em;
    color: rgba(255, 156, 0, 0.07);
    pointer-events: none;
    user-select: none;
}

.pillar-icon-wrap {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    margin-bottom: 1.35rem;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(145deg, rgba(255, 156, 0, 0.18), rgba(255, 156, 0, 0.06));
    border: 1px solid rgba(255, 156, 0, 0.28);
    color: var(--wv-orange);
    font-size: 1.7rem;
    box-shadow: 0 10px 22px rgba(255, 156, 0, 0.12);
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.pillar-panel:hover .pillar-icon-wrap {
    transform: scale(1.06);
    background: linear-gradient(145deg, var(--wv-orange), #e08900);
    color: var(--wv-black);
    border-color: transparent;
}

.pillar-body {
    position: relative;
    z-index: 1;
    flex: 1;
}

.pillar-num {
    display: inline-block;
    margin-bottom: 0.55rem;
    font-family: var(--font-stats);
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--wv-orange);
    letter-spacing: 0.12em;
}

.pillar-panel h3 {
    font-size: clamp(1.2rem, 1.35vw, 1.4rem);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.pillar-panel .pillar-body > p {
    color: var(--wv-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.15rem;
}

.pillar-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.pillar-panel li {
    font-size: 0.95rem;
    color: #2f2f2f;
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    line-height: 1.5;
}

.pillar-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 0.05rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 156, 0, 0.12);
    color: var(--wv-orange);
    font-size: 0.75rem;
}

.pillar-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1.4rem;
    padding: 0.85rem 1.15rem;
    border: 1px solid var(--wv-orange);
    border-radius: 999px;
    background: var(--wv-orange);
    color: var(--wv-black);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(255, 156, 0, 0.28);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, gap 0.25s ease;
}

.pillar-link i {
    color: var(--wv-black);
    transition: transform 0.25s ease;
}

.pillar-link:hover {
    color: var(--wv-black);
    background: var(--wv-orange-deep);
    border-color: var(--wv-orange-deep);
    gap: 0.75rem;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(255, 156, 0, 0.38);
}

.pillar-link:hover i {
    transform: translateX(3px);
}

.is-rtl .pillar-link:hover i {
    transform: translateX(-3px) scaleX(-1);
}

.is-rtl .pillar-link i {
    transform: scaleX(-1);
}

@media (max-width: 1199.98px) {
    .pillars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- About / Choose / Industries ---------- */
.about-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f4ef 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.about-card {
    padding: 1.75rem 1.5rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(10, 10, 10, 0.07);
    box-shadow: 0 14px 34px rgba(20, 12, 0, 0.05);
    transition: transform 0.28s ease, border-color 0.28s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 156, 0, 0.35);
}

.about-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 156, 0, 0.12);
    color: var(--wv-orange);
    font-size: 1.35rem;
    margin-bottom: 1.1rem;
}

.about-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.55rem;
}

.about-card p {
    margin: 0;
    color: var(--wv-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.choose-block .section-head {
    margin-bottom: 2rem;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.choose-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.35rem 1.25rem;
    border-radius: 18px;
    background: var(--wv-black);
    color: var(--wv-white);
    border: 1px solid rgba(255, 156, 0, 0.2);
}

.choose-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 156, 0, 0.14);
    color: var(--wv-orange);
    font-size: 1.2rem;
}

.choose-card h3 {
    color: var(--wv-white);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.choose-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.industries-section {
    background: var(--wv-white);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* ---------- Our Clients ---------- */
.clients-section {
    position: relative;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 156, 0, 0.12), transparent 55%),
        linear-gradient(180deg, #0d0d0d 0%, #141414 100%);
    color: var(--wv-white);
    overflow: hidden;
}

.clients-section .section-head h2 {
    color: var(--wv-white);
}

.clients-section .lead-text {
    color: rgba(255, 255, 255, 0.68);
}

.clients-marquee {
    position: relative;
    margin-top: 0.5rem;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.clients-track {
    display: flex;
    gap: 1.1rem;
    width: max-content;
    animation: clients-scroll 42s linear infinite;
}

.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

@keyframes clients-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

html[dir="rtl"] .clients-track {
    animation-name: clients-scroll-rtl;
}

@keyframes clients-scroll-rtl {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}

.client-mark {
    flex: 0 0 auto;
    min-width: 200px;
    padding: 1.35rem 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    display: grid;
    gap: 0.65rem;
    transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.client-mark:hover {
    border-color: rgba(255, 156, 0, 0.45);
    background: linear-gradient(160deg, rgba(255, 156, 0, 0.12), rgba(255, 255, 255, 0.03));
    transform: translateY(-3px);
}

.client-mono {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--wv-orange);
    line-height: 1;
}

.client-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.01em;
}

.client-sector {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.clients-note {
    margin: 2.25rem auto 0;
    max-width: 36rem;
    text-align: center;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
    .clients-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }

    .clients-marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.industry-chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1.05rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 156, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 156, 0, 0.08), rgba(255, 255, 255, 0.9));
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--wv-ink);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.industry-chip i {
    color: var(--wv-orange);
    font-size: 1.25rem;
}

.industry-chip:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 156, 0, 0.45);
}

@media (max-width: 991.98px) {
    .about-grid,
    .choose-grid,
    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .about-grid,
    .choose-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Vision / Tech stack ---------- */
.vision-section {
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 156, 0, 0.1), transparent 55%),
        #0f0f0f;
    color: var(--wv-white);
}

.vision-section .section-head h2 {
    color: var(--wv-white);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.vision-card {
    padding: 2rem 1.75rem;
    border-radius: 22px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 156, 0, 0.14);
    color: var(--wv-orange);
    font-size: 1.35rem;
    margin-bottom: 1.15rem;
}

.vision-card h3 {
    color: var(--wv-white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.vision-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    line-height: 1.75;
}

.stack-section {
    background: linear-gradient(180deg, #f7f4ef 0%, #ffffff 100%);
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.stack-chip {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(10, 10, 10, 0.08);
    box-shadow: 0 10px 24px rgba(20, 12, 0, 0.04);
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.stack-chip i {
    color: var(--wv-orange);
    font-size: 1.2rem;
}

.stack-chip:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 156, 0, 0.4);
}

@media (max-width: 991.98px) {
    .vision-grid,
    .stack-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .vision-grid,
    .stack-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Featured ---------- */
.featured-section {
    background: var(--wv-fog);
}

.featured-shell {
    background:
        linear-gradient(135deg, rgba(255, 156, 0, 0.12), transparent 40%),
        var(--wv-white);
    border: 1px solid var(--wv-line-dark);
    border-radius: 28px;
    padding: clamp(1.75rem, 4vw, 3rem);
    box-shadow: var(--wv-shadow);
}

.featured-shell--reverse {
    background:
        linear-gradient(225deg, rgba(255, 156, 0, 0.1), transparent 42%),
        var(--wv-white);
}

.featured-section .section-head {
    margin-bottom: 2.25rem;
}

.featured-quote {
    font-size: 1.15rem;
    color: #444;
    font-weight: 500;
    border-inline-start: 3px solid var(--wv-orange);
    padding-inline-start: 1rem;
    margin: 1.25rem 0 1.5rem;
}

.featured-lead {
    font-size: 1.02rem;
    color: #555;
    font-weight: 400;
    line-height: 1.7;
    border-inline-start: 3px solid var(--wv-orange);
    padding-inline-start: 1rem;
    margin: 1.15rem 0 1.5rem;
}

.featured-features {
    display: grid;
    gap: 1rem;
}

.feat-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.15rem 1.2rem;
    border-radius: var(--wv-radius-sm);
    background: var(--wv-paper);
    border: 1px solid var(--wv-line-dark);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.feat-item:hover {
    border-color: rgba(255, 156, 0, 0.4);
    transform: translateX(4px);
}

.is-rtl .feat-item:hover {
    transform: translateX(-4px);
}

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wv-black);
    color: var(--wv-orange);
    font-size: 1.25rem;
}

.feat-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.feat-item p {
    margin: 0;
    color: var(--wv-muted);
    font-size: 0.92rem;
}

/* ---------- Cases ---------- */
.cases-section {
    background: var(--wv-white);
}

.case-panel {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 280px;
    padding: 2rem;
    border-radius: 24px;
    color: var(--wv-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.case-a {
    background:
        linear-gradient(160deg, rgba(10, 10, 10, 0.15), rgba(10, 10, 10, 0.82)),
        linear-gradient(135deg, #1f1f1f, #2c2110);
}

.case-b {
    background:
        linear-gradient(160deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.8)),
        linear-gradient(135deg, #151515, #3a2808);
}

.case-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wv-black);
    background: var(--wv-orange);
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1.1rem;
}

.case-panel h3 {
    color: var(--wv-white);
    font-size: 1.55rem;
    margin-bottom: 0.7rem;
}

.case-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    max-width: 40ch;
    font-size: 1.08rem;
    line-height: 1.7;
}

.case-accent {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    right: -40px;
    top: -40px;
    background: radial-gradient(circle, rgba(255, 156, 0, 0.35), transparent 70%);
}

.is-rtl .case-accent {
    right: auto;
    left: -40px;
}

/* ---------- Process ---------- */
.process-section {
    position: relative;
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(255, 156, 0, 0.08), transparent 60%),
        linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
    color: var(--wv-white);
    overflow: hidden;
}

.process-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
    position: relative;
    width: 100%;
}

.process-step {
    position: relative;
    height: 100%;
    padding: 1.65rem 1.4rem 1.75rem;
    border-radius: 22px;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 156, 0, 0.45);
    background:
        linear-gradient(165deg, rgba(255, 156, 0, 0.14), rgba(255, 255, 255, 0.03));
}

.process-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.35rem;
}

.process-section .section-head h2 {
    color: var(--wv-white);
    font-weight: 600;
    letter-spacing: -0.03em;
    -webkit-font-smoothing: antialiased;
}

.process-section .lead-text {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
}

.process-num {
    font-family: var(--font-stats);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--wv-orange);
    font-variant-numeric: lining-nums proportional-nums;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
    color: var(--wv-white);
    -webkit-font-smoothing: antialiased;
}

.process-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.01em;
}

.process-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 156, 0, 0.14);
    border: 1px solid rgba(255, 156, 0, 0.28);
    color: var(--wv-orange);
    font-size: 1.35rem;
}

.process-arrow {
    position: absolute;
    top: 2.55rem;
    inset-inline-end: -0.85rem;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    background: var(--wv-orange);
    color: var(--wv-black);
    z-index: 2;
    box-shadow: 0 0 0 6px #0a0a0a;
}

.process-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.45rem;
    height: 0.45rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translate(-60%, -50%) rotate(45deg);
}

.is-rtl .process-arrow::before {
    transform: translate(-40%, -50%) rotate(-135deg);
}

/* ---------- FAQ ---------- */
.faq-section {
    background:
        linear-gradient(180deg, #f7f4ef 0%, #ffffff 45%);
}

.faq-list {
    max-width: none;
}

.wv-faq-item {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 0.85rem;
    background: #fff;
    box-shadow: 0 8px 24px rgba(20, 12, 0, 0.04);
}

.wv-faq-item .accordion-button {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--wv-ink);
    background: #fff;
    box-shadow: none !important;
    padding: 1.1rem 1.25rem;
}

.wv-faq-item .accordion-button:not(.collapsed) {
    color: var(--wv-ink);
    background: rgba(255, 156, 0, 0.08);
}

.wv-faq-item .accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff9c00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.wv-faq-item .accordion-body {
    color: var(--wv-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    padding: 0 1.25rem 1.2rem;
}

/* ---------- Final CTA / Contact ---------- */
.final-cta-section {
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 156, 0, 0.18), transparent 55%),
        var(--wv-black);
    padding-bottom: 5rem;
}

.final-cta-panel {
    color: var(--wv-white);
}

.final-cta-panel h2 {
    color: var(--wv-white);
}

.contact-channels {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.channel {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--wv-line);
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.channel:hover {
    border-color: rgba(255, 156, 0, 0.55);
    background: rgba(255, 156, 0, 0.08);
    transform: translateY(-2px);
}

.channel i {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--wv-orange-soft);
    color: var(--wv-orange);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.channel-wa i {
    color: #25d366;
    background: rgba(37, 211, 102, 0.12);
}

.channel small {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-bottom: 0.1rem;
}

.channel strong {
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--wv-white);
}

.contact-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--wv-line);
    border-radius: 24px;
    padding: clamp(1.4rem, 3vw, 2rem);
    height: 100%;
}

.contact-form .form-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--wv-white);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    box-shadow: none;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--wv-orange);
    color: var(--wv-white);
    box-shadow: 0 0 0 3px rgba(255, 156, 0, 0.18);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-form .form-select,
.contact-form select.form-control {
    background-color: rgba(255, 255, 255, 0.05);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ff9c00' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 14px 10px;
    color: var(--wv-white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.8rem 2.4rem 0.8rem 1rem;
    appearance: none;
}

.is-rtl .contact-form .form-select,
.is-rtl .contact-form select.form-control {
    background-position: left 0.9rem center;
    padding: 0.8rem 1rem 0.8rem 2.4rem;
}

.contact-form .form-select option {
    color: #121212;
    background: #fff;
}

.contact-form .req {
    color: var(--wv-orange);
}

.contact-form .form-feedback {
    margin-bottom: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.92rem;
    line-height: 1.45;
}

.contact-form .form-feedback.is-success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.35);
    color: #9be7b1;
}

.contact-form .form-feedback.is-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.35);
    color: #ffb3bc;
}

.contact-form .hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form.was-validated .form-control:invalid,
.contact-form.was-validated .form-select:invalid {
    border-color: rgba(220, 53, 69, 0.7);
}

/* ---------- Footer ---------- */
.wv-footer {
    background: #050505;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid var(--wv-line);
}

.wv-footer-logo {
    height: 40px;
    width: auto;
    mix-blend-mode: screen;
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.social-row-contact {
    margin-top: 0.35rem;
    padding-top: 0.35rem;
}

.social-btn {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 156, 0, 0.12);
    border: 1px solid rgba(255, 156, 0, 0.45);
    color: var(--wv-orange);
    font-size: 1.25rem;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.social-btn:hover {
    background: var(--wv-orange);
    color: var(--wv-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px var(--wv-orange-glow);
}

.social-float {
    position: fixed;
    top: 50%;
    inset-inline-end: 1rem;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.social-float .social-btn {
    width: 42px;
    height: 42px;
    background: rgba(10, 10, 10, 0.78);
    backdrop-filter: blur(8px);
}

.channel-static {
    cursor: default;
}

.channel-static:hover {
    transform: none;
}

.wv-footer-tagline {
    max-width: 36ch;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
}

.wv-footer-local {
    max-width: 40ch;
    margin: 0.75rem 0 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.86rem;
    line-height: 1.5;
}

.wv-footer-geo {
    margin: 0.4rem 0 0;
    color: var(--wv-orange);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.wv-footer-heading {
    color: var(--wv-white);
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

.wv-footer-links,
.wv-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.wv-footer-links a,
.wv-footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.wv-footer-links a:hover,
.wv-footer-contact a:hover {
    color: var(--wv-orange);
}

.wv-footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.wv-footer-contact i {
    color: var(--wv-orange);
}

.wv-footer-bottom {
    margin-top: 2.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--wv-line);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
}

.wv-footer-seo-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.55rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: 0.02em;
}

.wv-footer-seo-line span {
    white-space: nowrap;
}

/* ---------- Scroll top ---------- */
.scroll-top {
    position: fixed;
    bottom: 1.4rem;
    inset-inline-end: 1.4rem;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--wv-orange);
    color: var(--wv-black);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 50;
    box-shadow: 0 10px 24px var(--wv-orange-glow);
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ---------- Reveal animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

@keyframes pulseGlow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gridDrift {
    from { background-position: 0 0; }
    to { background-position: 72px 72px; }
}

@keyframes techFloat {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.7; }
    25% { transform: translateY(-14px) translateX(8px) rotate(4deg); opacity: 1; }
    50% { transform: translateY(-6px) translateX(-6px) rotate(-3deg); opacity: 0.85; }
    75% { transform: translateY(-18px) translateX(4px) rotate(2deg); opacity: 1; }
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .section {
        padding: 4.5rem 0;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        max-width: none;
    }

    .tech-item.t6,
    .tech-item.t8,
    .tech-item.t9,
    .tech-item.t10 {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--nav-h) + 1.5rem);
    }

    .hero-content {
        padding-bottom: 3rem;
    }

    .process-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-arrow {
        display: none;
    }

    .hero-stats {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .hero-ctas .btn {
        width: 100%;
        text-align: center;
    }

    .process-track {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .cap-label {
        width: 100%;
    }

    .tech-item.t3,
    .tech-item.t5,
    .tech-item.t7 {
        display: none;
    }

    .case-panel {
        min-height: 240px;
    }

    .btn-lg {
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem;
    }
}

/* Arabic / Kurdish / Persian type tuning */
.is-rtl body,
.is-rtl {
    font-family: var(--font-body), "Segoe UI", Tahoma, sans-serif;
}

.is-rtl h1,
.is-rtl h2,
.is-rtl h3,
.is-rtl h4 {
    letter-spacing: 0;
    line-height: 1.35;
}

.is-rtl .hero-title {
    max-width: 40ch;
    font-size: clamp(1.2rem, 2.2vw, 1.75rem);
}

@media (max-width: 767.98px) {
    .social-float {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tech-item,
    .hero-orbit,
    .hero-grid,
    .hero-glow {
        animation: none !important;
    }
}
