/* === index.html === */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Modern Dark Palette */
            --bg-primary: #0B0F19;
            --bg-surface: #111827;
            --text-primary: #E5E7EB;
            --text-muted: #9CA3AF;
            --border-color: #1F2937;
            --accent-primary: #4ECAEA;
            --accent-hover: #38b8d8;
            
            /* Typography Scale */
            --font-h1: 52px;
            --font-h2: 32px;
            --font-h3: 20px;
            --font-body: 18px;
            
            /* Spacing System (8pt) */
            --space-xs: 8px;
            --space-sm: 16px;
            --space-md: 24px;
            --space-lg: 32px;
            --space-xl: 48px;
            --space-2xl: 64px;
            --space-3xl: 80px;
            
            /* Container */
            --container-max: 1200px;
            --container-padding: 32px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: var(--font-body);
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-primary);
            overflow-x: hidden;
        }

        /* Navigation - Sticky with Frosted Glass */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(11, 15, 25, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }

        .nav-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: var(--space-md) var(--container-padding);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent-primary);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            gap: var(--space-lg);
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--accent-primary);
        }

		/* Mobile menu active state */
		@media (max-width: 768px) {
    		.nav-links {
  		    	position: fixed;
 		        top: 73px;
 		        right: 0;
 		        background: var(--bg-surface);
		        flex-direction: column;
		        padding: var(--space-lg);
        		border-left: 1px solid var(--border-color);
        		border-bottom: 1px solid var(--border-color);
        		min-width: 200px;
        		transform: translateX(100%);
        		transition: transform 0.3s ease;
        		z-index: 999;
    		}
    
    		.nav-links.mobile-active {
        		transform: translateX(0);
    		}
		}
		
        .btn-primary {
            background: var(--accent-primary);
            color: var(--bg-primary);
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.2s;
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(78, 202, 234, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--accent-primary);
            padding: 12px 24px;
            border: 2px solid var(--accent-primary);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.2s;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: var(--accent-primary);
            color: var(--bg-primary);
            transform: translateY(-1px);
        }

        /* Hero - Two Column */
        .hero {
            margin-top: 73px;
            padding: var(--space-3xl) var(--container-padding);
            background: var(--bg-primary);
        }

        .hero-container {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-2xl);
            align-items: center;
        }

        .hero-content h1 {
            font-size: var(--font-h1);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: var(--space-md);
            color: var(--text-primary);
        }

        .hero-content p {
            font-size: 20px;
            line-height: 1.6;
            color: var(--text-muted);
            margin-bottom: var(--space-sm);
            max-width: 70ch;
        }

        .hero-content .proof-line {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: var(--space-lg);
        }

        .hero-buttons {
            display: flex;
            gap: var(--space-sm);
            flex-wrap: wrap;
        }

        .hero-visual {
            position: relative;
            height: 400px;
            background: linear-gradient(135deg, rgba(78, 202, 234, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-visual::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(78, 202, 234, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        /* Trust Bar */
        .trust-bar {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: var(--space-lg) var(--container-padding);
            display: flex;
            justify-content: center;
            gap: var(--space-2xl);
            flex-wrap: wrap;
            border-bottom: 1px solid var(--border-color);
        }

        .trust-item {
            text-align: center;
        }

        .trust-item .label {
            font-size: 14px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .trust-item .value {
            font-size: 18px;
            color: var(--accent-primary);
            font-weight: 600;
            margin-top: 4px;
        }

        /* Section Container */
        section {
            padding: var(--space-3xl) var(--container-padding);
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
        }

        .section-title {
            font-size: var(--font-h2);
            font-weight: 700;
            line-height: 1.2;
            text-align: center;
            margin-bottom: var(--space-2xl);
            color: var(--text-primary);
        }

        /* Card Grid */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: var(--space-md);
        }

        .card {
            background: var(--bg-surface);
            padding: var(--space-lg);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }

        .card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-primary);
            box-shadow: 0 12px 32px rgba(78, 202, 234, 0.15);
        }

        .card h3 {
            font-size: var(--font-h3);
            line-height: 1.3;
            margin-bottom: var(--space-sm);
            color: var(--text-primary);
        }

        .card p {
            color: var(--text-muted);
            line-height: 1.6;
        }

        .card.highlight h3 {
            color: var(--accent-primary);
        }

        /* Services Preview */
        .services-preview {
            background: var(--bg-primary);
        }

        /* Who We Work With */
        .clients {
            background: var(--bg-surface);
        }

        .client-card {
            background: var(--bg-primary);
            padding: var(--space-lg);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.3s;
        }

        .client-card:hover {
            border-color: var(--accent-primary);
            transform: translateY(-4px);
        }

        .client-card h3 {
            font-size: var(--font-h3);
            color: var(--text-primary);
            margin-bottom: var(--space-xs);
        }

        .client-card p {
            font-size: 16px;
            color: var(--text-muted);
        }

        /* How It Works */
        .how-it-works {
            background: var(--bg-primary);
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-md);
            max-width: 900px;
            margin: 0 auto;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: var(--accent-primary);
            color: var(--bg-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 20px;
            margin: 0 auto var(--space-sm);
        }

        .step h3 {
            font-size: 18px;
            color: var(--text-primary);
            margin-bottom: var(--space-xs);
        }

        .step p {
            font-size: 16px;
            color: var(--text-muted);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--accent-primary) 0%, #38b8d8 100%);
            text-align: center;
            padding: var(--space-2xl) var(--container-padding);
        }

        .cta-section h2 {
            font-size: var(--font-h2);
            color: var(--bg-primary);
            margin-bottom: var(--space-sm);
        }

        .cta-section p {
            font-size: 20px;
            color: var(--bg-primary);
            opacity: 0.9;
            margin-bottom: var(--space-md);
        }

        .cta-section .btn-primary {
            background: var(--bg-primary);
            color: var(--accent-primary);
        }

        .cta-section .btn-primary:hover {
            background: var(--bg-surface);
        }

        /* Footer */
        footer {
            background: var(--bg-primary);
            color: var(--text-primary);
            padding: var(--space-2xl) var(--container-padding) var(--space-lg);
            border-top: 1px solid var(--border-color);
        }

        .footer-content {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: var(--space-2xl);
            margin-bottom: var(--space-lg);
        }

        .footer-section h3 {
            color: var(--accent-primary);
            margin-bottom: var(--space-sm);
            font-size: 18px;
        }

        .footer-section p {
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 16px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: var(--space-xs);
        }

        .footer-section a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
            font-size: 16px;
        }

        .footer-section a:hover {
            color: var(--accent-primary);
        }

        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-top: var(--space-md);
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--text-muted);
            font-size: 14px;
        }

        /* Mobile Menu */
        .mobile-menu-button {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-primary);
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            :root {
                --font-h1: 36px;
                --font-h2: 28px;
                --container-padding: 24px;
            }

            .mobile-menu-button {
                display: block;
            }

            .hero-container {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                height: 250px;
            }

            .trust-bar {
                gap: var(--space-lg);
            }

            .card-grid {
                grid-template-columns: 1fr;
            }

            .steps-container {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
        }

        html {
            scroll-behavior: smooth;
        }
    

