:root {
            /* Primary Brand Colors */
            --primary: #53A5CB; /* Innovation Sky - primary brand color */
            --secondary: #6D2E46; /* Scholar's Velvet - secondary brand color */
            
            /* Supporting Colors */
            --morning-mist: #E8F4F8; /* Soft backgrounds */
            --harbor-green: #4A9B8E; /* Accent for success/trust */
            --sandy-dune: #D4A574; /* Warm accent */
            --chestnut-bark: #8B6F47; /* Earthy accent */
            
            /* Neutral Palette for Readability */
            --text-dark: #2C3E50; /* Softer than pure black */
            --text-body: #4A5568; /* Body text - easier on eyes */
            --text-light: #718096; /* Secondary text */
            --bg-white: #FFFFFF;
            --bg-light: #F7FAFC; /* Very light blue-gray */
            --border-light: #E2E8F0;
            
            /* Gradients */
            --gradient-primary: linear-gradient(135deg, #53A5CB 0%, #4A9B8E 100%);
            --gradient-accent: linear-gradient(135deg, #6D2E46 0%, #8B6F47 100%);
        }

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

        body {
            font-family: 'Manrope', sans-serif;
            color: var(--text-body);
            background: var(--bg-light);
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        }

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

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .logo img {
            height: 40px;  /* Adjust this value to make logo smaller or larger */
            width: auto;   /* Maintains aspect ratio */
            display: block;
        }

        .logo:hover {
            opacity: 0.8;
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s;
            cursor: pointer;
        }

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

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

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

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

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

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

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            margin: 3px 0;
            transition: all 0.3s;
            border-radius: 3px;
        }

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

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

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

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 3rem 4rem;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #53A5CB 0%, #4A9B8E 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

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

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 4.5rem;
            line-height: 1.1;
            color: white;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            animation: slideUp 0.8s ease-out;
        }

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

        .hero-content .tagline {
            font-size: 1.3rem;
            color: var(--accent);
            margin-bottom: 2rem;
            font-weight: 600;
            animation: slideUp 0.8s ease-out 0.2s backwards;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 3rem;
            line-height: 1.8;
            animation: slideUp 0.8s ease-out 0.4s backwards;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            animation: slideUp 0.8s ease-out 0.6s backwards;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            font-family: 'Manrope', sans-serif;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 4px 15px rgba(83, 165, 203, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(83, 165, 203, 0.35);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: white;
        }

        .hero-visual {
            position: relative;
            animation: fadeIn 1s ease-out 0.3s backwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-1);
        }

        .hero-card h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .hero-stats {
            display: grid;
            gap: 1.5rem;
        }

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

        .stat-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            color: white;
            font-size: 1.2rem;
        }

        .stat-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
        }

        /* Section Styles */
        .section {
            padding: 6rem 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

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

        .service-card {
            background: var(--bg-white);
            border-radius: 16px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border-light);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }

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

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
            border-color: var(--primary);
        }

        .service-card:nth-child(2)::before {
            background: var(--gradient-accent);
        }

        .service-card:nth-child(3) .service-icon {
            background: linear-gradient(135deg, #6D2E46 0%, #8B6F47 100%);
        }

        .service-card:nth-child(4) .service-icon {
            background: linear-gradient(135deg, #4A9B8E 0%, #53A5CB 100%);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            transform: rotate(-5deg);
            transition: transform 0.3s;
        }

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

        .service-card h3 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .service-card p {
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .service-link {
            color: var(--primary);
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s;
        }

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

        /* Clients Section */
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .client-card {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
            border: 1px solid var(--border-light);
        }

        .client-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: var(--gradient-primary);
            opacity: 0.03;
            border-radius: 50%;
            transform: translate(50%, 50%);
            transition: all 0.4s;
        }

        .client-card:hover::after {
            transform: translate(30%, 30%) scale(1.5);
            opacity: 0.06;
        }

        .client-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
        }

        .client-number {
            font-family: 'Space Mono', monospace;
            font-size: 3rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .client-card:nth-child(2) .client-number {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .client-card h3 {
            font-size: 1.6rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .client-card p {
            color: var(--text-body);
            line-height: 1.8;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .about-text p {
            color: var(--text-body);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-highlights {
            display: grid;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .highlight-item {
            display: flex;
            gap: 1rem;
            align-items: start;
        }

        .highlight-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
            font-weight: 900;
        }

        .highlight-text {
            flex: 1;
        }

        .highlight-text h4 {
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 0.3rem;
        }

        .highlight-text p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin: 0;
        }

        .about-visual {
            position: relative;
            background: var(--gradient-primary);
            border-radius: 20px;
            padding: 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 500px;
        }

        .about-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 10px,
                    rgba(255, 255, 255, 0.03) 10px,
                    rgba(255, 255, 255, 0.03) 20px
                );
            animation: slide 20s linear infinite;
        }

        .values-content {
            position: relative;
            z-index: 1;
            color: white;
            text-align: center;
            max-width: 600px;
        }

        .values-icon {
            font-size: 4rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .values-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
        }

        .values-text {
            font-size: 1.15rem;
            line-height: 1.9;
            opacity: 0.95;
        }

        /* Leadership Team Section */
        .leadership-section {
            padding: 6rem 3rem;
            background: var(--morning-mist);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
            margin-top: 3rem;
        }

        .team-member {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            border: 1px solid var(--border-light);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
        }

        .team-photo {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 4rem;
            color: white;
            overflow: hidden;
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-member h3 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.6rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .team-role {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
        }

        .team-bio {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-body);
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .team-linkedin {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .team-linkedin:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }

        .linkedin-icon {
            font-size: 1.2rem;
        }

        /* Hero Image Sections */
        .hero-image-section {
            position: relative;
            height: 500px;
            overflow: hidden;
            border-radius: 24px;
            margin: 4rem auto;
            max-width: 1400px;
        }

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

        .hero-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(44, 62, 80, 0.9) 0%, transparent 100%);
            padding: 3rem;
            color: white;
        }

        .hero-image-overlay h3 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 2rem;
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }

        .hero-image-overlay p {
            font-size: 1.1rem;
            opacity: 0.95;
            max-width: 700px;
        }

        @keyframes slide {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(20px) translateY(20px); }
        }

        /* Contact Section */
        .contact-container {
            background: white;
            border-radius: 24px;
            padding: 4rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-form {
            display: grid;
            gap: 1.5rem;
        }

        .form-group {
            display: grid;
            gap: 0.5rem;
        }

        .form-group label {
            font-weight: 700;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            padding: 1rem;
            border: 2px solid var(--border-light);
            border-radius: 10px;
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
            color: var(--text-dark);
            background: var(--bg-white);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(83, 165, 203, 0.1);
        }

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

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

        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 4rem 3rem 2rem;
            margin-top: 6rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        .footer-links h4 {
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .footer-links ul {
            list-style: none;
            display: grid;
            gap: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
            cursor: pointer;
        }

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

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-container {
                padding: 1rem 1.5rem;
            }

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

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                max-width: 300px;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 5rem 2rem 2rem;
                gap: 2rem;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease-in-out;
                z-index: 999;
            }

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

            .nav-links a {
                font-size: 1.1rem;
                padding: 0.5rem 0;
            }

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

            .hero-content h1 {
                font-size: 2.5rem;
            }

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

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

            .about-content {
                grid-template-columns: 1fr;
            }

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

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

        /* Service Detail Styles */
        .problem-solution-block {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 2rem;
            border-left: 6px solid var(--primary);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .solution-block {
            border-left-color: var(--harbor-green);
            background: var(--morning-mist);
        }

        .ps-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--primary);
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .solution-block .ps-label {
            color: var(--harbor-green);
        }

        .ps-content {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-body);
        }

        .solutions-header {
            text-align: center;
            margin: 4rem 0 3rem;
        }

        .solutions-header h3 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 2.2rem;
            color: var(--primary);
            letter-spacing: -0.02em;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .solution-card {
            background: var(--bg-white);
            border-radius: 16px;
            padding: 2.5rem;
            border: 1px solid var(--border-light);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .solution-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
            border-color: var(--primary);
        }

        .solution-card:hover::before {
            opacity: 0.02;
        }

        .solution-number {
            font-family: 'Space Mono', monospace;
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            line-height: 1;
        }

        .solution-card:nth-child(even) .solution-number {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .solution-card h4 {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-weight: 800;
            line-height: 1.3;
        }

        .solution-card p {
            color: var(--text-body);
            line-height: 1.8;
            font-size: 1rem;
        }

        .service-cta {
            background: var(--gradient-primary);
            border-radius: 24px;
            padding: 4rem;
            text-align: center;
            color: white;
            margin-top: 4rem;
        }

        .service-cta h3 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .service-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.85);
        }

        /* D2D Framework Stages */
        .d2d-stages {
            display: grid;
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        .stage-card {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 3rem;
            border-left: 6px solid var(--primary);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: all 0.3s;
            border: 1px solid var(--border-light);
            border-left-width: 6px;
        }

        .stage-card:hover {
            transform: translateX(8px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
        }

        .stage-card:nth-child(2) {
            border-left-color: var(--secondary);
        }

        .stage-card:nth-child(3) {
            border-left-color: var(--harbor-green);
        }

        .stage-card:nth-child(4) {
            border-left-color: var(--sandy-dune);
        }

        .stage-card:nth-child(5) {
            border-left-color: var(--chestnut-bark);
        }

        .stage-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .stage-number {
            font-family: 'Space Mono', monospace;
            font-size: 3.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            flex-shrink: 0;
        }

        .stage-card:nth-child(2) .stage-number {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stage-card:nth-child(3) .stage-number {
            background: linear-gradient(135deg, #4A9B8E 0%, #53A5CB 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stage-card:nth-child(4) .stage-number {
            background: linear-gradient(135deg, #D4A574 0%, #4A9B8E 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stage-info h3 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 0.3rem;
            letter-spacing: 0.05em;
        }

        .stage-tagline {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 600;
            margin: 0;
        }

        .stage-description {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-body);
            margin-bottom: 1.5rem;
        }

        .stage-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.75rem;
        }

        .stage-detail-item {
            background: var(--morning-mist);
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-size: 0.95rem;
            color: var(--text-dark);
            font-weight: 500;
            border: 1px solid rgba(83, 165, 203, 0.2);
            transition: all 0.2s;
        }

        .stage-detail-item:hover {
            background: rgba(83, 165, 203, 0.12);
            border-color: var(--primary);
        }

        /* Landing Page Sections */
        .problem-section {
            background: white;
            padding: 6rem 3rem;
        }

        .inflection-content {
            max-width: 900px;
            margin: 0 auto;
        }

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

        .large-text {
            font-size: 1.3rem;
            line-height: 1.9;
            color: var(--text-body);
            margin-bottom: 1.5rem;
        }

        .emphasis-text {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .comparison-block {
            background: var(--morning-mist);
            padding: 2.5rem;
            border-radius: 16px;
            border-left: 4px solid var(--primary);
            margin-bottom: 2.5rem;
        }

        .comparison-block p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-body);
            margin-bottom: 1.5rem;
        }

        .comparison-block p:last-child {
            margin-bottom: 0;
        }

        .callout-text {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--secondary);
            text-align: center;
            padding: 1.5rem 0;
            font-style: italic;
        }

        .mission-statement {
            text-align: center;
            margin-top: 3rem;
        }

        .mission-statement p {
            font-family: 'Archivo Black', sans-serif;
            font-size: 2rem;
            color: var(--primary);
            letter-spacing: -0.01em;
        }

        .solution-section {
            padding: 6rem 3rem;
            background: var(--morning-mist);
        }

        .solution-intro {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .solution-intro p {
            font-size: 1.2rem;
            line-height: 1.9;
            color: var(--text-body);
            margin-bottom: 1.5rem;
        }

        .tagline-emphasis {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            font-style: italic;
        }

        .pillars-section {
            padding: 6rem 3rem;
            background: var(--bg-white);
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pillar-card {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid var(--border-light);
            border-top: 4px solid var(--primary);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }

        .pillar-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
        }

        .pillar-card:nth-child(2) {
            border-top-color: var(--secondary);
        }

        .pillar-card:nth-child(3) {
            border-top-color: var(--harbor-green);
        }

        .pillar-card:nth-child(4) {
            border-top-color: var(--chestnut-bark);
        }

        .pillar-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .pillar-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.75rem;
        }

        .pillar-card:nth-child(2) .pillar-label {
            color: var(--secondary);
        }

        .pillar-card:nth-child(3) .pillar-label {
            color: var(--harbor-green);
        }

        .pillar-card:nth-child(4) .pillar-label {
            color: var(--chestnut-bark);
        }

        .pillar-card h3 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.8rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .pillar-card p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-body);
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .pillar-link {
            color: var(--primary);
            font-weight: 700;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s;
        }

        .pillar-card:hover .pillar-link {
            gap: 1rem;
        }

        .home-cta {
            background: var(--gradient-primary);
            border-radius: 24px;
            padding: 5rem 3rem;
            text-align: center;
            color: white;
            max-width: 1000px;
            margin: 0 auto;
        }

        .home-cta h2 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .home-cta p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .btn-large {
            padding: 1.25rem 3rem;
            font-size: 1.1rem;
        }

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

            .home-cta {
                padding: 3rem 2rem;
            }

            .home-cta h2 {
                font-size: 2rem;
            }

            .large-text {
                font-size: 1.1rem;
            }

            .emphasis-text {
                font-size: 1.2rem;
            }

            .callout-text {
                font-size: 1.15rem;
            }

            .mission-statement p {
                font-size: 1.5rem;
            }
        }

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

            .problem-solution-block {
                padding: 2rem;
            }

            .service-cta {
                padding: 2.5rem;
            }

            .service-cta h3 {
                font-size: 1.8rem;
            }

            .stage-header {
                flex-direction: column;
                align-items: flex-start;
            }

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

            .stage-details {
                grid-template-columns: 1fr;
            }
        }
        /* Resource Cards */
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .resource-card {
            background: var(--bg-white);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid var(--border-light);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .resource-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }

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

        .resource-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
            border-color: var(--primary);
        }

        .resource-type-badge {
            display: inline-block;
            padding: 0.4rem 0.8rem;
            background: var(--morning-mist);
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-radius: 6px;
            margin-bottom: 1rem;
            font-family: 'Space Mono', monospace;
        }

        .resource-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .resource-card h3 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .resource-description {
            font-size: 0.95rem;
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .resource-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .resource-tag {
            padding: 0.3rem 0.7rem;
            background: var(--bg-light);
            color: var(--text-light);
            font-size: 0.75rem;
            border-radius: 4px;
            border: 1px solid var(--border-light);
            font-weight: 500;
        }

        .resource-tag.service-tag {
            background: rgba(83, 165, 203, 0.1);
            color: var(--primary);
            border-color: var(--primary);
        }

        .resource-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
            align-self: flex-start;
        }

        .resource-cta:hover {
            background: var(--secondary);
            transform: translateX(3px);
        }

        .resource-section {
            margin-bottom: 4rem;
        }

        .resource-section-header {
            margin-bottom: 2rem;
        }

        .resource-section-header h2 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .resource-section-header p {
            color: var(--text-light);
            font-size: 1rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .resources-grid {
                grid-template-columns: 1fr;
            }
        }
