/* =========================================================
   GRUNDLAGEN
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #17384d;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    margin: 0;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #333;
    text-decoration: underline;
}

a:hover {
    color: #333;
    text-decoration: none;
}


/* =========================================================
   TYPOGRAFIE
========================================================= */

h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 25px;
    color: #2F556E;
}

h5 {
    font-size: 30px;
    text-align: center;
    color: #2F556E;
    line-height: 1.2 !important;
}

h6 {
    font-size: 20px;
    text-align: center;
    color: #2F556E;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1.2 !important;
}

h7 {
    display: block;
    font-size: 25px !important;
    text-align: center;
    color: #FFFFFF;
    line-height: 1.4 !important;
    padding-top: 0;
    padding-bottom: 20px;
}

h8 {
    display: block;
    font-size: 20px;
}

p {
    font-size: 17px;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    background: #17384d;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: white;
    text-align: center;

    padding-top: 80px;
    padding-bottom: 160px;
}

.hero-logo {
    max-width: 320px;
    width: 100%;
    height: auto;

    animation: slideDown 1s ease-out;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
}

.hero h1,
.hero-title {
    font-size: 42px;
    margin-bottom: 20px;

    animation: slideLeft 1.2s ease-out;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

.hero-sub {
    font-size: 20px;
    margin-bottom: 40px;

    text-shadow:
        0 1px 3px rgba(0,0,0,0.5),
        0 4px 12px rgba(0,0,0,0.35);

    animation: slideRight 1.4s ease-out;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
}

.hero-button {
    animation: slideUp 1.6s ease-out;
    animation-fill-mode: forwards;
    animation-delay: 1.1s;
}


/* =========================================================
   HERO ANIMATIONEN
========================================================= */

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-80px);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(80px);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   BUTTONS
========================================================= */

.cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;

    background: white;
    color: #2F556E;

    padding: 15px 30px;

    text-decoration: none;
    font-weight: 600;

    border-radius: 15px;

    box-shadow: 0 8px 18px rgba(255,255,255,0.3);
    filter: brightness(1.05);

    transition: all 0.25s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}


/* DARKFRAME BUTTON */

.cta-button-darkframe {
    display: block;
    width: fit-content;
    margin: 0 auto;

    background: white;
    color: #2F556E;

    padding: 15px 30px;

    text-decoration: none;
    font-weight: 600;

    border: 1px solid #2F556E;
    border-radius: 15px;

    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    filter: brightness(1.05);

    transition: all 0.25s ease;
}

.cta-button-darkframe:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cta-button-darkframe:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}


/* ANGEBOT BUTTON */

.angebot-cta-button {
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;

    padding: 12px 22px;

    border-radius: 15px;
    border: 1px solid #2F556E;

    font-weight: 600;
    text-decoration: none;

    background: linear-gradient(90deg, #ffa500, #ffcc70);
    color: #333;

    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    filter: brightness(1.05);

    transition: all 0.25s ease;
}

.angebot-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.angebot-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}


/* =========================================================
   SEKTIONEN
========================================================= */

.section {
    padding: 80px 0;
}

.section h2 {
    color: #2F556E;
    margin-bottom: 20px;
}

.section h3 {
    color: #2F556E;
    margin-bottom: 10px;
}

.light {
    background: #F2F4F6;
}


/* =========================================================
   PARALLAX
========================================================= */

.parallax {
    background-image: url("../img/260507_BG_Mainmap_1600x1000.jpg");

    height: 400px;

    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;

    background-attachment: fixed;
}


/* =========================================================
   PROBLEM-LISTE
========================================================= */

.problem-list {
    margin: 20px 0;
    padding-left: 25px;
    font-size: 18px;
}

.problem-list li {
    margin-bottom: 8px;
}


/* =========================================================
   ANSATZ
========================================================= */

.ansatz-layout {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 2.5rem;
    align-items: start;
}

.ansatz-list {
    margin: 20px 0;
    font-size: 20px;
}

.ansatz-graphic img {
    width: 100%;
    max-width: 400px;

    position: sticky;
    top: 100px;

    transform: translateX(-110px) translateY(-20px);
}