/* === about.html === */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Modern Dark Palette */
            --bg-primary: #0B0F19;
            --bg-surface: #111827;
            --text-primary: #E5E7EB;
            --text-muted: #9CA3AF;
            --border-color: #1F2937;
            --accent-primary: #4ECAEA;
            --accent-hover: #38b8d8;
            
            /* Typography Scale */
            --font-h1: 52px;
            --font-h2: 32px;
            --font-h3: 20px;
            --font-body: 18px;
            
            /* Spacing System (8pt) */
            --space-xs: 8px;
            --space-sm: 16px;
            --space-md: 24px;
            --space-lg: 32px;
            --space-xl: 48px;
            --space-2xl: 64px;
            --space-3xl: 80px;
            
            /* Container */
            --container-max: 1200px;
            --container-padding: 32px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: var(--font-body);
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-primary);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(11, 15, 25, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }

        .nav-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: var(--space-md) var(--container-padding);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent-primary);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            gap: var(--space-lg);
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--accent-primary);
        }
		
		/* Mobile menu active state */
		@media (max-width: 768px) {
    		.nav-links {
  		    	position: fixed;
 		        top: 73px;
 		        right: 0;
 		        background: var(--bg-surface);
		        flex-direction: column;
		        padding: var(--space-lg);
        		border-left: 1px solid var(--border-color);
        		border-bottom: 1px solid var(--border-color);
        		min-width: 200px;
        		transform: translateX(100%);
        		transition: transform 0.3s ease;
        		z-index: 999;
    		}
    
    		.nav-links.mobile-active {
        		transform: translateX(0);
    		}
		}

        .btn-primary {
            background: var(--accent-primary);
            color: var(--bg-primary);
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.2s;
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(78, 202, 234, 0.3);
        }

        /* Page Header */
        .page-header {
            margin-top: 73px;
            padding: var(--space-3xl) var(--container-padding) var(--space-2xl);
            text-align: center;
            background: var(--bg-primary);
        }

        .page-header h1 {
            font-size: var(--font-h1);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: var(--space-sm);
            color: var(--text-primary);
        }

        .page-header p {
            font-size: 20px;
            color: var(--text-muted);
            max-width: 70ch;
            margin: 0 auto;
        }

        /* Section Container */
        section {
            padding: var(--space-3xl) var(--container-padding);
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
        }

        .section-title {
            font-size: var(--font-h2);
            font-weight: 700;
            line-height: 1.2;
            text-align: center;
            margin-bottom: var(--space-2xl);
            color: var(--text-primary);
        }

        /* Profile Module */
        .profile {
            background: var(--bg-surface);
        }

        .profile-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: var(--space-xl);
            align-items: start;
        }

        .profile-avatar {
            width: 300px;
            height: 100%;
            background: linear-gradient(135deg, rgba(78, 202, 234, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
            border-radius: 12px;
            border: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
            font-weight: 700;
            color: var(--accent-primary);
        }

        .profile-info h2 {
            font-size: var(--font-h2);
            color: var(--text-primary);
            margin-bottom: var(--space-xs);
        }

        .profile-location {
            color: var(--text-muted);
            font-size: 16px;
            margin-bottom: var(--space-sm);
        }

        .profile-credentials {
            display: flex;
            gap: var(--space-sm);
            margin-bottom: var(--space-md);
            flex-wrap: wrap;
        }

        .credential-badge {
            padding: 8px 16px;
            background: rgba(78, 202, 234, 0.1);
            color: var(--accent-primary);
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid rgba(78, 202, 234, 0.3);
        }

        .profile-bio {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: var(--font-body);
        }

        .linkedin-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: var(--space-md);
            padding: 12px 24px;
            background: #0077B5;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.2s;
        }

        .linkedin-button:hover {
            background: #006399;
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(0, 119, 181, 0.3);
        }

        .linkedin-button svg {
            width: 20px;
            height: 20px;
        }

        /* What You Can Expect */
        .expectations {
            background: var(--bg-primary);
        }

        .expectations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-md);
        }

        .expectation-card {
            background: var(--bg-surface);
            padding: var(--space-lg);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }

        .expectation-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-primary);
            box-shadow: 0 12px 32px rgba(78, 202, 234, 0.15);
        }

        .expectation-card h3 {
            font-size: var(--font-h3);
            color: var(--accent-primary);
            margin-bottom: var(--space-sm);
        }

        .expectation-card p {
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* My Approach */
        .approach {
            background: var(--bg-surface);
        }

        .approach-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: var(--space-md);
        }

        .approach-card {
            background: var(--bg-primary);
            padding: var(--space-lg);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.3s;
        }

        .approach-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-primary);
        }

        .approach-icon {
            width: 56px;
            height: 56px;
            background: rgba(78, 202, 234, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-sm);
            font-size: 24px;
        }

        .approach-card h3 {
            font-size: var(--font-h3);
            color: var(--text-primary);
            margin-bottom: var(--space-xs);
        }

        .approach-card p {
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 16px;
        }

        /* Week One */
        .week-one {
            background: var(--bg-primary);
        }

        .week-one-container {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--bg-surface);
            padding: var(--space-xl);
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }

        .week-one-container h2 {
            font-size: var(--font-h2);
            color: var(--text-primary);
            margin-bottom: var(--space-md);
            text-align: center;
        }

        .week-one-list {
            list-style: none;
        }

        .week-one-list li {
            padding: var(--space-sm) 0;
            padding-left: var(--space-lg);
            position: relative;
            color: var(--text-muted);
            line-height: 1.8;
            font-size: var(--font-body);
        }

        .week-one-list li:before {
            content: "→";
            color: var(--accent-primary);
            position: absolute;
            left: 0;
            font-weight: 700;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--accent-primary) 0%, #38b8d8 100%);
            text-align: center;
            padding: var(--space-2xl) var(--container-padding);
        }

        .cta-section h2 {
            font-size: var(--font-h2);
            color: var(--bg-primary);
            margin-bottom: var(--space-sm);
        }

        .cta-section p {
            font-size: 20px;
            color: var(--bg-primary);
            opacity: 0.9;
            margin-bottom: var(--space-md);
        }

        .cta-section .btn-primary {
            background: var(--bg-primary);
            color: var(--accent-primary);
        }

        .cta-section .btn-primary:hover {
            background: var(--bg-surface);
        }

        /* Footer */
        footer {
            background: var(--bg-primary);
            color: var(--text-primary);
            padding: var(--space-2xl) var(--container-padding) var(--space-lg);
            border-top: 1px solid var(--border-color);
        }

        .footer-content {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: var(--space-2xl);
            margin-bottom: var(--space-lg);
        }

        .footer-section h3 {
            color: var(--accent-primary);
            margin-bottom: var(--space-sm);
            font-size: 18px;
        }

        .footer-section p {
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 16px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: var(--space-xs);
        }

        .footer-section a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
            font-size: 16px;
        }

        .footer-section a:hover {
            color: var(--accent-primary);
        }

        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-top: var(--space-md);
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--text-muted);
            font-size: 14px;
        }

        /* Mobile Menu */
        .mobile-menu-button {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-primary);
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            :root {
                --font-h1: 36px;
                --font-h2: 28px;
                --container-padding: 24px;
            }

            .mobile-menu-button {
                display: block;
            }

            .profile-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .profile-avatar {
                width: 300px;
                margin: 0 auto;
            }

            .profile-credentials {
                justify-content: center;
            }

            .expectations-grid,
            .approach-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
        }

        html {
            scroll-behavior: smooth;
        }
    

