/* =========================
   RESET & BASE
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.terms-container {
    width: 90% !important;
    max-width: none !important;
    margin: 0 auto;
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 200;
    background: rgba(0,0,0,0.5);
}

.container.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    width: 200px;
    height: auto;
    display: block;
    position: relative;
    z-index: 200;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    gap: 28px;
}

nav a {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #fff;
    display: flex;
    align-items: center;
    height: 72px;
    transition: 0.3s;
}

nav a:hover {
    color: #D26415 ;
    opacity: 1;
}

/* Buttons */
.btn {
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid #D26415 ;
    color: #D26415 ;
    transition: 0.3s;
    cursor: pointer;
}

.btn:hover {
    background: #D26415 ;
    color: #fff;
}

.btn.large {
    display: inline-block;
    margin-top: 20px;   /* Abstand über dem Button */
    padding: 14px 38px;
    font-size: 1rem;
    border-radius: 30px;
    border: 1px solid #D26415 ;
    color: #D26415 ;
    text-decoration: none;
    transition: 0.3s;
}

.btn.large:hover {
    background: #D26415 ;
    color: #fff;
}

.btn.ghost {
    border-color: #fff;
    color: #fff;
}

/* =========================
   HERO
   ========================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('header-bg.png') no-repeat center top;
    background-size: cover;
    position: relative;
    z-index: 2;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-left: 10%;    /* etwas Abstand vom linken Rand */
    text-align: left;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 45px;
}

.hero-actions a {
    margin-right: 15px;
}

/* =========================
   SECTIONS
   ========================= */
.section {
    padding: 120px 0;
}

.section.terms-section {
    max-width: none;   /* entfernt Limitierung */
    width: 90%;        /* 90% der Seitenbreite */
    margin: 0 auto;    /* zentriert */
}

.section.dark {
    background: #111;
}

.section h2 {
    text-align: center;
    font-size: 2.1rem;
    margin-bottom: 70px;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid.three {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.four {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 16px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.feature {
    background: #1a1a1a;
    padding: 28px;
    border-radius: 14px;
    text-align: center;
}

.step span {
    color: #D26415 ;
    font-weight: 700;
}

.step h4 {
    margin: 10px 0;
}

.center-text {
    text-align: center;
    opacity: 0.85;
}

.center-text.wide {
    max-width: 900px;
    margin: auto;
}

.trust {
    padding: 60px 0;
    background: #111;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
}

.trust-grid strong {
    font-size: 1.8rem;
    display: block;
}

.pricing .price {
    font-size: 2rem;
    color: #D26415 ;
    margin: 15px 0;
}

.pricing.highlight {
    border: 1px solid #D26415 ;
}

.dealer, .contact {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.faq-item {
    max-width: 700px;
    margin: 0 auto 30px;
}

/* =========================
   FOOTER
   ========================= */
.footer {
    background: #000;
    padding: 35px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-address {
    margin-top: 15px;
    font-size: 0.8rem;
    opacity: 0.6;
    line-height: 1.5;
}

/* =========================
   COOKIE BANNER
   ========================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 9999;
}

.cookie-banner p {
    font-size: 0.9rem;
    opacity: 0.85;
    max-width: 700px;
}

.cookie-banner .btn {
    white-space: nowrap;
}

/* =========================
   MOBILE / HAMBURGER
   ========================= */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
}

@media screen and (max-width: 768px) {

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        height: calc(100vh - 72px);
        background: rgba(11,11,11,0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 150;
        display: flex;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    nav a {
        font-size: 1.2rem;
        text-align: center;
        margin: 0;
        line-height: normal;
    }

    .hero {
        padding-top: 72px;
        height: auto;
        min-height: 100vh;
        text-align: center;
    }
.hero-content {
        text-align: center; /* Mobile: zentriert */
    }
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .section {
        padding: 80px 20px;
    }

    .section h2 {
        font-size: 1.7rem;
        margin-bottom: 40px;
    }

    .grid.three,
    .grid.four {
        grid-template-columns: 1fr;
    }

    .card, .feature {
        padding: 30px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .pricing .price {
        font-size: 1.8rem;
    }

    .footer {
        font-size: 0.8rem;
        padding: 30px 0;
    }

    .footer-address {
        font-size: 0.75rem;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .logo img {
        width: 140px;
        height: auto;
    }
}


.solutions-grid {
    margin-top: 40px;
}

.solution-card {
    text-align: center;
    padding: 22px 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    cursor: default;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.solution-card.highlight {
    background: linear-gradient(135deg, #ff6a00, #ff9a00);
    color: #fff;
}

/* 4-column grid */
.grid.four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid.four {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .grid.four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid.four {
        grid-template-columns: 1fr;
    }
}


.app-preview {
    text-align: center;
    margin: 40px 0 60px;
}

.app-preview img {
    max-width: 100%;
    width: 900px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.app-preview video {
    width: 80%;
    border-radius: 12px;
}