/* =============================================
   NEW HORIZONS AI SOLUTIONS — Design System
   n-h.ae | Premium Dark + Gold Theme
   ============================================= */

/* ---- CSS Variables ---- */
:root {
    /* Colors */
    --gold: #c9a84c;
    --gold-light: #e0c878;
    --gold-dark: #a68a3a;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --gold-glow-strong: rgba(201, 168, 76, 0.3);

    --bg-primary: #0a0b0e;
    --bg-secondary: #0f1014;
    --bg-tertiary: #141519;
    --bg-card: rgba(255, 255, 255, 0.03);

    --text-primary: #f0f0f2;
    --text-secondary: #a0a3b1;
    --text-muted: #6b6e7e;

    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(201, 168, 76, 0.25);

    --gradient-gold: linear-gradient(135deg, #c9a84c 0%, #e0c878 50%, #c9a84c 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10, 11, 14, 0.3) 0%, rgba(10, 11, 14, 0.7) 50%, var(--bg-primary) 100%);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 10vw, 140px);
    --container-width: 1280px;
    --gap: clamp(20px, 3vw, 40px);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

/* ---- Custom Cursor ---- */
.cursor-dot,
.cursor-ring {
    display: none;
}

@media (hover: none) {

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    * {
        cursor: auto !important;
    }
}

/* ---- Preloader ---- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-spinner {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(191, 163, 90, 0.15);
}

.preloader-ring::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--gold);
    border-right-color: var(--gold);
    animation: spin 1.2s linear infinite;
}

.preloader-icon {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

/* ---- Section ---- */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.7;
}

.section-header.center {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 80px);
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* ---- Glass Card ---- */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.06);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.35s var(--ease-out);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============ NAVIGATION ============ */
#main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

#main-nav.scrolled {
    background: rgba(10, 11, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px clamp(20px, 4vw, 60px);
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-logo-sub {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.dot {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 16px;
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.lang-switch {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px;
    border-radius: 50px;
    border: 1px solid var(--border);
}

.lang-btn {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 50px;
    color: var(--text-muted);
    transition: all 0.3s;
    cursor: pointer;
}

.lang-btn.active,
.lang-btn:hover {
    color: var(--gold);
    background: var(--gold-glow);
}

.nav-global {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    flex-shrink: 0;
}

.nav-global svg {
    width: 16px;
    height: 16px;
    display: block;
}

.nav-global:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

.nav-cta {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 24px;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

/* Dropdown */
.nav-dropdown {
    position: relative !important;
}

.nav-dropdown-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-dropdown-trigger svg {
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.nav-dropdown:hover > .nav-dropdown-trigger svg {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    margin-top: 0;
    min-width: 210px;
    padding: 10px 0;
    list-style: none;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
    pointer-events: none;
}

.nav-dropdown:hover > .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown-link {
    display: block;
    padding: 10px 20px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown-link:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease-out);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Scroll Progress */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
}

.scroll-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-gold);
    transition: width 0.1s linear;
}

/* ============ HERO ============ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-wrap video,
.hero-video-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    padding-top: 60px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    padding: 8px 24px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50px;
    margin-bottom: 32px;
    background: rgba(201, 168, 76, 0.06);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Hero Partners */
.hero-partners {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 40px;
}

.partners-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.partner-logo {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.partner-divider {
    color: rgba(255, 255, 255, 0.15);
    font-size: 1rem;
}

.partner-logo-img {
    height: 32px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.partner-logo-img:hover {
    opacity: 0.9;
}

.hw-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    margin-bottom: 12px;
    transition: opacity 0.3s, transform 0.3s;
}

.hw-logo-card:hover .hw-logo-img {
    opacity: 1;
    transform: scale(1.05);
}

/* ============ ABOUT ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.about-lead {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: var(--gold-glow);
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.highlight-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stats-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    padding: 24px 32px;
    display: flex;
    gap: 24px;
    align-items: center;
    background: rgba(10, 11, 14, 0.9) !important;
    backdrop-filter: blur(20px);
}

.stat-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ============ PORTFOLIO ============ */
.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
    margin-bottom: clamp(60px, 8vw, 100px);
}

.project-card:last-child {
    margin-bottom: 0;
}

.project-card.reverse {
    direction: rtl;
}

.project-card.reverse>* {
    direction: ltr;
}

.project-video {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(0.8);
    transition: filter 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.project-card:hover .video-placeholder img {
    filter: brightness(0.5) saturate(0.9);
    transform: scale(1.03);
}

.video-placeholder-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 1;
    color: var(--text-secondary);
}

.video-placeholder-content i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.project-card:hover .video-placeholder-content i {
    opacity: 1;
    transform: scale(1.1);
}

.video-placeholder-content span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

.project-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    padding: 6px 16px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(201, 168, 76, 0.05);
}

.project-name {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.project-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.project-metrics {
    display: flex;
    gap: 32px;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.metric-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* ============ SERVICES ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}

.service-card {
    padding: clamp(30px, 4vw, 48px);
    transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 16px 60px rgba(201, 168, 76, 0.08);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gold-glow);
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 24px;
    transition: background 0.3s, transform 0.3s;
}

.service-card:hover .service-icon {
    background: var(--gold-glow-strong);
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-features span {
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: border-color 0.3s, color 0.3s;
}

.service-card:hover .service-features span {
    border-color: rgba(201, 168, 76, 0.15);
    color: var(--text-secondary);
}

/* ============ ALL-IN-ONE ============ */
.aio-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.aio-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.aio-tab i {
    font-size: 1rem;
}

.aio-tab:hover {
    border-color: var(--border-hover);
    color: var(--text-secondary);
}

.aio-tab.active {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
}

/* Legend */
.aio-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.ai {
    background: #3b82f6;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

.legend-dot.human {
    background: var(--gold);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.5);
}

/* Process Flows */
.aio-flows {
    position: relative;
    margin-bottom: 60px;
}

.aio-flow {
    display: none;
}

.aio-flow.active {
    display: block;
    animation: flowFadeIn 0.5s var(--ease-out);
}

@keyframes flowFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

.flow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 30px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.flow-steps::-webkit-scrollbar {
    display: none;
}

/* Flow Step Card */
.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 12px;
    min-width: 110px;
    max-width: 130px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    position: relative;
    scroll-snap-align: start;
    transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.flow-step:hover {
    transform: translateY(-6px);
}

/* AI Step */
.flow-step.ai {
    border-color: rgba(59, 130, 246, 0.25);
}

.flow-step.ai:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
}

.flow-step.ai .step-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

.flow-step.ai::after {
    content: 'AI';
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3b82f6;
    opacity: 0.7;
}

/* Human Step */
.flow-step.human {
    border-color: rgba(201, 168, 76, 0.25);
}

.flow-step.human:hover {
    border-color: rgba(201, 168, 76, 0.5);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.12);
}