/* =========================================================
   CHECKLISTEN
========================================================= */

.checkmark-svg,
.checkmark-beratung {
    list-style: none;
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 1px;
    margin: 20px;
}

.checkmark-svg li,
.checkmark-beratung li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.check-text {
    display: block;
    line-height: 1.2;
    flex: 1;
	font-size: 17px;
}

.check-icon {
    margin-top: 0.15em;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}


/* =========================================================
   CHECKMARK FARBEN / ANIMATION
========================================================= */

.circle,
.check {
    fill: none;
    stroke: #28a745;
}

.circle {
    stroke-width: 2;
    stroke-dasharray: 63;
    stroke-dashoffset: 63;

    animation: drawCircle 0.6s ease forwards;
}

.check {
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;

    stroke-dasharray: 20;
    stroke-dashoffset: 20;

    animation: drawCheck 0.4s ease forwards;
    animation-delay: 0.6s;
}

.checkmark-beratung.orange .circle,
.checkmark-beratung.orange .check {
    stroke: #f57c00;
}

.checkmark-beratung.green .circle,
.checkmark-beratung.green .check {
    stroke: #28a745;
}

.checkmark-beratung.blue .circle,
.checkmark-beratung.blue .check {
    stroke: #1565c0;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.animate .circle {
    animation: drawCircle 0.6s ease forwards;
}

.animate .check {
    animation: drawCheck 0.4s ease forwards;
    animation-delay: 0.6s;
}


/* =========================================================
   LEISTUNGS-CARDS
========================================================= */

.cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.card,
.card-2 {
    position: relative;
    overflow: visible;

    padding: 3px 25px 25px 25px;

    flex: 1;

    border-radius: 8px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);

    transition: all 0.25s ease;

    background: white;
}

.card-2:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}


/* =========================================================
   CARD BADGE
========================================================= */

.card-badge {
    position: absolute;

    top: -12px;
    right: 20px;

    background: #9333ea;
    color: white;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;

    padding: 0.35rem 0.7rem;

    border-radius: 999px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.15);

    text-transform: uppercase;
}


/* =========================================================
   PROMO
========================================================= */

.card-promo {
    margin-top: 1.5rem;

    padding: 0.5rem 1.1rem;

    background: linear-gradient(135deg, #8b5cf6, #6d28d9);

    color: white;

    border-radius: 12px;

    font-size: 0.92rem;
    font-weight: 600;

    line-height: 1.5;

    box-shadow: 0 12px 30px rgba(124,58,237,0.18);

    border: 1px solid rgba(255,255,255,0.15);
}


/* =========================================================
   FULL CARD
========================================================= */

.card-full {
    position: relative;
    overflow: visible;

    flex: 0 0 100%;

    box-sizing: border-box;

    padding: 5px 35px 30px 35px;

    border-radius: 8px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    background: white;

    margin-top: 20px;
}

.cardfull-badge {
    position: absolute;

    top: -12px;
    right: 120px;

    background: #ffa500;
    color: #00005F;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;

    padding: 0.35rem 0.7rem;

    border-radius: 999px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.15);

    text-transform: uppercase;
}


/* =========================================================
   CARD FARBEN
========================================================= */

.border-orange {
    border-top: 4px solid #ffa500;
}

.border-green {
    border-top: 4px solid #3cb371;
}

.border-blue {
    border-top: 4px solid #1e90ff;
}

.plan-s {
    background: #f4ead8 !important;
    border-top: 4px solid #ffa500;
}

.plan-m {
    background: rgba(60,179,113,0.12) !important;
    border-top: 4px solid #3cb371;
    transform: scale(1.03);
}

.plan-l {
    background: rgba(30,144,255,0.12) !important;
    border-top: 4px solid #1e90ff;
}


/* =========================================================
   PAKET-LISTEN
========================================================= */

.paket-list {
    padding-left: 20px;
    margin-top: 10px;
}

.paket-list li {
    margin-bottom: 6px;
}


/* =========================================================
   READ MORE
========================================================= */

.readmore-box {
    margin-top: 1rem;
}