/* === contact.html === */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Modern Dark Palette */
            --bg-primary: #0B0F19;
            --bg-surface: #111827;
            --text-primary: #E5E7EB;
            --text-muted: #9CA3AF;
            --border-color: #1F2937;
            --accent-primary: #4ECAEA;
            --accent-hover: #38b8d8;
            
            /* Typography Scale */
            --font-h1: 52px;
            --font-h2: 32px;
            --font-h3: 20px;
            --font-body: 18px;
            
            /* Spacing System (8pt) */
            --space-xs: 8px;
            --space-sm: 16px;
            --space-md: 24px;
            --space-lg: 32px;
            --space-xl: 48px;
            --space-2xl: 64px;
            --space-3xl: 80px;
            
            /* Container */
            --container-max: 1200px;
            --container-padding: 32px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: var(--font-body);
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-primary);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(11, 15, 25, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }

        .nav-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: var(--space-md) var(--container-padding);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent-primary);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            gap: var(--space-lg);
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--accent-primary);
        }

		/* Mobile menu active state */
		@media (max-width: 768px) {
    		.nav-links {
  		    	position: fixed;
 		        top: 73px;
 		        right: 0;
 		        background: var(--bg-surface);
		        flex-direction: column;
		        padding: var(--space-lg);
        		border-left: 1px solid var(--border-color);
        		border-bottom: 1px solid var(--border-color);
        		min-width: 200px;
        		transform: translateX(100%);
        		transition: transform 0.3s ease;
        		z-index: 999;
    		}
    
    		.nav-links.mobile-active {
        		transform: translateX(0);
    		}
		}
		
        .btn-primary {
            background: var(--accent-primary);
            color: var(--bg-primary);
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.2s;
            display: inline-block;
        }
		
        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(78, 202, 234, 0.3);
        }

        /* Page Header */
        .page-header {
            margin-top: 73px;
            padding: var(--space-3xl) var(--container-padding) var(--space-2xl);
            text-align: center;
            background: var(--bg-primary);
        }

        .page-header h1 {
            font-size: var(--font-h1);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: var(--space-sm);
            color: var(--text-primary);
        }

        .page-header p {
            font-size: 20px;
            color: var(--text-muted);
            max-width: 70ch;
            margin: 0 auto;
        }

        /* Section Container */
        section {
            padding: var(--space-3xl) var(--container-padding);
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
        }

        /* Two Column Layout */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: var(--space-2xl);
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Quick Contact */
        .quick-contact {
            background: var(--bg-surface);
            padding: var(--space-xl);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            height: fit-content;
        }

        .quick-contact h2 {
            font-size: var(--font-h3);
            color: var(--text-primary);
            margin-bottom: var(--space-md);
        }

        .contact-method {
            padding: var(--space-md) 0;
            border-bottom: 1px solid var(--border-color);
        }

        .contact-method:last-child {
            border-bottom: none;
        }

        .contact-method h3 {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: var(--space-xs);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        .contact-method a {
            color: var(--accent-primary);
            text-decoration: none;
            font-size: var(--font-body);
            font-weight: 600;
            transition: color 0.2s;
        }

        .contact-method a:hover {
            color: var(--accent-hover);
        }

        .contact-method p {
            color: var(--text-muted);
            font-size: 16px;
            margin-top: var(--space-xs);
        }

        /* Contact Form */
        .contact-form-card {
            background: var(--bg-surface);
            padding: var(--space-xl);
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }

        .contact-form-card h2 {
            font-size: var(--font-h3);
            color: var(--text-primary);
            margin-bottom: var(--space-xs);
        }

        .form-helper {
            color: var(--text-muted);
            font-size: 16px;
            margin-bottom: var(--space-lg);
            line-height: 1.6;
        }

        .form-group {
            margin-bottom: var(--space-md);
        }

        .form-group label {
            display: block;
            margin-bottom: var(--space-xs);
            font-weight: 600;
            color: var(--text-primary);
            font-size: 16px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: var(--space-sm);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-family: inherit;
            font-size: 16px;
            transition: border-color 0.2s, box-shadow 0.2s;
            background: var(--bg-primary);
            color: var(--text-primary);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(78, 202, 234, 0.1);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-button {
            background: var(--accent-primary);
            color: var(--bg-primary);
            padding: var(--space-sm) var(--space-xl);
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            width: 100%;
            font-family: inherit;
        }

        .submit-button:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(78, 202, 234, 0.3);
        }

        .form-note {
            text-align: center;
            margin-top: var(--space-md);
            color: var(--text-muted);
            font-size: 14px;
        }

        /* Footer */
        footer {
            background: var(--bg-primary);
            color: var(--text-primary);
            padding: var(--space-2xl) var(--container-padding) var(--space-lg);
            border-top: 1px solid var(--border-color);
            margin-top: var(--space-3xl);
        }

        .footer-content {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: var(--space-2xl);
            margin-bottom: var(--space-lg);
        }

        .footer-section h3 {
            color: var(--accent-primary);
            margin-bottom: var(--space-sm);
            font-size: 18px;
        }

        .footer-section p {
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 16px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: var(--space-xs);
        }

        .footer-section a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
            font-size: 16px;
        }

        .footer-section a:hover {
            color: var(--accent-primary);
        }

        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-top: var(--space-md);
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--text-muted);
            font-size: 14px;
        }

        /* Mobile Menu */
        .mobile-menu-button {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-primary);
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            :root {
                --font-h1: 36px;
                --font-h2: 28px;
                --container-padding: 24px;
            }

            .mobile-menu-button {
                display: block;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
        }

        html {
            scroll-behavior: smooth;
        }
    