.flow-step.human .step-icon {
    background: var(--gold-glow);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.flow-step.human::after {
    content: '👤';
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 0.6rem;
}

/* Step Icon */
.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.flow-step:hover .step-icon {
    transform: scale(1.1);
}

/* Step Labels */
.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.step-detail {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Flow Connector */
.flow-connector {
    display: flex;
    align-items: center;
    padding: 0 2px;
    min-width: 30px;
    position: relative;
    align-self: center;
}

.connector-line {
    flex: 1;
    height: 2px;
    background: repeating-linear-gradient(90deg,
            var(--border) 0,
            var(--border) 6px,
            transparent 6px,
            transparent 12px);
    position: relative;
    overflow: hidden;
}

.connector-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    animation: flowPulse 3s ease-in-out infinite;
}

@keyframes flowPulse {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.flow-connector i {
    color: var(--text-muted);
    font-size: 0.6rem;
    opacity: 0.5;
}

/* Flow Counter */
.flow-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    margin-top: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.counter-total {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.counter-total span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.counter-divider {
    color: var(--border);
    font-size: 1.2rem;
}

.counter-human {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
}

/* Our Approach */
.aio-approach {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.aio-approach h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.approach-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.approach-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.approach-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 160px;
    padding: 0 12px;
}

.approach-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-glow);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
    transition: background 0.3s, transform 0.3s;
}

.approach-step:hover .approach-number {
    background: var(--gold-glow-strong);
    transform: scale(1.1);
}

.approach-step h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.approach-step p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.approach-connector {
    width: 40px;
    min-width: 40px;
    height: 2px;
    background: repeating-linear-gradient(90deg,
            rgba(201, 168, 76, 0.3) 0,
            rgba(201, 168, 76, 0.3) 6px,
            transparent 6px,
            transparent 12px);
    margin-top: 24px;
}

/* Oliver AI Widget section removed — code purge */
/* ========================================= */

/* ============ INFRASTRUCTURE ============ */
.infra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
    margin-bottom: 80px;
}

.infra-map-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    min-height: 400px;
    justify-content: space-between;
}

.map-region {
    text-align: center;
    position: relative;
    padding: 24px;
}

.map-pulse {
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    margin: 0 auto 16px;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.map-pulse::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(201, 168, 76, 0.3);
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.map-label strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.map-label span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.map-connection {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent, var(--gold));
    position: relative;
}

.map-connection::after {
    content: 'CONNECTED';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    white-space: nowrap;
}

.infra-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.infra-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    align-items: flex-start;
}

.infra-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}

.infra-feature h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.infra-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Hardware Partners */
.hardware-partners {
    text-align: center;
}

.hardware-partners h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.hw-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
    max-width: 640px;
    margin: 0 auto;
}

.hw-logo-card {
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hw-logo-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.hw-logo-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.hw-logo-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ============ PRICING ============ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    align-items: stretch;
}

