/* Quick Step - Premium Styles with Awwwards-level Animations */

:root {
    --bg-canvas: #E0E0E0;
    --card-bg: #70BDB6;
    --card-dark: #111111;
    --accent-orange: #FF9779;
    --text-main: #111111;
    --text-light: #F2F2F2;
    --border-color: #111111;
    --font-primary: 'Inter', sans-serif;
    --font-arabic: 'Cairo', sans-serif;
    --radius-outer: 16px;
    --radius-inner: 50px;
    --border-width: 1px;
    --white: #FFFFFF;

    /* Dynamic Background Colors */
    --bg-gradient-1: #E8E4F0;
    --bg-gradient-2: #E0E8E4;
    --bg-color-progress: 0;

    /* Premium Animation Timing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-canvas);
}

::-webkit-scrollbar-thumb {
    background: var(--card-dark);
    border-radius: 5px;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

body {
    background-color: var(--bg-canvas);
    font-family: var(--font-primary);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 2rem;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Dynamic Gradient Background */
body.has-dynamic-bg {
    background: linear-gradient(135deg, var(--bg-gradient-1) 0%, var(--bg-gradient-2) 100%);
    transition: --bg-gradient-1 0.8s ease, --bg-gradient-2 0.8s ease;
}

/* Floating Gradient Orbs */
.gradient-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 20s ease-in-out infinite;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
    bottom: 20%;
    left: -150px;
    animation-delay: -5s;
}

.gradient-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.2) 0%, transparent 70%);
    top: 40%;
    right: -100px;
    animation-delay: -10s;
}

.gradient-orb-4 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(74, 144, 164, 0.25) 0%, transparent 70%);
    bottom: -100px;
    right: 30%;
    animation-delay: -15s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(40px, 30px) scale(1.02);
    }
}

/* Ensure content is above orbs */
body.has-dynamic-bg > *:not(.gradient-orbs) {
    position: relative;
    z-index: 1;
}

/* ============================================
   CUSTOM CURSOR - Glow Effect
   ============================================ */
.cursor-glow {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.cursor-active .cursor-glow {
    opacity: 1;
}

/* Main cursor dot */
.cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #FF9779, #10B981);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, background 0.3s ease;
    opacity: 1;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.5), 0 0 20px rgba(16, 185, 129, 0.3);
}

.cursor-dot.hovering {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #10B981, #84CC16);
}

.cursor-dot.clicking {
    transform: translate(-50%, -50%) scale(0.8);
}