/* === services.html === */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Modern Dark Palette */
            --bg-primary: #0B0F19;
            --bg-surface: #111827;
            --text-primary: #E5E7EB;
            --text-muted: #9CA3AF;
            --border-color: #1F2937;
            --accent-primary: #4ECAEA;
            --accent-hover: #38b8d8;
            
            /* Typography Scale */
            --font-h1: 52px;
            --font-h2: 32px;
            --font-h3: 20px;
            --font-body: 18px;
            
            /* Spacing System (8pt) */
            --space-xs: 8px;
            --space-sm: 16px;
            --space-md: 24px;
            --space-lg: 32px;
            --space-xl: 48px;
            --space-2xl: 64px;
            --space-3xl: 80px;
            
            /* Container */
            --container-max: 1200px;
            --container-padding: 32px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: var(--font-body);
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-primary);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(11, 15, 25, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }

        .nav-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: var(--space-md) var(--container-padding);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent-primary);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            gap: var(--space-lg);
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--accent-primary);
        }

		/* Mobile menu active state */
		@media (max-width: 768px) {
    		.nav-links {
  		    	position: fixed;
 		        top: 73px;
 		        right: 0;
 		        background: var(--bg-surface);
		        flex-direction: column;
		        padding: var(--space-lg);
        		border-left: 1px solid var(--border-color);
        		border-bottom: 1px solid var(--border-color);
        		min-width: 200px;
        		transform: translateX(100%);
        		transition: transform 0.3s ease;
        		z-index: 999;
    		}
    
    		.nav-links.mobile-active {
        		transform: translateX(0);
    		}
		}
		
        .btn-primary {
            background: var(--accent-primary);
            color: var(--bg-primary);
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.2s;
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(78, 202, 234, 0.3);
        }

        /* Page Header */
        .page-header {
            margin-top: 73px;
            padding: var(--space-3xl) var(--container-padding) var(--space-2xl);
            text-align: center;
            background: var(--bg-primary);
        }

        .page-header h1 {
            font-size: var(--font-h1);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: var(--space-sm);
            color: var(--text-primary);
        }

        .page-header p {
            font-size: 20px;
            color: var(--text-muted);
            max-width: 70ch;
            margin: 0 auto;
        }

        /* Section Container */
        section {
            padding: var(--space-3xl) var(--container-padding);
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
        }

        .section-title {
            font-size: var(--font-h2);
            font-weight: 700;
            line-height: 1.2;
            text-align: center;
            margin-bottom: var(--space-2xl);
            color: var(--text-primary);
        }

        /* Primary Services Grid */
        .primary-services {
            background: var(--bg-surface);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: var(--space-md);
        }

        .service-card {
            background: var(--bg-primary);
            padding: var(--space-lg);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-primary);
            box-shadow: 0 12px 32px rgba(78, 202, 234, 0.15);
        }

        .service-card h3 {
            font-size: var(--font-h3);
            line-height: 1.3;
            color: var(--accent-primary);
            margin-bottom: var(--space-sm);
        }

        .service-card p {
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Accordion for Additional Services */
        .more-services {
            background: var(--bg-primary);
        }

        .accordion {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            max-width: 900px;
            margin: 0 auto;
        }

        .accordion-item {
            border-bottom: 1px solid var(--border-color);
        }

        .accordion-item:last-child {
            border-bottom: none;
        }

        .accordion-header {
            padding: var(--space-md);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s;
        }

        .accordion-header:hover {
            background: rgba(78, 202, 234, 0.05);
        }

        .accordion-header h3 {
            font-size: var(--font-h3);
            color: var(--text-primary);
        }

        .accordion-icon {
            color: var(--accent-primary);
            font-size: 20px;
            transition: transform 0.3s;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(45deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-item.active .accordion-content {
            max-height: 200px;
        }

        .accordion-body {
            padding: 0 var(--space-md) var(--space-md);
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Engagement Models */
        .engagement-models {
            background: var(--bg-surface);
        }

        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-md);
        }

        .model-card {
            background: var(--bg-primary);
            padding: var(--space-lg);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.3s;
        }

        .model-card:hover {
            border-color: var(--accent-primary);
            transform: translateY(-4px);
        }

        .badge {
            display: inline-block;
            padding: 6px 12px;
            background: rgba(78, 202, 234, 0.1);
            color: var(--accent-primary);
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: var(--space-sm);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .model-card h3 {
            font-size: var(--font-h3);
            color: var(--text-primary);
            margin-bottom: var(--space-xs);
        }

        .model-card p {
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* How We Start */
        .how-we-start {
            background: var(--bg-primary);
        }

        .process-flow {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            background: var(--bg-surface);
            padding: var(--space-xl);
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }

        .process-flow p {
            font-size: 20px;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .process-arrow {
            color: var(--accent-primary);
            font-size: 24px;
            margin: 0 var(--space-xs);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--accent-primary) 0%, #38b8d8 100%);
            text-align: center;
            padding: var(--space-2xl) var(--container-padding);
        }

        .cta-section h2 {
            font-size: var(--font-h2);
            color: var(--bg-primary);
            margin-bottom: var(--space-sm);
        }

        .cta-section p {
            font-size: 20px;
            color: var(--bg-primary);
            opacity: 0.9;
            margin-bottom: var(--space-md);
        }

        .cta-section .btn-primary {
            background: var(--bg-primary);
            color: var(--accent-primary);
        }

        .cta-section .btn-primary:hover {
            background: var(--bg-surface);
        }

        /* Footer */
        footer {
            background: var(--bg-primary);
            color: var(--text-primary);
            padding: var(--space-2xl) var(--container-padding) var(--space-lg);
            border-top: 1px solid var(--border-color);
        }

        .footer-content {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: var(--space-2xl);
            margin-bottom: var(--space-lg);
        }

        .footer-section h3 {
            color: var(--accent-primary);
            margin-bottom: var(--space-sm);
            font-size: 18px;
        }

        .footer-section p {
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 16px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: var(--space-xs);
        }

        .footer-section a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
            font-size: 16px;
        }

        .footer-section a:hover {
            color: var(--accent-primary);
        }

        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-top: var(--space-md);
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--text-muted);
            font-size: 14px;
        }

        /* Mobile Menu */
        .mobile-menu-button {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-primary);
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            :root {
                --font-h1: 36px;
                --font-h2: 28px;
                --container-padding: 24px;
            }

            .mobile-menu-button {
                display: block;
            }

            .service-grid,
            .models-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
        }

        html {
            scroll-behavior: smooth;
        }