/* -----------------------------------------------------------
   ROOT / COLORS
----------------------------------------------------------- */
:root {
    --dark-blue: #0f1c2f;
    --dark-blue-2: #13243e;
    --primary-blue: #3b82f6;
    --primary-blue-dark: #2563eb;
    --brush-orange: #fb8b6a;
    --text-dark: #0f172a;
    --text-light: #dce2eb;
    --card-bg: #ffffff;
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.25);
}

/* -----------------------------------------------------------
   GLOBAL
----------------------------------------------------------- */
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #f8fafc;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1180px;
    margin: auto;
    padding: 0 20px;
}

h1, h2, h3 { font-weight: 900; color: var(--text-dark); }
p { line-height: 1.6; }

/* -----------------------------------------------------------
   HEADER (Sticky)
----------------------------------------------------------- */
header {
    background: var(--dark-blue);
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 999;
    transition: 0.3s ease;
}
header.sticky {
    background: var(--dark-blue-2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 26px;
    font-weight: 900;
}
.logo span {
    font-size: 12px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-left: 6px;
}

nav a {
    color: #fff;
    margin-left: 24px;
    text-decoration: none;
    font-weight: 600;
}
.login-btn {
    background: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 8px;
}

/* -----------------------------------------------------------
   HERO
----------------------------------------------------------- */
.hero {
    background: linear-gradient(180deg, var(--dark-blue) 0%, #102035 100%);
    padding: 160px 0 120px;
    position: relative;
    overflow: visible;
}

.hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero h1 {
    color: #fff;
    font-size: 48px;
    line-height: 1.25;
    margin-bottom: 20px;
}
.hero-text {
    font-size: 18px;
    color: var(--text-light);
    max-width: 440px;
}

.brush-orange,
.brush-blue {
    padding: 6px 14px;
    border-radius: 10px;
    font-weight: 900;
    color: #fff;
}
.brush-orange { background: var(--brush-orange); }
.brush-blue   { background: var(--primary-blue); }

/* HERO buttons */
.btn-primary {
    background: var(--primary-blue);
    padding: 14px 26px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}
.btn-secondary {
    background: rgba(255,255,255,0.15);
    padding: 14px 26px;
    border-radius: 10px;
    color: #fff;
    margin-left: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* MOCKUPS */
.hero-right {
    position: relative;
    width: 500px;
}
.mockup-browser {
    width: 100%;
    height: 260px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.browser-bar {
    background: #e2e8f0;
    height: 36px;
}
.mockup-content {
    background: #f1f5f9;
    height: calc(100% - 36px);
}

.mockup-phone {
    width: 160px;
    height: 320px;
    background: #000;
    border-radius: 28px;
    position: absolute;
    right: -40px;
    bottom: -40px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.35);
}
.phone-screen {
    width: 88%;
    height: 88%;
    background: #e2e8f0;
    margin: 6%;
    border-radius: 22px;
}

/* SVG WAVE */
.wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

/* -----------------------------------------------------------
   SOCIAL PROOF
----------------------------------------------------------- */
.social-proof {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}
.social-proof h2 {
    font-size: 40px;
    line-height: 1.25;
}

/* -----------------------------------------------------------
   FEATURES
----------------------------------------------------------- */
.section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.feature-box {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    text-align: center;
}
.feature-icon {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

/* -----------------------------------------------------------
   NEW PRICE SECTION (White + Premium SaaS)
----------------------------------------------------------- */

.preise {
    padding: 120px 0;
    background: #ffffff;
    text-align: center;
    color: var(--dark-blue);
}

.preise-title {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 40px;
    color: var(--dark-blue);
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 45px;
}
.tab {
    padding: 12px 26px;
    border-radius: 10px;
    background: #e5e7eb;
    color: var(--dark-blue);
    cursor: pointer;
    font-weight: 700;
    border: none;
}
.tab.active {
    background: var(--primary-blue);
    color: #fff;
}

/* Price Cards */
.price-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.price-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 6px 26px rgba(0,0,0,0.08);
    transition: 0.25s ease;
    border: 2px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.price-card.highlight {
    border-color: var(--primary-blue);
}

.badge {
    background: var(--brush-orange);
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.price-card-header h3 {
    font-size: 22px;
    font-weight: 900;
    margin: 8px 0;
}

.price-card-header .sub {
    color: #475569;
    font-size: 14px;
    margin-bottom: 12px;
}

.price-icon {
    font-size: 38px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.price {
    font-size: 44px;
    font-weight: 900;
    margin-top: 10px;
}

.price-type {
    font-size: 16px;
    color: #475569;
    margin-bottom: 22px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
    width: 100%;
}

.price-card ul li {
    text-align: left;
    padding: 6px 0;
    font-size: 15px;
    color: #1e293b;
}

.price-card ul li i {
    color: var(--primary-blue);
    margin-right: 8px;
}

.btn-price {
    display: block;
    background: var(--primary-blue);
    color: #fff;
    padding: 12px 0;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    width: 100%;
    margin-top: auto;
}

.highlight-btn {
    background: var(--primary-blue-dark);
}

/* -----------------------------------------------------------
   VERGLEICHSTABELLE
----------------------------------------------------------- */
.vergleich {
    padding: 100px 0;
    background: #fff;
}
.vergleich-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.vergleich-table thead {
    background: var(--dark-blue);
    color: #fff;
}
.vergleich-table th,
.vergleich-table td {
    padding: 16px;
    text-align: center;
}
.vergleich-table tbody tr:nth-child(even) {
    background: #f1f5f9;
}

/* -----------------------------------------------------------
   CTA
----------------------------------------------------------- */
.cta {
    padding: 100px 0;
    background: var(--primary-blue-dark);
    text-align: center;
    color: #fff;
}
.btn-cta {
    background: #fff;
    color: var(--dark-blue);
    padding: 16px 36px;
    font-size: 20px;
    font-weight: 900;
    border-radius: 12px;
    text-decoration: none;
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */
.footer {
    background: var(--dark-blue-2);
    padding: 50px 0;
    color: #fff;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
}
.footer a { color: #fff; text-decoration: none; }

/* -----------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------- */
@media (max-width: 900px) {

    /* HERO */
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-right { width: 300px; }

    /* Mockups kleiner */
    .mockup-browser {
        height: 200px;
    }
    .mockup-phone {
        width: 120px;
        height: 240px;
        right: -20px;
        bottom: -20px;
    }

    /* Features */
    .feature-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .price-wrapper {
        grid-template-columns: 1fr;
    }
}