/* Outer ring - follows with delay */
.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(124, 58, 237, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.cursor-ring.hovering {
    width: 60px;
    height: 60px;
    border-color: rgba(16, 185, 129, 0.6);
    background: rgba(16, 185, 129, 0.1);
}

.cursor-ring.clicking {
    width: 30px;
    height: 30px;
    border-color: rgba(132, 204, 22, 0.8);
}

/* Glow trail */
.cursor-trail {
    position: fixed;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, rgba(16, 185, 129, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    filter: blur(15px);
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Magnetic effect for interactive elements */
.cursor-magnetic {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide default cursor when custom cursor is active */
body.cursor-active {
    cursor: none;
}

body.cursor-active a,
body.cursor-active button,
body.cursor-active input,
body.cursor-active textarea,
body.cursor-active select,
body.cursor-active [role="button"],
body.cursor-active .company-item,
body.cursor-active .bento-card,
body.cursor-active .btn {
    cursor: none;
}

/* Disable custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-dot,
    .cursor-ring,
    .cursor-trail,
    .cursor-glow {
        display: none !important;
    }

    body.cursor-active {
        cursor: auto;
    }

    body.cursor-active a,
    body.cursor-active button {
        cursor: pointer;
    }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    .cursor-dot,
    .cursor-ring,
    .cursor-trail {
        transition: none;
    }
}

body.rtl {
    direction: rtl;
    font-family: var(--font-arabic);
}

/* Selection */
::selection {
    background: var(--accent-orange);
    color: var(--card-dark);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utility Classes */
.u-caps { text-transform: uppercase; letter-spacing: -0.02em; }
.u-bold { font-weight: 800; }
.u-arabic { font-family: var(--font-arabic); direction: rtl; text-align: right; }
.u-english { font-family: var(--font-primary); direction: ltr; text-align: left; }
.highlight { color: var(--accent-orange); }

/* ============================================
   NAVIGATION - Matching Original
   ============================================ */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 1000;
}

body:not(.inner-page) nav {
    position: relative;
}

.inner-page nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background: rgba(224, 224, 224, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.5s var(--ease-out-expo);
}

.logo {
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s var(--ease-out-expo);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-mark {
    width: 20px;
    height: 20px;
    background: var(--accent-orange);
    border-radius: 50%;
    transition: transform 0.6s var(--ease-out-expo);
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s var(--ease-out-expo);
}

@media (max-width: 768px) {
    .logo-img {
        height: 48px;
    }
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo:hover .logo-mark {
    transform: rotate(180deg) scale(1.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.4s var(--ease-out-expo);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.5s var(--ease-out-expo);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

/* Contact Button in Nav */
.nav-contact-btn {
    background: var(--card-dark) !important;
    color: var(--text-light) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px !important;
    font-size: 0.85rem !important;
    font-weight: 600;
    border: none;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.nav-contact-btn::after {
    display: none !important;
}

.nav-contact-btn:hover {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-orange)) !important;
    color: var(--card-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(112, 189, 182, 0.3);
}

.nav-contact-btn.active {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-orange)) !important;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: all 0.4s var(--ease-out-expo);
    transform-origin: center;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* ============================================
   SECTIONS
   ============================================ */
section {
    margin-bottom: 4rem;
}

.section-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.section-subtitle {
    font-size: 0.8rem;
    color: #666;
}

/* ============================================
   BENTO GRID - Matching Original Exactly
   ============================================ */
.bento-grid,
.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.card {
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-outer);
    background: var(--card-bg);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.card-dark {
    background: var(--card-dark);
    color: var(--text-light);
}

.card-white {
    background: var(--white);
}

.card-accent {
    background: var(--accent-orange);
}

/* ============================================
   NEW HERO BENTO GRID - Inspired Design
   ============================================ */
.hero-grid-new {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
    width: 100%;
}

/* Bento Card Base */
.bento-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-outer);
    padding: 12px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Bento Header */
.bento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 32px;
    margin-bottom: 12px;
    padding: 0 4px;
}

.bento-icon {
    width: 28px;
    height: 28px;
    background: var(--card-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent-orange);
}

.bento-dots {
    display: flex;
    gap: 5px;
}

.bento-dots span {
    width: 6px;
    height: 6px;
    background: var(--card-dark);
    border-radius: 50%;
    opacity: 0.4;
}

/* Bento Content */
.bento-content {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* Hero Card */
.bento-hero {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 550px;
}

.bento-hero:hover {
    transform: none;
}

.hero-inner-new {
    background: var(--card-dark);
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    position: relative;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    mix-blend-mode: luminosity;
    filter: contrast(1.2);
    mask-image: linear-gradient(to left, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 30%, transparent 100%);
    transition: transform 1s var(--ease-out-expo);
}

.bento-hero:hover .hero-bg-img {
    transform: scale(1.05);
}

/* Hero Video Background */
.hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--card-dark) 35%, transparent 70%);
    z-index: 2;
}

.bento-hero:hover .hero-bg-video {
    transform: scale(1.02);
    transition: transform 1.5s var(--ease-out-expo);
}

.hero-text-block {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-title-new {
    font-family: var(--font-arabic);
    color: var(--text-light);
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    text-align: right;
    direction: rtl;
    margin-bottom: 1.5rem;
}

.hero-title-new .highlight {
    color: var(--accent-orange);
}

.hero-sub-new {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: right;
    direction: rtl;
}

.hero-vertical-text {
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    z-index: 10;
}

/* Brand Card with Liquid Shape */
.bento-brand {
    grid-row: span 2;
}

.brand-inner-new {
    background: var(--accent-orange);
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.liquid-shape {
    width: 100%;
    height: 180px;
    background: var(--white);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphShape 8s ease-in-out infinite;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes morphShape {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    33% { border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%; }
    66% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

.flow-arrow {
    width: 50px;
    height: 2px;
    background: var(--card-dark);
    position: relative;
}

.flow-arrow::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--card-dark);
    border-top: 2px solid var(--card-dark);
    transform: rotate(45deg);
}

.brand-text-block {
    margin-top: auto;
}

.brand-title-new {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--card-dark);
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.brand-text-block p {
    font-size: 0.95rem;
    color: var(--card-dark);
    opacity: 0.8;
}

/* Vision Card */
.bento-vision {
    grid-column: span 2;
}

.vision-inner-new {
    background: var(--card-dark);
    height: 100%;
    min-height: 200px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.vision-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vision-text-new {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.vision-text-new .highlight {
    color: var(--accent-orange);
}

/* Stats Card */
.bento-stats {
    min-height: 200px;
}

.stats-inner-new {
    background: var(--white);
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.stats-inner-new h3 {
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 600;
}

.stats-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.stats-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Card */
.bento-cta {
    min-height: 200px;
}

.cta-inner-new {
    background: var(--card-bg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: radial-gradient(var(--accent-orange) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
}

.big-arrow-btn {
    width: 70px;
    height: 70px;
    background: var(--card-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    text-decoration: none;
}

.big-arrow-btn:hover {
    transform: scale(1.12) rotate(-45deg);
    background: var(--accent-orange);
}

.big-arrow-btn svg {
    width: 28px;
    height: 28px;
    stroke: var(--text-light);
}

.big-arrow-btn:hover svg {
    stroke: var(--card-dark);
}

/* Legacy Hero Styles (keeping for other pages) */
/* Hero Cell */
.hero-cell,
.hero-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    min-height: 600px;
    padding: 0;
}

.hero-cell:hover,
.hero-main:hover {
    transform: none;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 10s linear, filter 0.8s var(--ease-out-expo);
}

.hero-cell:hover .hero-image-container img,
.hero-main:hover .hero-image-container img {
    transform: scale(1.1);
    filter: grayscale(70%);
}

.hero-polygon {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 600px;
    background: var(--accent-orange);
    transform: rotate(15deg);
    z-index: 2;
    transition: transform 0.8s var(--ease-out-expo);
}

.hero-cell:hover .hero-polygon,
.hero-main:hover .hero-polygon {
    transform: rotate(18deg) scale(1.02);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-tag {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-arabic {
    font-family: var(--font-arabic);
    font-size: 4rem;
    line-height: 1.1;
    text-align: right;
    direction: rtl;
    margin-top: 4rem;
}

.hero-title-ar {
    font-family: var(--font-arabic);
    font-size: 3.5rem;
    line-height: 1.2;
    text-align: right;
    direction: rtl;
    margin-top: 2rem;
}

.hero-english,
.hero-desc {
    font-size: 1rem;
    max-width: 300px;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Vision / Text Cell */
.text-cell,
.vision-cell {
    grid-column: 2 / 4;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    position: relative;
    min-height: 280px;
}

.vision-duotone-bg,
.vision-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1542362567-b055002b91f4?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    filter: grayscale(1) contrast(1.2);
    mix-blend-mode: multiply;
    opacity: 0.6;
    transition: transform 1s var(--ease-out-expo);
}

.text-cell:hover .vision-duotone-bg,
.vision-cell:hover .vision-bg {
    transform: scale(1.05);
}

.vision-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--accent-orange) 100%);
    mix-blend-mode: color;
}

.vision-stripes {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0, 0, 0, 0.05) 20px, rgba(0, 0, 0, 0.05) 40px);
    pointer-events: none;
}

.massive-type {
    font-size: 8rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: 10px 10px 0px rgba(17, 17, 17, 0.4);
    letter-spacing: -0.04em;
    transition: transform 0.6s var(--ease-out-expo), text-shadow 0.6s var(--ease-out-expo);
}

.text-cell:hover .massive-type,
.vision-cell:hover .massive-type {
    transform: scale(1.02);
    text-shadow: 15px 15px 0px rgba(17, 17, 17, 0.3);
}

.symbol {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    z-index: 1;
    transition: all 0.6s var(--ease-out-expo);
}

.text-cell:hover .symbol,
.vision-cell:hover .symbol {
    transform: rotate(45deg) scale(1.3);
}

.vertical-tag {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    text-transform: uppercase;
    font-size: 0.7rem;
    color: #fff;
    font-weight: 700;
    z-index: 2;
}

/* Toggle Switch */
.toggle-switch {
    width: 50px;
    height: 26px;
    border: 1px solid var(--text-main);
    border-radius: 30px;
    position: relative;
    cursor: pointer;
}

.toggle-knob {
    width: 20px;
    height: 20px;
    background: var(--accent-orange);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.4s var(--ease-out-expo);
}

.toggle-switch:hover .toggle-knob {
    transform: translateX(24px);
}

/* ============================================
   BADGE
   ============================================ */
.badge-pill {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-inner);
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s var(--ease-out-expo);
}

.badge-pill:hover {
    background: var(--card-dark);
    color: var(--text-light);
    border-color: var(--card-dark);
}

.badge-dark {
    background: var(--card-dark);
    color: var(--text-light);
    border-color: var(--card-dark);
}

/* ============================================
   PORTFOLIO GRID
   ============================================ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.portfolio-item {
    border: 1px solid var(--border-color);
    background: white;
    border-radius: var(--radius-outer);
    overflow: hidden;
    padding: 1rem;
    transition: all 0.6s var(--ease-out-expo);
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.portfolio-img {
    height: 180px;
    background: #333;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.6s var(--ease-out-expo);
}

.portfolio-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* ============================================
   SERVICES - Matching Original
   ============================================ */
.services-row,
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    border-left: 1px solid var(--border-color);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--accent-orange);
    transition: height 0.6s var(--ease-out-expo);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateX(10px);
}

.service-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    transition: transform 0.4s var(--ease-out-expo);
}

.service-card:hover .service-num {
    transform: scale(1.1);
}

.service-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-out-expo);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:hover {
    padding-right: 1rem;
    color: var(--accent-orange);
}

/* ============================================
   ABOUT LAYOUT
   ============================================ */
.about-layout,
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-text-ar {
    font-family: var(--font-arabic);
    direction: rtl;
    text-align: right;
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.leader-card {
    transition: transform 0.6s var(--ease-out-expo);
}

.leader-card:hover {
    transform: translateY(-10px);
}

.leader-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(1);
    margin-bottom: 1rem;
    transition: all 0.6s var(--ease-out-expo);
}

.leader-card:hover img {
    filter: grayscale(0);
    transform: scale(1.02);
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.timeline-step {
    min-width: 250px;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-outer);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.timeline-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.timeline-step:hover::after {
    transform: scaleX(1);
}

.timeline-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

/* ============================================
   COMPANIES GRID (Legacy)
   ============================================ */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.company-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-outer);
    padding: 2rem;
    transition: all 0.6s var(--ease-out-expo);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.company-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.company-logo {
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    transition: all 0.5s var(--ease-out-expo);
}

.company-card:hover .company-logo {
    transform: scale(1.05);
}

.company-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.company-name-ar {
    font-family: var(--font-arabic);
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.company-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.company-cta {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.4s var(--ease-out-expo);
}

.company-card:hover .company-cta {
    gap: 1rem;
}

/* ============================================
   ECOSYSTEM SECTION - New Design
   ============================================ */
.ecosystem-section {
    padding: 4rem 0;
}

.ecosystem-intro {
    max-width: 700px;
    margin-bottom: 3rem;
}

.ecosystem-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.eco-card {
    text-decoration: none;
    color: inherit;
    display: block;
    border-radius: var(--radius-outer);
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.eco-card.visible:hover {
    transform: translateY(-8px);
}

.eco-card-inner {
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-outer);
    transition: box-shadow 0.5s var(--ease-out-expo);
}

.eco-card:hover .eco-card-inner {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.eco-logo {
    width: 48px;
    height: 48px;
    background: var(--card-dark);
    color: var(--text-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    transition: transform 0.4s var(--ease-out-expo);
}

.eco-card:hover .eco-logo {
    transform: scale(1.08);
}

.eco-content {
    flex: 1;
}

.eco-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-family: var(--font-primary);
}

.eco-name-ar {
    font-size: 0.85rem;
    opacity: 0.7;
    display: block;
    margin-bottom: 0.75rem;
}

.eco-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.eco-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.eco-cta svg {
    transition: transform 0.4s var(--ease-out-expo);
}

.eco-card:hover .eco-cta svg {
    transform: translateX(5px);
}

.ecosystem-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   COMPANIES BENTO - New Layout
   ============================================ */
.companies-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.company-item {
    text-decoration: none;
    color: inherit;
    display: block;
    border-radius: var(--radius-outer);
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.company-item.visible:hover {
    transform: translateY(-8px);
}

.company-item-lg {
    grid-row: span 2;
}

.company-item-inner {
    padding: 1.75rem;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-outer);
    border: 1px solid var(--border-color);
    transition: box-shadow 0.5s var(--ease-out-expo);
}

.company-item-lg .company-item-inner {
    min-height: 100%;
}

.company-item:hover .company-item-inner {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.company-item-logo {
    width: 72px;
    height: 72px;
    background: var(--card-dark);
    color: var(--text-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.company-item:hover .company-item-logo {
    transform: scale(1.08);
}

.company-item-logo img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.company-item-logo.has-img {
    background: white;
    padding: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.company-item-logo.has-img.dark-bg {
    background: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.company-item:hover .company-item-logo.has-img {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.company-item:hover .company-item-logo.has-img.dark-bg {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.company-item-content {
    flex: 1;
}

.company-item-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    font-family: var(--font-primary);
}

.company-item-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.company-item-ar {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    font-family: var(--font-arabic);
}

.company-item-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.8;
    margin-top: 0.75rem;
}

.company-item-cta {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: auto;
    padding-top: 1.25rem;
    color: var(--accent-orange);
    transition: transform 0.4s var(--ease-out-expo);
}

.company-item:hover .company-item-cta {
    transform: translateX(-5px);
}

/* RTL adjustment for cta arrow */
body.rtl .company-item:hover .company-item-cta {
    transform: translateX(5px);
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-item {
    padding: 2rem;
    border-left: 1px solid var(--border-color);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
}

.philosophy-item::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--accent-orange);
    transition: height 0.5s var(--ease-out-expo);
}

.philosophy-item:hover::before {
    height: 100%;
}

.philosophy-item:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateX(10px);
}

.philosophy-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ============================================
   WHY GRID - Modern Design
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.why-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-outer);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
}

.why-item:hover {
    background: var(--card-bg);
    transform: translateY(-8px);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: transform 0.5s var(--ease-out-expo);
}

.why-item:hover .why-icon {
    transform: scale(1.2) rotate(10deg);
}

.why-text {
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   WHY EXIST - Bento Style
   ============================================ */
.why-exist-section {
    background: var(--bg-canvas);
    padding: 4rem 0;
}

.why-bento {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.why-main-card {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: var(--card-dark);
    color: var(--text-light);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
}

.why-main-content h3 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.why-main-desc {
    font-size: 1.1rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.why-main-en {
    font-size: 0.9rem;
    opacity: 0.6;
    font-family: var(--font-primary);
}

.why-main-visual {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.why-arrow {
    width: 80px;
    height: 80px;
    opacity: 0.8;
    transition: all 0.5s var(--ease-out-expo);
}

.why-main-card:hover .why-arrow {
    transform: translate(5px, -5px);
    opacity: 1;
}

.why-feature-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 180px;
    transition: all 0.4s var(--ease-out-expo);
}

.why-feature-card:hover {
    transform: translateY(-5px);
}

.why-feature-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.why-feature-icon {
    width: 28px;
    height: 28px;
    stroke: var(--text-light);
    margin-bottom: auto;
    transition: transform 0.4s var(--ease-out-expo);
}

.why-feature-card:hover .why-feature-icon {
    transform: scale(1.1);
}

.why-feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.why-feature-card span {
    font-size: 0.75rem;
    opacity: 0.6;
    font-family: var(--font-primary);
}

/* Philosophy Numbers */
.philosophy-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 1rem;
    transition: transform 0.4s var(--ease-out-expo);
}

.philosophy-item:hover .philosophy-num {
    transform: scale(1.05);
}

/* ============================================
   CONTACT - Matching Original Exactly
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-block {
    margin-top: 2rem;
}

.contact-block:first-of-type {
    margin-top: 2rem;
}

.contact-block h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-block p {
    color: #666;
    line-height: 1.8;
}

/* Form - Transparent Background like Original */
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.4s var(--ease-out-expo);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: #666;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.3);
}

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

/* ============================================
   BUTTONS - Matching Original
   ============================================ */
.btn,
button[type="submit"] {
    display: inline-block;
    background: var(--card-dark);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    font-family: inherit;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn::before,
button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-orange);
    transition: left 0.5s var(--ease-out-expo);
    z-index: -1;
}

.btn:hover::before,
button[type="submit"]:hover::before {
    left: 0;
}

.btn:hover,
button[type="submit"]:hover {
    color: var(--card-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--card-dark);
    color: var(--text-light);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--card-dark);
    color: var(--card-dark);
}

.btn-outline::before {
    background: var(--card-dark);
}

.btn-outline:hover {
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--card-dark);
    color: var(--text-light);
    text-align: center;
    padding: 5rem 2rem;
    border-radius: var(--radius-outer);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-orange) 0%, transparent 70%);
    opacity: 0.1;
    animation: ctaPulse 5s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.15; }
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.cta-title-ar {
    font-family: var(--font-arabic);
}

.cta-desc {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.8;
    position: relative;
}

.cta-section .btn-primary {
    background: var(--accent-orange);
    color: var(--card-dark);
}

.cta-section .btn-primary::before {
    background: var(--text-light);
}

/* ============================================
   CTA SECTION - New Inspired Design
   ============================================ */
.cta-section-new {
    background: var(--card-dark);
    color: var(--text-light);
    text-align: center;
    padding: 6rem 2rem;
    border-radius: var(--radius-outer);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-bg-circle::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title-new {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.cta-title-new .highlight {
    color: var(--accent-orange);
}

.cta-desc-ar {
    font-family: var(--font-arabic);
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.cta-desc-en {
    font-size: 0.95rem;
    opacity: 0.6;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-orange);
    color: var(--card-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s var(--ease-out-expo);
}

.cta-btn-new svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s var(--ease-out-expo);
}

.cta-btn-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 151, 121, 0.3);
}

.cta-btn-new:hover svg {
    transform: rotate(-45deg);
}

/* ============================================
   EXPANSION SECTION - Modern Design
   ============================================ */
.expansion-section {
    background: var(--card-bg);
    padding: 5rem 0;
    margin-bottom: 0;
    border-radius: var(--radius-outer);
}

.expansion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.expansion-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.expansion-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.expansion-title .highlight {
    color: var(--accent-orange);
}

.expansion-desc-ar {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.expansion-desc-en {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.expansion-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.expansion-map {
    width: 250px;
    height: 250px;
    background: var(--card-dark);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-dot-main {
    width: 80px;
    height: 80px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.map-dot-main span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--card-dark);
}

.map-pulse {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .expansion-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .expansion-title {
        font-size: 2rem;
    }

    .expansion-map {
        width: 200px;
        height: 200px;
    }

    .map-dot-main {
        width: 60px;
        height: 60px;
    }

    .map-pulse {
        width: 120px;
        height: 120px;
    }
}

/* ============================================
   CONTACT PAGE - New Modern Design
   ============================================ */
.contact-hero {
    padding-top: 6rem;
    margin-bottom: 2rem;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.25rem;
}

/* Contact Title Card */
.contact-title-card {
    min-height: 300px;
}

.contact-title-inner {
    background: var(--card-dark);
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.contact-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.contact-title {
    font-family: var(--font-arabic);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Contact Stats Card */
.contact-stats-card {
    min-height: 300px;
}

.contact-stats-inner {
    background: var(--accent-orange);
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.contact-stat-item {
    text-align: center;
}

.contact-stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--card-dark);
    line-height: 1;
}

.contact-stat-label {
    font-size: 0.85rem;
    color: var(--card-dark);
    opacity: 0.8;
}

.contact-stat-divider {
    width: 40px;
    height: 2px;
    background: var(--card-dark);
    opacity: 0.3;
}

/* Contact Location Card */
.contact-location-card {
    min-height: 300px;
}

.contact-location-inner {
    background: var(--card-bg);
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.location-pulse-container {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.location-dot {
    width: 24px;
    height: 24px;
    background: var(--accent-orange);
    border-radius: 50%;
    z-index: 2;
    position: relative;
}

.location-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

.location-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.location-text p {
    font-size: 0.85rem;
    color: #666;
}

/* Contact Main Section */
.contact-main-section {
    margin-bottom: 4rem;
}

.contact-bento-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.25rem;
}

/* Contact Form Card */
.contact-form-card {
    grid-row: span 3;
}

.contact-form-inner {
    background: var(--white);
    height: 100%;
    padding: 2.5rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.form-header p {
    font-size: 0.9rem;
    color: #888;
}

.contact-form-new .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form-new .form-group {
    margin-bottom: 1.25rem;
}

.contact-form-new label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--card-dark);
}

.contact-form-new input,
.contact-form-new textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-canvas);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.4s var(--ease-out-expo);
}

.contact-form-new input::placeholder,
.contact-form-new textarea::placeholder {
    color: #999;
    font-size: 0.9rem;
}

.contact-form-new input:focus,
.contact-form-new textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 151, 121, 0.1);
}

