:root {
    --bg: #0b1220;
    --surface: rgba(255, 255, 255, 0.06);
    --surface-2: rgba(255, 255, 255, 0.10);
    --text: rgba(255, 255, 255, 0.92);
    --muted: rgba(255, 255, 255, 0.72);
    --muted2: rgba(255, 255, 255, 0.55);
    --border: rgba(255, 255, 255, 0.12);
    --brand: #3B82F6;
    --brand2: #8B5CF6;
    --good: #10B981;
    --warn: #F59E0B;
    --shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    --radius: 18px;
    --radius-sm: 12px;
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    color: var(--text);
    background:
        radial-gradient(1200px 600px at 18% 0%, rgba(59, 130, 246, 0.35), transparent 60%),
        radial-gradient(900px 500px at 95% 12%, rgba(139, 92, 246, 0.30), transparent 55%),
        radial-gradient(800px 500px at 40% 110%, rgba(16, 185, 129, 0.16), transparent 60%),
        var(--bg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    line-height: 1.45;
}

a {
    color: inherit;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

/* Topbar */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(11, 18, 32, 0.72);
    border-bottom: 1px solid var(--border);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    /* Optional: box-shadow or background if needed for the transparent PNG */
}

nav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

nav a {
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid transparent;
}

nav a:hover {
    color: var(--text);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.04);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 600;
    font-size: 14px;
    transition: transform .06s ease, background .2s ease, border-color .2s ease;
    white-space: nowrap;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    border-color: rgba(59, 130, 246, 0.40);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(139, 92, 246, 0.85));
    box-shadow: 0 14px 30px rgba(59, 130, 246, 0.20);
}

.btn-primary:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background: linear-gradient(135deg, rgba(59, 130, 246, 1), rgba(139, 92, 246, 0.95));
}

/* Hero */
.hero {
    padding: 56px 0 18px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    align-items: start;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    font-size: 13px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--good);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

h1 {
    margin: 14px 0 10px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.6px;
}

.lead {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 18px;
    max-width: 62ch;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.trust-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
    color: var(--muted2);
    font-size: 13px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
}

.check {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(16, 185, 129, 0.35);
    display: grid;
    place-items: center;
    color: rgba(200, 255, 230, 0.92);
    font-weight: 800;
    font-size: 12px;
}

/* Hero card */
.hero-card {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-card-header {
    padding: 18px 18px 10px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.hero-card-header h3 {
    margin: 0;
    font-size: 15px;
}

.hero-card-header p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.badge {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(59, 130, 246, 0.30);
    background: rgba(59, 130, 246, 0.12);
    padding: 7px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.hero-card-body {
    padding: 16px 18px 18px;
}

.mini-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.mini-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted);
    font-size: 14px;
}

.mini-ic {
    width: 24px;
    height: 24px;
    border-radius: 9px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.85);
    flex: 0 0 auto;
}

.hero-card-footer {
    padding: 14px 18px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 46px 0;
}

.section-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.section-title h2 {
    margin: 0;
    font-size: 26px;
    letter-spacing: -0.3px;
}

.section-title p {
    margin: 0;
    color: var(--muted);
    max-width: 74ch;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.card {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 18px;
}

.card h3 {
    margin: 0 0 6px;
    font-size: 16px;
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.card .meta {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    color: var(--muted2);
    font-size: 13px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Pricing */
.pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    align-items: stretch;
}

.price-card {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.price-card.featured {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.18), rgba(255, 255, 255, 0.04));
    border-color: rgba(59, 130, 246, 0.30);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.12);
}

.price-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.price-name {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
}

.price-tag {
    margin: 12px 0 10px;
    font-size: 28px;
    letter-spacing: -0.4px;
    font-weight: 900;
}

.price-sub {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
}

.ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
    display: grid;
    gap: 8px;
}

.price-cta {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* FAQ */
details {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 14px 14px;
}

details+details {
    margin-top: 10px;
}

summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.90);
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    color: var(--muted2);
    font-size: 13px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.footer-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-stack a {
    text-decoration: none;
    color: var(--muted2);
    font-size: 14px;
}

.footer-stack a:hover {
    color: var(--text);
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted2);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text);
    text-decoration: underline;
}

/* CONTENT PAGE Styles (Blog, Impressum) */
.content-page {
    padding: 60px 0;
    max-width: 800px;
    /* Readability */
}

.content-page h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text);
}

.content-page h2 {
    font-size: 24px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--text);
}

.content-page h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--muted);
}

.content-page p,
.content-page li {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-page ul {
    padding-left: 20px;
}

.content-page a {
    color: var(--brand);
    text-decoration: underline;
}

.content-page a:hover {
    color: var(--brand2);
}

/* Internal Link Box for Blogs */
.internal-link-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin: 20px 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 30px;
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .pricing {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }
}

@media print {

    .topbar,
    .cta-row,
    .hero-card-footer,
    .price-cta {
        display: none !important;
    }

    body {
        background: #fff;
        color: #111;
    }

    .card,
    .hero-card,
    details,
    .price-card {
        box-shadow: none;
    }
}