/*==========================================================================
    ITEGAMAX DESIGN SYSTEM - BY GABRIEL VEGA | SWEDEN
    - STOCKHOLM SWEDEN 2026
==========================================================================*/
@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-color: #1484c6;
    --white: #ffffff;
    --black: #000000;
    --muted: #555555;
    --mute-dark: #333;
    --mute-medium-d: #aaa;
    --mute-medium: #ccc;
    --mute-soft: #dddddd;
    --font-brand: 'Oswald', 'Arial Black', sans-serif !important;
    --font-content: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --space-0: 0px;
    --space-1: 1px;
    --space-2: 2px;
    --space-4: 4px;
    --space-6: 6px;
    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-20: 20px;
    --space-24: 24px;
    --space-30: 30px;
    --space-35: 35px;
    --space-40: 40px;
    --space-45: 45px;
    --space-50: 50px;
    --space-60: 60px;
    --space-70: 70px;
    --space-80: 80px;
    --space-120: 120px;
    --size-0: 0px;
    --size-2: 2px;
    --size-4: 4px;
    --size-6: 6px;
    --size-8: 8px;
    --size-10: 10px;
    --size-12: 12px;
    --size-14: 14px;
    --size-16: 16px;
    --size-18: 18px;
    --size-20: 20px;
    --size-24: 24px;
    --size-30: 30px;
    --size-40: 40px;
    --size-48: 48px;
    --size-50: 50px;
    --size-60: 60px;
    --size-70: 70px;
    --size-80: 80px;
    --size-90: 90px;
    --size-100: 100px;
    --size-120: 120px;
    --size-140: 140px;
    --size-160: 160px;
    --size-180: 180px;
    --size-200: 200px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: var(--size-16);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-content);
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    user-select: auto;
}

* {
    text-rendering: optimizeLegibility;
}

p {
    overflow-wrap: break-word;
    /* hyphens: auto;*/
}

.break-word {
    overflow-wrap: break-word;
    hyphens: auto;
}

.brand-backgrund {
    background-color: var(--brand-color);
}

.black-line {
    width: 100%;
    height: 1px;
    background: var(--black);
    margin: var(--space-9) 0;
}

.black-block {
    width: var(--size-20);
    height: var(--size-20);
    background: var(--black);
    position: absolute;
}

.vertical-line {
    width: 1px;
    height: 100px;
    background: var(--black);
    margin: var(--space-40) auto;
}
/* NAVIGATION START */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: var(--space-20) 0;
    border-bottom: 2px solid var(--black);
    transition: all 0.3s ease;
}

    nav.scrolled {
        padding: 15px 0;
        box-shadow: 0 2px var(--space-20) var(--brand-color);
    }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-20);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.itgmx-text_logo {
    font-weight: 700;
    font-style: normal;
    font-family: var(--font-brand);
    color: var(--black);
    font-size: var(--size-20);
    line-height: 1.1;
    letter-spacing: 1px;
    text-size-adjust: 100%;
    transition: ease all 0.5s;
    font-optical-sizing: auto;
    text-decoration: none;
}

.gamax-image_logo_2 {
    max-width: 25px;
    vertical-align: middle;
    border: 0;
    transition: .3s;
    margin-top: -10px;
    margin-right: 2px;
}

.navbar-brand {
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
}

.navbar-brand {
    margin-right: 0;
}

a, a:active, a:focus, a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

.gamax-text_logo_1 {
    font-weight: 700;
    font-style: normal;
    font-family: var(--font-brand);
    color: var(--black);
    font-size: 1.6rem;
    letter-spacing: 1px;
    text-size-adjust: 100%;
    transition: ease all 0.5s;
    font-optical-sizing: auto;
    letter-spacing: 0.03em;
    line-height: 1.29;
}

.gamax-text_logo_1-e {
    font-family: var(--font-brand);
    color: var(--brand-color);
}

.gamax-text_logo_1 a {
    color: var(--black);
    text-decoration: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10000;
}

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--black);
        margin: 3px 0;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

.nav-links {
    display: flex;
    gap: var(--space-30);
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        font-size: 13px;
        transition: all 0.3s ease;
        position: relative;
        letter-spacing: var(--space-0);
    }

        .nav-links a::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 60%;
            transform: translateY(-50%);
            width: 0;
            height: 1px;
            background: var(--brand-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::before,
        .nav-links a.active::before {
            width: var(--size-10);
        }

.nav-active {
    font-weight: 700;
}

    .nav-active:hover {
        color: var(--muted);
    }
/* NAVIGATION END */

/* MOBILE NAVIGATION START */
.nav-links-mobile {
    display: flex;
    gap: var(--space-10);
    list-style: square;
    display: none;
    z-index: 9998;
}

    .nav-links-mobile a {
        color: var(--black);
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        position: relative;
    }

        .nav-links-mobile a::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 60%;
            transform: translateY(-50%);
            width: 0;
            height: 1px;
            background: var(--brand-color);
            transition: width 0.3s ease;
        }

        .nav-links-mobile a:hover::before,
        .nav-links-mobile a.active::before {
            width: var(--size-10);
        }

        .nav-links-mobile a.active {
            font-weight: 700;
        }

    .nav-links-mobile .menu-section-title {
        font-family: var(--font-brand);
        font-size: 11px;
        color: var(--muted);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-top: var(--space-30);
        margin-bottom: var(--space-12);
        padding-bottom: var(--space-6);
        border-bottom: 1px solid var(--black);
        width: 100%;
        list-style: none !important;
        pointer-events: none;
    }

        .nav-links-mobile .menu-section-title:first-child {
            margin-top: var(--space-20);
        }

    .nav-links-mobile li:not(.menu-section-title) {
        list-style: none !important;
        padding-left: var(--space-8);
    }

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-links-mobile {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        z-index: 1000;
        padding-left: 50px;
        padding-right: 50px;
    }

        .nav-links-mobile.active {
            display: flex;
        }

        .nav-links-mobile a {
            font-size: 16px;
            letter-spacing: var(--space-0);
        }

            .nav-links-mobile a::before {
                display: none;
            }

            .nav-links-mobile a.active {
                position: relative;
            }

                .nav-links-mobile a.active::after {
                    content: '';
                    position: absolute;
                    bottom: -10px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 30px;
                    height: 2px;
                    background: var(--black);
                }
}
/* NAVIGATION END */

/* MAIN HERO START */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px var(--space-20);
    position: relative;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 20%;
        left: 10%;
        width: 100px;
        height: 1px;
        background: var(--black);
        animation: slideRight 8s ease-in-out infinite;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: 20%;
        right: 10%;
        width: 150px;
        height: 1px;
        background: var(--brand-color);
        animation: slideLeft 8s ease-in-out infinite;
    }

