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

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary-light: #2a3f4f;
    --primary-dark: #0f1920;
    --accent: #3498db;
    --accent-light: #5dade2;
    --text: #333;
    --text-light: #666;
    --bg: #f8f9fa;
    --white: #ffffff;
    --success: #155724;
    --warning: #f39c12;
    --footer-bg: #B5E3F0;

    --black: #0e0e0e;
    --main-blue: #1D2B36;
    --main-blue-rgba: rgba(29, 43, 54, 0.75);
    --cyan: #91E5F6;
    --main-font: 'Montserrat', sans-serif;
    --red: #dc0000;
    --error-red-transparent: rgba(255, 0, 0, 0.25);
    --green: #00c303;
    --green-rgba: rgba(0, 195, 3, 0.25);
}

body {
    font-family: var(--main-font);
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

@media(min-width:992px) {
    body {
        font-size: 1.125rem;
    }
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

ol,
ul {
    padding-left: 1.5rem;
}

:is(h1, h2, h3, h4, h5, h6) {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
    hyphens: auto;
    width: 100%;
}

.style-headline {
    font-weight: 900;
    font-size: clamp(1.875rem, 4vw, 4.375rem);
}

.style-headline span {
    color: var(--cyan);
}

a {
    color: var(--white);
    text-decoration: underline;
}

a:hover,
a:focus {
    text-decoration: underline;
}

.hidden {
    display: none !important;
}

.button-style a {
    display: inline-block;
    color: var(--white);
    padding: 0.75rem 1.2rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--main-blue);
    border: 3px solid var(--white);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.button-style a:focus,
.button-style a:hover {
    text-decoration: unset !important;
    background-color: var(--white);
    color: var(--main-blue);
}

/* Hauptheader-Stile */
#header {
    margin: 0;
    position: fixed;
    padding: 1rem 0;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

@media(min-width:992px) {
    #header>.row {
        align-items: center;
        max-width: 1320px;
    }

    #header>.row>div:last-child {
        text-align: right;
    }
}

.is-fixed #header {
    padding: 0.5rem 0;
}

.search-icon {
    display: block;
    margin-left: 0;
    position: fixed;
    z-index: 1;
    top: 35vh;
    right: 0;
    background: var(--main-blue);
    padding: 0.7rem 0.67rem .5rem 0.67rem;
    border: 2px solid var(--white);
    border-right: unset;
}

.search-icon img {
    width: 35px;
    filter: invert(100%);
}

.search-icon:hover {
    cursor: pointer;
}

@media(max-width:991px) {
    #header {
        position: absolute;
    }

    .search-icon {
        top: unset;
        bottom: 20vh;
    }
}

@media (min-width:992px) {

    .is-fixed #header {
        backdrop-filter: blur(10px);
        z-index: 10;
        background-color: rgba(0, 0, 0, 0.45);
    }

    .is-fixed #header .logo img {
        max-width: 65px;
    }

    .admin-bar #header {
        top: 2rem;
    }
}

/* Logo */

