@font-face {
    font-family: 'Geist';
    src: url('assets/fonts/Geist[wght].ttf') format('truetype');
    font-weight: 100 900; /* Variable weight range */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('assets/fonts/Oswald-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900; /* Variable weight range */
    font-style: normal;
    font-display: swap;
}

/* ===========================
   DESIGN VARIABLES
   =========================== */

:root {
    /* Primärfarben */
    --color-primary: #ffffff;        /* Tiefblau – Hauptmarke */
    --color-accent: #7436FF;         /* Signalrot – Buttons / CTA */
    --color-site-bg: #f9f9f9;        /* Seitenhintergrund */
    --color-bg: #FFFFFF;
    --color-surface: #FFFFFF;        /* Flächen / Karten */
    
    /* Textfarben */
    --color-text: #111827;           /* Haupttext */
    --color-text-muted: #4B5563;     /* Sekundärer Text */

    /* Linien & Rahmen */
    --color-border: #111827;         /* Dunkel (statt black) */
    --color-border-light: #E5E7EB;   /* Helle Linien */

    /* Zustände */
    --color-success: #16A34A;
    --color-warning: #F59E0B;
    --color-danger: #DC2626;

    /* Abstände */
    --spacing-xxs: .25rem;
    --spacing-xs: .5rem;
    --spacing-s: .75rem;
    --spacing-m: 1rem;
    --spacing-l: 1.5rem;
    --spacing-xl: 2.5rem;
    --spacing-xxl: 4rem;
    --skew-offset: 4vh;
    --global-padding: .75rem;
    --radius: 0rem;
    --max-width: 1200px;

    --card-padding: 1.5rem;
}

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

html, body {
    font-family: 'Geist', system-ui, sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: var(--color-primary);
    color: var(--color-text);
    max-width: 1920px;
    margin: auto;
}

section{
    padding: 1rem;
}

.block{
    padding: clamp(.5rem, 3vw, 6rem);
}

article{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 1280px;
}








p{
    font-size: clamp(1.2rem, 5vw, 1.6rem);
}

h1{
    font-size: clamp(2.2rem, 8vw, 4.8rem);
    line-height: 1;
    font-weight: 800;
}

h2{
    font-size: clamp(1.6rem, 6vw, 3.2rem);
    line-height: 1;
    font-weight: 800;
}

h3{
    font-size: clamp(1.3rem, 4vw, 2.5rem);
    line-height: 1;
    font-weight: 800;
    font-weight: 600;
}

button{
    all: unset;
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Geist';
    font-weight: 600;
    text-align: center;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}



.hero video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: .5;
    border-radius: 0 0 24px 24px;
}

.hero-cta{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--global-padding);
}

.highlight{
    color: var(--color-accent);
}

section.hero{
    position: relative;
    height: 100svh;
    max-height: 900px;
}

section.hero .block{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

section.hero .hero-content{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

section.hero .hero-content, section.hero h1{
    z-index: 2;
}






section.intro .block{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

section.intro .claim{
    color: var(--color-accent);
    font-weight: 600;
}


section.services{
    background-color: var(--color-site-bg);
    border-radius: 24px;
}


section.services .claim h2{
    color: var(--color-accent);
}

section.services .serviceitems{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
    grid-auto-rows: 1fr;
}

section.services .card{
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background-color: white;
    border-radius: 24px;
    gap: 1.5rem;
}

.card h3{
    font-size: 1.4rem;
    font-weight: 700;
}

.card p{
    font-size: 1.2rem;
}