.hero-decoration {
    position: absolute;
    top: 30%;
    right: 15%;
    width: 260px;
    height: 260px;
    border: 2px solid var(--black);
    opacity: 0.2;
    transform: rotate(45deg);
    animation: rotateSquare 10s linear infinite;
}

.floating-objects {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px solid var(--black);
    background-color: var(--brand-color);
    border-radius: 50%;
    animation: floatUp 28s ease-in-out infinite;
}

    .floating-circle:nth-child(1) {
        left: 10%;
        bottom: -100px;
        animation-delay: 0s;
        width: 60px;
        height: 60px;
    }

    .floating-circle:nth-child(2) {
        right: 15%;
        bottom: -100px;
        animation-delay: 8s;
        width: 100px;
        height: 100px;
    }

.floating-square {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--black);
    opacity: 0.08;
    animation: floatDiagonal 25s linear infinite;
    top: 40%;
    left: -50px;
}

.floating-square-big {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid var(--black);
    background: var(--brand-color);
    opacity: 0.5;
    animation: floatDiagonal 25s linear infinite;
    top: 40%;
    left: -50px;
}

.floating-square-line {
    position: absolute;
    height: 1px;
    background: var(--black);
    opacity: 0.35;
    animation: expandContract 20s ease-in-out infinite;
    width: 200px;
    height: 200px;
    top: 65%;
    right: 20%;
    transform-origin: center;
}

.floating-line {
    position: absolute;
    height: 1px;
    background: var(--black);
    opacity: 0.35;
    animation: expandContract 10s ease-in-out infinite;
    width: 200px;
    top: 65%;
    right: 10%;
    transform-origin: center;
}

.floating-line-large {
    position: absolute;
    height: 1px;
    background: var(--black);
    opacity: 1;
    animation: expandContract 20s ease-in-out infinite;
    width: 300px;
    top: 65%;
    right: 40%;
    transform-origin: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
}
/* Animations */
@keyframes floatUp {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1.2;
    }

    50% {
        transform: translateY(-600px) scale(1.1);
        opacity: 0.05;
    }

    90% {
        opacity: 0;
    }
}

@keyframes floatDiagonal {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(1400px, -300px) rotate(360deg);
    }
}

@keyframes expandContract {
    0%, 100% {
        transform: scaleX(0.5) rotate(0deg);
    }

    50% {
        transform: scaleX(1.2) rotate(180deg);
    }
}

@keyframes rotateSquare {
    0% {
        transform: rotate(45deg) scale(1);
    }

    25% {
        transform: rotate(135deg) scale(1.1);
    }

    50% {
        transform: rotate(225deg) scale(1);
    }

    75% {
        transform: rotate(315deg) scale(0.9);
    }

    100% {
        transform: rotate(405deg) scale(1);
    }
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateX(50px);
        opacity: 1;
    }
}

@keyframes slideLeft {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateX(-50px);
        opacity: 1;
    }
}

.hero h1 {
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 100;
    color: var(--black);
    letter-spacing: -3px;
    margin-bottom: 30px;
    line-height: 1.5;
    position: relative;
}

    .hero h1::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: var(--black);
    }

.hero .subtitle {
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--black);
    position: relative;
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: -10px;
        right: -10px;
        width: var(--size-20);
        height: var(--size-20);
        border-top: 2px solid var(--black);
        border-right: 2px solid var(--black);
    }

    .cta-button:hover {
        background: transparent;
        color: var(--black);
        transform: translate(-5px, -5px);
    }

@media (max-width: 768px) {

    .floating-square,
    .floating-square-big {
        display: none;
    }

    .hero-decoration {
        width: 100px;
        height: 100px;
        opacity: 0.2;
        border: 2px solid var(--black);
    }
}
/* MAIN HERO END */

/* BRAND SECTION START */
.brand-section {
    padding: 120px var(--space-20) 30px var(--space-20);
    background: var(--white);
    position: relative;
}

    .brand-section::before {
        content: '';
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--black);
    }
/* BRAND SECTION END */

/* AREA HERO START */
.area-hero {
    padding: 60px var(--space-20) var(--space-0) var(--space-20);
    background: var(--white);
    position: relative;
}

.area-hero-service::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--black);
    animation: 60s linear 0s infinite reverse none running rotateSlowly;
}

.area-hero-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}

.area-hero-header {
    position: relative;
}

    .area-hero-header h2 {
        font-size: 64px;
        font-weight: 100;
        letter-spacing: -2px;
        writing-mode: vertical-rl;
        text-orientation: mixed;
    }

.area-hero-content {
    padding-top: var(--space-40);
}

.area-hero-main {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.area-hero-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-40);
}

.area-hero-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-40);
}

@media (max-width: 768px) {

    .area-hero-section {
        grid-template-columns: 1fr;
        gap: var(--space-40);
    }

    .area-hero-header h2 {
        writing-mode: horizontal-tb;
        font-size: 48px;
    }

    .area-hero-points,
    .area-hero-products {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* AREA HERO END */

.container {
    max-width: 1200px;
    margin: -20px 30px 60px 30px;
}

.quote-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-size: 120px;
    line-height: 1;
    font-weight: 100;
    position: absolute;
    top: var(--space-40);
    left: -60px;
    opacity: 0.1;
}

.quote-block h3 {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-20);
}

.author-line {
    width: 50px;
    height: 1px;
    background: var(--black);
}

.quote-author p {
    font-size: 14px;
    letter-spacing: var(--space-1);
    text-transform: uppercase;
    font-weight: 500;
}
/* STATS GRID START */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2);
    padding: var(--space-1);
    margin-top: var(--space-40);
    background: var(--black);
}

.stat-item {
    background: var(--white);
    padding: var(--space-20) var(--space-20);
    text-align: center;
    position: relative;
    min-height: var(--size-180);
}

.stat-item-large {
    background: var(--white);
    border: 1px solid var(--black);
    text-align: left;
    padding: 40px var(--space-24);
}

.stat-number {
    font-size: var(--size-40);
    font-weight: 100;
    letter-spacing: -2px;
    margin-bottom: var(--space-10);
    color: var(--mute-medium);
}

.stat-label {
    font-size: 12px;
    letter-spacing: var(--space-2);
    text-transform: uppercase;
    font-weight: 500;
}

.stat-decoration {
    position: absolute;
    top: var(--space-20);
    right: var(--space-20);
    width: var(--size-20);
    height: var(--size-20);
    border: 1px solid var(--black);
    transform: rotate(45deg);
}
/* STATS GRID END */

/* AREA PAGE SECTION START */
.areapage-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}

.areapage-header {
    position: relative;
}

    .areapage-header h2 {
        font-size: 64px;
        font-weight: 100;
        letter-spacing: -2px;
        writing-mode: vertical-rl;
        text-orientation: mixed;
    }