.logo img {
    max-width: 150px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

@media (max-width:991px) {
    .logo img {
        max-width: 100px;
    }
}

@media(min-width:1660px) {
    .logo img {
        max-width: 180px;
    }
}

/* Hauptnavigationsstil Mobile */

.navbar-collapse li {
    position: relative;
}

@media (max-width:991px) {

    .menu-routenplaner-menu-container {
        display: flex;
        justify-content: space-between;
    }

    .navbar-collapse {
        list-style: none;
        height: 100%;
        width: 100%;
        padding: 0;
    }

    .navbar-collapse li a {
        color: var(--white);
        text-decoration: none;
        font-size: 1.25rem;
        position: relative;
        font-weight: 600;
        padding: 0.9rem 0.5rem;
        display: block;
    }

    .navbar-collapse .menu-item-has-children .sub-menu {
        list-style: none;
        background-color: rgba(235, 235, 235, 0.8);
        display: none;
    }

    .sub-menu-open .sub-menu {
        display: block !important;
    }

    .navbar-collapse .menu-item-has-children .sub-toggle-button {
        display: block;
        height: 45px;
        width: 45px;
        background-color: var(--white);
        position: absolute;
        top: 0;
        right: 0;
        border-radius: 50%;
        cursor: pointer;
        -webkit-transition: all 400ms ease;
        -moz-transition: all 400ms ease;
        -ms-transition: all 400ms ease;
        -o-transition: all 400ms ease;
        transition: all 400ms ease;
    }

    .navbar-collapse .menu-item-has-children .sub-toggle-button::before {
        content: "";
        position: absolute;
        border-color: var(--white);
        border-style: solid;
        border-width: 0 0 3px 3px;
        height: 8px;
        width: 8px;
        top: calc(50% - 4px);
        left: calc(50% - 4px);
        transform: rotate(225deg);
        -webkit-transform: rotate(225deg);
    }

    .sub-menu-open .sub-toggle-button {
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
    }

    .menu-routenplaner-menu-container {
        position: fixed;
        top: 0;
        left: -100%;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 15px;
        width: 100%;
        height: 100% !important;
        background: var(--main-blue);
        z-index: 200;
        -webkit-transition: all 200ms linear;
        -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
        -o-transition: all 200ms linear;
        transition: all 200ms linear;
    }

    .navbar-collapse .sub-menu li a {
        font-size: 1rem;
    }

    .toggled .menu-routenplaner-menu-container {
        left: 0;
    }

    .navbar-toggle {
        position: fixed;
        right: 25px;
        top: 25px;
        background: var(--white);
        padding: 12px 8px 8px 8px;
        border-radius: unset;
        z-index: 1002;
        box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.35);
        min-height: 45px;
        min-width: 45px;
        border: none;
    }

    .navbar-toggle .icon-bar {
        display: block;
        width: 35px;
        height: 3px;
        border-radius: 0;
        margin-bottom: 5px;
        background-color: var(--main-blue);
        -webkit-transition: transform 200ms linear;
        -moz-transition: transform 200ms linear;
        -ms-transition: transform 200ms linear;
        -o-transition: transform 200ms linear;
        transition: transform 200ms linear;
    }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: var(--cyan);
    }

    .navbar-toggle span.icon-bar:nth-child(2) {
        width: 20px;
        margin-left: auto;
    }

    .navbar-toggle span.icon-bar:nth-child(3) {
        width: 28px;
        margin-left: auto;
    }

    .toggled .navbar-toggle span.icon-bar:nth-child(1) {
        -webkit-transform: rotate(45deg) translate(1px, 0px);
        transform: rotate(45deg) translate(1px, 0px);
        margin: 0;
    }

    .toggled .navbar-toggle span.icon-bar:nth-child(2) {
        -webkit-transform: rotate(-45deg) translate(2px, -2px);
        transform: rotate(-45deg) translate(2px, -2px);
        margin: 0;
        width: unset;
    }

    .toggled .navbar-toggle span.icon-bar:nth-child(3) {
        display: none;
    }
}


/* Hauptnavigationsstil Desktop */

