/* =========================
   RESET & BASIS
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #2563eb;
    --orange: #f97316;
    --dark: #0f172a;
    --gray: #64748b;
    --light: #f8fafc;
    --border: #e5e7eb;
    --radius: 14px;
}

body {
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* =========================
   HEADER
========================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

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

.logo {
    font-size: 20px;
    font-weight: 900;
}

.logo span {
    color: var(--blue);
}

nav a {
    margin-left: 20px;
    font-weight: 600;
    color: var(--gray);
}

.login-btn {
    background: var(--blue);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
}

header.sticky {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   HERO
========================= */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(180deg,#f8fafc,#ffffff);
    position: relative;
}

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

.hero h1 {
    font-size: clamp(32px,4vw,48px);
    font-weight: 900;
    line-height: 1.2;
}

.brush-orange { color: var(--orange); }
.brush-blue { color: var(--blue); }

.hero-text {
    margin: 20px 0 30px;
    color: var(--gray);
    font-size: 18px;
}

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

.btn-primary {
    background: var(--blue);
    color: #fff;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
}

.btn-secondary {
    border: 2px solid var(--border);
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    color: var(--dark);
}

/* Mockups */
.hero-right {
    position: relative;
}

.mockup-browser {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    padding: 16px;
}

.browser-bar {
    height: 14px;
    width: 100%;
    background: var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
}

.mockup-content {
    height: 220px;
    background: linear-gradient(135deg,#e5e7eb,#f8fafc);
    border-radius: 10px;
}

.mockup-phone {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 160px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    padding: 12px;
}

.phone-screen {
    height: 260px;
    background: linear-gradient(135deg,#dbeafe,#eff6ff);
    border-radius: 20px;
}

/* Wave */
.wave {
    position: absolute;
    bottom: -1px;
    width: 100%;
}

/* =========================
   SOCIAL PROOF
========================= */
.social-proof {
    padding: 60px 0;
    text-align: center;
}

.social-proof h2 {
    font-size: 26px;
    font-weight: 800;
}

/* =========================
   FUNKTIONEN
========================= */
.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
}

.feature-box {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
}

.feature-icon {
    font-size: 32px;
    color: var(--blue);
    margin-bottom: 16px;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-box p {
    color: var(--gray);
}

/* =========================
   PREISE
========================= */
.preise {
    padding: 100px 0;
    background: #f8fafc;
}

.preise-title {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 30px;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.tab {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    font-weight: 700;
    cursor: pointer;
}

.tab.active {
    background: var(--blue);
    color: #fff;
}

.price-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
}

.price-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 30px;
    text-align: center;
    position: relative;
}

.price-card.highlight {
    border: 2px solid var(--blue);
    transform: scale(1.04);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--orange);
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 999px;
    font-weight: 800;
}

.price-icon {
    font-size: 28px;
    color: var(--blue);
    margin-bottom: 10px;
}

.price {
    font-size: 40px;
    font-weight: 900;
    margin: 20px 0 4px;
}

.price-type {
    color: var(--gray);
}

.price-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.price-card li {
    margin-bottom: 10px;
}

.btn-price {
    display: block;
    margin-top: 20px;
    padding: 14px;
    background: var(--blue);
    color: #fff;
    border-radius: 999px;
    font-weight: 800;
}

.highlight-btn {
    background: var(--orange);
}

/* =========================
   VERGLEICH
========================= */
.vergleich {
    padding: 90px 0;
}

.vergleich-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.vergleich-table th,
.vergleich-table td {
    border: 1px solid var(--border);
    padding: 14px;
    text-align: center;
}

.vergleich-table th {
    background: var(--light);
    font-weight: 800;
}

/* =========================
   CTA
========================= */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg,var(--blue),#1e40af);
    text-align: center;
    color: #fff;
}

.btn-cta {
    display: inline-block;
    margin-top: 20px;
    background: #fff;
    color: var(--blue);
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 900;
}

/* =========================
   FOOTER
========================= */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 20px;
    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .mockup-phone {
        display: none;
    }
}