.header-decoration {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: var(--size-40);
    height: var(--size-40);
    background: var(--black);
}

.areapage-content {
    padding-top: var(--space-60);
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: var(--space-50) !important;
    font-weight: 300;
}

.areapage-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-40);
}

.point-item {
    position: relative;
    padding-left: var(--space-20);
}

.point-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: var(--size-10);
    font-weight: 700;
}

.point-item h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--space-8);
    letter-spacing: 0.5px;
}

.point-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.section-subtitle {
    font-size: 48px;
    font-weight: 100;
    text-align: center;
    margin-bottom: var(--space-60);
    letter-spacing: -1px;
}
/* AREA PAGE SECTION END */

/* TIMELINE START */
.timeline-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: var(--space-20);
    left: 0;
    right: 0;
    height: 2px;
    background: var(--black);
    z-index: 0;
}

.timeline-item {
    position: relative;
    text-align: center;
    flex: 1;
}

.timeline-dot {
    width: var(--size-40);
    height: var(--size-40);
    background: var(--white);
    border: 2px solid var(--black);
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    animation: rotateSlowly 20s linear infinite forwards;
}

.timeline-item:hover .timeline-dot {
    background: var(--brand-color);
    transform: rotate(45deg);
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.timeline-content p {
    font-size: var(--size-14);
    color: var(--muted);
    line-height: 1.4;
}

.process-timeline {
    margin-bottom: var(--space-0);
}

.brand-timeline-dot {
    width: var(--size-40);
    height: var(--size-40);
    background-color: var(--brand-color);
    border: 2px solid var(--black);
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    animation: rotateSlowly 20s linear infinite forwards;
}

    .brand-timeline-dot:hover {
        background-color: var(--black);
        animation: rotateSlowly 30s linear infinite forwards;
    }
/* TIMELINE START */

/* VALUES GRID START */
.values-section {
    text-align: center;
}

.values-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

    .values-header h2 {
        font-size: 48px;
        font-weight: 100;
        letter-spacing: -1px;
    }

.black-square {
    width: 15px;
    height: 15px;
    background: var(--black);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.value-card {
    padding: 60px var(--space-20);
    border: 1px solid var(--black);
    transition: all 0.3s ease;
}

    .value-card.black {
        background: var(--black);
        color: var(--white);
    }

.value-icon {
    font-size: 48px;
    font-weight: 100;
    margin-bottom: var(--space-20);
}

.value-card h4 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.value-card:hover {
    transform: translateY(-10px);
}
/* VALUES GRID END */

.split-layout {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 60px;
    /*  align-items: center;*/
    margin-top: 80px;
}

.split-divider {
    width: 2px;
    height: 300px;
    background: var(--black);
    justify-self: center;
}

.split-divider-small {
    width: 2px;
    height: 200px;
    background: var(--black);
    justify-self: center;
}


.split-left {
    text-align: right;
    padding-right: var(--space-20);
}

    .split-left h2 {
        font-size: 64px;
        font-weight: 100;
        letter-spacing: -2px;
        margin-bottom: 30px;
        position: relative;
        color: var(--mute-soft);
    }

        .split-left h2::before {
            content: '';
            position: absolute;
            left: var(--space-0);
            top: 50%;
            width: 30px;
            height: 30px;
            background: var(--mute-soft);
            transform: translateY(-50%);
        }

.split-right {
    padding-left: var(--space-20);
}

    .split-right h2 {
        font-size: 64px;
        font-weight: 100;
        letter-spacing: -2px;
        margin-bottom: 30px;
        position: relative;
        color: var(--mute-soft);
    }

        .split-right h2::after {
            content: '';
            position: absolute;
            right: var(--space-0);
            top: 50%;
            width: 30px;
            height: 30px;
            background: var(--mute-soft);
            transform: translateY(-50%);
        }

    .split-left h3,
    .split-right h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .split-left p,
    .split-right p {
        font-size: 16px;
        line-height: 1.6;
        color: var(--muted);
    }

.accent-box {
    display: inline-block;
    padding: var(--space-10) var(--space-20);
    border: 1px solid var(--black);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

    .accent-box::after {
        content: '';
        position: absolute;
        bottom: -5px;
        right: -5px;
        width: 100%;
        height: 100%;
        background: var(--black);
        z-index: -1;
    }
/* SERVICES START */
.services {
    padding: 110px var(--space-20) 60px;
    background: #fafafa;
    position: relative;
}

    .services::before,
    .services::after {
        content: '';
        position: absolute;
        width: 50px;
        height: 50px;
        border: 2px solid var(--black);
    }

    .services::before {
        top: 80px;
        left: 5%;
        animation: rotateSlowly 20s linear infinite;
    }

    .services::after {
        bottom: var(--space-20);
        right: 10%;
        transform: rotate(45deg);
        animation: rotateSlowly 20s linear infinite reverse;
    }

@keyframes rotateSlowly {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

    .services-header h2 {
        font-size: 56px;
        font-weight: 100;
        letter-spacing: -1px;
        margin-bottom: var(--space-20);
        position: relative;
        display: inline-block;
    }

        .services-header h2::before,
        .services-header h2::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 1px;
            background: var(--black);
            top: 50%;
            transform: translateY(-50%);
        }

        .services-header h2::before {
            left: -50px;
        }

        .services-header h2::after {
            right: -50px;
        }

    .services-header::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--black) 20%, var(--black) 80%, transparent);
    }

.asymmetric-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-40);
    margin-bottom: var(--space-40);
    position: relative;
}

    .asymmetric-grid.reverse {
        grid-template-columns: 1fr 2fr;
    }

.service-large * {
    position: relative;
    z-index: 1;
}

.service-large {
    background: var(--white);
    padding: var(--space-60);
    border-left: 4px solid var(--black);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

    .service-large::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.02);
        transition: left 0.6s ease;
        pointer-events: none;
    }

    .service-large:hover::before {
        left: 0;
    }

    .service-large::after {
        content: '';
        position: absolute;
        top: var(--space-40);
        right: var(--space-40);
        width: 15px;
        height: 15px;
        background: var(--black);
        transition: all 0.3s ease;
        pointer-events: none;
        z-index: 0;
    }

    .service-large:hover::after {
        transform: scale(1.5) rotate(45deg);
    }

    .service-large:hover {
        transform: translateX(10px);
        border-left-width: 8px;
    }

.asymmetric-grid.reverse .service-large {
    border-left: none;
    border-right: 4px solid var(--black);
}

    .asymmetric-grid.reverse .service-large::after {
        right: auto;
        left: var(--space-40);
    }

    .asymmetric-grid.reverse .service-large:hover {
        transform: translateX(-10px);
        border-right-width: 8px;
    }

