html {
    scroll-behavior: smooth;
}
@font-face {
    font-family: "Inter";
    src: url("fonts/Inter-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("fonts/Inter-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("fonts/Inter-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("fonts/Inter-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("fonts/Inter-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
:root {
    --navy: #102f5e;
    --blue: #1769e0;
    --light-blue: #f4f8fc;
    --white: #ffffff;
    --text: #10213b;
    --border: #e7ecf2;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--text);
}

.site-header {
    min-height: 72px;
    padding: 14px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.brand-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.brand-claim {
    font-size: 12px;
    font-weight: 400;
    color: #8a929f;
    line-height: 1;
    white-space: nowrap;
}

.brand {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.main-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--blue);
}
.hero {
    display: grid;
    grid-template-columns: 42% 58%;
    height: 500px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 70px 8%;
}

.hero-content h1 {
    max-width: 600px;
    margin: 0 0 28px;
    color: var(--navy);
    font-size: clamp(26px, 2.1vw, 36px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.button-primary {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 5px;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.button-primary:hover {
    opacity: 0.9;
}

.hero-visual {
    height: 100%;
    min-height: 0;
    overflow: hidden;
}
.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.services {
    padding: 65px 7% 75px;
    background: var(--light-blue);
}

.section-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-header h2 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.2;
}

.section-header p {
    margin: 0;
    color: var(--text);
    font-size: 18px;
    line-height: 1.6;
}

.service-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.service-item {
    padding: 10px 50px;
    text-align: center;
}

.service-item + .service-item {
    border-left: 1px solid var(--border);
}

.service-icon {
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 42px;
    line-height: 1;
}
.service-icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-item h3 {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.service-item p {
    max-width: 280px;
    margin: 0 auto;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}
.concept {
    padding: 65px 7% 55px;
    background: var(--white);
}

.concept-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.concept-item {
    padding: 10px 50px;
    text-align: center;
}





.concept-item h3 {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.concept-item p {
    max-width: 280px;
    margin: 0 auto;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}
.locations {
    padding: 80px 5%;
    background: var(--light-blue);
}

.location-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.location-item {
    padding: 10px 35px;
    text-align: center;
}

.location-item + .location-item {
    border-left: 1px solid var(--border);
}

.location-icon {
    min-height: 48px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--blue);
    font-size: 38px;
    line-height: 1;
}
.location-icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.location-item h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.location-item p {
    max-width: 260px;
    margin: 0 auto;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
    background: var(--white);
}

.about-visual {
    min-height: 650px;
    background: var(--light-blue);
    background-image: url("images/ueber-advendr.png");
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 10%;
}

.section-label {
    margin-bottom: 24px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content h2 {
    margin: 0 0 28px;
    color: var(--navy);
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.5px;
}

.about-content > p {
    max-width: 620px;
    margin: 0 0 22px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.7;
}

.about-principles {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.about-principles div {
    padding: 18px 20px;
    text-align: center;
    border-left: 1px solid var(--border);
}

.about-principles div:first-child {
    border-left: 0;
}

.about-principles strong {
    color: var(--navy);
    font-size: 14px;
}
.contact {
    padding: 100px 7%;
    background: var(--navy);
    color: var(--white);
}

.contact-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    margin: 0 0 18px;
    color: var(--white);
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.1;
}

.contact-inner > p {
    margin: 0 0 35px;
    font-size: 19px;
    line-height: 1.6;
}

.contact .button-primary {
    background: var(--blue);
}



.contact-separator {
    opacity: 0.5;
}

.contact-note {
    opacity: 0.7;
    font-size: 14px;
}



.site-footer {
    padding: 24px 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: var(--white);
    color: var(--text);

    border-top: 1px solid var(--border);
    font-size: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

.footer-brand strong {
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.footer-brand span {
    opacity: 0.55;
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    opacity: 0.65;
}

.footer-links a:hover {
    color: var(--blue);
    opacity: 1;
}

.footer-copy {
    opacity: 0.55;
}



@media (max-width: 1300px) {

    .site-header {
        min-height: auto;
        padding: 18px 6%;
    }

    .brand-name {
        font-size: 14px;
    }

    .brand-claim {
        font-size: 12px;
     white-space: nowrap;   
    }

    .main-nav {
        display: none;
    }
    .hero {
        display: grid;
        grid-template-columns: 1fr;
        height: auto;
        overflow: hidden;
    }
   

    .hero-content {
    padding: 48px 6%;
    }

    .hero-content h1 {
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -0.7px;
    }
    .hero-visual {
    width: 100%;
    height: 360px;
    overflow: hidden;
    }

    .hero-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }


    .services,
    .concept,
    .locations {
        padding: 65px 7%;
    }

    .section-header {
        margin-bottom: 45px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 16px;
    }

    .service-grid,

    .location-grid {
        grid-template-columns: 1fr;

.concept-grid {
    grid-template-columns: 1fr;
    gap: 22px;
}

.concept-arrow {
    padding-top: 0;
    transform: rotate(90deg);
    font-size: 26px;
    justify-content: center;
}

.concept-item {
    padding: 20px 10px;
    text-align: center;
}
    }

    .service-item,
    .location-item {
        padding: 30px 10px;
    }

    .service-item + .service-item,
    .location-item + .location-item {
        border-left: 0;
        border-top: 1px solid var(--border);
    }

  .footer-brand .brand-claim {
    white-space: nowrap;
    font-size: 12px;
}

.concept-number {
    width: 38px;
    height: 38px;
    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--blue);
    border-radius: 50%;

    color: white;
    font-size: 13px;
    font-weight: 700;

    position: static;
    transform: none;
}
.concept-icon {
    margin-bottom: 16px;
}
.concept-icon svg {
    width: 44px;
    height: 44px;
}
    .concept-item h3 {
    font-size: 15px;
}

.concept-item p {
    max-width: 300px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.55;
}

    .about {
        grid-template-columns: 1fr;
        display: block;
        min-height: 0;
    }
  

    .about-content {
        padding: 65px 7%;
    }

    .about-content h2 {
        font-size: 40px;
    }

    .about-principles {
        grid-template-columns: 1fr;
    }

    .about-principles div {
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .about-principles div:first-child {
        border-top: 0;
    }
    .about {
    grid-template-columns: 1fr;
    min-height: 0;
}

.about-visual {
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;

    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.about-content {
        padding: 65px 7%;
    }
    .contact {
        padding: 75px 7%;
    }

    

    .contact-separator {
        display: none;
    }



   
}
.services .section-header h2,
.concept .section-header h2 {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.services .section-header p,
.concept .section-header p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}
.locations .section-header h2 {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.locations .section-header p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}
.services .section-header,
.concept .section-header {
    margin-bottom: 42px;
}
.concept-icon {
    height: 60px;
    margin: 0 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.concept-icon svg {
    width: 50px;
    height: 50px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.concept-arrow {
    text-align: center;
    color: var(--blue);
    font-size: 38px;
    font-weight: 300;
}

.concept-item h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.concept-item p {
    max-width: 260px;
    margin: 0 auto;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}
.concept-grid {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 70px 1fr 70px 1fr;
    align-items: start;
    gap: 0;
}

.concept-item {
    position: relative;
    padding: 0 30px 30px;
    text-align: center;
}


.concept-arrow {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding-top: 38px;

    color: var(--blue);
    font-size: 32px;
    font-weight: 300;
}
.contact {
    padding: 90px 7%;
    background: var(--navy);
    text-align: center;
}

.contact-content {
    max-width: 760px;
    margin: 0 auto;
}

.contact h2 {
    margin: 0 0 24px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.contact h3 {
    margin: 0 0 16px;
    color: white;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-content > p {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.6;
}

.contact .button-primary {
    display: inline-block;
    margin-bottom: 30px;
}

.contact-details {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 20px 160px 20px 1fr;
    align-items: center;

    font-size: 14px;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

/* E-Mail */
.contact-details a:first-of-type {
    justify-self: end;
}

/* Telefonnummer – exakt auf der Mittelachse */
.contact-details a:nth-of-type(2) {
    justify-self: center;
}

/* WhatsApp */
.contact-details a:last-of-type {
    justify-self: start;
}

.contact-divider {
    justify-self: center;
    color: rgba(255, 255, 255, 0.35);
}

.contact-details a:hover {
    color: white;
}

.contact-divider {
    opacity: 0.4;
}
.contact-person {
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-person strong {
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.contact-person span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}
@media (max-width: 800px) {

    .concept-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .concept-item {
        padding: 25px 10px;
        text-align: center;
    }

    .concept-arrow {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        transform: rotate(90deg);
        font-size: 26px;
    }
.legal-hero {
    padding: 65px 7% 50px;
}

.legal-hero h1 {
    font-size: 34px;
    letter-spacing: -0.5px;
}

.legal-intro {
    font-size: 16px;
}

.legal-content {
    padding: 55px 7% 75px;
}

.legal-content h2 {
    margin-top: 38px;
    font-size: 18px;
}
.legal-back {
    font-size: 12px;
}
}


/* =========================
   LEGAL PAGES
   ========================= */

.legal-page {
    background: var(--white);
}

.legal-hero {
    padding: 90px 7% 70px;
    background: var(--light-blue);
}

.legal-hero-inner {
    width: min(760px, 100%);
    max-width: none;
    margin: 0 auto;
}

.legal-label {
    margin: 0 0 20px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.legal-hero h1 {
    margin: 0 0 24px;
    color: var(--navy);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1px;
}

.legal-intro {
    max-width: 650px;
    margin: 0;
    color: var(--text);
    font-size: 18px;
    line-height: 1.6;
}

.legal-content {
    width: min(760px, 86%);
    max-width: none;
    margin: 0 auto;
    padding: 75px 0 100px;
}

.legal-content h2 {
    margin: 48px 0 14px;
    color: var(--navy);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin: 0 0 18px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.75;
}

.legal-content a {
    color: var(--blue);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}
.legal-back {
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
}

.legal-back:hover {
    color: var(--blue);
}
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--navy);
    color: var(--white);

    border-radius: 50%;
    text-decoration: none;

    font-size: 20px;
    font-weight: 500;

    z-index: 1000;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.2s ease;
}
.back-to-top.visible {
    opacity: 0.85;
    visibility: visible;
    pointer-events: auto;
}
.back-to-top:hover {
    opacity: 1;
    transform: translateY(-2px);
}