.readmore-content {
    max-height: 0;
    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.5s ease,
        opacity 0.3s ease;

    will-change: max-height;
}

.readmore-content.open {
    max-height: 3000px;
    opacity: 1;
    margin-bottom: 1rem;
}

.readmore-button {
    background: linear-gradient(
        135deg,
        #3b6885,
        #2F556E
    );

    color: white;

    border: none;
    border-radius: 10px;

    padding: 0.8rem 1.2rem;

    font-weight: 600;

    box-shadow:
        0 10px 25px rgba(47,85,110,0.22);

    transition: all 0.25s ease;

    cursor: pointer;
}

.readmore-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(47,85,110,0.32);
}


/* =========================================================
   KONTAKT
========================================================= */

.contact {
    background: #DFDFDF;
    text-align: center;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #23475f;
    color: white;
    text-align: center;
    padding: 30px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


/* =========================================================
   LINKS
========================================================= */

a.white-link {
    color: #FFFFFF;
    text-decoration: underline;
}

a.white-link:hover {
    color: #BFBFBF;
    text-decoration: underline;
}

.link-arrow::after {
    content: "\2197";
    margin-left: 2px;
    display: inline-block;

    transition:
        transform 0.3s cubic-bezier(.22,1,.36,1);
}

.link-arrow:hover::after {
    transform: translateY(-3px) rotate(-15deg);
}


/* =========================================================
   SCROLL-TOP
========================================================= */

.scroll-top::before {
    content: "\2191";
}

.scroll-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    background: #2F556E;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 20px;

    border-radius: 50%;

    box-shadow: 0 4px 10px rgba(0,0,0,0.2);

    transition: all 0.2s ease;

    z-index: 900;
}

.scroll-top:hover {
    background: #FFFFFF;
    transform: translateY(-3px);
}


/* =========================================================
   KONTAKTFORMULAR
========================================================= */

.contact-form {
    width: 100%;
    max-width: 600px;

    margin: 40px auto;

    display: flex;
    flex-direction: column;
    gap: 15px;

    box-sizing: border-box;
}


/* -------------------------
   BESCHRIFTUNGEN
------------------------- */

.contact-form label {
    font-weight: 600;
    margin-bottom: 5px;
}


/* -------------------------
   EINGABEFELDER
------------------------- */

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;

    padding: 15px;

    border: 1px solid #ccc;
    border-radius: 6px;

    font-size: 18px;
    font-family: inherit;

    box-sizing: border-box;
}


/* -------------------------
   FOCUS
------------------------- */

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #2F556E;
}


/* -------------------------
   CHECKBOX / DATENSCHUTZ
------------------------- */

.checkbox {
    display: flex;

    align-items: flex-start;
    justify-content: flex-start;

    width: 100%;

    text-align: left;

    gap: 10px;
}


/* Checkbox */

.checkbox input {
    flex: 0 0 auto;

    width: auto;

    transform: scale(1.4);

    margin-top: 3px;
}


/* Datenschutz-Hinweis */

.checkbox span {
    flex: 1;

    text-align: left;

    font-size: 14px;
    line-height: 1.4;
}


/* -------------------------
   BUTTON
------------------------- */

.contact-form button {
    display: inline-block;

    background: white;
    color: #2F556E;

    padding: 15px 30px;

    font-size: 17px;
    font-weight: 600;

    border-radius: 5px;

    text-decoration: none;

    font-family: inherit;

    border: none;

    cursor: pointer;
}


/* -------------------------
   VERSTECKTES FELD
------------------------- */

.hidden-field {
    display: none;
}


/* =========================================================
   LOGIN
========================================================= */

.lg-body {
    font-family: Arial, sans-serif;
    background: #23475f;
}

.lg-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding-top: 60px;
}

.lg-box {
    background: white;

    padding: 30px;

    border-radius: 10px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

    width: 260px;

    text-align: center;
}

.lg-input {
    width: 200px !important;

    padding: 8px;

    margin: 10px auto;

    display: block;

    box-sizing: border-box;
}

.lg-password-wrap {
    position: relative;

    width: 200px;

    margin: 10px auto 0 auto;
}