.service-small {
    background: var(--black);
    color: var(--white);
    padding: var(--space-40);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

    .service-small::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 0;
        height: 0;
        border: 1px solid var(--brand-color);
        border-radius: 50%;
        transition: all 0.6s ease;
        pointer-events: none;
    }

    .service-small:hover::before {
        width: 200px;
        height: 200px;
    }

.service-number {
    font-size: 88px;
    font-weight: 100;
    line-height: 1;
    margin-bottom: var(--space-20);
    transition: all 0.3s ease;
    position: relative;
}

.service-small:hover .service-number {
    transform: scale(1.1);
}

.service-large h3,
.service-large p {
    position: relative;
    z-index: 1;
    user-select: text;
}

.service-large h3 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: var(--space-20);
    letter-spacing: -1px;
    display: inline-block;
}

    .service-large h3::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--black);
        transition: width 0.3s ease;
    }

.service-large:hover h3::after {
    width: 100%;
}

.service-large p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.service-tag {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--black);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: var(--space-20);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-decoration: none;
    color: var(--black);
}

    .service-tag:hover {
        background: var(--brand-color);
        color: var(--white);
        transform: translateY(-2px);
    }

.service-small h4 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.service-small:hover h4 {
    opacity: 1;
    letter-spacing: 3px;
}

@media (max-width: 768px) {
    .services {
        padding: var(--space-20) var(--space-20) var(--space-0) var(--space-20);
    }

    .services-header h2,
    .split-left h2 {
        font-size: 36px;
    }

        .services-header h2::before,
        .services-header h2::after {
            display: none;
        }

    .service-large {
        padding: var(--space-40);
    }

        .service-large::after {
            top: var(--space-20);
            right: var(--space-20);
        }

    .service-tag {
        padding: 6px 12px;
        font-size: var(--size-10);
    }

    .service-number {
        font-size: 60px;
    }

    .services::before {
        width: 30px;
        height: 30px;
    }

    .services::after {
        width: var(--size-20);
        height: var(--size-20);
        bottom: -35px;
    }
}
/* SERVICES END */
/* CONTACT - CONNECT START */
.contact {
    padding: var(--space-0) var(--space-20) 110px var(--space-20);
    background: var(--white);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 90px var(--space-0) -50px var(--space-0);
}

.contact-info {
    padding-right: var(--space-40);
}

    .contact-info h2 {
        font-size: 48px;
        font-weight: 100;
        margin-bottom: var(--space-40);
        position: relative;
    }

        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 0;
            width: var(--space-40);
            height: 2px;
            background: var(--black);
        }

.info-item {
    margin-bottom: 30px;
    padding-left: 30px;
    position: relative;
}

    .info-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: var(--size-10);
        height: var(--size-10);
        background: var(--black);
        transform: rotate(45deg);
    }

    .info-item h4 {
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .info-item p {
        font-size: 18px;
        font-weight: 300;
    }

.contact-form {
    padding-left: var(--space-40);
}

.form-group {
    margin-bottom: var(--space-40);
    position: relative;
}

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px 0;
        border: none;
        border-bottom: 2px solid var(--black);
        background: transparent;
        font-size: 16px;
        font-family: inherit;
        transition: all 0.3s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            padding-left: var(--space-20);
        }

    .form-group label {
        position: absolute;
        left: 0;
        top: 15px;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .form-group input:focus + label,
    .form-group input:not(:placeholder-shown) + label,
    .form-group textarea:focus + label,
    .form-group textarea:not(:placeholder-shown) + label {
        top: -20px;
        font-size: 16px;
        font-weight: 700;
    }


.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}


    .checkbox-group input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-top: 3px;
        cursor: pointer;
    }


    .checkbox-group label {
        position: static !important;
        pointer-events: auto !important;
        font-size: 16px;
        line-height: 1.4;
        cursor: pointer;
    }

        .checkbox-group label a {
          /*  color: var(--primary-color);*/
            text-decoration: underline;
            cursor: pointer;
        }




.submit-btn {
    padding: 18px 60px;
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
}

    .submit-btn::before {
        content: '';
        position: absolute;
        bottom: -8px;
        left: -8px;
        width: 30px;
        height: 30px;
        border-bottom: 2px solid var(--black);
        border-left: 2px solid var(--black);
    }

    .submit-btn:hover {
        background: transparent;
        color: var(--black);
        transform: translate(3px, 3px);
    }

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info,
    .contact-form {
        padding: 0;
    }
}
/* CONTACT - CONNECT END */
/* FOOTER START */
footer {
    margin-bottom: 60px;
    text-align: center;
    border-top: 3px solid var(--black);
    background: var(--white);
    position: relative;
}

    footer p {
        margin-top: 5px;
        color: var(--muted);
        font-size: 0.9rem;
    }

    footer span {
        color: var(--muted);
        font-weight: 600;
    }

    footer section {
        margin: 60px 0;
    }

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-40);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-20);
}

