﻿/* ===== BASE STYLES - CARBON COPY OF HOMEPAGE ===== */
        h1, h2, h3 {
            font-family: var(--font-display);
            font-weight: 700;
            line-height: 1.1;
            color: var(--petrol-dark);
            text-align: center;
        }

        h1 { 
            font-size: clamp(2.75rem, 5vw, 4rem); 
            margin-bottom: var(--space-lg);
            animation: floatUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
        }

        h2 { 
            font-size: clamp(2rem, 3.5vw, 3rem); 
            margin-bottom: var(--space-md);
            animation: floatUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
        }

        h3 { 
            font-size: 1.5rem; 
            margin-bottom: var(--space-sm);
        }

        .lead {
            font-size: 1.125rem;
            line-height: 1.6;
            color: var(--gray);
            max-width: 42rem;
            margin: 0 auto;
        }

        .section-lead {
            font-size: 1.25rem;
            line-height: 1.7;
            color: var(--gray);
            max-width: 48rem;
            margin: 0 auto;
            text-align: center;
            animation: floatUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
        }

        .container {
            width: 100%;
            max-width: 2200px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        .section {
            padding: var(--space-3xl) 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--space-2xl);
        }

        /* ===== NAVIGATION - EXACT COPY FROM HOMEPAGE ===== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(230, 230, 230, 0.5);
            z-index: 1000;
            padding: var(--space-sm) 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
        }

        .navbar.scrolled {
            padding: var(--space-xs) 0;
            box-shadow: var(--shadow-subtle);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-md);
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: var(--space-3xs);
            text-decoration: none;
            flex-shrink: 0;
            animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
        }

        /* BIGGER LOGO SIZE - EXACT MATCH TO HOMEPAGE */
        .logo-image {
            display: block;
            height: 44px; /* Exactly like homepage */
            width: auto;
            transition: all 0.3s ease;
        }

        /* BIGGER LOGO TEXT - EXACT MATCH TO HOMEPAGE */
        .logo-text {
            font-family: var(--font-display);
            font-size: 1.125rem; /* Exactly like homepage */
            font-weight: 700;
            color: var(--petrol);
            white-space: nowrap;
        }

        /* Logo hover effect */
        .logo:hover .logo-image {
            transform: scale(1.05);
            opacity: 0.9;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: var(--space-xl);
            margin: 0 auto;
        }

        .nav-link {
            font-size: 0.875rem;
            font-weight: 500;
            text-decoration: none;
            color: var(--petrol);
            position: relative;
            padding: var(--space-2xs) 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            opacity: 0;
            animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
        }

        .nav-link:nth-child(1) { animation-delay: 0.5s; }
        .nav-link:nth-child(2) { animation-delay: 0.55s; }
        .nav-link:nth-child(3) { animation-delay: 0.6s; }
        .nav-link:nth-child(4) { animation-delay: 0.65s; }
        .nav-link:nth-child(5) { animation-delay: 0.7s; }

        .nav-link:hover {
            color: var(--petrol-light);
        }

        .nav-link.active {
            color: var(--petrol-light);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--petrol);
        }

        .nav-cta {
            font-family: var(--font-display);
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--white);
            background: var(--petrol);
            padding: var(--space-2xs) var(--space-sm);
            border-radius: 0;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid var(--petrol);
            letter-spacing: 0.5px;
            white-space: nowrap;
            opacity: 0;
            animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
        }

        .nav-cta:hover {
            background: transparent;
            color: var(--petrol);
            transform: translateY(-2px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--petrol);
            font-size: 1.5rem;
            cursor: pointer;
            padding: var(--space-2xs);
        }

        /* ===== ABOUT HERO - EXACT TIMING AS HOME PAGE ===== */
        .about-hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            padding-top: 5rem;
            background: var(--gradient-light);
            position: relative;
            overflow: hidden;
            margin-top: 60px;
        }

        .about-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(34, 113, 128, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(26, 89, 102, 0.08) 0%, transparent 60%);
            z-index: 1;
        }

        .about-hero-content {
            position: relative;
            z-index: 2;
            max-width: 52rem;
            margin: 0 auto;
            text-align: center;
            padding: var(--space-2xl) 0;
        }

        .about-hero-line {
            position: relative;
            height: 4px;
            width: 120px;
            margin: 0 auto var(--space-xl);
            background: transparent;
            overflow: hidden;
        }

        /* EXACT SAME LINE ANIMATION AS HOME PAGE */
        .about-hero-line::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 100%;
            background: var(--gradient-petrol);
            animation: drawLine 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
        }

        .about-hero-line::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: var(--petrol);
            border-radius: 50%;
            opacity: 0;
            animation: 
                scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.8s forwards,
                pulseGlow 2s ease-in-out 2.3s infinite;
        }

        .about-hero-subtitle {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--gray);
            margin: 0 auto var(--space-xl);
            max-width: 40rem;
            opacity: 0;
            animation: floatUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
        }

        /* ===== STORY SECTION ===== */
        .story {
            background: var(--white);
        }

        .story-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .story-text {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: var(--space-xl);
            text-align: center;
        }

        .story-highlight {
            background: var(--neutral-10);
            border-left: 4px solid var(--petrol);
            padding: var(--space-xl);
            margin: var(--space-2xl) 0;
        }

        .story-highlight p {
            font-size: 1.25rem;
            font-style: italic;
            color: var(--petrol-dark);
            margin: 0;
        }

        /* ===== VALUES SECTION - USING HOMEPAGE GRID STYLE ===== */
        .values {
            background: var(--white);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 380px));
            justify-content: center;
            justify-items: center;
            gap: var(--space-xl);
            max-width: 1200px;
            margin: 0 auto;
        }

        .value-card {
            padding: var(--space-xl);
            background: var(--white);
            border: 1px solid var(--neutral-20);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            width: 100%;
            max-width: 380px;
        }

        .value-card:hover {
            transform: translateY(-8px);
            border-color: var(--petrol);
            box-shadow: var(--shadow-elevated);
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-petrol);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .value-card:hover::before {
            transform: scaleX(1);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto var(--space-lg);
            border: 2px solid var(--petrol);
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: white;
            transition: all 0.4s ease;
        }

        .value-icon svg {
            width: 36px;
            height: 36px;
            stroke: var(--petrol);
            stroke-width: 1.5;
            transition: all 0.4s ease;
        }

        .value-card:hover .value-icon {
            background: var(--gradient-petrol);
            transform: scale(1.1);
        }

        .value-card:hover .value-icon svg {
            stroke: white;
            stroke-width: 2.5;
        }

        .value-description {
            color: var(--gray);
            line-height: 1.6;
        }

        /* ===== TEAM SECTION ===== */
        .team {
            background: var(--neutral-10);
        }

        .team-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: var(--space-xl);
            max-width: 780px;
            margin: 0 auto;
            margin-top: var(--space-2xl);
        }

        .team-member {
            text-align: center;
            padding: var(--space-xl);
            background: var(--white);
            border: 1px solid var(--neutral-20);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
            max-width: 760px;
        }

        .team-member:hover {
            transform: translateY(-8px);
            border-color: var(--petrol);
            box-shadow: var(--shadow-elevated);
        }

        .member-avatar {
            width: 160px;
            height: 160px;
            margin: 0 auto var(--space-lg);
            border-radius: 50%;
            border: 3px solid var(--petrol);
            background: var(--neutral-10) url('../../assets/images/peter_hein_passport_photo.png') center/cover no-repeat;
            overflow: hidden;
            position: relative;
        }

        .member-name {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--petrol-dark);
            margin-bottom: var(--space-xs);
        }

        .member-role {
            color: var(--petrol-light);
            font-weight: 600;
            margin-bottom: var(--space-md);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.875rem;
        }

        .member-bio {
            color: var(--gray);
            line-height: 1.6;
        }

        .founder-actions {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 1.25rem;
        }

        .founder-toggle {
            cursor: pointer;
        }

        .founder-menu {
            position: absolute;
            top: calc(100% + 0.75rem);
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            display: flex;
            flex-direction: column;
            gap: var(--space-xs);
            min-width: 260px;
            padding: var(--space-sm);
            background: var(--white);
            border: 1px solid var(--neutral-20);
            box-shadow: var(--shadow-elevated);
            z-index: 30;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: all 0.25s ease;
        }

        .founder-menu.open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .founder-menu .btn {
            width: 100%;
            min-width: 0;
            padding: var(--space-sm) var(--space-md);
        }

        /* ===== MILESTONES ===== */
        .milestones {
            background: var(--gradient-petrol-dark);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .milestones::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(230, 230, 230, 0.1) 0%, transparent 50%);
        }

        .milestones .section-header h2 {
            color: var(--white);
        }

        .milestones .section-lead {
            color: rgba(255, 255, 255, 0.9);
        }

        .milestones-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 280px));
            justify-content: center;
            justify-items: center;
            gap: var(--space-xl);
            margin-top: var(--space-2xl);
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .milestone-item {
            text-align: center;
            padding: var(--space-xl);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
            max-width: 280px;
        }

        .milestone-item:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: var(--shadow-elevated);
        }

        .milestone-number {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: var(--space-sm);
            color: var(--white);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .milestone-label {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        /* ===== BUTTONS - EXACT COPY FROM HOMEPAGE ===== */
        .btn {
            font-family: var(--font-display);
            font-size: 0.875rem;
            font-weight: 700;
            padding: var(--space-md) var(--space-xl);
            border-radius: 0;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            letter-spacing: 0.5px;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            min-width: 12rem;
            justify-content: center;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-petrol);
            color: var(--white);
            box-shadow: var(--shadow-subtle);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-elevated);
        }

        .btn-secondary {
            background: transparent;
            color: var(--petrol);
            border: 2px solid var(--petrol);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--petrol);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-subtle);
        }

        /* ===== CTA SECTION - EXACT COPY FROM HOMEPAGE ===== */
        .cta {
            background: var(--gradient-petrol-dark);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(230, 230, 230, 0.1) 0%, transparent 50%);
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 48rem;
            margin: 0 auto;
            text-align: center;
        }

        .cta h2 {
            color: var(--white);
        }

        .cta .lead {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: var(--space-2xl);
        }

        .cta-actions {
            display: flex;
            gap: var(--space-md);
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta .btn-primary {
            background: var(--white);
            color: var(--petrol);
        }

        .cta .btn-primary:hover {
            background: var(--neutral-10);
            color: var(--petrol);
            transform: translateY(-3px);
            box-shadow: var(--shadow-elevated);
        }

        .cta .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .cta .btn-secondary:hover {
            background: var(--white);
            color: var(--petrol);
            transform: translateY(-3px);
            box-shadow: var(--shadow-subtle);
        }

        /* ===== FOOTER - EXACT COPY FROM HOMEPAGE ===== */
        .footer {
            background: var(--petrol-dark);
            color: white;
            padding: var(--space-xl) 0;
            text-align: center;
        }

        .footer-content {
            max-width: 36rem;
            margin: 0 auto;
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: var(--space-sm);
            color: white;
            text-decoration: none;
            display: inline-block;
        }

        .footer-tagline {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: var(--space-lg);
            font-size: 1rem;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            margin-bottom: var(--space-lg);
        }

        .footer-email {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-email:hover {
            color: white;
        }

        .footer-bottom {
            padding-top: var(--space-lg);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* ===== WHATSAPP - EXACT COPY FROM HOMEPAGE (GREEN) ===== */
        .whatsapp {
            position: fixed;
            bottom: var(--space-lg);
            right: var(--space-lg);
            z-index: 1000;
            opacity: 0;
            animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.5s both;
        }

        .whatsapp-link {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            background: var(--gradient-whatsapp);
            color: var(--white);
            padding: var(--space-xs) var(--space-md);
            text-decoration: none;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.875rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 
                0 4px 12px rgba(37, 211, 102, 0.25),
                0 0 0 1px rgba(37, 211, 102, 0.1);
            border-radius: 2px;
            animation: pulse-whatsapp 2s ease-in-out 2.5s infinite;
        }

        .whatsapp-link:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 20px 40px rgba(37, 211, 102, 0.3),
                0 0 0 1px rgba(37, 211, 102, 0.15);
            background: linear-gradient(135deg, var(--whatsapp-green-dark) 0%, var(--whatsapp-green) 100%);
        }

        /* ===== RESPONSIVE - EXACT COPY FROM HOMEPAGE ===== */
        @media (max-width: 1024px) {
            .nav-links {
                gap: var(--space-lg);
            }
            
            .values-grid,
            .team-grid {
                grid-template-columns: repeat(2, minmax(0, 380px));
            }
            
            .milestones-grid {
                grid-template-columns: repeat(2, minmax(0, 380px));
            }
            
            .btn {
                min-width: 10rem;
                padding: var(--space-md) var(--space-lg);
            }
        }

        @media (max-width: 768px) {
            :root {
                --space-xl: 3rem;
                --space-2xl: 4rem;
                --space-3xl: 5rem;
            }
            
            /* NAVIGATION - EXACT HOME PAGE STYLING */
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
                background: none;
                border: none;
                color: var(--petrol);
                font-size: 1.5rem;
                cursor: pointer;
                padding: var(--space-2xs);
            }
            
            /* LOGO - EXACT HOME PAGE SIZES */
            .logo-image {
                height: 36px; /* Exactly like homepage mobile */
            }
            
            .logo-text {
                font-size: 1rem; /* Exactly like homepage mobile */
            }

            .founder-menu {
                min-width: min(280px, calc(100vw - 3rem));
            }
            
            /* ABOUT HERO ADJUSTMENTS */
            .about-hero {
                min-height: 60vh;
                padding: 4rem 0 2rem;
                margin-top: 60px;
            }
            
            .about-hero h1 {
                font-size: clamp(1.75rem, 5vw, 2.5rem);
            }
            
            /* GRID LAYOUTS FOR MOBILE */
            .values-grid,
            .team-grid,
            .milestones-grid {
                grid-template-columns: 1fr;
                justify-items: center;
                gap: var(--space-lg);
                padding: 0 var(--space-md);
            }
            
            .value-card,
            .team-member,
            .milestone-item {
                max-width: 400px;
                width: 100%;
                margin: 0 auto;
            }
            
            /* BUTTONS AND ACTIONS */
            .cta-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 20rem;
                padding: var(--space-md) var(--space-lg);
            }
            
            /* SECTIONS */
            .section {
                padding: var(--space-2xl) 0;
            }
            
            /* STORY SECTION MOBILE */
            .story-highlight {
                padding: var(--space-lg);
            }
            
            /* WHATSAPP - EXACT HOME PAGE STYLING */
            .whatsapp-link span:last-child {
                display: none;
            }
            
            .whatsapp-link {
                padding: var(--space-sm);
                border-radius: 50%;
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--gradient-whatsapp);
            }
            
            .whatsapp-link:hover {
                background: linear-gradient(135deg, var(--whatsapp-green-dark) 0%, var(--whatsapp-green) 100%);
            }
        }

        @media (min-width: 769px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        @media (max-width: 480px) {
            /* LOGO - MATCH HOMEPAGE EXACTLY */
            .logo-image {
                height: 32px; /* Match homepage exactly */
            }
            
            .logo-text {
                font-size: 0.9rem; /* Match homepage exactly */
            }
            
            .about-hero {
                padding: 3rem 0 1.5rem;
            }
            
            .about-hero h1 {
                font-size: clamp(1.75rem, 6vw, 2.5rem);
            }
            
            .value-card,
            .team-member,
            .milestone-item {
                padding: var(--space-lg);
            }
            
            .btn {
                min-width: auto;
                width: 100%;
                max-width: 100%;
            }
            
            .member-avatar {
                width: 100px;
                height: 100px;
            }
            
            .milestone-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 360px) {
            .logo-text {
                font-size: 0.8rem; /* Match homepage exactly */
            }
            
            .logo-image {
                height: 28px; /* Match homepage exactly */
            }
            
            .member-avatar {
                width: 90px;
                height: 90px;
            }
            
            .member-name {
                font-size: 1.25rem;
            }
        }