.lg-password {
    width: 100%;

    padding-right: 35px;

    box-sizing: border-box;
}

.lg-eye-btn {
    position: absolute;

    right: 5px;
    top: 50%;

    transform: translateY(-50%);

    background: none;

    border: none;

    cursor: pointer;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;
}

.lg-eye-btn svg {
    width: 18px;
    height: 18px;

    stroke: #555;
}

.lg-eye-btn svg .lg-eye-strike {
    stroke: #555;
}

.lg-button {
    width: 120px;

    padding: 8px;

    margin-top: 10px;

    background: white;

    color: #007bff;

    border: 2px solid #007bff;

    border-radius: 5px;

    cursor: pointer;
}

.lg-button:hover {
    background: #007bff;
    color: white;
}

.lg-error {
    color: red;
}

.login-sub {
    font-size: 20px;

    margin-bottom: 20px;

    color: white;

    text-align: center;
}


/* =========================================================
   MODAL
========================================================= */

.modal {
    position: fixed;

    inset: 0;

    display: flex;

    justify-content: center;
    align-items: center;

    background: rgba(0,0,0,0.6);

    opacity: 0;

    pointer-events: none;

    transition: opacity 0.3s ease;

    /* Modal über die gesamte Website legen */
    z-index: 999999;

    padding: 20px;

    box-sizing: border-box;
}

.modal.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: white;

    padding: 0.5rem 1rem 2rem 2rem;

    border-radius: 14px;

    max-width: 600px;

    width: 90%;

    max-height: 90vh;

    overflow-y: auto;

    box-shadow: 0 20px 60px rgba(0,0,0,0.25);

    transform: scale(0.9);

    opacity: 1 !important;

    transition: all 0.3s ease;

    position: relative;
}

.modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}


/* =========================================================
   MODAL FARBEN
========================================================= */

.modal-content.plan-s {
    background: #f4ead8 !important;
    border-left: 6px solid #f57c00;
}

.modal-content.plan-m {
    background: #dcece6 !important;
    border-left: 6px solid #2e7d32;
}

.modal-content.plan-l {
    background: #d9e8f7 !important;
    border-left: 6px solid #1565c0;
}


/* =========================================================
   CLOSE
========================================================= */

.close {
    position: absolute;

    top: 5px;
    right: 20px;

    font-size: 48px;

    cursor: pointer;

    line-height: 1;

    z-index: 1000000;
}


/* =========================================================
   MODAL CARDS
========================================================= */

.modal-trigger {
    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.modal-trigger:hover {
    transform: translateY(-6px);

    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}


/* =========================================================
   HIDDEN MODAL CARDS
========================================================= */

.modal-data {
    display: none;
}


/* =========================================================
   NAVIGATION
========================================================= */

/*
   Die Navigation wird per JS über .visible eingeblendet.
*/

#navbar {
    position: fixed;

    top: 20px;
    left: 50%;

    transform: translateX(-50%) translateY(-120%);

    width: calc(100% - 40px);

    max-width: 1200px;

    height: 80px;

    background: rgba(255,255,255,0.6);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 20px;

    border: 1px solid rgba(255,255,255,0.3);

    box-shadow:
        0 8px 30px rgba(0,0,0,0.1);

    display: flex;

    align-items: center;

    opacity: 0;

    transition:
        transform 0.4s ease,
        opacity 0.4s ease;

    z-index: 2000;
}

#navbar.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.nav-container {
    width: 100%;

    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 0 25px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;

    max-height: 50px;

    width: auto;
}

.login a {
    display: inline-block;

    padding: 10px 18px;

    border-radius: 12px;

    background: rgba(0,0,0,0.8);

    color: white;

    text-decoration: none;

    font-size: 14px;

    transition: all 0.3s ease;
}

.login a:hover {
    background: black;

    transform: translateY(-2px);
}


/* =========================================================
   LOGIN / SONSTIGE FORM-ELEMENTE
========================================================= */

.box {
    background: white;

    padding: 30px;

    border-radius: 10px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

    width: 300px;

    position: relative;
}