.foot-item {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.foot-nav-title {
    font-family: var(--font-brand);
    color: var(--black);
    font-size: 1.2rem;
    letter-spacing: 0.03em;
    line-height: 1.29;
    margin-bottom: var(--space-20);
    text-transform: none;
    text-transform: uppercase;
}

.foot-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.foot-item li {
    margin-bottom: 12px;
}

.foot-item a {
    color: var(--black);
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-left: 0;
    transition: all 0.3s ease-out;
}

    .foot-item a::before {
        content: '';
        position: absolute;
        left: -15px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 1px;
        background: #0c94e4;
        transition: width 0.3s ease-out;
    }

    .foot-item a:hover {
        color: var(--brand-color);
        transform: translateX(15px);
    }

        .foot-item a:hover::before {
            width: var(--size-10);
        }

footer::before {
    content: "";
    position: absolute;
    top: -30px;
    width: 50px;
    height: 50px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(0, 0, 0);
    border-image: none;
    background-color: var(--black);
    right: 10%;
    animation: 20s linear 0s infinite reverse none running rotateSlowly;
}

.poweredby {
    color: var(--muted);
    font-size: 0.8rem;
}
/* FOOTER END */
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    /*  opacity: 0;*/
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .quote-mark {
        font-size: 80px;
        left: -30px;
        top: -20px;
    }

    .quote-block h3 {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .areapage-section {
        grid-template-columns: 1fr;
        gap: var(--space-40);
    }

    .areapage-header h2 {
        writing-mode: horizontal-tb;
        font-size: 48px;
    }

    .header-decoration {
        position: static;
        width: 60px;
        height: 2px;
        margin-top: var(--space-20);
    }

    .areapage-points {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-container {
        flex-direction: column;
        gap: var(--space-10);
        /*left: var(--space-12);*/
       /* overflow: hidden;*/
        overflow-wrap: break-word;
        max-width:220px;
    }

    .timeline-content {
        position: relative;
        left: var(--space-60);
        margin-top: -45px;
        margin-bottom: 40px;
        
    }

    .timeline-line {
        width: 2px;
        height: 100%;
        top: -28px;
        left: var(--space-12);
        right: auto;
    }

    .timeline-item {
        display: block;
        align-items: center;
        gap: 30px;
        text-align: left;
    }

    .timeline-dot, .brand-timeline-dot {
        margin: 0;
        flex-shrink: 0;
        left: -8px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid-col {
        grid-template-columns: repeat(1, 1fr);
    }


    .values-header h2 {
        font-size: 36px;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: var(--space-40);
    }

    .split-divider {
        width: 100px;
        height: 2px;
        margin: var(--space-60) 0;
    }

    .split-divider-small {
        width: 200px;
        height: 2px;
        margin: var(--space-60) 0;
    }

    .split-left {
        text-align: left;
        padding-right: 0;
    }

        .split-left h2::before {
            display: none;
        }

    .asymmetric-grid,
    .asymmetric-grid.reverse {
        grid-template-columns: 1fr;
    }

        .asymmetric-grid.reverse .service-large {
            border-right: none;
            border-left: 4px solid var(--black);
        }

            .asymmetric-grid.reverse .service-large::after {
                left: auto;
                right: var(--space-20);
            }

            .asymmetric-grid.reverse .service-large:hover {
                transform: translateX(10px);
                border-left-width: 8px;
                border-right-width: 4px;
            }



    .hero h1 {
        font-size: 48px;
    }

    .hero::before,
    .hero::after {
        width: 50px;
    }
}

@media (max-width: 1090px) {
    .values-grid-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 980px) {
    .values-grid-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 670px) {
    .values-grid-col {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

a {
    color: var(--black);
}

    a:hover {
        color: var(--brand-color);
    }
/* SOCIAL MED... START */
.section-social {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: var(--space-16);
    align-items: center;
}

    .section-social svg {
        width: 50px;
        height: 50px;
        fill: var(--black);
        transition: fill 0.2s ease;
    }

    .section-social a:hover svg {
        fill: var(--brand-color);
    }
/* SOCIAL MED... END */
/* FOOTER START */
.foot-item a {
    padding-left: 0 !important;
}

    .foot-item a::before {
        display: none !important;
    }

    .foot-item a:hover {
        color: var(--brand-color) !important;
        transform: none !important;
    }

.footer-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important; /* Ersätter flex-wrap för en stram, perfekt linjerad grid */
    gap: var(--space-40) !important;
    text-align: left;
}

.footer-bottom {
    margin-top: var(--space-30);
    padding-top: var(--space-30);
    border-top: 1px solid var(--mute-soft);
    text-align: center;
}

.legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-24);
    list-style: none;
    margin-bottom: var(--space-20);
}

    .legal-links a {
        font-size: 12px;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: color 0.2s ease;
    }

        .legal-links a:hover {
            color: var(--brand-color);
        }
/* FOOTER END */
/* PAGE CONTENT - ASYMMETRIC 2-COLUMN LAYOUT START */
.info-page-section {
    padding: var(--space-80) 0;
    background: var(--white);
    min-height: 80vh;
}

.info-page-container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-80);
    align-items: start;
}

.info-content-area {
    text-align: left;
    margin-right: 5%;
}

.info-meta-tag {
    font-size: var(--size-10);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    font-weight: 600;
    display: block;
    margin-bottom: var(--space-12);
}

.info-page-title {
    font-size: var(--size-50);
    font-weight: 100;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: var(--space-20);
}

.horizontal-divider {
    width: 100px;
    height: 2px;
    background: var(--black);
    margin-bottom: var(--space-40);
}

.info-text-block h3 {
    font-size: var(--size-18);
    font-weight: 600;
    /*    margin-top: var(--space-40);*/
    margin-bottom: var(--space-12);
    letter-spacing: 0.5px;
}

.info-text-block p {
    font-size: var(--size-16);
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: var(--space-24);
}

.info-text-block ul, ol {
    padding-left: var(--space-40);
    margin: var(--space-20) 0;
}

.info-text-block li {
    padding-left: var(--space-6);
    margin-bottom: var(--space-10);
}

@media (max-width: 992px) {
    .info-page-container {
        grid-template-columns: 1fr;
        gap: var(--space-0);
    }

    .info-sidebar-area {
        position: static;
        margin-top: var(--space-20);
    }

    .info-page-title {
        font-size: var(--size-40);
    }

    .info-content-area {
        margin-right: 10%;
    }
}

@media (max-width: 490px) {
    .info-content-area {
        margin-right: 0%;
    }
}
/* PAGE CONTENT - ASYMMETRIC 2-COLUMN LAYOUT END */
/* PAGE UNDER MENU START */
.info-sidebar-area {
    position: sticky;
    top: 120px;
}

.sidebar-title {
    font-family: var(--font-brand);
    font-size: var(--size-12);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: var(--space-24);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--black);
}

