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

        body {
            font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #FAFBFC;
            color: #1A1F2E;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            background: rgba(13, 27, 42, 0.95);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar.scrolled {
            background: rgba(13, 27, 42, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 0.75rem 2rem;
        }

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

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: #FFFFFF;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            transition: opacity 0.3s ease;
        }

        .nav-logo:hover {
            opacity: 0.8;
        }

        .nav-logo-icon {
            width: 40px;
            height: 40px;
        }

        .nav-logo-icon svg {
            width: 100%;
            height: 100%;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #2196F3;
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #FFFFFF;
        }

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

        .nav-link.active {
            color: #2196F3;
        }

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

        .nav-cta {
            background: #2196F3;
            color: #FFFFFF;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
        }

        .nav-cta:hover {
            background: #1976D2;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #FFFFFF;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

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

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

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

        /* Mobile Menu */
        @media (max-width: 968px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: rgba(13, 27, 42, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 6rem 2rem 2rem;
                gap: 0;
                transition: right 0.3s ease;
                box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-item {
                width: 100%;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-link {
                font-size: 1.125rem;
                width: 100%;
                display: block;
            }

            .nav-link::after {
                display: none;
            }

            .nav-cta {
                width: 100%;
                text-align: center;
                margin-top: 1rem;
            }

            .navbar.scrolled .nav-menu {
                background: rgba(13, 27, 42, 0.98);
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 1rem;
            }

            .navbar.scrolled {
                padding: 0.75rem 1rem;
            }

            .nav-logo {
                font-size: 1.25rem;
            }

            .nav-logo-icon {
                width: 32px;
                height: 32px;
            }

            .nav-menu {
                width: 100%;
            }
        }

        .hero-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0D1B2A 0%, #2196F3 100%);
            padding: 2rem;
            padding-top: 6rem;
            position: relative;
            overflow: hidden;
        }

        /* Animated background particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #FFFFFF;
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
        }

        .hero-content {
            text-align: center;
            max-width: 1200px;
            width: 100%;
            z-index: 2;
            position: relative;
        }

        .triskele-container {
            margin-bottom: 3rem;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .triskele-symbol {
            width: 200px;
            height: 200px;
            position: relative;
            animation: drawIn 1.5s ease-out forwards;
            opacity: 0;
        }

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

        @keyframes drawIn {
            0% {
                opacity: 0;
                transform: scale(0.8) rotate(0deg);
            }
            100% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        /* After drawIn completes, ensure rotation continues */
        .triskele-symbol.loaded {
            opacity: 1;
            animation: subtleRotate 6s linear infinite;
            transform: none;
        }

        .triskele-symbol svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 8px 24px rgba(255, 255, 255, 0.15)) 
                    drop-shadow(0 4px 12px rgba(33, 150, 243, 0.2));
        }

        /* Spiral trail effect - visible pulsing rings */
        .triskele-container::before {
            content: '';
            position: absolute;
            width: 240px;
            height: 240px;
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            animation: spiralPulse 4s ease-in-out infinite;
            pointer-events: none;
        }

        .triskele-container::after {
            content: '';
            position: absolute;
            width: 280px;
            height: 280px;
            border: 2px solid rgba(33, 150, 243, 0.3);
            border-radius: 50%;
            animation: spiralPulse 5s ease-in-out infinite 0.5s;
            pointer-events: none;
        }

        @keyframes spiralPulse {
            0%, 100% {
                transform: scale(1) rotate(0deg);
                opacity: 0.4;
            }
            50% {
                transform: scale(1.2) rotate(180deg);
                opacity: 0.15;
            }
        }

        .hero-headline {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(3rem, 7vw, 5.5rem);
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.03em;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 0.2em;
        }

        .hero-headline span {
            display: inline-block;
            white-space: nowrap;
        }

        .hero-headline .intelligence {
            color: #FFFFFF;
        }

        .hero-headline .action {
            color: #2196F3;
        }

        .hero-headline .human-control {
            color: #FF6B6B;
        }

        .hero-subheading {
            font-size: clamp(1.25rem, 2.5vw, 1.75rem);
            color: rgba(255, 255, 255, 0.95);
            max-width: 850px;
            margin: 0 auto 2rem;
            line-height: 1.6;
            font-weight: 400;
        }

        .hero-description {
            font-size: clamp(1rem, 1.5vw, 1.125rem);
            color: rgba(255, 255, 255, 0.8);
            max-width: 750px;
            margin: 0 auto 3.5rem;
            line-height: 1.7;
        }

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

        .btn-primary {
            background: #2196F3;
            color: #FFFFFF;
            padding: 1.25rem 3rem;
            font-size: 1.25rem;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Work Sans', sans-serif;
            box-shadow: 0 8px 30px rgba(33, 150, 243, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary:hover {
            background: #1976D2;
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(33, 150, 243, 0.5);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #FFFFFF;
            padding: 1.25rem 3rem;
            font-size: 1.25rem;
            font-weight: 700;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Work Sans', sans-serif;
            backdrop-filter: blur(10px);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
        }

        /* Decorative gradient overlays */
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.5;
            }
        }

        /* About Section */
        .about-section {
            padding: 6rem 2rem;
            background: #FAFBFC;
            position: relative;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-intro {
            text-align: center;
            margin-bottom: 5rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .about-section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: #0D1B2A;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .about-section-subtitle {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            color: #1A1F2E;
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.7;
            font-weight: 400;
        }

        .about-description {
            font-size: clamp(1rem, 1.5vw, 1.125rem);
            color: #4B5563;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .triskele-principles {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .principle-card {
            background: #FFFFFF;
            border-radius: 16px;
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(13, 27, 42, 0.08);
            transition: all 0.4s ease;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .principle-card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .principle-card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .principle-card:nth-child(3) {
            animation-delay: 0.6s;
        }

        .principle-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(13, 27, 42, 0.15);
        }

        .principle-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, currentColor, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .principle-card:hover::before {
            opacity: 1;
        }

        .principle-card.intelligence {
            border-top: 4px solid #FFFFFF;
            color: #0D1B2A;
        }

        .principle-card.intelligence:hover {
            border-top-color: rgba(255, 255, 255, 0.9);
        }

        .principle-card.intelligence::before {
            color: rgba(255, 255, 255, 0.9);
        }

        .principle-card.action {
            border-top: 4px solid #2196F3;
            color: #0D1B2A;
        }

        .principle-card.action:hover {
            border-top-color: #2196F3;
        }

        .principle-card.action::before {
            color: #2196F3;
        }

        .principle-card.action .principle-title {
            color: #2196F3;
        }

        .principle-card.control {
            border-top: 4px solid #FF6B6B;
            color: #0D1B2A;
        }

        .principle-card.control .principle-title {
            color: #FF6B6B;
        }

        .principle-card.control:hover {
            border-top-color: #FF6B6B;
        }

        .principle-card.control::before {
            color: #FF6B6B;
        }

        .principle-icon {
            width: 100%;
            height: 200px;
            margin: 0 auto 1.5rem;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #F8F9FA;
            border-radius: 12px;
            overflow: hidden;
        }

        .principle-icon img,
        .principle-icon svg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .principle-icon svg {
            padding: 1.5rem;
            object-fit: contain;
        }

        .principle-card:hover .principle-icon img,
        .principle-card:hover .principle-icon svg {
            transform: scale(1.05);
        }

        .principle-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: #0D1B2A;
        }

        .principle-description {
            font-size: clamp(1rem, 1.3vw, 1.125rem);
            color: #4B5563;
            line-height: 1.7;
            font-weight: 400;
        }

        /* Decorative background elements */
        .about-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .about-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .about-container,
        .about-intro,
        .triskele-principles {
            position: relative;
            z-index: 1;
        }

        /* Services Section */
        .services-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #0D1B2A 0%, #1A1F2E 100%);
            position: relative;
            overflow: hidden;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .services-header {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .services-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .services-subtitle {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
            cursor: pointer;
        }

        .service-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .service-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .service-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .service-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .service-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: conic-gradient(from 0deg, transparent, rgba(33, 150, 243, 0.2), transparent);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.6s ease;
            pointer-events: none;
        }

        .service-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(33, 150, 243, 0.3);
            box-shadow: 0 12px 40px rgba(33, 150, 243, 0.2);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover::after {
            width: 300px;
            height: 300px;
            animation: spiralRotate 3s linear infinite;
        }

        @keyframes spiralRotate {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-icon svg {
            width: 100%;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon svg {
            transform: scale(1.1) rotate(5deg);
        }

        .service-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .service-description {
            font-size: clamp(1rem, 1.3vw, 1.125rem);
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            font-weight: 400;
            position: relative;
            z-index: 1;
        }

        .service-link {
            display: inline-block;
            margin-top: 1.5rem;
            color: #2196F3;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .service-link:hover {
            color: #42A5F5;
        }

        .service-link::after {
            content: '→';
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .service-link:hover::after {
            transform: translateX(5px);
        }

        /* Decorative background elements for Services */
        .services-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(33, 150, 243, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }

        .services-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }

        /* Capabilities Section */
        .capabilities-section {
            padding: 6rem 2rem;
            background: #FAFBFC;
            position: relative;
            overflow: hidden;
        }

        .capabilities-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .capabilities-header {
            text-align: center;
            margin-bottom: 5rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .capabilities-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: #0D1B2A;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .capabilities-subtitle {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            color: #1A1F2E;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

        .capabilities-modules {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            position: relative;
        }

        .capability-module {
            width: 100%;
            min-height: 400px;
            border-radius: 20px;
            background: #FFFFFF;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 3rem 2.5rem;
            text-align: center;
            position: relative;
            box-shadow: 0 8px 30px rgba(13, 27, 42, 0.1);
            transition: all 0.4s ease;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
            cursor: pointer;
        }

        .capability-module:nth-child(1) {
            animation-delay: 0.2s;
        }

        .capability-module:nth-child(2) {
            animation-delay: 0.4s;
        }

        .capability-module:nth-child(3) {
            animation-delay: 0.6s;
        }

        .capability-module::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border-radius: 24px;
            background: linear-gradient(45deg, transparent, currentColor, transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .capability-module:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 40px rgba(13, 27, 42, 0.2);
        }

        .capability-module:hover::before {
            opacity: 0.3;
        }

        .capability-module.intelligence {
            border: 4px solid rgba(255, 255, 255, 0.9);
        }

        .capability-module.intelligence::before {
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3));
        }

        .capability-module.action {
            border: 4px solid #2196F3;
        }

        .capability-module.action::before {
            background: linear-gradient(45deg, rgba(33, 150, 243, 0.3), #2196F3, rgba(33, 150, 243, 0.3));
        }

        .capability-module.control {
            border: 4px solid #FF6B6B;
        }

        .capability-module.control::before {
            background: linear-gradient(45deg, rgba(255, 107, 107, 0.3), #FF6B6B, rgba(255, 107, 107, 0.3));
        }

        /* Connection lines between modules */
        .capabilities-modules::before,
        .capabilities-modules::after {
            content: '';
            position: absolute;
            width: 2px;
            background: linear-gradient(to bottom, transparent, #E5E7EB, transparent);
            opacity: 0.5;
            z-index: 0;
        }

        .capability-icon {
            width: 100%;
            height: 200px;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
            flex-shrink: 0;
            border-radius: 12px;
            overflow: hidden;
            background: #F8F9FA;
        }

        .capability-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .capability-module:hover .capability-icon img {
            transform: scale(1.05);
        }

        .capability-module-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.5rem, 2vw, 1.75rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .capability-module.intelligence .capability-module-title {
            color: #0D1B2A;
        }

        .capability-module.action .capability-module-title {
            color: #2196F3;
        }

        .capability-module.control .capability-module-title {
            color: #FF6B6B;
        }

        .capability-features {
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 1rem;
            color: #4B5563;
            line-height: 1.8;
            position: relative;
            z-index: 1;
            width: 100%;
            text-align: left;
        }

        .capability-features li {
            margin-bottom: 0.75rem;
            position: relative;
            padding-left: 1.5rem;
            text-align: left;
        }

        .capability-features li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: #0D1B2A;
            font-weight: bold;
            font-size: 1.1em;
        }

        .capability-module.intelligence .capability-features li::before {
            color: #0D1B2A;
        }

        .capability-module.action .capability-features li::before {
            color: #2196F3;
        }

        .capability-module.control .capability-features li::before {
            color: #FF6B6B;
        }

        /* Decorative background elements */
        .capabilities-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }

        .capabilities-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }

        /* Case Studies Section */
        .case-studies-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #0D1B2A 0%, #1A1F2E 100%);
            position: relative;
            overflow: hidden;
        }

        .case-studies-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .case-studies-header {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .case-studies-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .case-studies-subtitle {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

        .case-studies-carousel {
            position: relative;
            overflow: hidden;
            margin-bottom: 3rem;
        }

        .case-studies-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .case-study-card {
            min-width: 100%;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .case-study-card.active {
            opacity: 1;
        }

        .case-study-quote {
            font-size: clamp(1.125rem, 1.8vw, 1.5rem);
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
            position: relative;
        }

        .case-study-quote::before {
            content: '"';
            font-size: 4rem;
            color: rgba(33, 150, 243, 0.3);
            position: absolute;
            top: -20px;
            left: -20px;
            font-family: Georgia, serif;
        }

        .case-study-info {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .case-study-logo {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-weight: 700;
            font-size: 1.25rem;
            color: #FFFFFF;
        }

        .case-study-details {
            flex: 1;
        }

        .case-study-company {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 0.25rem;
        }

        .case-study-role {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .case-study-service {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(33, 150, 243, 0.2);
            color: #2196F3;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        /* Navigation Controls */
        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .carousel-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #FFFFFF;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.25rem;
        }

        .carousel-btn:hover {
            background: rgba(33, 150, 243, 0.3);
            border-color: #2196F3;
            transform: scale(1.1);
        }

        .carousel-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        /* Triskele Navigation Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            position: relative;
            height: 80px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            position: absolute;
        }

        .carousel-dot.active {
            background: #2196F3;
            border-color: #2196F3;
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(33, 150, 243, 0.5);
        }

        .carousel-dot:hover {
            background: rgba(255, 255, 255, 0.5);
            transform: scale(1.2);
        }

        /* Triskele pattern for dots */
        .carousel-dot:nth-child(1) {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .carousel-dot:nth-child(1).active {
            transform: translateX(-50%) scale(1.3);
        }

        .carousel-dot:nth-child(2) {
            top: 50%;
            right: 20%;
            transform: translateY(-50%) rotate(120deg) translateY(-30px) rotate(-120deg);
        }

        .carousel-dot:nth-child(2).active {
            transform: translateY(-50%) rotate(120deg) translateY(-30px) rotate(-120deg) scale(1.3);
        }

        .carousel-dot:nth-child(3) {
            top: 50%;
            left: 20%;
            transform: translateY(-50%) rotate(240deg) translateY(-30px) rotate(-240deg);
        }

        .carousel-dot:nth-child(3).active {
            transform: translateY(-50%) rotate(240deg) translateY(-30px) rotate(-240deg) scale(1.3);
        }

        /* Decorative background elements */
        .case-studies-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(33, 150, 243, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }

        .case-studies-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }

        /* Contact Section */
        .contact-section {
            padding: 6rem 2rem;
            background: #FAFBFC;
            position: relative;
            overflow: hidden;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

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

        .contact-form-wrapper {
            background: #FFFFFF;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 8px 30px rgba(13, 27, 42, 0.1);
        }

        .contact-header {
            margin-bottom: 2.5rem;
        }

        .contact-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: #0D1B2A;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .contact-subtitle {
            font-size: clamp(1rem, 1.5vw, 1.125rem);
            color: #4B5563;
            line-height: 1.7;
        }

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

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-label {
            font-size: 0.95rem;
            font-weight: 600;
            color: #1A1F2E;
        }

        .form-input,
        .form-textarea,
        .form-select {
            padding: 1rem;
            border: 2px solid #E5E7EB;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Work Sans', sans-serif;
            color: #1A1F2E;
            background: #FFFFFF;
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: #2196F3;
            box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
        }

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

        .form-select {
            cursor: pointer;
        }

        .form-error {
            color: #FF6B6B;
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: none;
        }

        .form-error.show {
            display: block;
        }

        .form-input.error,
        .form-textarea.error,
        .form-select.error {
            border-color: #FF6B6B;
        }

        .form-submit {
            background: #2196F3;
            color: #FFFFFF;
            padding: 1.25rem 3rem;
            font-size: 1.125rem;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Work Sans', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 30px rgba(33, 150, 243, 0.3);
            margin-top: 0.5rem;
        }

        .form-submit:hover {
            background: #1976D2;
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(33, 150, 243, 0.4);
        }

        .form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .form-success {
            display: none;
            padding: 1.5rem;
            background: #10B981;
            color: #FFFFFF;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
            margin-top: 1rem;
        }

        .form-success.show {
            display: block;
        }


        /* Decorative background elements */
        .contact-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }

        .contact-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }

        /* Careers Section */
        .careers-section {
            padding: 6rem 2rem;
            background: #FAFBFC;
            position: relative;
            overflow: hidden;
        }

        .careers-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .careers-header {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .careers-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: #0D1B2A;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .careers-subtitle {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            color: #1A1F2E;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

        .careers-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 4rem;
            margin-bottom: 5rem;
        }

        .careers-hero-content {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .careers-hero-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(13, 27, 42, 0.15);
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
            animation-delay: 0.2s;
        }

        .careers-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .careers-hero-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(13, 27, 42, 0.1) 0%, rgba(33, 150, 243, 0.1) 100%);
        }

        .careers-content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }

        .careers-card {
            background: #FFFFFF;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 4px 20px rgba(13, 27, 42, 0.08);
            transition: all 0.4s ease;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
            position: relative;
            overflow: hidden;
        }

        .careers-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #2196F3, #FF6B6B);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .careers-card:hover::before {
            opacity: 1;
        }

        .careers-card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .careers-card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .careers-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(13, 27, 42, 0.15);
        }

        .careers-card-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            font-weight: 700;
            color: #0D1B2A;
            margin-bottom: 1.5rem;
        }

        .careers-card-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .careers-card-list li {
            padding: 0.75rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: #4B5563;
            line-height: 1.7;
            font-size: 1rem;
        }

        .careers-card-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #2196F3;
            font-weight: bold;
            font-size: 1.1em;
        }

        .careers-benefits {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 5rem;
        }

        .benefit-item {
            text-align: center;
            padding: 2.5rem 2rem;
            background: #FFFFFF;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(13, 27, 42, 0.06);
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
            position: relative;
        }

        .benefit-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .benefit-item:hover::after {
            opacity: 1;
        }

        .benefit-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .benefit-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .benefit-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(13, 27, 42, 0.12);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.2) 100%);
            border-radius: 16px;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .benefit-item:hover .benefit-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .benefit-icon svg {
            width: 100%;
            height: 100%;
        }

        .benefit-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: #0D1B2A;
            margin-bottom: 0.75rem;
            position: relative;
            z-index: 1;
        }

        .benefit-description {
            font-size: 0.95rem;
            color: #4B5563;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        .careers-image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 4rem;
        }

        .careers-image-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(13, 27, 42, 0.1);
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
            aspect-ratio: 4/3;
        }

        .careers-image-item:nth-child(1) {
            animation-delay: 0.3s;
        }

        .careers-image-item:nth-child(2) {
            animation-delay: 0.4s;
        }

        .careers-image-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .careers-image-item:hover img {
            transform: scale(1.05);
        }

        .careers-image-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(13, 27, 42, 0.2) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .careers-image-item:hover::after {
            opacity: 1;
        }

        /* Decorative background elements */
        .careers-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }

        .careers-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }

        .contact-illustration {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .contact-triskele {
            width: 300px;
            height: 300px;
            position: relative;
            animation: subtleRotate 8s linear infinite;
        }

        .contact-triskele svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 8px 24px rgba(33, 150, 243, 0.2));
        }

        /* Footer */
        .footer {
            background: #0D1B2A;
            color: #FFFFFF;
            padding: 3rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: #FFFFFF;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            transition: opacity 0.3s ease;
        }

        .footer-logo:hover {
            opacity: 0.8;
        }

        .footer-logo-icon {
            width: 40px;
            height: 40px;
        }

        .footer-logo-icon svg {
            width: 100%;
            height: 100%;
        }

        .footer-social {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .footer-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: #FFFFFF;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .footer-social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .footer-social-link svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .footer-copyright {
            width: 100%;
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .footer {
                padding: 2.5rem 1.5rem 1.5rem;
            }

            .footer-container {
                flex-direction: column;
                text-align: center;
            }

            .footer-logo {
                font-size: 1.25rem;
            }

            .footer-logo-icon {
                width: 32px;
                height: 32px;
            }

            .footer-social {
                gap: 1rem;
            }

            .footer-social-link {
                width: 40px;
                height: 40px;
            }

            .footer-copyright {
                padding-top: 1.5rem;
                margin-top: 1.5rem;
                font-size: 0.85rem;
            }
        }

        /* Responsive Design */

        @media (max-width: 768px) {
            .triskele-symbol {
                width: 150px;
                height: 150px;
            }

            .triskele-container::before {
                width: 180px;
                height: 180px;
            }

            .triskele-container::after {
                width: 210px;
                height: 210px;
            }

            .hero-headline {
                font-size: 2.5rem;
                flex-direction: column;
                gap: 0.1em;
            }

            .hero-headline span {
                display: block;
            }

            .hero-subheading {
                font-size: 1.25rem;
            }

            .principle-icon {
                height: 160px;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                padding: 1rem 2rem;
                font-size: 1.125rem;
            }
        }

        @media (max-width: 480px) {
            .triskele-symbol {
                width: 120px;
                height: 120px;
            }

            .triskele-container::before {
                width: 144px;
                height: 144px;
            }

            .triskele-container::after {
                width: 168px;
                height: 168px;
            }

            .hero-headline {
                font-size: 2rem;
                flex-direction: column;
            }

            .hero-headline span {
                display: block;
            }

            .about-section {
                padding: 4rem 1.5rem;
            }

            .about-intro {
                margin-bottom: 3rem;
            }

            .triskele-principles {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 3rem;
            }

            .principle-card {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .about-section {
                padding: 3rem 1rem;
            }

            .principle-card {
                padding: 1.5rem 1rem;
            }

            .services-section {
                padding: 4rem 1.5rem;
            }

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

            .service-card {
                padding: 2rem 1.5rem;
            }

            .capabilities-section {
                padding: 4rem 1.5rem;
            }

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

            .capability-module {
                min-height: auto;
            }

            .case-studies-section {
                padding: 4rem 1.5rem;
            }

            .case-study-card {
                padding: 2rem 1.5rem;
            }

            .carousel-dots {
                height: 100px;
            }

            .carousel-dot:nth-child(2) {
                right: 15%;
            }

            .carousel-dot:nth-child(3) {
                left: 15%;
            }

            .contact-section {
                padding: 4rem 1.5rem;
            }

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

            .contact-form-wrapper {
                padding: 2rem 1.5rem;
            }

            .contact-triskele {
                width: 250px;
                height: 250px;
            }

            .careers-section {
                padding: 4rem 1.5rem;
            }

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

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

            .careers-benefits {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .careers-image-grid {
                grid-template-columns: 1fr;
            }
        }