.submit-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--card-dark);
    color: var(--text-light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
}

.submit-btn-new svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s var(--ease-out-expo);
}

.submit-btn-new:hover {
    background: var(--accent-orange);
    color: var(--card-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.submit-btn-new:hover svg {
    transform: translate(3px, -3px);
}

/* Contact Info Stack */
.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card,
.contact-social-card,
.contact-companies-card {
    flex: 1;
}

.info-card-inner,
.social-card-inner,
.companies-card-inner {
    background: var(--white);
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.info-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 0.75rem;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-orange);
    text-decoration: none;
    transition: opacity 0.3s;
}

.info-value:hover {
    opacity: 0.8;
}

/* Social Links */
.social-links-new {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.social-link-new {
    width: 44px;
    height: 44px;
    background: var(--card-dark);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
}

.social-link-new svg {
    width: 18px;
    height: 18px;
}

.social-link-new:hover {
    background: var(--accent-orange);
    color: var(--card-dark);
    transform: translateY(-3px);
}

/* Company Links */
.company-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.company-link-chip {
    padding: 0.4rem 0.8rem;
    background: var(--bg-canvas);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--card-dark);
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

.company-link-chip:hover {
    background: var(--card-dark);
    color: var(--text-light);
    border-color: var(--card-dark);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 4rem;
}

.faq-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.faq-card {
    min-height: 180px;
}

.faq-card .bento-header {
    justify-content: flex-start;
    gap: 1rem;
}

.faq-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-right: auto;
}

.faq-card-inner {
    background: var(--white);
    height: 100%;
    padding: 1.5rem;
}

.faq-card-inner h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.faq-card-inner p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Contact Page Responsive */
@media (max-width: 1200px) {
    .contact-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-title-card {
        grid-column: span 2;
    }

    .contact-bento-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        grid-row: auto;
    }

    .contact-info-stack {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding-top: 5rem;
    }

    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-title-card,
    .contact-stats-card,
    .contact-location-card {
        min-height: auto;
        grid-column: auto;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-stats-inner {
        flex-direction: row;
        padding: 1.5rem;
    }

    .contact-stat-divider {
        width: 2px;
        height: 40px;
    }

    .contact-info-stack {
        grid-template-columns: 1fr;
    }

    .faq-bento-grid {
        grid-template-columns: 1fr;
    }

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

/* ============================================
   FOOTER - Matching Original
   ============================================ */
footer,
.footer-strip {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--text-main);
    padding-top: 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a,
.footer-links span {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: color 0.3s var(--ease-out-expo);
}

.footer-links a:hover,
.footer-links span:hover {
    color: var(--accent-orange);
}

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */
.page-header {
    background: var(--card-dark);
    color: var(--text-light);
    padding: 8rem 2rem 4rem;
    margin: -2rem -2rem 2rem -2rem;
}

.page-header .container {
    max-width: 1400px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
}

.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
}

/* ============================================
   ANIMATIONS - Smooth & Professional
   ============================================ */

/* Fade In Up */
.fade-in,
.service-card,
.company-card,
.company-item,
.philosophy-item,
.timeline-step,
.eco-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.fade-in.visible,
.service-card.visible,
.company-card.visible,
.company-item.visible,
.philosophy-item.visible,
.timeline-step.visible,
.eco-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s var(--ease-out-expo);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s var(--ease-out-expo);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale */
.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s var(--ease-out-expo);
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   BILINGUAL
   ============================================ */
.bilingual {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.text-ar {
    font-family: var(--font-arabic);
    direction: rtl;
}

.text-en {
    font-family: var(--font-primary);
    direction: ltr;
    opacity: 0.7;
    font-size: 0.9em;
}

/* ============================================
   STAT NUMBER
   ============================================ */
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.4s var(--ease-out-expo);
}

.card:hover .stat-number {
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .bento-grid,
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* New Hero Grid Responsive */
    .hero-grid-new {
        grid-template-columns: 1fr 1fr;
    }

    .bento-hero {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 450px;
    }

    .hero-video-overlay {
        background: linear-gradient(to top, var(--card-dark) 20%, rgba(26, 26, 26, 0.7) 100%);
    }

    .bento-brand {
        grid-row: auto;
    }

    .bento-vision {
        grid-column: span 1;
    }

    .hero-title-new {
        font-size: 3rem;
    }

    .vision-text-new {
        font-size: 2rem;
    }

    .hero-cell,
    .hero-main {
        grid-column: 1 / -1;
        min-height: 500px;
    }

    .text-cell,
    .vision-cell {
        grid-column: span 1;
    }

    .companies-grid,
    .services-grid,
    .services-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .companies-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-item-lg {
        grid-row: span 1;
        grid-column: span 2;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-bento {
        grid-template-columns: 1fr 1fr;
    }

    .why-main-card {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 300px;
    }

    .why-main-content h3 {
        font-size: 1.8rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .massive-type {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    nav {
        padding-bottom: 1rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-canvas);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        justify-content: center;
        align-items: center;
        z-index: 10000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    /* Mobile Contact Button */
    .nav-links .nav-contact-btn {
        padding: 1rem 2.5rem !important;
        font-size: 1.2rem !important;
        margin-top: 1rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 10005;
        position: relative;
    }

    /* Inner page mobile nav fixes */
    .inner-page nav {
        z-index: 10000 !important;
        position: fixed !important;
    }

    .inner-page .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 10003 !important;
        background: var(--bg-canvas) !important;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
    }

    .inner-page .nav-links.active {
        display: flex !important;
        z-index: 10003 !important;
    }

    .inner-page .nav-toggle {
        z-index: 10005 !important;
        position: relative !important;
    }

    .bento-grid,
    .hero-grid {
        grid-template-columns: 1fr;
    }

    /* New Hero Grid Mobile */
    .hero-grid-new {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bento-hero {
        grid-column: auto;
        min-height: 400px;
    }

    .bento-brand {
        grid-row: auto;
        min-height: 350px;
    }

    .bento-vision {
        grid-column: auto;
        min-height: 180px;
    }

    .bento-stats,
    .bento-cta {
        min-height: 160px;
    }

    .hero-title-new {
        font-size: 2.2rem;
    }

    .hero-vertical-text {
        display: none;
    }

    .brand-title-new {
        font-size: 1.8rem;
    }

    .liquid-shape {
        height: 140px;
    }

    .vision-text-new {
        font-size: 1.6rem;
    }

    .vision-circle {
        width: 80px;
        height: 80px;
    }

    .big-arrow-btn {
        width: 60px;
        height: 60px;
    }

    .big-arrow-btn svg {
        width: 22px;
        height: 22px;
    }

    .hero-cell,
    .hero-main {
        min-height: 450px;
    }

    .hero-arabic {
        font-size: 2.5rem;
    }

    .hero-title-ar {
        font-size: 2.5rem;
    }

    .massive-type {
        font-size: 4rem;
    }

    .about-layout,
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .companies-grid,
    .services-grid,
    .services-row,
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .eco-card-inner {
        padding: 1.5rem;
    }

    .eco-content h4 {
        font-size: 1.1rem;
    }

    .companies-bento {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .company-item-lg {
        grid-column: span 1;
    }

    .company-item-inner {
        min-height: auto;
        padding: 1.5rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-bento {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-main-card {
        min-height: 250px;
        padding: 2rem;
    }

    .why-main-content h3 {
        font-size: 1.5rem;
    }

    .why-feature-card {
        min-height: 150px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    section {
        margin-bottom: 3rem;
    }

    .cta-section {
        margin: 1rem 0;
        padding: 3rem 1.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    footer,
    .footer-strip {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

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

    .page-header {
        padding: 6rem 1rem 3rem;
        margin: -1rem -1rem 2rem -1rem;
    }

    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-polygon {
        width: 200px;
        height: 300px;
    }

    /* New Hero Mobile Small */
    .hero-title-new {
        font-size: 1.8rem;
    }

    .bento-hero {
        min-height: 350px;
    }

    .hero-inner-new {
        padding: 1.5rem;
    }

    .hero-bg-video {
        opacity: 0.4;
    }

    .brand-title-new {
        font-size: 1.5rem;
    }

    .vision-text-new {
        font-size: 1.3rem;
    }

    .cta-title-new {
        font-size: 1.8rem;
    }

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

    .why-main-content h3 {
        font-size: 1.3rem;
    }

    .why-feature-num {
        font-size: 2rem;
    }

    .why-feature-card h4 {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-arabic,
    .hero-title-ar {
        font-size: 2rem;
    }

    .massive-type {
        font-size: 3rem;
    }

    .about-title {
        font-size: 2rem;
    }

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

/* ============================================
   SMOOTH PAGE LOAD
   ============================================ */
body {
    opacity: 0;
    animation: pageLoad 0.6s var(--ease-out-expo) 0.1s forwards;
}

@keyframes pageLoad {
    to {
        opacity: 1;
    }
}

/* Smooth hover transitions globally */
* {
    -webkit-tap-highlight-color: transparent;
}

a, button, .card, .company-card, .service-card, .philosophy-item {
    transition-timing-function: var(--ease-out-expo);
}

/* Card hover lift effect */
.card:hover,
.why-feature-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ============================================
   SERVICES PAGE - Modern Bento Design
   ============================================ */

/* Services Hero */
.services-hero {
    padding-top: 2rem;
    margin-bottom: 3rem;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.25rem;
}

/* Services Title Card */
.services-title-card {
    min-height: 280px;
}

.services-title-inner {
    background: var(--card-dark);
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.services-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.services-main-title {
    font-family: var(--font-arabic);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.services-subtitle-en {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-primary);
}

/* Services Stat Card */
.services-stat-card {
    min-height: 280px;
}

.services-stat-inner {
    background: var(--accent-orange);
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-big {
    font-size: 5rem;
    font-weight: 800;
    color: var(--card-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-ar {
    font-size: 1rem;
    font-weight: 600;
    color: var(--card-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label-en {
    font-size: 0.8rem;
    color: var(--card-dark);
    opacity: 0.7;
    font-family: var(--font-primary);
}

/* Services Eco Card */
.services-eco-card {
    min-height: 280px;
}

.services-eco-inner {
    background: var(--card-bg);
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.eco-circle {
    width: 100px;
    height: 100px;
    background: var(--card-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.5s var(--ease-out-expo);
}

.services-eco-card:hover .eco-circle {
    transform: scale(1.08);
}

.eco-circle span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.eco-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--card-dark);
}

/* How We Work Section */
.how-we-work-section {
    margin-bottom: 4rem;
}

.steps-bento-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.step-card {
    min-height: 200px;
}

.step-card .bento-header {
    justify-content: space-between;
}

.step-num {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.step-inner {
    background: var(--white);
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--card-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.4s var(--ease-out-expo);
}

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

.step-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-orange);
}

.step-inner h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--card-dark);
}

.step-inner p {
    font-size: 0.75rem;
    color: #888;
    font-family: var(--font-primary);
}

/* Services Categories Section */
.services-categories-section {
    background: var(--white);
    border-radius: var(--radius-outer);
    padding: 3rem 0;
    margin-bottom: 4rem;
}

.services-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-category-card {
    min-height: 320px;
}

.service-category-card .bento-header {
    justify-content: space-between;
}

.service-icon-mark { background: #FF6B6B; }
.service-icon-tech { background: #4ECDC4; }
.service-icon-space { background: #45B7D1; }
.service-icon-health { background: #96CEB4; }
.service-icon-train { background: #FFEAA7; }
.service-icon-creative { background: #DDA0DD; }

.service-icon-mark svg,
.service-icon-tech svg,
.service-icon-space svg,
.service-icon-health svg,
.service-icon-train svg,
.service-icon-creative svg {
    stroke: var(--card-dark);
}

.service-num-badge {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.service-category-inner {
    background: var(--bg-canvas);
    height: 100%;
    padding: 1.5rem;
}

.service-category-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.service-category-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--card-dark);
    margin-bottom: 0.25rem;
    font-family: var(--font-primary);
}

.service-company-name {
    font-size: 0.85rem;
    color: var(--accent-orange);
    font-weight: 600;
}

.service-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-items-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s var(--ease-out-expo);
}

.service-items-list li:last-child {
    border-bottom: none;
}

.service-items-list li:hover {
    padding-right: 0.5rem;
}

.item-ar {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--card-dark);
}

.item-en {
    font-size: 0.75rem;
    color: #999;
    font-family: var(--font-primary);
}

/* Why Ecosystem Section */
.why-ecosystem-section {
    margin-bottom: 4rem;
}

.why-ecosystem-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.why-main-content-card {
    grid-row: span 2;
    min-height: 350px;
}

.why-content-inner {
    background: var(--card-dark);
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-title {
    font-family: var(--font-arabic);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.why-desc-ar {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.why-desc-en {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-family: var(--font-primary);
}

/* Quote Card */
.why-quote-card {
    min-height: 170px;
}

.why-quote-inner {
    background: var(--accent-orange);
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.quote-icon {
    background: var(--card-dark) !important;
}

.quote-icon svg {
    stroke: var(--accent-orange) !important;
}

.quote-ar {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--card-dark);
    margin-bottom: 0.5rem;
}

.quote-en {
    font-size: 0.9rem;
    color: var(--card-dark);
    opacity: 0.7;
    font-family: var(--font-primary);
}

/* Visual Card */
.why-visual-card {
    min-height: 170px;
}

.why-visual-inner {
    background: var(--card-bg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-visual {
    position: relative;
    width: 120px;
    height: 120px;
}

.eco-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--card-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.eco-center span {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.eco-orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    animation: orbitSpin 20s linear infinite;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.eco-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-orange);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: rotate(var(--angle)) translateX(60px) translateY(-50%);
}

/* Serve Section */
.serve-section {
    background: var(--card-bg);
    border-radius: var(--radius-outer);
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.serve-bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.25rem;
}

.serve-main-card {
    min-height: 180px;
}

.serve-main-inner {
    background: var(--card-dark);
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.serve-main-inner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.serve-desc-ar {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.serve-desc-en {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-primary);
}

.serve-sector-card {
    min-height: 180px;
}

.serve-sector-inner {
    background: var(--white);
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sector-icon {
    width: 50px;
    height: 50px;
    background: var(--card-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.4s var(--ease-out-expo);
}

.serve-sector-card:hover .sector-icon {
    transform: scale(1.1);
}

.sector-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-orange);
}

.sector-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--card-dark);
}

/* Services Page Responsive */
@media (max-width: 1200px) {
    .services-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-title-card {
        grid-column: span 2;
    }

    .steps-bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-ecosystem-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-main-content-card {
        grid-column: span 2;
        grid-row: auto;
    }

    .serve-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .serve-main-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .services-hero-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-title-card,
    .services-stat-card,
    .services-eco-card {
        grid-column: auto;
        min-height: auto;
    }

    .services-main-title {
        font-size: 2rem;
    }

    .stat-big {
        font-size: 4rem;
    }

    .steps-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .step-card {
        min-height: 180px;
    }

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

    .service-category-card {
        min-height: auto;
    }

    .why-ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-main-content-card {
        grid-column: auto;
        min-height: auto;
    }

    .why-title {
        font-size: 1.6rem;
    }

    .serve-bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .serve-main-card {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .steps-bento-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        min-height: 160px;
    }

    .services-main-title {
        font-size: 1.8rem;
    }

    .stat-big {
        font-size: 3.5rem;
    }
}

/* ============================================
   ECOSYSTEM PAGE - Modern Bento Design
   ============================================ */

/* Ecosystem Hero */
.ecosystem-hero {
    padding-top: 2rem;
    margin-bottom: 3rem;
}

.ecosystem-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.25rem;
}

/* Ecosystem Title Card */
.eco-title-card {
    min-height: 300px;
}

.eco-title-inner {
    background: var(--card-dark);
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.eco-hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.eco-main-title {
    font-family: var(--font-arabic);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.eco-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.eco-subtitle-en {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-primary);
}

/* Ecosystem Stat Card */
.eco-stat-card {
    min-height: 300px;
}

.eco-stat-inner {
    background: var(--accent-orange);
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.eco-stat-num {
    font-size: 5rem;
    font-weight: 800;
    color: var(--card-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.eco-stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--card-dark);
}

/* Ecosystem Orbit Card */
.eco-orbit-card {
    min-height: 300px;
}

.eco-orbit-inner {
    background: var(--card-bg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-visual {
    position: relative;
    width: 150px;
    height: 150px;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--card-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent-orange);
    z-index: 2;
}

.orbit-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    animation: orbitSpin 25s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--accent-orange);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: rotate(calc(var(--i) * 60deg)) translateX(75px) translateY(-50%);
}

/* Philosophy Section - Ecosystem Page */
.philosophy-section {
    margin-bottom: 4rem;
}

.philosophy-bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.25rem;
}

.philosophy-main-card {
    min-height: 220px;
}

.philosophy-main-inner {
    background: var(--card-dark);
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-main-inner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.philosophy-ar {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.philosophy-en-card {
    min-height: 220px;
}

.philosophy-en-inner {
    background: var(--card-bg);
    height: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
}

.philosophy-en-inner p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--card-dark);
    font-family: var(--font-primary);
}

.philosophy-icon-card {
    min-height: 220px;
}

.philosophy-icon-inner {
    background: var(--white);
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.connect-lines {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
}

.connect-lines span {
    width: 40px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.connect-lines span:nth-child(2) {
    background: var(--card-dark);
}

.philosophy-icon-inner p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--card-dark);
}

/* Companies Detail Section */
.companies-section {
    margin-bottom: 4rem;
}

.companies-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.company-detail-card {
    min-height: 420px;
}

.company-detail-card .bento-header {
    justify-content: space-between;
}

.company-icon-qm { background: var(--card-bg) !important; color: var(--card-dark) !important; font-weight: 800; }
.company-icon-qt { background: var(--accent-orange) !important; color: var(--card-dark) !important; font-weight: 800; }
.company-icon-qs { background: var(--card-dark) !important; color: var(--text-light) !important; font-weight: 800; }
.company-icon-m { background: #4A90A4 !important; color: var(--text-light) !important; font-weight: 800; }
.company-icon-th { background: #6B5B95 !important; color: var(--text-light) !important; font-weight: 800; font-family: var(--font-arabic); }
.company-icon-c { background: #F7786B !important; color: var(--card-dark) !important; font-weight: 800; }

/* Company Logo Icon - for ecosystem page */
.company-logo-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.company-logo-icon.dark-bg {
    background: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.company-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-badge {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.company-detail-inner {
    background: var(--white);
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.company-detail-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.company-detail-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--card-dark);
    margin-bottom: 0.25rem;
    font-family: var(--font-primary);
}

.company-name-ar {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.company-type-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 0.3rem 0.75rem;
    background: var(--card-dark);
    color: var(--text-light);
    border-radius: 20px;
}

.company-detail-body {
    flex: 1;
}

.company-arm-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.75rem;
}

.company-desc-ar {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: var(--card-dark);
}

.company-desc-en {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.company-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.company-services-grid span {
    padding: 0.3rem 0.6rem;
    background: var(--bg-canvas);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--card-dark);
}

.company-detail-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-decoration: none;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    transition: gap 0.3s var(--ease-out-expo);
}

.company-detail-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out-expo);
}

.company-detail-cta:hover {
    gap: 0.75rem;
}

.company-detail-cta:hover svg {
    transform: translate(3px, -3px);
}

/* Why One Section */
.why-one-section {
    background: var(--card-bg);
    border-radius: var(--radius-outer);
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.why-one-bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.25rem;
}

.why-one-main {
    min-height: 200px;
}

.why-one-main-inner {
    background: var(--card-dark);
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-one-main-inner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.why-one-ar {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.why-one-en {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    font-family: var(--font-primary);
}

.why-one-stat {
    min-height: 200px;
}

.why-one-stat-inner {
    background: var(--white);
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.4s var(--ease-out-expo);
}

.why-one-stat:hover .why-one-stat-inner {
    transform: scale(1.02);
}

.why-one-stat-inner.stat-dark {
    background: var(--card-dark);
}

.why-one-stat-inner.stat-dark .why-stat-num,
.why-one-stat-inner.stat-dark .why-stat-label {
    color: var(--text-light);
}

.why-one-stat-inner.stat-dark .why-stat-en {
    color: rgba(255, 255, 255, 0.5);
}

.why-one-stat-inner.stat-accent {
    background: var(--accent-orange);
}

.why-one-stat-inner.stat-accent .why-stat-num,
.why-one-stat-inner.stat-accent .why-stat-label,
.why-one-stat-inner.stat-accent .why-stat-en {
    color: var(--card-dark);
}

.why-stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.why-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--card-dark);
    margin-bottom: 0.25rem;
}

.why-stat-en {
    font-size: 0.7rem;
    color: #888;
    font-family: var(--font-primary);
}

/* Ecosystem Page Responsive */
@media (max-width: 1200px) {
    .ecosystem-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .eco-title-card {
        grid-column: span 2;
    }

    .philosophy-bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .philosophy-main-card {
        grid-column: span 2;
    }

    .companies-detail-grid {
        grid-template-columns: 1fr;
    }

    .why-one-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-one-main {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .ecosystem-hero-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .eco-title-card,
    .eco-stat-card,
    .eco-orbit-card {
        grid-column: auto;
        min-height: auto;
    }

    .eco-main-title {
        font-size: 2rem;
    }

    .eco-stat-num {
        font-size: 4rem;
    }

    .philosophy-bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .philosophy-main-card {
        grid-column: auto;
        min-height: auto;
    }

    .philosophy-main-inner h3 {
        font-size: 1.3rem;
    }

    .company-detail-card {
        min-height: auto;
    }

    .why-one-bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-one-main {
        grid-column: auto;
        min-height: auto;
    }

    .why-one-main-inner h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .eco-main-title {
        font-size: 1.8rem;
    }

    .eco-stat-num {
        font-size: 3.5rem;
    }

    .orbit-visual {
        width: 120px;
        height: 120px;
    }

    .orbit-dot {
        transform: rotate(calc(var(--i) * 60deg)) translateX(60px) translateY(-50%);
    }

    .why-stat-num {
        font-size: 2.5rem;
    }
}