.vertical-box-menu {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.menu-box-item {
    display: flex;
    align-items: flex-start;
    padding: var(--space-20);
    border: 1px solid var(--black);
    background: var(--white);
    color: var(--black) !important;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

    .menu-box-item .box-number {
        font-size: var(--size-10);
        font-weight: 700;
        margin-right: var(--space-16);
        margin-top: var(--space-2);
        color: var(--muted);
    }

    .menu-box-item .box-text h4 {
        font-size: var(--size-14);
        font-weight: 600;
        margin-bottom: var(--space-4);
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
    }

    .menu-box-item .box-text p {
        font-size: var(--size-12);
        color: var(--muted);
        margin: 0;
        line-height: 1.3;
    }

    .menu-box-item:hover {
        background: var(--black);
        color: var(--white) !important;
        border-left: 6px solid var(--brand-color);
        transform: translateX(5px);
    }

        .menu-box-item:hover .box-text p,
        .menu-box-item:hover .box-number {
            color: #aaa;
        }

    .menu-box-item.active {
        background: var(--black);
        color: var(--white) !important;
        border-left: 6px solid var(--brand-color);
    }

        .menu-box-item.active .box-number {
            color: var(--brand-color);
        }

        .menu-box-item.active .box-text p {
            color: #ccc;
        }
/* PAGE UNDER MENU END */
/* FAQ START */
.faq-category-block {
    margin-bottom: var(--space-40);
}

.faq-category-title {
    font-family: var(--font-brand);
    font-size: var(--size-18);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--space-24);
    color: var(--black);
}

.faq-accordion {
    border-top: 1px solid var(--black);
}

.faq-item {
    border-bottom: 1px solid var(--black);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    background: transparent;
    border: none;
    padding: var(--space-24) 0;
    cursor: pointer;
    font-family: inherit;
    color: var(--black);
    position: relative;
    transition: background-color 0.2s ease;
}

    .faq-trigger:focus {
        outline: none;
    }

.faq-number {
    font-size: var(--size-12);
    font-weight: 700;
    color: var(--muted);
    min-width: var(--space-40);
}

.faq-question {
    font-size: var(--size-16);
    font-weight: 500;
    letter-spacing: 0.5px;
    padding-right: var(--space-40);
    flex-grow: 1;
    transition: color 0.3s ease;
}

.faq-icon {
    width: 12px;
    height: 12px;
    border: 1px solid var(--black);
    position: relative;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}

.faq-trigger:hover .faq-question {
    color: var(--brand-color);
}

.faq-trigger:hover .faq-icon {
    border-color: var(--brand-color);
    background-color: rgba(12, 148, 228, 0.05);
}

.faq-item.active .faq-question {
    font-weight: 700;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background-color: var(--black);
    border-color: var(--black);
    animation: 10s linear 0s infinite reverse none running rotateSlowly;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-panel {
    max-height: 500px;
}

.faq-answer {
    padding-bottom: var(--space-24);
    padding-left: var(--space-40);
}

    .faq-answer p {
        font-size: var(--size-15);
        color: #444;
        line-height: 1.7;
        margin: 0;
    }
/* FAQ END */
/* PAGE LIST START */
.page-list-item {
    border: 1px solid var(--black);
    text-align: left;
    padding: var(--space-40) var(--space-24);
}

.page-list-area {
    margin-bottom: 15px;
    font-weight: 700;
}

.page-list-description {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: var(--space-20);
}

.page-list-cta {
    margin-top: auto;
    display: inline-block;
}

.page-list-decoration {
    background-color: var(--brand-color);
}
/* PAGE LIST END */
/* PAGE DETAIL - SERVICE START */
.service-detail-section {
    width: 100%;
    background: var(--white);
    border-bottom: 2px solid var(--black);
}

.service-detail-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.service-detail-left-pane {
    padding: var(--space-120) var(--space-40) var(--space-80) var(--space-40);
    display: flex;
    justify-content: flex-end;
}

    .service-detail-left-pane .pane-content-wrapper {
        max-width: 540px;
    }

.service-detail-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 100;
    letter-spacing: -2px;
    line-height: 1.0;
    margin-bottom: var(--space-20);
}

.minimal-feature-list {
    list-style: none;
    padding: 0;
    margin: var(--space-24) 0;
}

    .minimal-feature-list li {
        font-size: var(--size-15);
        color: var(--muted);
        position: relative;
        padding-left: var(--space-24);
        margin-bottom: var(--space-16);
        line-height: 1.6;
    }

        .minimal-feature-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            background: var(--black);
            transform: rotate(45deg);
        }

.service-extended-text h3 {
    font-size: var(--size-18);
    font-weight: 600;
    margin-top: var(--space-40);
    margin-bottom: var(--space-12);
    letter-spacing: 0.5px;
}

.service-extended-text p {
    font-size: var(--size-15);
    color: var(--muted);
    line-height: 1.8;
}

.service-detail-right-pane {
    background: var(--black);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-40);
}

.pane-monumental-text-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    font-family: var(--font-brand);
    font-size: clamp(48px, 7vw, 90px);
    line-height: 0.85;
    letter-spacing: -2px;
    user-select: none;
    pointer-events: none;
}

.monumental-solid-text {
    color: var(--white);
    font-weight: 700;
}

.monumental-stroke-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    font-weight: 400;
}

.pane-morph-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid var(--brand-color);
    top: 20%;
    left: 15%;
    transform-origin: center;
    animation: slowPaneRotate 25s linear infinite;
    z-index: 1;
    pointer-events: none;
}

    .pane-morph-shape::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border: 1px solid rgba(12, 148, 228, 0.05);
        transform: rotate(45deg);
    }

.pane-corner-tag {
    position: absolute;
    bottom: var(--space-40);
    left: var(--space-40);
    right: var(--space-40);
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-brand);
    font-size: 11px;
    letter-spacing: 2px;
}

@keyframes slowPaneRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.15);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@media (max-width: 992px) {
    .service-detail-split-container {
        grid-template-columns: 1fr;
    }

    .service-detail-left-pane {
        display: block;
        min-height: 400px;
        padding: var(--space-60) var(--space-40);
    }

    .service-detail-right-pane {
        min-height: 400px;
        padding: var(--space-60) var(--space-20);
    }

    .pane-monumental-text-wrapper {
        font-size: 56px;
    }
}
/* PAGE DETAIL - SERVICE END */
/* PAGE DETAIL - SOLUTION START */

.solution-detail-section {
    width: 100%;
    background: var(--white);
    border-bottom: 2px solid var(--black);
}

.solution-detail-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.solution-detail-left-pane {
    padding: var(--space-120) var(--space-40) var(--space-80) var(--space-40);
    display: flex;
    justify-content: flex-end;
    border-right: 1px solid var(--black);
}

    .solution-detail-left-pane .pane-content-wrapper {
        max-width: 600px;
        width: 100%;
    }

.solution-detail-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 100;
    letter-spacing: -2px;
    line-height: 1.0;
    margin-bottom: var(--space-20);
}

.solution-extended-text h3 {
    font-size: var(--size-18);
    font-weight: 600;
    margin-top: var(--space-40);
    margin-bottom: var(--space-12);
    letter-spacing: 0.5px;
}

.solution-extended-text p {
    font-size: var(--size-15);
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: var(--space-16);
}

.solution-detail-right-pane {
    padding: var(--space-120) var(--space-40) var(--space-80) var(--space-40);
    display: flex;
    justify-content: flex-start;
    background: #fafafa;
}

.spec-pane-wrapper {
    max-width: 600px;
    width: 100%;
}

.spec-block {
    margin-bottom: var(--space-60);
}

.spec-section-title {
    font-family: var(--font-brand);
    font-size: var(--size-13);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: var(--space-24);
    padding-bottom: var(--space-8);
    border-bottom: 2px solid var(--black);
}

.spec-data-table {
    display: flex;
    flex-direction: column;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-16) 0;
    border-bottom: 1px solid #dddddd;
    font-size: var(--size-14);
}

    .spec-row:last-child {
        border-bottom: none;
    }

.spec-label {
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.5px;
}

.spec-value {
    color: var(--muted);
    font-weight: 300;
}

.spec-intro-text {
    font-size: var(--size-14);
    color: var(--muted);
    margin-bottom: var(--space-24);
}

.pricing-matrix {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.matrix-item {
    border: 1px solid var(--black);
    padding: var(--space-24);
    background: var(--white);
    transition: all 0.3s ease;
}

.matrix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-12);
}

    .matrix-header h4 {
        font-size: var(--size-16);
        font-weight: 600;
        letter-spacing: 0.5px;
    }

