
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

        :root {
            --nordic-white: #ffffff;
            --nordic-snow: #fafafa;
            --nordic-stone: #f5f5f5;
            --nordic-sage: #e8f1f0;
            --nordic-gray: #6b7280;
            --nordic-charcoal: #374151;
            --nordic-pine: #10b981;
            --nordic-sky: #0ea5e9;
            --nordic-accent: linear-gradient(135deg, var(--nordic-sky) 0%, var(--nordic-pine) 100%);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.8;
            color: var(--nordic-charcoal);
            background: var(--nordic-white);
            font-weight: 300;
        }

        /* Navigation - Floating minimalist bar with timeline dots */
        .nav {
            position: fixed;
            top: 2rem;
            left: 50%;
            transform: translateX(-50%);
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.9);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border-radius: 50px;
            border: 1px solid var(--nordic-stone);
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 500;
            background: var(--nordic-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }


        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-link {
            color: var(--nordic-gray);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            transition: color 0.2s ease;
        }

        .nav-link:hover {
            color: var(--nordic-charcoal);
        }

        /* Hero - Centered minimal layout */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 2rem 2rem;
            background: linear-gradient(180deg, var(--nordic-white) 0%, var(--nordic-snow) 100%);
        }

        .hero-content {
            max-width: 600px;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 2rem;
            color: var(--nordic-charcoal);
            letter-spacing: -0.02em;
        }

        .hero .highlight {
            background: var(--nordic-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 400;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--nordic-gray);
            margin-bottom: 3rem;
            font-weight: 300;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .timeline-navigation {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .timeline-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 1rem;
            border-radius: 12px;
        }

        .timeline-step:hover {
            background: var(--nordic-sage);
        }

        .timeline-step.active {
            background: var(--nordic-sage);
        }

        .step-number {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            background: var(--nordic-stone);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--nordic-charcoal);
            transition: all 0.3s ease;
        }

        .timeline-step.active .step-number,
        .timeline-step:hover .step-number {
            background: var(--nordic-pine);
            color: var(--nordic-white);
        }

        .step-label {
            font-size: 0.8rem;
            color: var(--nordic-gray);
            text-align: center;
            max-width: 80px;
        }

        /* Services - Nordic grid with timeline integration */
        .services {
            padding: 8rem 2rem;
            background: var(--nordic-white);
        }

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

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

        .section-title {
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--nordic-charcoal);
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--nordic-gray);
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
        }

        /* Grid layout with timeline progression */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr 3fr;
            gap: 4rem;
            align-items: start;
        }

        /* Timeline sidebar */
        .timeline-sidebar {
            position: sticky;
            top: 8rem;
        }

        .timeline-progress {
            position: relative;
            padding-left: 2rem;
        }

        .progress-line {
            position: absolute;
            left: 0.75rem;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--nordic-stone);
        }

        .progress-active {
            position: absolute;
            left: 0.75rem;
            top: 0;
            width: 2px;
            background: var(--nordic-pine);
            transition: height 0.5s ease;
            height: 25%;
        }

        .timeline-step-sidebar {
            position: relative;
            margin-bottom: 3rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .step-marker {
            position: absolute;
            left: -2rem;
            top: 0.5rem;
            width: 1.5rem;
            height: 1.5rem;
            border-radius: 50%;
            background: var(--nordic-white);
            border: 2px solid var(--nordic-stone);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--nordic-gray);
            transition: all 0.3s ease;
        }

        .timeline-step-sidebar.active .step-marker {
            background: var(--nordic-pine);
            border-color: var(--nordic-pine);
            color: var(--nordic-white);
        }

        .step-title {
            font-size: 1rem;
            font-weight: 400;
            color: var(--nordic-charcoal);
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .timeline-step-sidebar.active .step-title {
            color: var(--nordic-pine);
        }

        .step-description {
            font-size: 0.85rem;
            color: var(--nordic-gray);
            font-weight: 300;
        }

        /* Service cards main area */
        .service-content {
            position: relative;
        }

        .service-card {
            padding: 4rem 3rem;
            background: var(--nordic-snow);
            border-radius: 0;
            border: none;
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(20px);
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
        }

        .service-card.active {
            opacity: 1;
            transform: translateY(0);
            position: relative;
        }

        .service-card:hover {
            background: var(--nordic-sage);
        }

        .service-icon {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            background: var(--nordic-pine);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--nordic-white);
            margin-bottom: 2rem;
        }

        .service-card h3 {
            font-size: 1.8rem;
            font-weight: 400;
            color: var(--nordic-charcoal);
            margin-bottom: 1.5rem;
            line-height: 1.4;
        }

        .service-card p {
            color: var(--nordic-gray);
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
        }

        /* Features list */
        .service-features {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--nordic-gray);
            font-size: 0.95rem;
            font-weight: 300;
        }

        .service-features li::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--nordic-pine);
            flex-shrink: 0;
        }

        /* Service stats */
        .service-stats {
            display: flex;
            gap: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--nordic-stone);
        }

        .stat {
            text-align: left;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 500;
            color: var(--nordic-pine);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--nordic-gray);
            font-weight: 300;
        }

        /* Contact - Minimal centered */
        .contact {
            padding: 8rem 2rem;
            background: var(--nordic-snow);
            text-align: center;
.        }

        .contact-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact h2 {
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--nordic-charcoal);
            margin-bottom: 2rem;
            letter-spacing: -0.01em;
        }

        .contact-text {
            font-size: 1.1rem;
            color: var(--nordic-gray);
            margin-bottom: 3rem;
            font-weight: 300;
        }

        .contact-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: transparent;
            border: 1px solid var(--nordic-gray);
            border-radius: 50px;
            color: var(--nordic-charcoal);
            text-decoration: none;
            font-weight: 400;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            letter-spacing: 0.02em;
        }

        .contact-button:hover {
            background: var(--nordic-charcoal);
            color: var(--nordic-white);
            border-color: var(--nordic-charcoal);
        }

        .contact-direct {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: var(--nordic-gray);
        }

        .contact-direct a {
            color: var(--nordic-charcoal);
            text-decoration: none;
        }

        /* Footer - Minimal */
        .footer {
            background: var(--nordic-white);
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid var(--nordic-stone);
        }

        .footer-content {
            max-width: 1000px;
            margin: 0 auto;
            color: var(--nordic-gray);
            font-size: 0.9rem;
            font-weight: 300;
        }

        .footer .logo-text {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        
/* Responsive */

/* Tablet and larger */
@media (min-width: 769px) {
    .services-grid {
        grid-template-columns: 1fr 3fr;
        gap: 4rem;
        align-items: start;
    }

    .timeline-sidebar {
        position: sticky;
        top: 8rem;
    }
}

/* Mobile and Tablet */
@media (max-width: 768px) {
    body {
        line-height: 1.7;
    }

    .nav {
        top: 1rem;
        padding: 0.8rem 1rem;
        gap: 1.5rem;
        left: 1rem;
        right: 1rem;
        transform: translateX(0);
        max-width: calc(100% - 2rem);
    }
    
    .logo-text {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none; /* Hide text links on mobile, dots are enough */
    }

    .hero {
        padding: 6rem 1.5rem 2rem;
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .services {
        padding: 4rem 1.5rem;
    }

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

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

    .section-subtitle {
        font-size: 1rem;
    }

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

    .timeline-sidebar {
        position: relative;
        top: auto;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }
    
    .timeline-sidebar::-webkit-scrollbar { 
        display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
    }

    .timeline-progress {
        display: flex;
        gap: 1.5rem;
        padding-left: 0;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--nordic-stone);
    }

    .progress-line,
    .progress-active {
        display: none;
    }

    .timeline-step-sidebar {
        margin-bottom: 0;
        min-width: 180px;
        padding: 1rem;
        background: var(--nordic-snow);
        border-radius: 12px;
        border: 1px solid transparent;
        text-align: center;
    }
    
    .timeline-step-sidebar.active {
        border-color: var(--nordic-pine);
        background: var(--nordic-sage);
    }

    .step-marker {
        position: static;
        margin: 0 auto 0.8rem;
        width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
    }

    .step-title {
        font-size: 0.9rem;
        font-weight: 500;
    }

    .step-description {
        font-size: 0.8rem;
    }

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

    .service-card h3 {
        font-size: 1.5rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .service-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact {
        padding: 4rem 1.5rem;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact-text {
        font-size: 1rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .nav {
        gap: 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .services {
        padding: 3rem 1rem;
    }

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

    .service-features li {
        font-size: 0.9rem;
    }

    .contact {
        padding: 3rem 1rem;
    }
}