input[type="text"],
input[type="password"] {
    box-sizing: border-box;

    padding: 10px;

    margin: 0 auto;

    font-size: 16px;
}

#password {
    padding-right: 20px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 910px) {

    .container {
        max-width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }

    .hero {
        padding-top: 70px;
        padding-bottom: 120px;

        background-attachment: scroll;
    }

    .hero h1,
    .hero-title {
        font-size: 36px;
    }

    .hero-sub,
    h7 {
        font-size: 21px !important;
    }

    .section {
        padding: 65px 0;
    }

    .cards {
        flex-direction: column;
    }

    .card,
    .card-2 {
        width: 100%;
        flex: none;
    }

    .plan-m {
        transform: none;
    }

    .ansatz-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ansatz-graphic {
        order: -1;
        text-align: center;
    }

    .ansatz-graphic img {
        position: static;

        max-width: 350px;

        transform: none;
    }

    .parallax {
        height: 300px;

        background-attachment: scroll;
    }

    .cardfull-badge {
        right: 30px;
    }

    #navbar {
        width: calc(100% - 30px);
        height: 70px;
    }

    .nav-container {
        padding: 0 18px;
    }

    .logo img {
        max-height: 42px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    body {
        font-size: 16px;
    }


    /* -------------------------
       TYPOGRAFIE
    ------------------------- */

    h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    h2 {
        font-size: 27px;
        line-height: 1.25;
    }

    h3 {
        font-size: 19px;
        line-height: 1.35;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 23px;
        line-height: 1.35 !important;
    }

    h6 {
        font-size: 18px;
        line-height: 1.35 !important;
    }

    h7 {
        font-size: 18px !important;
        line-height: 1.5 !important;
    }

    h8 {
        font-size: 17px;
        line-height: 1.6;
    }

    p {
        font-size: 16px;
        line-height: 1.6;
    }


    /* -------------------------
       CONTAINER
    ------------------------- */

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }


    /* -------------------------
       HERO
    ------------------------- */

    .hero {
        padding-top: 50px;
        padding-bottom: 90px;

        background-attachment: scroll;
    }

    .hero-logo {
        max-width: 240px;
    }

    .hero h1,
    .hero-title {
        font-size: 30px;
        line-height: 1.2;

        margin-top: 25px;
        margin-bottom: 18px;
    }

    .hero-sub {
        font-size: 18px !important;
        line-height: 1.5 !important;

        margin-bottom: 30px;
    }

    .hero br {
        display: none;
    }


    /* -------------------------
       BUTTONS
    ------------------------- */

    .cta-button,
    .cta-button-darkframe,
    .angebot-cta-button {
        font-size: 16px;

        padding: 13px 22px;

        max-width: 100%;

        text-align: center;
    }


    /* -------------------------
       SEKTIONEN
    ------------------------- */

    .section {
        padding: 55px 0;
    }

    .section h2 {
        margin-top: 15px;
        margin-bottom: 25px;
    }


    /* -------------------------
       PROBLEM-LISTE
    ------------------------- */

    .problem-list {
        font-size: 15px;

        padding-left: 22px;

        margin: 15px 0;
    }

    .problem-list li {
        margin-bottom: 12px;
		font-size: 15px;
    }
	