.matrix-price {
    font-family: var(--font-brand);
    font-size: var(--size-12);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #eeeeee;
    padding: var(--space-4) var(--space-12);
}

.matrix-item p {
    font-size: var(--size-13);
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

.matrix-item.highlighted {
    border-left: 4px solid var(--brand-color);
}

    .matrix-item.highlighted .matrix-price {
        background: rgba(12, 148, 228, 0.1);
        color: #0c94e4;
        font-weight: 700;
    }

.matrix-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.spec-footer-action {
    border-top: 1px dashed var(--black);
    padding-top: var(--space-20);
}

    .spec-footer-action p {
        font-size: var(--size-12);
        font-style: italic;
        color: var(--muted);
        margin: 0;
    }

@media (max-width: 992px) {
    .solution-detail-split-container {
        grid-template-columns: 1fr;
    }

    .solution-detail-left-pane {
        padding: var(--space-120) var(--space-20) var(--space-60) var(--space-20);
        border-right: none;
        border-bottom: 1px solid var(--black);
        justify-content: center;
    }

    .solution-detail-right-pane {
        padding: var(--space-60) var(--space-20);
        justify-content: center;
    }
}
/* PAGE DETAIL - SOLUTION END */
/* PAGE DETAIL - COURSE START */
.course-detail-section {
    /*  padding: var(--space-120) 0;
    background: var(--white);*/
    padding: var(--space-80) 0 0 0;
    background: var(--white);
    min-height: 80vh;
}


.course-detail-grid {
    display: grid;
    grid-template-columns: 2fr 380px;
    gap: var(--space-80);
    align-items: start;
}

.course-main-content {
    text-align: left;
}

    .course-main-content p {
        margin-bottom: var(--space-30);
    }

    .course-main-content h2,
    .course-main-content h3,
    .course-main-content h4,
    .course-main-content h5 {
        margin-bottom: var(--space-10);
    }


    .course-main-content ul,
    .course-main-content ol {
        margin-bottom: var(--space-20);
        margin-left: var(--space-20);
    }

    .course-main-content li {
        margin-left: var(--space-20);
    }

.course-detail-title {
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 100;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: var(--space-20);
}

.course-modules-block {
    margin-top: var(--space-60);
    margin-bottom: var(--space-60);
}

.course-module-item {
    border-bottom: 1px solid var(--mute-soft);
    padding: var(--space-24) 0 0 0;
}

    .course-module-item:last-child {
        border-bottom: none;
    }

.module-header {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    margin-bottom: var(--space-12);
}

.module-badge {
    font-family: var(--font-brand);
    font-size: 11px;
    letter-spacing: 1px;
    background: var(--black);
    color: var(--white);
    padding: var(--space-4) var(--space-12);
    text-transform: uppercase;
}

.module-header h4 {
    font-size: var(--size-18);
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.course-module-item p {
    font-size: var(--size-15);
    color: var(--muted);
    line-height: 1.7;
    padding-left: var(--space-0);
}

.course-instructor-block {
    /*margin-top: var(--space-60);*/
}

.instructor-card {
    border: 1px solid var(--black);
    /* padding: var(--space-30);*/
    background: #f3f3f3;
}

.instructor-info {
    padding: var(--space-20);
}

    .instructor-info h4 {
        font-size: var(--size-16);
        font-weight: 600;
        margin-bottom: var(--space-8);
    }

    .instructor-info p {
        font-size: var(--size-15);
        color: var(--muted);
        line-height: 1.6;
        margin: 0;
    }

.course-sidebar-panel {
    position: sticky;
    top: 120px;
}

.sticky-fact-box {
    border: 2px solid var(--black);
    background: var(--white);
    padding: var(--space-30);
    position: relative;
}

.sidebar-box-title {
    font-family: var(--font-brand);
    font-size: var(--size-14);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: var(--space-24);
    padding-bottom: var(--space-8);
    border-bottom: 2px solid var(--black);
}

.fact-data-list {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-40);
}

.fact-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--mute-soft);
    font-size: var(--size-14);
}

    .fact-row:last-child {
        border-bottom: none;
    }

.fact-label {
    font-weight: 600;
    color: var(--black);
}

.fact-value {
    color: var(--muted);
    font-weight: 400;
}

    .fact-value.price-highlight {
        font-family: var(--font-brand);
        font-size: var(--size-20);
        font-weight: 700;
        color: var(--black);
    }

        .fact-value.price-highlight small {
            font-family: var(--font-content);
            font-size: 11px;
            font-weight: 400;
            color: var(--muted);
            display: block;
            text-align: right;
        }


.booking-schedule-block h4 {
    font-size: var(--size-14);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-16);
}

.minimal-booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.schedule-radio-option {
    display: flex;
    align-items: flex-start;
    border: 1px solid var(--black);
    padding: var(--space-16);
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--white);
}

    .schedule-radio-option input[type="radio"] {
        margin-right: var(--space-12);
        margin-top: var(--space-4);
        accent-color: var(--black);
    }

.radio-custom-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.option-date {
    font-size: var(--size-14);
    font-weight: 600;
    color: var(--black);
}

.option-status {
    font-size: 11px;
    color: #c92a2a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .option-status.availability-good {
        color: #2b8a3e;
    }

.schedule-radio-option:has(input[type="radio"]:checked) {
    background: #fafafa;
    border-left: 4px solid var(--brand-color);
}

.course-register-btn {
    width: 100%;
    margin-top: var(--space-12);
    text-align: center;
}

.sidebar-support-hint {
    margin-top: var(--space-24);
    border-top: 1px dashed #cccccc;
    padding-top: var(--space-16);
}

    .sidebar-support-hint p {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.5;
        margin: 0;
    }

    .sidebar-support-hint a {
        color: var(--black);
        text-decoration: underline;
        font-weight: 600;
    }

@media (max-width: 992px) {
    .course-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--space-60);
    }

    .course-sidebar-panel {
        position: static;
        width: 100%;
    }
}
/* PAGE DETAIL - COURSE END */
/* ANIMATION OBJECTS START  */
.object-morph-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid var(--brand-color);
    top: 20%;
    right: 10%;
    transform-origin: center;
    animation: slowObjectRotate 25s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 992px) {
    .object-morph-shape {
        position: absolute;
        width: 300px;
        height: 300px;
    }
}
/*.object-morph-shape::before {
        content: 'E';
        font-size: 280px;
        font-weight:900;
        color: var(--mute-soft);
        position: absolute;
        width: 100%;
        height: 100%;*/
/* border: 1px solid var(--brand-color);*/
/*transform: rotate(45deg);
    }*/

@keyframes slowObjectRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.15);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}
/* ANIMATION OBJECTS START */

.nav-search-item {
    display: flex;
    align-items: center;
    /* padding-left: var(--space-8);*/
}