@media(min-width:992px) {

    .navbar-collapse .menu-item-has-children .sub-toggle-button {
        display: none;
    }

    .navbar-toggle {
        border: none;
        display: none;
    }

    .main-navigation,
    .menu-primary-container {
        height: 100%;
        display: flex;
        justify-content: space-between;
    }

    .menu-routenplaner-menu-container {
        width: 100%;
    }

    .navbar-collapse {
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        align-content: center;
        height: 100%;
        padding: 0;
        width: 100%;
    }

    .navbar-collapse li a {
        color: var(--white);
        text-decoration: none;
        font-size: 1.1rem;
        position: relative;
        font-weight: 400;
        padding: 0.4rem 0.5rem;
    }

    .navbar-collapse>li>a::before {
        content: '';
        display: block;
        position: absolute;
        bottom: -0.6rem;
        left: 0;
        height: 3px;
        width: 0;
        background-color: var(--white);
        -webkit-transition: all 400ms ease;
        -moz-transition: all 400ms ease;
        -ms-transition: all 400ms ease;
        -o-transition: all 400ms ease;
        transition: all 400ms ease;
    }

    .navbar-collapse>li>a::after {
        content: '';
        display: block;
        position: absolute;
        top: -0.6rem;
        right: 0;
        height: 3px;
        width: 0;
        background-color: var(--white);
        -webkit-transition: all 400ms ease;
        -moz-transition: all 400ms ease;
        -ms-transition: all 400ms ease;
        -o-transition: all 400ms ease;
        transition: all 400ms ease;
    }

    .navbar-collapse li a:hover {
        text-decoration: none !important;
    }

    .navbar-collapse>li>a:hover::before,
    .navbar-collapse>li>a:hover::after {
        width: 100%;
    }

    .navbar-collapse>li.current_page_item>a::before,
    .navbar-collapse>li.current_page_item>a::after {
        width: 100%;
        background-color: var(--cyan);
    }

    .navbar-collapse>li.current_page_item>a {
        color: var(--cyan);
    }

    .navbar-collapse .menu-item-has-children .sub-menu {
        position: absolute;
        top: 0;
        left: 0;
        list-style: none;
        margin-top: 2.4rem;
        min-width: 250px;
        display: none;
        opacity: 0;
        background-color: var(--white);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
        z-index: 999;
        padding: 10px 15px;
        -webkit-transition: all 400ms ease;
        -moz-transition: all 400ms ease;
        -ms-transition: all 400ms ease;
        -o-transition: all 400ms ease;
        transition: all 400ms ease;
    }

    .navbar-collapse .menu-item-has-children::before {
        content: '';
        display: block;
        position: absolute;
        bottom: -2.4rem;
        left: 0;
        height: 2.4rem;
        width: 100%;
    }

    .navbar-collapse .menu-item-has-children:hover .sub-menu {
        display: block;
        opacity: 1;
    }

    .navbar-collapse .menu-item-has-children .sub-menu li a {
        font-weight: 400;
        font-size: 1rem;
        height: 100%;
        width: 100%;
        display: block;
        color: var(--white);
        position: relative;
    }

    .navbar-collapse .menu-item-has-children .sub-menu li a::before {
        content: '';
        display: block;
        position: absolute;
        top: calc(50% - 0.5rem);
        left: -2rem;
        height: 1rem;
        width: 1rem;
        opacity: 0;
        border-radius: 50%;
        background-color: var(--main-blue);
        -webkit-transition: all 400ms ease;
        -moz-transition: all 400ms ease;
        -ms-transition: all 400ms ease;
        -o-transition: all 400ms ease;
        transition: all 400ms ease;
    }

    .navbar-collapse .menu-item-has-children .sub-menu li a:hover::before {
        left: -0.7rem;
        opacity: 1;
    }

    .navbar-collapse .menu-item-has-children .sub-menu li a:hover {
        text-decoration: underline;
    }
}

@media(min-width:1200px) {
    .navbar-collapse li a {
        font-size: 1.375rem;
    }
}

/* Header + Hero Wrapper */
.header-hero-wrapper {
    background: var(--main-blue);
}