.problem-list,
.problem-list li {
    font-size: 15px !important;
}


    /* -------------------------
       ANSATZ
    ------------------------- */

    .ansatz-list {
        font-size: 17px;
    }

    .ansatz-layout {
        display: flex;

        flex-direction: column;

        gap: 25px;
    }

    .ansatz-graphic {
        order: -1;

        width: 100%;

        text-align: center;
    }

    .ansatz-graphic img {
        width: 100%;

        max-width: 280px;

        position: static;

        transform: none;
    }


    /* -------------------------
       CHECKLISTEN
    ------------------------- */

    .checkmark-svg,
    .checkmark-beratung {
        padding-left: 0;

        margin: 20px 0;
    }

    .checkmark-svg li,
    .checkmark-beratung li {
        gap: 10px;

        margin-bottom: 15px;
    }

    .check-icon {
        width: 18px;
        height: 18px;
    }

    .check-text {
        font-size: 16px;

        line-height: 1.45;
    }


    /* -------------------------
       CARDS
    ------------------------- */

    .cards {
        gap: 25px;

        margin-top: 30px;
    }

    .card,
    .card-2 {
        width: 100%;

        padding: 5px 20px 22px 20px;
    }

    .card-2 h4 {
        padding-right: 5px;
    }

    .plan-m {
        transform: none;
    }

    .paket-list {
        padding-left: 20px;

        font-size: 16px;
    }

    .paket-list li {
        margin-bottom: 8px;
    }


    /* -------------------------
       BADGES
    ------------------------- */

    .card-badge {
        top: -10px;

        right: 15px;

        font-size: 0.65rem;

        padding: 0.3rem 0.55rem;
    }

    .cardfull-badge {
        top: -10px;

        right: 15px;

        font-size: 0.65rem;

        padding: 0.3rem 0.55rem;
    }


    /* -------------------------
       FULL CARD
    ------------------------- */

    .card-full {
        padding: 5px 18px 25px 18px;

        margin-top: 15px;
    }

    .card-full h2 {
        font-size: 25px;

        padding-right: 20px;
    }


    /* -------------------------
       READ MORE
    ------------------------- */

    .readmore-button {
        font-size: 16px;

        padding: 10px 18px;
    }


    /* -------------------------
       PARALLAX
    ------------------------- */

    .parallax {
        height: 220px;

        background-attachment: scroll;

        background-position: center;
    }


    /* -------------------------
       KONTAKT
    ------------------------- */

    .contact-form {
        margin: 30px auto;

        gap: 12px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 16px;

        padding: 13px;
    }


    /* -------------------------
       SCROLL TOP
    ------------------------- */

    .scroll-top {
        right: 15px;

        bottom: 15px;

        width: 48px;
        height: 48px;

        font-size: 18px;
    }


    /* -------------------------
       FOOTER
    ------------------------- */

    footer {
        padding: 25px 18px;
    }

    .footer-logo {
        flex-direction: column;

        gap: 5px;
    }


    /* -------------------------
       MODAL
    ------------------------- */

    .modal {
        padding: 12px;
    }

    .modal-content {
        width: 100%;

        max-width: none;

        max-height: 90vh;

        padding:
            15px
            15px
            25px
            20px;

        border-radius: 12px;
    }

    .modal-content h2 {
        font-size: 25px;

        padding-right: 35px;
    }

    .modal-content p {
        font-size: 16px;
    }

    .close {
        top: 8px;

        right: 15px;

        font-size: 38px;
    }


    /* -------------------------
       NAVIGATION
    ------------------------- */

    #navbar {
        top: 10px;

        width: calc(100% - 20px);

        height: 60px;

        border-radius: 15px;
    }

    .nav-container {
        padding: 0 12px;
    }

    .logo img {
        max-height: 38px;
    }

    .login a {
        padding: 8px 13px;

        font-size: 13px;

        border-radius: 9px;
    }


    /* -------------------------
       LOGIN
    ------------------------- */

    .lg-wrapper {
        padding-top: 30px;

        padding-left: 15px;
        padding-right: 15px;
    }

    .lg-box {
        width: 100%;

        max-width: 300px;

        padding: 25px 20px;
    }

}


/* =========================================================
   SEHR KLEINE MOBILGERÄTE
========================================================= */

@media (max-width: 380px) {

    .hero {
        padding-top: 40px;
        padding-bottom: 75px;
    }

    .hero-logo {
        max-width: 210px;
    }

    .hero h1,
    .hero-title {
        font-size: 27px;
    }

    .hero-sub {
        font-size: 17px !important;
    }

    h2 {
        font-size: 24px;
    }

    h5 {
        font-size: 21px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cta-button,
    .cta-button-darkframe,
    .angebot-cta-button {
        padding: 12px 18px;
        font-size: 15px;
    }

    #navbar {
        width: calc(100% - 14px);

        height: 56px;
    }

    .nav-container {
        padding: 0 9px;
    }

    .logo img {
        max-height: 34px;
    }

    .login a {
        padding: 7px 11px;

        font-size: 12px;
    }

}