.nav-search-link {
    color: var(--black);
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.2s ease;
}

    .nav-search-link:hover {
        color: var(--brand-color);
        transform: scale(1.05);
    }
/* Dölj sökikonen från desktopmenyn på mobil (eftersom den ligger som textlänk i mobilmenyn) */
@media (max-width: 768px) {
    .nav-search-item {
        display: none !important;
    }
}
/* BOX SYSTEM FLASH MESSAGES START */

.sys-flash-msg {
    width: 100%;
    /*height: var(--size-120);*/
    padding: var(--space-40) 0;
    border-bottom: 1px solid var(--black);
    position: relative;
    z-index: 9998;
    transition: opacity 0.6s ease, margin 0.6s ease;
    background-color: var(--brand-color);
}

.sys-flash-msg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-20);
    align-items: center;
    justify-content: space-between;
}

.sys-flash-msg-content {
    align-items: center;
    gap: var(--space-12);
    font-size: var(--size-20);
}

    .sys-flash-msg-content h4 {
        font-family: var(--font-brand);
        font-size: var(--size-30);
        font-weight: 700;
        color: var(--black);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin: 0;
    }

.sys-flash-msg-btn-close {
    display: flex;
    position: absolute;
    background: none;
    border: none;
    font-family: var(--font-brand);
    font-size: var(--size-20);
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    padding: var(--space-4) var(--space-8);
    line-height: 1;
    top: auto;
    right: 15%;
    text-align: right;
}

/* BOX SYSTEM FLASH MESSAGES END */

/* PROMO BANNER START */

.promo-container {
    /* width: 100%;*/
    /* padding: var(--space-60) 0;*/
    background: var(--white);
    border-top: 1px solid var(--mute-soft);
    border-bottom: 1px solid var(--mute-soft);
}

.promo-container-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-20);
}

.promo-container-box-in {
    position: relative;
}

.promo-container-anchor-brand {
    position: absolute;
    left: 0;
    top: -var(--space-20);
    font-family: var(--font-brand);
    font-size: var(--size-120);
    font-weight: 700;
    color: var(--brand-color);
    line-height: 1;
    user-select: none;
}

.promo-container-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-20);
    align-items: flex-start;
}

    .promo-container-content h3 {
        font-family: var(--font-brand);
        font-size: var(--size-30);
        font-weight: 700;
        color: var(--black);
        line-height: 1.3;
        text-transform: uppercase;
        margin: 0;
        max-width: 800px;
    }

    .promo-container-content p {
        /*        font-family: var(--font-content);
        font-size: var(--size-16);
        color: var(--muted);
        margin: 0;
        max-width: 700px;*/
        font-size: 14px;
        letter-spacing: var(--space-1);
        text-transform: uppercase;
        font-weight: 500;
        text-align: left;
    }

.promo-container-cta {
    margin-top: var(--space-12);
    position: relative;
}

.promo-container-btn {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-brand);
    font-size: var(--size-16);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: var(--space-12) var(--space-35);
    transition: background 0.3s ease;
}

@media (max-width: 560px) {
    /*.promo-container-anchor-brand {
        display:none;
    }*/
}
/* PROMO BANNER END */

/* SEARCH PAGE START */
.search-form {
    margin-bottom: var(--space-40);
}

.search-input-wrapper {
    display: flex;
    gap: var(--space-10);
}

.search-input {
    flex: 1;
    padding: var(--space-12) var(--space-16);
    font-size: var(--font-16);
    border: 1px solid var(--black);
    border-radius: var(--radius-8);
}

.search-button {
    padding: var(--space-12) var(--space-20);
    font-size: var(--font-16);
    background: var(--brand-color);
    color:var(--white);
    border: none;
    border-radius: var(--radius-8);
    cursor: pointer;
    transition: background 0.2s ease;
}

    .search-button:hover {
        background: var(--black);
        color:var(--white);
    }

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-20);
}

.search-result-item {
    display: block;
    padding: var(--space-20);
    border-radius: var(--radius-8);
    background: var(--color-surface);
    text-decoration: none;
    color: var(--color-text);
    transition: background 0.2s ease;
}

  /*  .search-result-item:hover {
        background: var(--color-surface-hover);
    }*/

/*.search-result-title {
    font-size: var(--font-20);
    font-weight: 600;
}*/

/*.search-result-category {
    font-size: var(--font-14);
    color: var(--color-muted);
    margin-top: var(--space-4);
}*/

/*.search-result-description {
    margin-top: var(--space-8);
    font-size: var(--font-16);
}
*/
/* SEARCH PAGE END */

/* OVER WRITER START */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-20) var(--space-40) var(--space-20);
    justify-content: space-between;
}

.container-divider {
    background: var(--black);
    width: 1px;
    height: 100%;
}

.pb-0 {
    padding-bottom: var(--space-0);
}

.padding-0 {
    padding: 0;
}

.marging-0 {
    margin: 0;
}

.font-18 {
    font-size: var(--size-18);
}

.font-20 {
    font-size: var(--size-20);
}

.font-48 {
    font-size: var(--size-48);
}

.font-30 {
    font-size: var(--size-30);
}

.pt-35 {
    padding-top: var(--space-35);
}

.pb-35 {
    padding-bottom: var(--space-35);
}

.mt-20 {
    margin-top: var(--space-20);
}
.mb-20 {
    margin-bottom: var(--space-20);
}
.mb-40 {
    margin-bottom: var(--space-40);
}
.mb-60 {
    margin-bottom: var(--space-60);
}
.mb-80 {
    margin-bottom: var(--space-80);
}
.mt-mp-20 {
    margin: var(--space-20) 0;
}

.mt-mp-30 {
    margin: var(--space-30) 0;
}

.text-on-top-50 {
    justify-content: start;
}
.bg-black {
    background-color: var(--black);
}

.text-white {
    color: var(--white);
}
.text-brand {
    color: var(--brand-color);
}
.text-mute {
    color: var(--mute-medium-d) !important;
}
.required-input{
    display:none;
}
.position-inherit {
    position: inherit;
}
@media (max-width: 990px) {

    .font-48 {
        font-size: var(--size-30);
    }
}

@media (max-width: 768px) {
    .container-divider {
        width: 100px;
        height: 2px;
        margin: 0 auto;
    }

    .stat-number-text {
        font-size: var(--size-30);
    }

    .contact-grid {
        margin: 0;
    }
}

@media (max-width: 560px) {
    .module-header {
        display: block;
    }

    .course-main-content ul, .course-main-content ol {
        margin-bottom: var(--space-20);
        margin-left: var(--space-12);
    }

    .section-social {
        gap: var(--space-0);
    }

    .info-meta-tag {
        /*   font-size: var(--size-14);*/
        margin-bottom: var(--space-20);
        color: var(--muted);
    }
}
/* OVER WRITER END */


