        :root {
            --primary-deep: #0a1628;
            --primary-ocean: #0d3b66;
            --accent-teal: #14919b;
            --accent-emerald: #31c48d;
            --accent-gold: #f7b32b;
            --accent-coral: #f26430;
            --accent-forest: #2d6a4f;
            --accent-earth: #8b5e34;
            --accent-purple: #7c3aed;
            --light-sky: #e8f4f8;
            --light-forest: #d8f3dc;
            --light-purple: #ede9fe;
            --white: #ffffff;
            --text-dark: #1a1a2e;
            --text-muted: #6b7280;
            --gradient-ocean: linear-gradient(135deg, #0d3b66 0%, #14919b 50%, #31c48d 100%);
            --gradient-forest: linear-gradient(135deg, #2d6a4f 0%, #40916c 50%, #52b788 100%);
            --gradient-purple: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            --gradient-sky: linear-gradient(180deg, #e8f4f8 0%, #ffffff 100%);
            --shadow-soft: 0 4px 20px rgba(10, 22, 40, 0.08);
            --shadow-medium: 0 8px 40px rgba(10, 22, 40, 0.12);
            --shadow-strong: 0 16px 60px rgba(10, 22, 40, 0.16);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif !important;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--white);
        }

        /* ========== HEADER ========== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 5%;
            transition: all 0.4s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-soft);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-ocean);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            width: 60%;
            height: 60%;
            border: 3px solid rgba(255,255,255,0.9);
            border-radius: 50%;
            animation: pulse-ring 2s ease-out infinite;
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--white);
            border-radius: 50%;
        }

        @keyframes pulse-ring {
            0% { transform: scale(0.5); opacity: 1; }
            100% { transform: scale(1.2); opacity: 0; }
        }

        .logo-text {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #000000;
        }

        .logo-text span {
            color: #000000;
        }

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

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

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

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

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

        .nav-cta {
            background: var(--gradient-ocean);
            color: var(--white) !important;
            padding: 0.75rem 1.75rem !important;
            border-radius: 50px;
            font-weight: 600 !important;
        }

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

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(20, 145, 155, 0.35);
        }

        /* Language Selector */
        .lang-selector {
            position: relative;
        }

        .lang-current {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.9rem;
            transform: translateY(-6px);
        }

        .lang-current:hover {
            background: rgba(20, 145, 155, 0.1);
            color: var(--accent-teal);
        }

        .lang-current .chevron {
            transition: transform 0.3s ease;
        }

        .lang-selector:hover .chevron {
            transform: rotate(180deg);
        }

        .lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 0.35rem;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-medium);
            min-width: 150px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 100;
            overflow: hidden;
        }

        .lang-selector:hover .lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .lang-option {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 0.55rem 0.8rem;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            text-align: center;
        }

        .lang-option:hover {
            background: var(--light-sky);
            color: var(--accent-teal);
        }

        .lang-option.active {
            background: rgba(20, 145, 155, 0.1);
            color: var(--accent-teal);
            font-weight: 600;
        }

        .lang-flag {
            font-size: 1.2rem;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
            z-index: 1150;
        }

        .mobile-menu span {
            width: 28px;
            height: 3px;
            background: var(--primary-deep);
            border-radius: 2px;
            transition: 0.3s;
        }

        .mobile-menu.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

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

        .mobile-menu.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 1090;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* ========== HERO ========== */
        .hero {
            min-height: auto;
            padding: 140px 0 80px;
            background: #ffffff;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 20% 80%, rgba(20, 145, 155, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(49, 196, 141, 0.06) 0%, transparent 50%);
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(20,145,155,0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(20,145,155,0.05) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: grid-move 20s linear infinite;
        }

        @keyframes grid-move {
            0% { transform: translateY(0); }
            100% { transform: translateY(60px); }
        }

        .hero-globe {
            position: absolute;
            right: -5%;
            top: 50%;
            transform: translateY(-50%);
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(20, 145, 155, 0.15), rgba(13, 59, 102, 0.05) 50%, transparent 70%);
            border: 2px solid rgba(20, 145, 155, 0.15);
            animation: globe-rotate 30s linear infinite;
            opacity: 0.5;
        }

        .hero-globe::before {
            content: '';
            position: absolute;
            inset: 20%;
            border-radius: 50%;
            border: 1px dashed rgba(20,145,155,0.15);
            animation: globe-rotate 20s linear infinite reverse;
        }

        .hero-globe::after {
            content: '';
            position: absolute;
            inset: 40%;
            border-radius: 50%;
            border: 1px dashed rgba(20,145,155,0.1);
            animation: globe-rotate 15s linear infinite;
        }

        @keyframes globe-rotate {
            0% { transform: translateY(-50%) rotate(0deg); }
            100% { transform: translateY(-50%) rotate(360deg); }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        @keyframes hero-fade-up {
            from {
                opacity: 0;
                transform: translateY(1.25rem);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content .hero-text-container > * {
            opacity: 0;
            animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        .hero-content .hero-text-container > .hero-badge {
            animation-delay: 0.06s;
        }

        .hero-content .hero-text-container > h1 {
            animation-delay: 0.14s;
        }

        .hero-content .hero-text-container > p {
            animation-delay: 0.26s;
        }

        .hero-content .hero-text-container > .hero-buttons {
            animation-delay: 0.38s;
        }

        .hero-content .hero-stats .stat {
            opacity: 0;
            animation: hero-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        .hero-content .hero-stats .stat:nth-child(1) {
            animation-delay: 0.48s;
        }

        .hero-content .hero-stats .stat:nth-child(2) {
            animation-delay: 0.6s;
        }

        .hero-content .hero-stats .stat:nth-child(3) {
            animation-delay: 0.72s;
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-content .hero-text-container > *,
            .hero-content .hero-stats .stat {
                animation: none !important;
                opacity: 1 !important;
                transform: none !important;
            }
        }

        .hero-text-container {
            max-width: 650px;
            background: transparent;
            padding: 2.5rem 0;
            border-radius: 24px;
        }

        .satellite {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--accent-gold);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--accent-gold);
        }

        .satellite-1 {
            right: 25%;
            top: 20%;
            animation: orbit-1 8s linear infinite;
        }

        .satellite-2 {
            right: 15%;
            top: 60%;
            animation: orbit-2 12s linear infinite;
        }

        .satellite-3 {
            right: 35%;
            top: 75%;
            animation: orbit-3 10s linear infinite;
        }

        @keyframes orbit-1 {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(20px, 30px); }
            50% { transform: translate(40px, 0); }
            75% { transform: translate(20px, -30px); }
        }

        @keyframes orbit-2 {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(-30px, 20px); }
            50% { transform: translate(-60px, 0); }
            75% { transform: translate(-30px, -20px); }
        }

        @keyframes orbit-3 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, -40px); }
        }

        .hero-text-container {
            max-width: 100%;
            background: transparent;
            padding: 0;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(20, 145, 155, 0.1);
            border: 1px solid rgba(20, 145, 155, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            color: var(--accent-teal);
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--accent-emerald);
            border-radius: 50%;
            animation: blink 1.5s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .hero h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 700;
            color: var(--primary-deep);
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .hero h1 .highlight {
            color: var(--accent-emerald);
            position: relative;
        }

        .hero h1 .highlight {
            color: #31c48d;
            text-shadow: 0 0 30px rgba(49, 196, 141, 0.5);
        }

        .hero p {
            font-size: 1.1rem;
            color: #000;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--accent-emerald);
            color: var(--primary-deep);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(49, 196, 141, 0.3);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: transparent;
            color: var(--primary-deep);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid rgba(10, 22, 40, 0.3);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--accent-teal);
            background: rgba(20, 145, 155, 0.08);
            color: var(--accent-teal);
        }

        .hero-stats {
            display: flex;
            gap: 2.5rem;
            margin-top: 2rem;
        }

        .stat {
            text-align: left;
            background: rgba(20, 145, 155, 0.07);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(20, 145, 155, 0.2);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-teal);
            font-family: 'Outfit', sans-serif;
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-top: 0.25rem;
        }

        /* ========== METRICS BANNER ========== */
        .metrics-banner {
            background: var(--gradient-ocean);
            padding: 4rem 5%;
            position: relative;
            overflow: hidden;
        }

        .metrics-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="30" cy="30" r="1" fill="white" opacity="0.08"/><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/><circle cx="70" cy="20" r="1" fill="white" opacity="0.06"/><circle cx="90" cy="80" r="1" fill="white" opacity="0.1"/></svg>');
            background-size: 100px;
        }

        .metrics-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }

        .metric-item {
            text-align: center;
            padding: 1.5rem;
        }

        .metric-number {
            font-family: 'Outfit', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .metric-number span {
            color: var(--accent-gold);
        }

        .metric-label {
            color: rgba(255,255,255,0.8);
            font-size: 1rem;
            font-weight: 500;
        }

        /* ========== SOLUTIONS ========== */
        .solutions {
            padding: 8rem 5%;
            background: var(--gradient-sky);
            position: relative;
        }

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

        .section-label {
            display: inline-block;
            color: var(--accent-teal);
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--primary-deep);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .section-desc {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .solution-card {
            background: var(--white);
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-ocean);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .solution-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-strong);
        }

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

        .solution-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            position: relative;
        }

        .solution-icon.satellite-icon {
            background: linear-gradient(135deg, #0d3b66 0%, #14919b 100%);
        }

        .solution-icon.climate-icon {
            background: linear-gradient(135deg, #14919b 0%, #31c48d 100%);
        }

        .solution-icon.flood-icon {
            background: linear-gradient(135deg, #31c48d 0%, #f7b32b 100%);
        }

        .solution-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--white);
            stroke-width: 1.5;
            fill: none;
        }

        .solution-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            color: var(--primary-deep);
            margin-bottom: 0.5rem;
        }

        .solution-card p {
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 1rem;
            font-size: 0.85rem;
        }

        .solution-features {
            list-style: none;
            margin-bottom: 1rem;
        }

        .solution-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.4rem;
            padding: 0.25rem 0;
            color: var(--text-dark);
            font-size: 0.8rem;
        }

        .solution-features li::before {
            content: '✓';
            color: var(--accent-emerald);
            font-weight: 700;
            flex-shrink: 0;
        }

        .solution-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent-teal);
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .solution-link:hover {
            gap: 1rem;
        }

        /* ========== FEATURE SECTION (Alternating Layout) ========== */
        .feature-section {
            padding: 6rem 5%;
            position: relative;
            overflow: hidden;
        }

        .feature-section.bg-light {
            background: var(--white);
        }

        .feature-section.bg-forest {
            background: var(--light-forest);
        }

        .feature-section.bg-purple {
            background: var(--light-purple);
        }

        .feature-section.bg-dark {
            background: var(--primary-deep);
        }

        .feature-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .feature-container.reverse {
            direction: rtl;
        }

        .feature-container.reverse > * {
            direction: ltr;
        }

        .feature-visual {
            position: relative;
        }

        .feature-image-stack {
            position: relative;
            height: 450px;
        }

        .feature-image {
            position: absolute;
            width: 85%;
            border-radius: 20px;
            box-shadow: var(--shadow-strong);
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .feature-image:nth-child(1) {
            top: 0;
            left: 0;
            z-index: 3;
        }

        .feature-image:nth-child(2) {
            top: 40px;
            left: 40px;
            z-index: 2;
            opacity: 0.9;
        }

        .feature-image:nth-child(3) {
            top: 80px;
            left: 80px;
            z-index: 1;
            opacity: 0.7;
        }

        .feature-visual:hover .feature-image:nth-child(1) {
            transform: translateY(-10px);
        }

        .feature-visual:hover .feature-image:nth-child(2) {
            transform: translate(10px, -5px);
        }

        .feature-visual:hover .feature-image:nth-child(3) {
            transform: translate(20px, 0);
        }

        .feature-image-content {
            width: 100%;
            aspect-ratio: 16/10;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Deforestation Visual */
        .deforestation-visual {
            background: linear-gradient(135deg, #1a4731 0%, #2d6a4f 50%, #40916c 100%);
        }

        .deforestation-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255,0,0,0.3) 0%, transparent 30%),
                radial-gradient(circle at 60% 70%, rgba(255,100,0,0.2) 0%, transparent 25%),
                radial-gradient(circle at 80% 40%, rgba(255,50,0,0.25) 0%, transparent 20%);
        }

        .tree-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 8px;
            padding: 30px;
            position: relative;
            z-index: 1;
        }

        .tree {
            width: 20px;
            height: 30px;
            position: relative;
        }

        .tree::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 10px;
            background: #5c4033;
            border-radius: 2px;
        }

        .tree::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 20px solid #228b22;
        }

        .tree.dead::after {
            border-bottom-color: #8b4513;
            opacity: 0.5;
        }

        .tree.warning::after {
            border-bottom-color: #ffa500;
        }

        .feature-content h2 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(1.75rem, 3.5vw, 2.5rem);
            color: var(--primary-deep);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .feature-section.bg-dark .feature-content h2 {
            color: var(--white);
        }

        .feature-content > p {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .feature-section.bg-dark .feature-content > p {
            color: rgba(255,255,255,0.7);
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255,255,255,0.7);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .feature-section.bg-dark .feature-item {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .feature-item:hover {
            background: var(--white);
            box-shadow: var(--shadow-medium);
            transform: translateX(8px);
        }

        .feature-section.bg-dark .feature-item:hover {
            background: rgba(255,255,255,0.1);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-ocean);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon.forest {
            background: var(--gradient-forest);
        }

        .feature-icon.purple {
            background: var(--gradient-purple);
        }

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

        .feature-text h4 {
            font-size: 1.05rem;
            color: var(--primary-deep);
            margin-bottom: 0.25rem;
        }

        .feature-section.bg-dark .feature-text h4 {
            color: var(--white);
        }

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

        .feature-section.bg-dark .feature-text p {
            color: rgba(255,255,255,0.6);
        }

        .btn-feature {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .btn-feature.forest {
            background: var(--gradient-forest);
            color: var(--white);
        }

        .btn-feature.purple {
            background: var(--gradient-purple);
            color: var(--white);
        }

        .btn-feature:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        /* ========== EXCEL TO EXCELLENCE BANNER ========== */
        .excellence-banner {
            padding: 6rem 5%;
            background: var(--primary-deep);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .excellence-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 0% 50%, rgba(20, 145, 155, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 100% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 50%);
        }

        .excellence-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .excellence-content h2 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .excellence-content h2 span {
            color: var(--accent-emerald);
        }

        .excellence-content p {
            color: rgba(255,255,255,0.7);
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        /* ========== CLIENTS LOGOS ========== */
        .clients {
            padding: 4rem 5%;
            background: var(--white);
        }

        .clients-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .clients-label {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .clients-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .client-logo {
            opacity: 0.5;
            transition: opacity 0.3s ease;
            font-family: 'Outfit', sans-serif;
            font-size: 1.25rem;
            color: var(--primary-deep);
            font-weight: 600;
        }

        .client-logo:hover {
            opacity: 1;
        }

        /* ========== TESTIMONIALS ========== */
        .testimonials {
            padding: 8rem 5%;
            background: var(--primary-deep);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 0% 50%, rgba(20, 145, 155, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 100% 50%, rgba(49, 196, 141, 0.15) 0%, transparent 50%);
        }

        .testimonials .section-title {
            color: var(--white);
        }

        .testimonials .section-desc {
            color: rgba(255,255,255,0.6);
        }

        .testimonials-slider {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 24px;
            padding: 3rem;
            text-align: center;
        }

        .testimonial-quote {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            color: var(--white);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-quote::before {
            content: '"';
            font-size: 4rem;
            color: var(--accent-emerald);
            display: block;
            line-height: 0.5;
            margin-bottom: 1rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            background: var(--gradient-ocean);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--white);
            font-weight: 600;
        }

        .testimonial-info h4 {
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .testimonial-info p {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }

        /* ========== ABOUT ========== */
        .about {
            padding: 8rem 5%;
            background: var(--gradient-sky);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image-main {
            width: 100%;
            aspect-ratio: 4/5;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(160deg, #0a1628 0%, #0d3b66 50%, #14919b 100%);
        }

        .about-badge {
            position: absolute;
            bottom: -86px;
            right: -100px;
            background: var(--white);
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: var(--shadow-medium);
            text-align: center;
        }

        .about-badge-number {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-teal);
        }

        .about-badge-text {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .about-content h2 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4vw, 2.75rem);
            color: var(--primary-deep);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .about-content > p {
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .founder-quote {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 16px;
            border-left: 4px solid var(--accent-teal);
            margin: 2rem 0;
        }

        .founder-quote p {
            font-style: italic;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .founder-quote cite {
            color: var(--text-muted);
            font-size: 0.9rem;
            font-style: normal;
        }

        /* ========== CONTACT ========== */
        .contact {
            padding: 8rem 5%;
            background: var(--white);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            color: var(--primary-deep);
            margin-bottom: 1rem;
        }

        .contact-info > p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: var(--light-sky);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--accent-teal);
            stroke-width: 2;
            fill: none;
        }

        .contact-text h4 {
            color: var(--primary-deep);
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

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

        .contact-form {
            background: var(--light-sky);
            padding: 2.5rem;
            border-radius: 24px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: var(--primary-deep);
            font-weight: 500;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid transparent;
            border-radius: 12px;
            background: var(--white);
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-teal);
            box-shadow: 0 0 0 4px rgba(20, 145, 155, 0.1);
        }

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

        .form-submit {
            width: 100%;
            padding: 1rem 2rem;
            background: var(--gradient-ocean);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(20, 145, 155, 0.3);
        }

        /* ========== FOOTER ========== */
        footer {
            background: var(--primary-deep);
            padding: 4rem 5% 2rem;
        }

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

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-brand .logo {
            margin-bottom: 1.5rem;
        }

        .footer-brand .logo-text {
            color: #ffffff;
        }

        .footer-brand .logo-text span {
            color: #ffffff;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

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

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

        .footer-social a:hover {
            background: var(--accent-teal);
            transform: translateY(-3px);
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
            fill: var(--white);
        }

        .footer-links h4 {
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .footer-links ul {
            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.95rem;
            transition: color 0.3s ease;
        }

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

        .footer-bottom {
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

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

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

        .footer-legal a:hover {
            color: var(--white);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .feature-container,
            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .feature-container.reverse {
                direction: ltr;
            }

            .feature-visual {
                order: -1;
            }

            .feature-image-stack {
                height: 350px;
            }

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

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

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

        @media (max-width: 768px) {
            .nav-links {
                display: flex;
                position: fixed;
                top: 0;
                right: -100%;
                width: min(86vw, 340px);
                height: 100vh;
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
                padding: 6rem 1.5rem 2rem;
                background: var(--white);
                box-shadow: -12px 0 30px rgba(0, 0, 0, 0.15);
                transition: right 0.3s ease;
                z-index: 1100;
                overflow-y: auto;
            }

            .nav-links.mobile-open {
                right: 0;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                width: 100%;
                padding: 0.75rem 0;
            }

            .nav-links .nav-cta {
                display: inline-flex;
                justify-content: center;
                margin-top: 0.5rem;
            }

            .mobile-menu {
                display: flex;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 1rem;
            }

            .hero-text-container {
                padding: 1.5rem;
                background: transparent;
            }

            .hero {
                padding: 120px 0 60px;
            }

            .stat {
                padding: 0.75rem 1rem;
            }

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

            .solution-card {
                padding: 1.5rem;
            }

            .hero-globe {
                width: 400px;
                height: 400px;
                right: -40%;
                opacity: 0.5;
            }

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

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

            .metrics-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .feature-image-stack {
                height: 280px;
            }

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