        :root {
            --primary-color: #0C1D36;
            --secondary-color: #D4AF37;
            --accent-color: #F4F4F4;
            --text-main: #333333;
            --text-light: #FFFFFF;
            --text-muted: #7D7D7D;
            --color-success: #28a745;
            --color-cta: #C5A028;

            --font-heading: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'DM Sans', -apple-system, sans-serif;

            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-main);
            background: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Utility Classes */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(1.5rem, 5vw, 4rem);
        }

        .section-label {
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            display: inline-block;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 500;
            color: var(--primary-color);
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--text-muted);
            max-width: 600px;
            line-height: 1.8;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.25rem 0;
            transition: all 0.4s var(--ease-out-quart);
        }

        .nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 rgba(12, 29, 54, 0.08);
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            display: block;
            text-decoration: none;
        }

        .nav-logo img {
            height: 44px;
            width: auto;
            transition: opacity 0.3s ease;
        }

        .nav-logo img:hover {
            opacity: 0.85;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-light);
            text-decoration: none;
            position: relative;
            padding: 0.25rem 0;
            transition: color 0.3s ease;
        }

        .nav.scrolled .nav-links a {
            color: var(--primary-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--secondary-color);
            transition: width 0.3s var(--ease-out-quart);
        }

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

        .nav-cta {
            background: var(--secondary-color);
            color: var(--primary-color) !important;
            padding: 0.75rem 1.5rem !important;
            border-radius: 2px;
            transition: background 0.3s ease, transform 0.3s ease !important;
        }

        .nav.scrolled .nav-cta {
            background: var(--primary-color);
            color: var(--text-light) !important;
        }

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

        .lang-switch {
            font-size: 0.75rem !important;
            font-weight: 600 !important;
            letter-spacing: 0.05em;
            padding: 0.4rem 0.75rem !important;
            border: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .lang-switch:hover {
            opacity: 1;
            border-color: var(--secondary-color);
        }

        .nav.scrolled .lang-switch {
            border-color: rgba(12, 29, 54, 0.2);
        }

        .nav.scrolled .lang-switch:hover {
            border-color: var(--secondary-color);
        }

        .lang-switch::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: var(--color-cta);
            transform: translateY(-2px);
        }

        .nav.scrolled .nav-cta:hover {
            background: var(--secondary-color);
        }

        .nav-mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .nav-mobile-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text-light);
            transition: all 0.3s ease;
        }

        .nav.scrolled .nav-mobile-toggle span {
            background: var(--primary-color);
        }

        /* Video Hero Section */
        .video-hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .video-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .video-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(12, 29, 54, 0.3) 0%,
                rgba(12, 29, 54, 0.5) 50%,
                rgba(12, 29, 54, 0.75) 100%
            );
            z-index: 2;
        }

        .video-hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            max-width: 1000px;
            padding: 0 2rem;
        }

        .video-hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--secondary-color);
            margin-bottom: 2rem;
        }

        .video-hero-eyebrow::before,
        .video-hero-eyebrow::after {
            content: '';
            width: 50px;
            height: 1px;
            background: var(--secondary-color);
        }

        .video-hero-title {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 500;
            color: var(--text-light);
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .video-hero-title .highlight {
            color: var(--secondary-color);
            font-style: italic;
        }

        .video-hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            color: rgba(255, 255, 255, 0.85);
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
        }

        .video-hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .video-hero-scroll {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        .video-hero-scroll .scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--secondary-color), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes scrollPulse {
            0%, 100% { opacity: 1; transform: scaleY(1); }
            50% { opacity: 0.5; transform: scaleY(0.8); }
        }

        /* Hero Intro Section (below video) */
        .hero-intro {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, #152a4a 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-intro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M30 0L60 30L30 60L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            animation: patternFloat 20s linear infinite;
        }

        @keyframes patternFloat {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        .hero-intro-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-intro-text h2 {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 500;
            color: var(--text-light);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-intro-text p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 1.25rem;
        }

        .hero-intro-note {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.6);
            font-style: italic;
            border-left: 2px solid var(--secondary-color);
            padding-left: 1.25rem;
            margin-top: 1.5rem;
        }

        .hero-intro-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .hero-intro-stat {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .hero-intro-stat-value {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 500;
            color: var(--text-light);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .hero-intro-stat-value .accent {
            color: var(--secondary-color);
        }

        .hero-intro-stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s var(--ease-out-quart);
        }

        .btn-primary {
            background: var(--secondary-color);
            color: var(--primary-color);
        }

        .btn-primary:hover {
            background: var(--color-cta);
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--text-light);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn-outline:hover {
            border-color: var(--secondary-color);
            color: var(--secondary-color);
        }

        .btn-whatsapp {
            background: #25D366;
            color: #fff;
            margin-left: 0.5rem;
        }

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

        .btn-whatsapp svg {
            flex-shrink: 0;
        }

        /* Stats Bar */
        .stats-bar {
            background: var(--text-light);
            padding: 4rem 0;
            border-bottom: 1px solid rgba(12, 29, 54, 0.08);
        }

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

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

        .stat-number {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 500;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-number .accent {
            color: var(--secondary-color);
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--text-muted);
            letter-spacing: 0.05em;
        }

        /* Founders Section */
        .founders {
            padding: 8rem 0;
            background: var(--accent-color);
            position: relative;
        }

        .founders::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0L100 50L50 100L0 50z' fill='%230C1D36' fill-opacity='0.02'/%3E%3C/svg%3E");
            pointer-events: none;
        }

        .founders-header {
            max-width: 600px;
            margin-bottom: 5rem;
        }

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

        .founder-card {
            background: var(--text-light);
            padding: 3rem;
            position: relative;
            transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
        }

        .founder-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--secondary-color);
            transition: height 0.4s var(--ease-out-expo);
        }

        .founder-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(12, 29, 54, 0.1);
        }

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

        .founder-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin-bottom: 1.5rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 0 3px var(--text-light), 0 0 0 5px var(--secondary-color);
        }

        .founder-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }

        .founder-name {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
        }

        .founder-title {
            font-size: 0.875rem;
            color: var(--secondary-color);
            font-weight: 500;
            margin-bottom: 1.25rem;
        }

        .founder-bio {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* Program Section */
        .program {
            padding: 8rem 0;
            background: var(--text-light);
            position: relative;
        }

        .program-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .phases-container {
            position: relative;
        }

        .phases-timeline {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--secondary-color), rgba(212, 175, 55, 0.2));
            transform: translateX(-50%);
        }

        .phase-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
            position: relative;
        }

        .phase-card:nth-child(even) .phase-content {
            order: 2;
        }

        .phase-card:nth-child(even) .phase-visual {
            order: 1;
        }

        .phase-marker {
            position: absolute;
            left: 50%;
            top: 2rem;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            box-shadow: 0 0 0 8px var(--text-light), 0 0 0 10px var(--secondary-color);
        }

        .phase-marker span {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--secondary-color);
        }

        .phase-content {
            padding: 2rem 3rem;
        }

        .phase-label {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: var(--secondary-color);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.5rem 1rem;
            margin-bottom: 1rem;
        }

        .phase-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .phase-tagline {
            font-size: 1rem;
            color: var(--secondary-color);
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .phase-description {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .phase-elements {
            list-style: none;
            margin-bottom: 2rem;
        }

        .phase-elements li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
            color: var(--text-main);
            font-size: 0.95rem;
        }

        .phase-elements li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.6rem;
            width: 6px;
            height: 6px;
            background: var(--secondary-color);
            transform: rotate(45deg);
        }

        .phase-meta {
            display: flex;
            gap: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(12, 29, 54, 0.1);
        }

        .phase-meta-item {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .phase-meta-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .phase-meta-value {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-color);
        }

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

        .phase-icon-box {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5c 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .phase-icon-box::before {
            content: '';
            position: absolute;
            inset: -10px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .phase-icon-box svg {
            width: 80px;
            height: 80px;
            stroke: var(--secondary-color);
            stroke-width: 1.5;
            fill: none;
        }

        /* Network Section within Phase 3 */
        .network-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .network-item {
            background: var(--accent-color);
            padding: 0.4rem 0.8rem;
            font-size: 0.8rem;
            color: var(--text-main);
            border-left: 2px solid var(--secondary-color);
        }

        /* Why Amity Section */
        .why-amity {
            padding: 8rem 0;
            background: var(--primary-color);
            position: relative;
            overflow: hidden;
        }

        .why-amity::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 50%;
        }

        .why-amity::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 50%;
        }

        .why-amity-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .why-amity-text .section-label {
            color: var(--secondary-color);
        }

        .why-amity-text .section-title {
            color: var(--text-light);
        }

        .why-amity-text .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .why-amity-features {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .feature-item {
            display: flex;
            gap: 1.5rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.4s var(--ease-out-expo);
        }

        .feature-item:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(212, 175, 55, 0.3);
            transform: translateX(10px);
        }

        .feature-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background: rgba(212, 175, 55, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--secondary-color);
            stroke-width: 2;
            fill: none;
        }

        .feature-content h4 {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }

        .feature-content p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
        }

        /* Why Dubai Section */
        .why-dubai {
            padding: 8rem 0;
            background: var(--accent-color);
        }

        .why-dubai-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 5rem;
            align-items: start;
        }

        .dubai-intro {
            position: sticky;
            top: 120px;
        }

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

        .advantage-card {
            background: var(--text-light);
            padding: 2rem;
            position: relative;
            transition: all 0.4s var(--ease-out-expo);
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--secondary-color);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s var(--ease-out-expo);
        }

        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(12, 29, 54, 0.1);
        }

        .advantage-card:hover::before {
            transform: scaleX(1);
        }

        .advantage-value {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 500;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
        }

        .advantage-value .gold {
            color: var(--secondary-color);
        }

        .advantage-label {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* Industries Section */
        .industries {
            padding: 8rem 0;
            background: var(--text-light);
        }

        .industries-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .industries-header .section-subtitle {
            margin-left: auto;
            margin-right: auto;
        }

        .industries-highlight {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
            border: 1px solid rgba(212, 175, 55, 0.25);
            border-left: 3px solid var(--secondary-color);
            border-radius: 4px;
            padding: 2rem 2.5rem;
            margin-bottom: 3rem;
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .industries-highlight-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .industries-highlight-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--primary-color);
        }

        .industries-highlight-content {
            flex: 1;
        }

        .industries-highlight-label {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .industries-highlight-text {
            font-size: 1.05rem;
            color: var(--primary-color);
            line-height: 1.6;
        }

        .industries-highlight-text strong {
            color: var(--secondary-color);
            font-weight: 600;
        }

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

        .industry-item {
            background: var(--accent-color);
            padding: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-main);
            transition: all 0.3s var(--ease-out-quart);
            position: relative;
            overflow: hidden;
        }

        .industry-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--primary-color);
            transform: translateY(100%);
            transition: transform 0.4s var(--ease-out-expo);
        }

        .industry-item span {
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .industry-item:hover {
            transform: translateY(-3px);
        }

        .industry-item:hover::before {
            transform: translateY(0);
        }

        .industry-item:hover span {
            color: var(--text-light);
        }

        /* CTA Section */
        .cta {
            padding: 10rem 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, #152a4a 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M30 0L60 30L30 60L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta .section-title {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .cta-description {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 3rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        .footer {
            background: #080f1a;
            padding: 5rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand .nav-logo {
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .footer-brand .nav-logo img {
            height: 36px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.8;
            max-width: 300px;
        }

        .footer-title {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

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

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--secondary-color);
        }

        .footer-social img {
            width: 18px;
            height: 18px;
            filter: brightness(0) invert(1);
            transition: filter 0.3s ease;
        }

        .footer-social a:hover img {
            filter: brightness(0) invert(0.1);
        }

        .footer-contact-item {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .footer-contact-item svg {
            width: 18px;
            height: 18px;
            stroke: var(--secondary-color);
            stroke-width: 2;
            fill: none;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .footer-contact-link {
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact-link:hover {
            color: var(--secondary-color);
        }

        .footer-whatsapp-icon,
        .footer-contact-icon {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            margin-top: 2px;
            filter: brightness(0) saturate(100%) invert(76%) sepia(47%) saturate(583%) hue-rotate(6deg) brightness(91%) contrast(86%);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .industries-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 992px) {
            .hero-intro-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-intro-stats {
                order: -1;
            }

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

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

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

            .phases-timeline {
                left: 30px;
            }

            .phase-marker {
                left: 30px;
            }

            .phase-card:nth-child(even) .phase-content,
            .phase-card:nth-child(even) .phase-visual {
                order: unset;
            }

            .phase-visual {
                justify-content: flex-start;
                padding-left: 80px;
            }

            .phase-content {
                padding-left: 80px;
            }

            .why-amity-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

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

            .dubai-intro {
                position: static;
            }

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

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

        @media (max-width: 768px) {
            .video-hero {
                min-height: 500px;
            }

            .video-hero-eyebrow::before,
            .video-hero-eyebrow::after {
                width: 30px;
            }

            .video-hero-cta {
                flex-direction: column;
                align-items: center;
            }

            .video-hero-cta .btn {
                width: 100%;
                max-width: 280px;
                min-width: 200px;
                justify-content: center;
            }

            .industries-highlight {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
                gap: 1rem;
            }

            .industries-highlight-text {
                font-size: 0.95rem;
            }

            .hero-intro {
                padding: 4rem 0;
            }

            .hero-intro-stats {
                grid-template-columns: 1fr 1fr;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--text-light);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            }

            .nav-links a {
                color: var(--primary-color);
            }

            .nav-links .lang-switch {
                border-color: rgba(12, 29, 54, 0.2);
            }

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

            .nav-mobile-toggle {
                display: flex;
            }

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

            .phase-content,
            .phase-visual {
                padding-left: 60px;
            }

            .phase-marker {
                width: 45px;
                height: 45px;
                left: 22px;
                box-shadow: 0 0 0 5px var(--text-light), 0 0 0 7px var(--secondary-color);
            }

            .phase-marker span {
                font-size: 1.25rem;
            }

            .phases-timeline {
                left: 22px;
            }

            .dubai-advantages {
                grid-template-columns: 1fr;
            }

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

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

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

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

            .hero-cta-group {
                flex-direction: column;
            }

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

            .phase-meta {
                flex-direction: column;
                gap: 1rem;
            }

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