.pricing-card {
    padding: clamp(30px, 4vw, 48px);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.08);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-tier {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.pricing-features {
    flex: 1;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--gold);
    font-size: 0.8rem;
    width: 20px;
    text-align: center;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
}

/* ============ CTA BANNER ============ */
.cta-banner {
    padding: clamp(60px, 8vw, 100px) 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(201, 168, 76, 0.02) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ CONTACT ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.contact-item span,
.contact-item a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-item a:hover {
    color: var(--gold);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-badge i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Contact Form */
.contact-form {
    padding: clamp(30px, 4vw, 48px);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group.full {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group label {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.2s var(--ease-out);
    background: transparent;
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -8px;
    left: 12px;
    font-size: 0.7rem;
    color: var(--gold);
    background: var(--bg-secondary);
    padding: 0 6px;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============ FOOTER ============ */
#footer {
    padding: 60px 0 0;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.footer-legal-name {
    font-size: 0.72rem;
    color: var(--text-muted);
    opacity: 0.6;
    letter-spacing: 0.5px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 4px 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p,
.footer-contact a {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {

    .about-grid,
    .infra-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .project-card,
    .project-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-section {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-content {
        padding-top: 20px;
    }

    .hero-partners {
        margin-top: 24px;
    }

    .partner-logo-img {
        height: 23px;
    }

    .partners-logos {
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 1200px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 100px 40px;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        border-left: 1px solid var(--border);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .nav-dropdown-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        pointer-events: auto !important;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0 0 0 16px;
        min-width: 0;
        display: none;
        flex-direction: column;
        gap: 16px;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-dropdown-menu.open {
        display: flex;
        padding-top: 12px;
    }

    .nav-dropdown-trigger svg {
        transition: transform 0.3s ease;
    }

    .nav-dropdown.open > .nav-dropdown-trigger svg {
        transform: rotate(180deg);
    }

    .nav-dropdown-link {
        padding: 0;
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.45);
    }

    .nav-cta {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .nav-container {
        gap: 12px;
    }

    .nav-global {
        width: 34px;
        height: 34px;
        margin-left: auto;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hw-logos {
        grid-template-columns: 1fr;
    }

    .about-stats-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
    }

    .trust-badges {
        flex-direction: column;
    }

    .project-metrics {
        flex-wrap: wrap;
        gap: 20px;
    }

    /* All-In-One responsive */
    .aio-tabs {
        gap: 6px;
    }

    .aio-tab {
        padding: 10px 16px;
        font-size: 0.78rem;
    }

    .aio-tab span {
        display: none;
    }

    .aio-tab i {
        font-size: 1.2rem;
    }

    .flow-steps {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        padding: 16px 0;
    }

    .flow-connector {
        display: none;
    }

    .flow-step {
        min-width: 90px;
        max-width: 100px;
        padding: 14px 8px;
    }

    .step-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .step-label {
        font-size: 0.68rem;
    }

    .step-detail {
        font-size: 0.58rem;
    }

    .approach-timeline {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .approach-connector {
        display: none;
    }

    .approach-step {
        max-width: 120px;
    }

}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 16px;
        letter-spacing: 2px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .lang-switch {
        display: none;
    }
}

/* ============ MOBILE LANGUAGE SWITCHER ============ */
.nav-lang-mobile {
    display: none;
}

@media (max-width: 768px) {

    /* ---- Mobile hero centering fix ---- */
    .hero-section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 80px 0 40px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 20px 15px 0;
        text-align: center;
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
    }

    .hero-partners {
        width: 100%;
        text-align: center;
        margin-top: 24px;
        padding: 0 15px;
    }

    .partners-logos {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* ---- Mobile language switcher ---- */
    .nav-lang-mobile {
        display: block;
        padding: 20px 0 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 10px;
    }

    .lang-switch-mobile {
        display: flex;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .lang-switch-mobile .lang-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

/* ============ RTL SUPPORT ============ */
[dir="rtl"] {
    direction: rtl;
}

[dir="rtl"] .nav-links {
    right: auto;
    left: 0;
    transform: translateX(-100%);
}

[dir="rtl"] .nav-links.active {
    transform: translateX(0);
}

[dir="rtl"] .nav-link::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .project-card.reverse {
    direction: ltr;
}

[dir="rtl"] .project-card.reverse>* {
    direction: rtl;
}

[dir="rtl"] .wa-float {
    right: auto;
    left: 28px;
}

[dir="rtl"] .form-group label {
    left: auto;
    right: 16px;
}

[dir="rtl"] .form-group input:focus~label,
[dir="rtl"] .form-group input:not(:placeholder-shown)~label,
[dir="rtl"] .form-group textarea:focus~label,
[dir="rtl"] .form-group textarea:not(:placeholder-shown)~label {
    left: auto;
    right: 12px;
}