/* Header */
header {
    background: transparent;
    box-shadow: none;
    border: none;
    position: relative;
    z-index: 100;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 30px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.cta-button {
    background: var(--main-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 43, 54, 0.3);
    text-decoration: none;
}

/* Header CTA Button - weiß auf blauem Header */
header .cta-button {
    background: var(--white);
    color: var(--main-blue);
    font-size: 20px;
}

header .cta-button:hover {
    background: #f0f0f0;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    transition: all 0.3s;
}

/* Burger to X animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* Hero Section */
.hero {
    background: var(--main-blue);
    color: var(--white);
    padding: 60px 0 80px 0;
    margin-top: 0;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    line-height: 1.2;
    font-weight: 900;
    font-size: clamp(1.875rem, 4vw, 4.375rem)
}

.hero-text p {
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-button {
    border: 3px solid var(--white);
    color: var(--white);
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.hero-button.secondary {
    border: 3px solid var(--cyan);
    color: var(--cyan);
}

.hero-button:hover {
    text-decoration: none;
    background-color: var(--white);
    border-color: var(--white);
    color: var(--main-blue);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    filter: brightness(0) saturate(100%) invert(98%) sepia(11%) saturate(88%) hue-rotate(268deg) brightness(112%) contrast(100%);
}

@media(min-width:992px) {
    .hero {
        padding: 13rem 0 5rem 0;
    }

    .hero-image img {
        transform: translateY(8.1rem);
    }
}

/* Problems Section */
.problems {
    padding: 80px 0;
    background: var(--white);
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.375rem);
    margin-bottom: 3.125rem;
    color: var(--main-blue);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

@media (max-width: 700px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

.problem-card {
    padding: 1.875rem;
    background: var(--bg);
    border-left: 10px solid var(--main-blue);
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--main-blue);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-grid .problem-card:nth-child(2n+1) {
    background: var(--main-blue);
    color: var(--white);
}

.problem-grid .problem-card:nth-child(2n+1) h3 {
    color: var(--white);
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: var(--bg);
    width: 100%;
}

.solution>.container>p {
    text-align: center;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 30px;
    margin-top: 3.125rem;
}

.solution-card {
    background: var(--white);
    padding: 1.875rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--main-blue);
}

.solution-icon {
    font-size: 2.25rem;
    margin-bottom: 15px;
}

.solution-card:nth-child(2n+2) h3 {
    color: var(--white);
}

.solution-card:nth-child(2n+2) {
    background: var(--main-blue);
    color: var(--white);
}

/* Screenshot Section */
.screenshots {
    padding: 80px 0;
    background: var(--white);
}

.screenshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.screenshot-item {
    text-align: center;
}

.screenshot-item img {
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
    margin-top: 20px;
    max-height: 450px;
    object-fit: cover
}

.screenshot-item img:hover {
    transform: scale(1.02);
}

.screenshot-item h3 {
    color: var(--main-blue);
    font-size: 20px;
    margin-bottom: 10px;
}

.screenshot-item p {
    color: var(--main-blue);
    margin-bottom: 0;
}

.gslide-description * {
    font-family: var(--main-font) !important;
}

.gslide-description .gslide-title {
    font-weight: 700 !important;
}

.gslide-description .cta-button {
    color: var(--white) !important;
}

@media(min-width:992px) {
    .gslide-description * {
        color: var(--main-blue) !important;
    }
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--bg);
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    padding: 1.875rem;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-item p {
    hyphens: auto;
    font-size: 1rem;
}

.feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: var(--main-blue);
}

.feature-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.feature-item:nth-child(2n+2) {
    background-color: var(--main-blue);
    color: var(--white);
}

.feature-item:nth-child(2n+2) h4 {
    color: var(--white);
}

/* Supported Systems */
.systems {
    padding: 80px 0;
    background: var(--white);
    width: 100%;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.system-card {
    background: var(--bg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.system-card h3 {
    font-size: 22px;
    color: var(--main-blue);
    margin-bottom: 10px;
}

.systems .system-image img {
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.systems .system-image svg {
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

@media(min-width:992px) {
    .systems .system-image img {
        height: 100px;
    }

    .systems .system-image svg {
        height: 100px;
    }
}

.status-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.status-live {
    background: #d4edda;
    color: #155724;
    margin: 15px auto;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.status-live i {
    font-size: 1rem;
}

.status-planned {
    background: #fff3cd;
    color: #856404;
}

.systems .system-extra-text {
    text-align: center;
    margin-top: 2rem;
}

.systems .system-extra-text a {
    color: var(--main-blue);
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: var(--bg);
    width: 100%;
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Pricing Toggle Switch */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--main-blue);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.toggle-label.active {
    color: var(--main-blue);
    font-weight: 600;
}

.toggle-badge {
    background: var(--success);
    color: var(--white);
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 15px;
    margin-left: 8px;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--main-blue);
    border-radius: 32px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background: var(--white);
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(28px);
}

/* Pricing Footer / Trial Badge */
.pricing-footer {
    text-align: center;
    margin-top: 50px;
}

.trial-badge {
    display: inline-block;
    background: var(--main-blue);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 15px 40px;
}

.price-value {
    transition: all 0.3s ease;
}

@media (max-width: 600px) {
    .trial-badge {
        font-size: 16px;
        padding: 12px 25px;
    }
}

@media (max-width: 600px) {
    .pricing-toggle {
        flex-wrap: wrap;
        gap: 10px;
    }

    .toggle-label {
        font-size: 14px;
    }

    .toggle-badge {
        display: block;
        margin-left: 0;
        margin-top: 5px;
        font-size: 12px;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--main-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pricing-card .features-list {
    flex-grow: 1;
    margin-bottom: 20px;
}

.pricing-card .cta-button {
    margin-top: auto !important;
}

.pricing-card h3 {
    font-size: 24px;
    color: var(--main-blue);
    margin-bottom: 15px;
}

.pricing-card .cta-button {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.price {
    font-size: 22px;
    font-weight: 400;
    color: var(--main-blue);
    margin-bottom: 5px;
}

.price .price-value {
    font-size: 64px;
    font-weight: 700;
}

.price span {
    font-size: 16px;
    font-weight: 400;
}

.price .price-value {
    font-size: 64px;
    font-weight: 700;
}

.price-subtitle {
    color: var(--main-blue);
    font-size: 14px;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 25px 0;
    padding: 0;
}

.features-list li {
    padding: 10px 0 10px 25px;
    position: relative;
}

.features-list li+li {
    border-top: 1px solid #f0f0f0;
}

.features-list li::before {
    content: "";
    background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg width="24px" height="24px" stroke-width="1.5" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" color="%23000000"><path d="M5 13L9 17L19 7" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg>');
    position: absolute;
    left: 0;
    height: 25px;
    width: 20px;
    background-size: contain;
    top: 13px;
    filter: brightness(0) saturate(100%) invert(53%) sepia(31%) saturate(1007%) hue-rotate(93deg) brightness(98%) contrast(85%);
}

.features-list li.disabled {
    color: #bbb;
}

.features-list li.disabled::before {
    content: "—";
    color: #ddd;
}

/* Partnership */
.partnership {
    padding: 80px 0;
    background: var(--main-blue);
    color: var(--white);
}

.partnership .section-title {
    color: var(--white);
}

.partnership-content {
    text-align: center;
}

.partnership-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.partnership .cta-button {
    background: var(--white);
    color: var(--main-blue);
}

.partnership .cta-button:hover {
    background: #f0f0f0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-content .section-title {
    text-align: unset;
}

.contact-info {
    font-size: 1.125rem;
}

.contact-content>.row {
    padding: 0;
}

.contact-info p {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--main-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer - wie Hauptseite */
footer {
    background: var(--main-blue);
    padding: 25px 0 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-copyright {
    color: var(--white);
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 1.875rem;
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    position: relative;
}

.footer-links a::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background-color: var(--white);
    transition: all 0.3s;
}

.footer-links a:hover::before {
    width: 100%;
}

@media (max-width: 610px) {
    .footer-links li {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 991px) {

    #header>.row>div:first-child,
    #header>.row>div:last-child {
        order: -1;
    }

    .hero {
        padding: 8.125rem 0 3.125rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
        min-height: 300px;
        width: 100%;
        margin-bottom: -10rem;
    }

    .screenshot-grid {
        grid-template-columns: 1fr;
    }

    /* Logo kleiner auf Tablet */
    .logo img {
        height: 80px;
    }

    /* Header CTA kleiner */
    header .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.625rem;
    }
}

@media (max-width: 600px) {

    /* Header CTA noch kompakter */
    header .cta-button {
        font-size: 12px;
        padding: 8px 14px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-button {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 12px 20px;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 500ms;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}