:root {
  --primary: #006bd6;
  --primary-dark: #002447;
  --primary-light: #e6f0fb;

  --secondary: #0a1f3a;
  --accent: #38bdf8;

  --dark: #020817;
  --dark-800: #06152a;
  --dark-700: #0b2545;

  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5f5;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;

  --white: #ffffff;
}


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background: var(--white);
            font-size-adjust: 0.52;
        }

        body.nav-open {
            overflow: hidden;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Navigation - Transparent in hero, subtle when scrolled */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s;
            background: transparent;
        }

        nav.scrolled {
            background:
                radial-gradient(circle at top, rgba(0, 166, 251, 0.18), transparent 45%),
                rgba(10, 22, 40, 0.88);
            backdrop-filter: blur(18px) saturate(150%);
            -webkit-backdrop-filter: blur(18px) saturate(150%);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
            padding: 0.75rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            /* padding: 0 1.5rem; */
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
            font-size: 1.75rem;
            font-weight: 900;
            text-decoration: none;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links .nav-logo {
            display: none;
        }

        .nav-links a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-light);
        }

        .nav-cta {
            background: var(--primary);
            color: white !important;
            padding: 0.6rem 1.25rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s !important;
        }
        a.nav-cta:hover{
            background: var(--accent) !important;
        }
        .nav-cta:hover {
            background: var(--primary-light);
            transform: translateY(-1px);
        }

        /* Hero Section - Dark bg from v2 */
        .hero {
            min-height: auto;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #001428 0%, #002447 45%, #001a33 100%);
            position: relative;
            padding: 7rem 1.5rem 5rem;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: transparent;
            z-index: 0;
        }

        /* Neural Network Background from v2 */
        .neural-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            z-index: 0;
        }

        .neural-bg::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            animation: float 20s ease-in-out infinite;
            will-change: transform;
        }

        .neural-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 55% 10%, rgba(0, 119, 182, 0.18) 0%, transparent 60%), linear-gradient(rgba(0, 36, 71, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 36, 71, 0.08) 1px, transparent 1px), radial-gradient(circle at 15% 20%, rgba(0, 10, 25, 0.85) 0%, transparent 45%), radial-gradient(circle at 85% 30%, rgba(0, 15, 35, 0.75) 0%, transparent 55%);
            opacity: 0.65;
            mix-blend-mode: screen;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(2%, 2%) rotate(1deg); }
            66% { transform: translate(-1%, 1%) rotate(-1deg); }
        }

        .circuit-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.05;
            background-image: 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='M10 10h80v80H10z' fill='none' stroke='%2300a6fb' stroke-width='0.5'/%3E%3Ccircle cx='10' cy='10' r='3' fill='%2300d4ff'/%3E%3Ccircle cx='90' cy='10' r='3' fill='%2300d4ff'/%3E%3Ccircle cx='10' cy='90' r='3' fill='%2300d4ff'/%3E%3Ccircle cx='90' cy='90' r='3' fill='%2300d4ff'/%3E%3Ccircle cx='50' cy='50' r='3' fill='%2300a6fb'/%3E%3Cpath d='M10 10L50 50M90 10L50 50M10 90L50 50M90 90L50 50' stroke='%2300a6fb' stroke-width='0.5'/%3E%3C/svg%3E");
            background-size: 100px 100px;
        }

        .particles {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--primary-light), 0 0 20px var(--primary-light);
            animation: particleFloat 15s infinite ease-in-out;
        }

        .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
        .particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; }
        .particle:nth-child(3) { left: 60%; top: 30%; animation-delay: 4s; }
        .particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 6s; }
        .particle:nth-child(5) { left: 40%; top: 50%; animation-delay: 8s; }

        @keyframes particleFloat {
            0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
            50% { transform: translateY(-30px) scale(1.5); opacity: 1; }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;            
            background: rgba(56, 189, 248, 0.35);
            border: 1px solid rgba(56, 189, 248, 0.65);
            border-radius: 50px;
            color: var(--white);
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .hero-badge i {
            font-size: 0.5rem;
            color: #10b981;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(0.9); }
        }

        .hero-content h1 {
            font-size: 2.75rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 1rem;
            text-shadow: 0 12px 24px rgba(7, 18, 32, 0.45);
        }

        .hero-content h1 span {
            color: var(--accent);
        }

        .hero-tagline {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 1.5rem;
            line-height: 1.7;
            max-width: 620px;
        }

        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .trust-item i {
            color: var(--accent);
            font-size: 20px;
        }

        .hero-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-bottom: 1.5rem;
        }

        .highlight-item {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.9rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: var(--gray-300);
            font-size: 0.85rem;
            font-weight: 500;
            backdrop-filter: blur(10px);
        }

        .highlight-item i {
            color: var(--primary-light);
        }

        .highlight-item.featured {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }

        .highlight-item.featured i {
            color: white;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            display: none;
        }

        .hero-glow {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.18) 0%, rgba(251, 146, 60, 0.10) 40%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        .hero-visual::before {
            content: '';
            position: absolute;
            width: 520px;
            height: 520px;
            background: radial-gradient(circle, rgba(0, 166, 251, 0.16) 0%, transparent 65%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        .tech-icons-wrapper {
            position: relative;
            width: 300px;
            height: 300px;
        }

        .main-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
        }

        .main-icon i {
            font-size: 5.4rem;
            color: var(--white);
            opacity: 0.9;
            filter: drop-shadow(0 0 40px rgba(0, 166, 251, 0.4));
        }

        .orbit-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            animation: orbitRotate 50s linear infinite;
        }

        @keyframes orbitRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .orbit-icon {
            position: absolute;
            width: 48px;
            height: 48px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            opacity: 0.85;
        }

        /* Position icons in a perfect circle - 8 icons at 45 degree intervals */
        /* Radius = 125px from center (150px - 25px for icon half-width) */
        .orbit-icon:nth-child(1) { top: 50%; left: 100%; transform: translate(-50%, -50%); } /* 0deg - right */
        .orbit-icon:nth-child(2) { top: 14.6%; left: 85.4%; transform: translate(-50%, -50%); } /* 45deg */
        .orbit-icon:nth-child(3) { top: 0%; left: 50%; transform: translate(-50%, -50%); } /* 90deg - top */
        .orbit-icon:nth-child(4) { top: 14.6%; left: 14.6%; transform: translate(-50%, -50%); } /* 135deg */
        .orbit-icon:nth-child(5) { top: 50%; left: 0%; transform: translate(-50%, -50%); } /* 180deg - left */
        .orbit-icon:nth-child(6) { top: 85.4%; left: 14.6%; transform: translate(-50%, -50%); } /* 225deg */
        .orbit-icon:nth-child(7) { top: 100%; left: 50%; transform: translate(-50%, -50%); } /* 270deg - bottom */
        .orbit-icon:nth-child(8) { top: 85.4%; left: 85.4%; transform: translate(-50%, -50%); } /* 315deg */

        .orbit-icon svg,
        .orbit-icon img {
            width: 26px;
            height: 26px;
            animation: counterRotate 50s linear infinite;
        }

        @keyframes counterRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(-360deg); }
        }

        /* Wave Divider */
        .wave-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            filter: drop-shadow(0 -8px 16px rgba(10, 22, 40, 0.18));
        }

        .wave-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 99px;
        }

        .wave-divider .shape-fill {
            fill: #F9FAFC;
        }

        /* Stats Bar */
        .stats-bar {
            background-color: #f5f9ff;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Crect width='18' height='18' fill='%23f5f9ff'/%3E%3Cpath d='M-6 18 L18 -6' stroke='%2300a6fb' stroke-opacity='0.06' stroke-width='1'/%3E%3C/svg%3E");
            background-size: 18px 18px;
            padding: 2.25rem 1.35rem 2.7rem;
            margin-top: -1.575rem;
        }

        .stats-container {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            text-align: center;
        }

        .stat-item .number {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--primary);
        }

        .stat-item .label {
            font-size: 0.85rem;
            color: var(--gray-500);
            margin-top: 0.25rem;
            font-weight: 500;
        }

        /* Section Styling */
        section {
            padding: 4rem 1.5rem;
        }

        /* About Me Section */
        .about-me {
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            max-width: 440px;
            border-radius: 20px;
            box-shadow: 0 8px 18px rgba(56, 189, 248, 0.35);
            height: auto;
        }

        .about-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 20px;
            left: 20px;
            background: var(--primary);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.15;
        }

        .about-content h2 {
            font-size: 1.85rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .about-content h2 span {
            color: var(--primary);
        }

        .about-lead {
            font-size: 1.05rem;
            color: var(--gray-600);
            font-weight: 500;
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .about-content p {
            color: var(--gray-500);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 0.75rem;
        }

        .about-highlights {
            display: flex;
            gap: 1rem;
            margin-top: 1.25rem;
            flex-wrap: wrap;
        }

        .about-highlight {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1rem;
            background: rgba(16, 185, 129, 0.10);
            border-radius: 8px;
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 600;
        }

        .about-highlight i {
            font-size: 1rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.9rem;
            background: var(--white);
            border-radius: 50px;
            color: #0f172a;
            border: 1px solid rgba(56, 189, 248, 0.65);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.75rem;
            box-shadow: 0 8px 18px rgba(56, 189, 248, 0.20);
        }

        .community .section-badge {
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border-color: rgba(0, 166, 251, 0.6);
            box-shadow: 0 10px 20px rgba(0, 166, 251, 0.22);
        }

        .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .section-header h2 {
            font-size: 1.85rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .section-header h2 span {
            color: var(--primary);
        }

        .section-header p {
            font-size: 0.95rem;
            color: var(--gray-500);
            max-width: 500px;
            margin: 0 auto;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* About/Why Section */
        .why-me {
            background: var(--gray-50);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .why-card {
            background: var(--white);
            padding: 1.75rem;
            border-radius: 16px;
            border: 1px solid rgba(56, 189, 248, 0.35);            
            text-align: center;
            transition: all 0.3s;
        }

        .why-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 166, 251, 0.12);
            border-color: var(--primary);
        }

        .why-icon {
            width: 60px;
            height: 60px;
            background: rgba(56, 189, 248, 0.25);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .why-icon i {
            font-size: 1.5rem;
            color: var(--primary);
        }

        .why-card h3 {
            font-size: 1.05rem;
            color: #0f172a;
            margin-bottom: 0.5rem;
        }

        .why-card p {
            color: var(--gray-600);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        /* Services Section */
        .services {
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .service-card {
            background: var(--gray-50);
            padding: 1.75rem;
            border-radius: 16px;
            border: 1px solid var(--gray-200);
            transition: all 0.3s;
        }

        .service-card:hover {
            background: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 166, 251, 0.1);
            border-color: var(--primary);
        }

        .service-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .service-icon i {
            font-size: 1.25rem;
            color: white;
        }

        .service-card h3 {
            font-size: 1.05rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .service-card > p {
            color: var(--gray-500);
            font-size: 0.85rem;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            color: var(--gray-600);
            margin-bottom: 0.4rem;
        }

        .service-features li i {
            color: var(--primary);
            font-size: 0.75rem;
        }

        /* Community Section */
        .community {
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .community::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(0, 166, 251, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
        }

        .community .section-header h2 {
            color: var(--white);
        }

        .community .section-header p {
            color: var(--gray-400);
        }

        .community .section-badge {
            background: rgba(0, 166, 251, 0.2);
        }

        .community-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
            position: relative;
            z-index: 1;
        }

        .community-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 16px;
            display: flex;
            gap: 1rem;
            transition: all 0.3s;
        }

        .community-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(0, 166, 251, 0.4);
        }

        .community-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .community-icon i {
            font-size: 1.25rem;
            color: white;
        }

        .community-content h3 {
            font-size: 1rem;
            color: var(--white);
            margin-bottom: 0.4rem;
        }

        .community-content p {
            color: var(--gray-400);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        /* Featured Case Study */
        .case-study {
            background: var(--gray-50);
        }

        .case-study-grid {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 2.5rem;
            align-items: center;
        }

        .case-card {
            background: var(--white);
            border-radius: 18px;
            border: 1px solid var(--gray-200);
            box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
            overflow: hidden;
        }

        .case-card img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            max-height: 550px;
            object-position: top;
        }

        .case-summary h3 {
            font-size: 1.75rem;
            color: var(--dark);
            margin-bottom: 0.75rem;
        }

        .case-summary p {
            color: var(--gray-600);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }

        .case-stack,
        .case-highlights {
            display: grid;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
        }

        .case-stack h4,
        .case-highlights h4 {
            font-size: 0.85rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--gray-500);
        }

        .stack-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .stack-tag {
            background: rgba(56, 189, 248, 0.25);
            color: var(--primary-dark);
            border-radius: 8px;
            padding: 0.35rem 0.8rem;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .highlights-list {
            list-style: none;
            display: grid;
            gap: 0.6rem;
            color: var(--gray-600);
            font-size: 0.92rem;
        }

        .highlights-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
        }

        .highlights-list i {
            color: var(--primary);
            margin-top: 0.4rem;
        }

        .case-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.9rem;
            margin-top: 1.75rem;
        }

        .case-gallery .case-card {
            height: 210px;
        }

        .case-cta-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }

        .case-cta-row .btn {
            padding: 0.8rem 1.4rem;
        }

        .case-cta-note {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray-500);
            font-size: 0.9rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .case-cta-note i {
            color: var(--primary);
        }

        /* Testimonials */
        .testimonials {
            background: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            align-items: stretch;
        }

        .testimonial-card {
            background: var(--gray-50);
            padding: 1.75rem;
            border-radius: 18px;
            border: 1px solid rgba(56, 189, 248, 0.35);
            text-align: left;
            position: relative;
            transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 18px rgba(56, 189, 248, 0.25);
            border-color: rgba(56, 189, 248, 0.35);
        }

        .testimonial-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(
                    circle at top left,
                    rgba(0, 107, 214, 0.20),
                    rgba(0, 107, 214, 0.08) 30%,
                    transparent 60%
                    );
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .testimonial-card:hover::after {
            opacity: 1;
        }

        .testimonial-card.spotlight {
            background: radial-gradient(
            circle at top left,
            rgba(16, 185, 129, 0.18),
            rgba(16, 185, 129, 0.08) 30%,
            transparent 60%
        );
            border-color: rgba(16, 185, 129, 0.30);
            box-shadow: 0 8px 18px rgba(16, 185, 129, 0.12);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 0.75rem;
            right: 1.25rem;
            font-size: 3.5rem;
            font-family: Georgia, serif;
            color: var(--primary);
            opacity: 0.12;
            line-height: 1;
        }

        .testimonial-quote {
            font-size: 0.95rem;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 1.25rem;
            flex: 1;
        }

        .testimonial-quote strong {
            color: var(--dark);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(15, 23, 42, 0.08);
        }

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            background: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
        }

        .testimonial-avatar.ring {
            box-shadow: 0 0 0 4px var(--accent);
        }

        .testimonial-info h4 {
            color: var(--dark);
            font-size: 0.95rem;
        }

        .testimonial-info p {
            color: var(--gray-500);
            font-size: 0.8rem;
        }

        /* Travel Section */
        .travel {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-800) 100%);
            position: relative;
            overflow: hidden;
        }

        .travel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 30% 70%, rgba(0, 166, 251, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
        }

        .travel-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .travel-text h2 {
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 0.75rem;
        }

        .travel-text p {
            font-size: 0.9rem;
            color: var(--gray-400);
            margin-bottom: 1.25rem;
            line-height: 1.7;
        }

        .travel-stats {
            display: flex;
            gap: 2rem;
        }

        .travel-stat .number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-light);
        }

        .travel-stat .label {
            font-size: 0.8rem;
            color: var(--gray-400);
        }

        .travel-visual {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.75rem;
        }

        .flag-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.75rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s;
        }

        .flag-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        .flag-card .flag {
            font-size: 1.75rem;
            display: block;
            margin-bottom: 0.25rem;
        }

        .flag-card .country {
            font-size: 0.65rem;
            color: var(--gray-400);
            font-weight: 500;
        }

        /* Project Brief Section */
        .project-brief {
            background: var(--white);
        }

        .brief-grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 3rem;
        }

        .brief-info h3 {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 0.75rem;
        }

        .brief-info > p {
            color: var(--gray-500);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }

        .brief-benefits {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .brief-benefits li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 0.85rem;
            color: var(--gray-600);
        }

        .brief-benefits li i {
            color: var(--primary);
            margin-top: 0.4rem;
        }

        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }

        .contact-icon {
            width: 42px;
            height: 42px;
            background: var(--gray-100);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .contact-icon i {
            font-size: 1rem;
            color: var(--primary);
        }

        .contact-item:hover .contact-icon {
            background: var(--primary);
        }

        .contact-item:hover .contact-icon i {
            color: white;
        }

        .contact-text h4 {
            color: var(--dark);
            font-size: 0.85rem;
            margin-bottom: 0.15rem;
        }

        .contact-text p,
        .contact-text a {
            color: var(--gray-500);
            font-size: 0.85rem;
            text-decoration: none;
        }

        .contact-text a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: var(--gray-100);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-600);
            font-size: 1rem;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--primary);
            color: white;
        }

        .brief-form {
            background: var(--gray-50);
            padding: 2rem;
            border-radius: 16px;
        }

        .brief-form h4 {
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .brief-form > p {
            font-size: 0.85rem;
            color: var(--gray-500);
            margin-bottom: 1.25rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.4rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.85rem 1rem;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 10px;
            color: var(--dark);
            font-size: 0.9rem;
            font-family: inherit;
            transition: all 0.3s;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--gray-400);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
        }

        .honeypot {
            position: absolute;
            left: -9999px;
        }

        .form-btn {
            width: 100%;
            padding: 1rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .form-btn:hover {
            background: var(--primary-dark);
        }

        .form-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .form-message {
            padding: 0.75rem;
            border-radius: 8px;
            font-size: 0.85rem;
            margin-top: 1rem;
            display: none;
        }

        .form-message.success {
            background: rgb(111 212 255 / 10%);
            color: #191c1c;
            display: block;
        }

        .form-message.error {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            display: block;
        }

        /* Footer */
        footer {
            background: var(--dark);
            padding: 2rem 1.5rem;
            text-align: center;
        }

        footer p {
            color: var(--gray-500);
            font-size: 0.85rem;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 56px;
            height: 56px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.75rem;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s;
            text-decoration: none;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-btn::before {
            content: 'Chat with me';
            position: absolute;
            right: 70px;
            background: var(--dark);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .whatsapp-btn:hover::before {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.25rem;
            cursor: pointer;
        }

        nav.menu-open {
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container,
            .brief-grid,
            .travel-content,
            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-image {
                display: flex;
                justify-content: center;
            }

            .about-image img {
                max-width: 340px;
            }

            .about-glow {
                left: 50%;
                transform: translateX(-50%);
            }

            .about-highlights {
                justify-content: center;
            }

            .hero-content h1 {
                font-size: 2.25rem;
            }

            .hero-trust,
            .hero-highlights {
                justify-content: center;
            }

            .hero-visual {
                margin-top: 2rem;
            }

            .tech-icons-wrapper {
                width: 260px;
                height: 260px;
            }

            .main-icon i {
                font-size: 4.4rem;
            }

            .orbit-icon {
                width: 42px;
                height: 42px;
            }

            .orbit-icon svg,
            .orbit-icon img {
                width: 22px;
                height: 22px;
            }

            .services-grid,
            .case-gallery,
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .community-grid {
                grid-template-columns: 1fr;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .travel-stats {
                justify-content: center;
            }

            .brief-info {
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                inset: 0;
                width: 100vw;
                height: 100dvh;
                background:
                    radial-gradient(circle at top, rgba(0, 166, 251, 0.18), transparent 45%),
                    rgba(10, 22, 40, 0.82);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                gap: 0.85rem;
                padding: 6rem 2rem 2.5rem;
                display: flex;
                z-index: 999;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transform: translateY(-12px);
                transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
                backdrop-filter: blur(26px) saturate(150%);
                -webkit-backdrop-filter: blur(26px) saturate(150%);
                border: 1px solid rgba(255, 255, 255, 0.06);
            }

            .nav-links.active {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: translateY(0);
            }

            .nav-links a {
                font-size: 1.25rem;
            }

            .nav-links .nav-logo {
                display: block;
                width: min(260px, 80vw);
                padding-bottom: 0.85rem;
                margin-bottom: 0.35rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                text-align: center;
                display: flex;
                justify-content: center;
            }

            .nav-links .logo {
                font-size: 1.9rem;
                margin-bottom: 0.5rem;
                display: inline-flex;
                justify-content: center;
            }

            .nav-links .nav-cta {
                width: min(260px, 80vw);
                display: inline-flex;
                justify-content: center;
                margin-top: 0.5rem;
            }

            .mobile-toggle {
                display: block;
                z-index: 1001;
            }

            body.nav-open .mobile-toggle {
                position: fixed;
                top: 1.25rem;
                right: 1.25rem;
            }

            .hero {
                padding: 5rem 1.5rem 3rem;
                min-height: auto;
            }

            .hero-content h1 {
                font-size: 1.85rem;
            }

            .tech-icons-wrapper {
                width: 220px;
                height: 220px;
            }

            .main-icon i {
                font-size: 3.9rem;
            }

            .orbit-icon {
                width: 36px;
                height: 36px;
            }

            .orbit-icon svg,
            .orbit-icon img {
                width: 18px;
                height: 18px;
            }

            .orbit-container {
                animation-duration: 70s;
            }

            .services-grid,
            .case-gallery,
            .why-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            section {
                padding: 3rem 1.5rem;
            }

            .community-card {
                flex-direction: column;
                text-align: center;
            }

            .section-header h2 {
                font-size: 1.5rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .travel-visual {
                grid-template-columns: repeat(3, 1fr);
            }

            .whatsapp-btn {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                bottom: 16px;
                right: 16px;
            }

            .whatsapp-btn::before {
                display: none;
            }
        } 
        /* Override grid ONLY when used inside swiper */
        .testimonials-slider .testimonials-grid {
            display: flex !important;
            gap: 0px !important;
        }
        .swiper-slide {
            height: auto;
            display: flex;
        }
        .swiper-slide .testimonial-card {
            width: 100%;
        }
        /* Equal height cards */
        .swiper-wrapper {
            align-items: stretch;
        }       