/* ============================================
   HOSTARO - MAIN STYLESHEET
   Professional Hosting Design System
   FILE: assets/css/style.css
   ============================================ */

/* CSS Variables - Design Tokens */
:root {
    /* Border Radius */
    --radius: 10px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-pill: 999px;

    /* Shadows - Layered for premium depth */
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow2: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.12), 0 6px 12px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 56px rgba(0,0,0,0.16), 0 8px 16px rgba(0,0,0,0.1);
    --shadow-primary: 0 4px 16px rgba(37,99,235,0.25);
    --shadow-primary-lg: 0 8px 32px rgba(37,99,235,0.3);
    --glow: none;

    /* Transition */
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

    /* Font Weights */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Spacing Scale (4px base) */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 28px;
    --space-8: 32px;
    --space-9: 36px;
    --space-10: 40px;
    --space-11: 48px;
    --space-12: 64px;
}

[data-theme="dark"] {
    --bg: #080c16;
    --bg2: #0d1220;
    --card: #111827;
    --card2: #1a2332;
    --primary: #3b82f6;
    --primary2: #60a5fa;
    --primary-hover: #2563eb;
    --text: #f1f5f9;
    --muted: #94a3b8;
    --border: rgba(148,163,184,0.12);
    --border2: rgba(148,163,184,0.06);
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --card-hover: #1e293b;
    --shadow-primary: 0 4px 16px rgba(59,130,246,0.2);
    --shadow-primary-lg: 0 8px 32px rgba(59,130,246,0.25);
}

[data-theme="light"] {
    --bg: #f8fafc;
    --bg2: #ffffff;
    --card: #ffffff;
    --card2: #f1f5f9;
    --primary: #2563eb;
    --primary2: #3b82f6;
    --primary-hover: #1d4ed8;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --border2: #f1f5f9;
    --success: #16a34a;
    --warning: #d97706;
    --danger: #dc2626;
    --info: #2563eb;
    --card-hover: #f8fafc;
    --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 8px rgba(0,0,0,0.04);
    --shadow2: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.08), 0 6px 12px rgba(0,0,0,0.04);
    --shadow-xl: 0 24px 56px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.06);
    --shadow-primary: 0 4px 16px rgba(37,99,235,0.15);
    --shadow-primary-lg: 0 8px 32px rgba(37,99,235,0.2);
    --glow: none;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background var(--transition-slow), color var(--transition-slow);
}

a {
    text-decoration: none;
    color: inherit;
}

.link {
    color: var(--primary);
}

.link:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 72px 0;
}

.muted {
    color: var(--muted);
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    z-index: 999;
}

.skip-link:focus {
    left: 12px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

[data-theme="dark"] header {
    background: rgba(8,12,22,0.85);
}

[data-theme="light"] header {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.header-inner {
    box-shadow: none;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 14px;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 140px;
}

.logo {
    font-size: 1.35rem;
    font-weight: var(--fw-bold);
    letter-spacing: -0.3px;
    color: var(--text);
}

.logo span {
    color: var(--primary);
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.1;
}

/* Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: var(--fw-medium);
    color: var(--muted);
    padding: 8px 14px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    white-space: nowrap;
    transition: all var(--transition);
    min-height: 40px;
    display: inline-flex;
    align-items: center;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.04);
}

[data-theme="light"] .nav-links a:hover {
    background: rgba(0,0,0,0.04);
}

.nav-links a.active {
    color: var(--primary);
    background: rgba(59,130,246,0.08);
}

.nav-links a.nav-cta {
    color: white;
    border: none;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-md);
    padding: 9px 22px;
    box-shadow: var(--shadow-primary);
}

.nav-links a.nav-cta:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    box-shadow: var(--shadow-primary-lg);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    min-height: 40px;
    align-items: center;
    gap: 8px;
}

.nav-toggle svg {
    width: 18px;
    height: 18px;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
}

body.nav-open {
    overflow: hidden;
}

body.nav-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* Theme Toggle */
.theme-toggle {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: border-color var(--transition);
}

.theme-toggle:hover {
    border-color: var(--primary);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--text);
}

[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: none; }
[data-theme="light"] .sun-icon { display: none; }
[data-theme="light"] .moon-icon { display: block; }

/* Hero */
.hero {
    padding: 72px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px;
    align-items: start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: var(--fw-medium);
    margin-bottom: 16px;
}

[data-theme="light"] .badge {
    background: rgba(0,0,0,0.03);
}

h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: var(--fw-bold);
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.4px;
}

h1 span {
    color: var(--primary);
}

h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.1rem;
    font-weight: var(--fw-semibold);
    margin-bottom: 6px;
    letter-spacing: -0.1px;
}

.lead {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 56ch;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: var(--radius-md);
    font-weight: var(--fw-semibold);
    font-size: 0.875rem;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
    min-height: 42px;
    user-select: none;
    line-height: 1.5;
    text-decoration: none;
}

.btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(59,130,246,0.04);
}

.btn.primary {
    border: 1px solid transparent;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn.primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    color: white;
    box-shadow: var(--shadow-primary-lg);
    transform: translateY(-2px);
}

.btn.ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn.ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn.ghost2 {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
}

.btn.ghost2:hover {
    color: var(--text);
    border-color: var(--primary);
}

.btn.small {
    padding: 6px 12px;
    font-size: 0.8rem;
    min-height: 32px;
}

.btn.full-width {
    width: 100%;
}

.btn.disabled,
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Sidecard */
.sidecard {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 8px;
}

.sidecard .row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--muted);
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.sidecard .row:last-child {
    border-bottom: none;
}

.sidecard strong {
    color: var(--text);
    font-weight: var(--fw-semibold);
    text-align: right;
}

/* Section */
.section-title {
    font-size: 1.85rem;
    font-weight: var(--fw-bold);
    margin-bottom: 12px;
    letter-spacing: -0.4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.section-title .tag {
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(139,92,246,0.06) 100%);
    border: 1px solid rgba(59,130,246,0.18);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
}

.section-sub {
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Pricing */
.pricing-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.billing-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    width: clamp(280px, 34vw, 400px);
    flex: 0 0 auto;
}

.segmented {
    display: flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    width: 100%;
}

[data-theme="light"] .segmented {
    background: var(--card2);
}

.segmented.small {
    padding: 3px;
}

.seg-btn {
    flex: 1;
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-weight: var(--fw-semibold);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
    user-select: none;
    min-height: 36px;
    text-align: center;
    white-space: nowrap;
}

.segmented.small .seg-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
}

.seg-btn:hover {
    color: var(--text);
}

.seg-btn.active {
    color: white;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

.hidden {
    display: none !important;
}

/* Cards Grid */
.cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    gap: 16px;
}

.card {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--card);
    padding: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all var(--transition);
}

.card:hover {
    border-color: rgba(59,130,246,0.25);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.card.highlight {
    border-color: transparent;
    background: linear-gradient(var(--card), var(--card)) padding-box,
                linear-gradient(135deg, #3b82f6, #8b5cf6, #3b82f6) border-box;
    box-shadow: 0 0 0 1px rgba(59,130,246,0.3), var(--shadow-lg);
}

.card.highlight:hover {
    box-shadow: 0 0 0 1px rgba(59,130,246,0.4), var(--shadow-xl);
    transform: translateY(-4px);
}

.card.highlight::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(59,130,246,0.03) 0%, transparent 50%);
}

.ribbon {
    position: absolute;
    top: 14px;
    right: -36px;
    transform: rotate(35deg);
    background: var(--primary);
    color: #fff;
    padding: 6px 48px;
    font-weight: var(--fw-semibold);
    font-size: 0.75rem;
    letter-spacing: 0.3px;
}

.card .tagline {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 12px 0 4px;
}

.price .amount {
    font-size: 2.2rem;
    font-weight: var(--fw-bold);
    letter-spacing: -1px;
    color: var(--text);
}

.card.highlight .price .amount {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price .unit {
    color: var(--muted);
    font-weight: var(--fw-medium);
}

.meta {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.features {
    list-style: none;
    color: var(--muted);
    font-size: 0.9rem;
    margin: 16px 0;
}

.features li {
    margin: 8px 0;
    display: flex;
    gap: 10px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 8px;
    flex: 0 0 auto;
}

.card .actions {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Compare Table */
.compare-wrap {
    margin-top: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
}

.compare-bar {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--card2);
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.pill-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pill {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-weight: var(--fw-semibold);
    font-size: 0.8rem;
    cursor: pointer;
    min-height: 32px;
    transition: all var(--transition);
}

.pill:hover {
    border-color: var(--primary);
    color: var(--text);
}

.pill.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.table-scroller {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table.compare {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

table.compare th,
table.compare td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

table.compare thead th {
    position: sticky;
    top: 0;
    background: var(--card2);
    border-bottom: 1px solid var(--border);
    z-index: 5;
    font-weight: var(--fw-semibold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--muted);
}

table.compare th:first-child,
table.compare td:first-child {
    width: 34%;
    color: var(--text);
    font-weight: var(--fw-semibold);
    position: sticky;
    left: 0;
    background: var(--card);
    z-index: 4;
    border-right: 1px solid var(--border);
}

table.compare tbody tr:hover {
    background: rgba(59,130,246,0.03);
}

table.compare th:nth-child(3),
table.compare td:nth-child(3) {
    background: rgba(59,130,246,0.04);
}

.compare-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: transparent;
    font-weight: var(--fw-semibold);
    font-size: 0.8rem;
    line-height: 1.2;
    white-space: nowrap;
}

.compare-badge .dotmini {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--muted);
    flex: 0 0 auto;
}

.badge-yes {
    border-color: rgba(59,130,246,0.3);
    background: rgba(59,130,246,0.08);
    color: var(--text);
}

.badge-yes .dotmini {
    background: var(--primary);
}

.badge-opt {
    border-color: var(--border);
    background: transparent;
    color: var(--text);
}

.badge-opt .dotmini {
    background: var(--muted);
}

.badge-no {
    border-color: var(--border);
    background: transparent;
    color: var(--muted);
}

.badge-no .dotmini {
    background: rgba(148,163,184,0.4);
}

.badge-info {
    border-color: rgba(59,130,246,0.25);
    background: rgba(59,130,246,0.06);
    color: var(--primary);
}

.badge-info .dotmini {
    background: var(--primary);
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    background: var(--card);
    padding: 48px 0 24px;
}

.footer-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    padding: 16px 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .cards {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .billing-controls {
        width: 100%;
        max-width: 480px;
    }

    .sidecard {
        order: 2;
    }
}

@media (max-width: 740px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(88vw, 340px);
        max-width: 100%;
        background: var(--card);
        border-left: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        z-index: 70;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 4px;
        padding: 16px 12px;
        transform: translateX(105%);
        transition: transform 180ms ease;
    }

    body.nav-open .nav-links {
        transform: translateX(0%);
    }

    .nav-links a {
        border-radius: var(--radius-md);
        padding: 12px 14px;
        font-size: 0.95rem;
        border: 1px solid var(--border);
        background: transparent;
        color: var(--text);
    }

    .nav-links a:hover {
        background: rgba(59,130,246,0.08);
        border-color: var(--primary);
    }

    .nav-links a.nav-cta {
        margin-top: 8px;
        border-radius: var(--radius-md);
        padding: 12px 14px;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    section {
        padding: 56px 0;
    }

    .hero {
        padding: 56px 0 24px;
    }

    .price .amount {
        font-size: 1.75rem;
    }

    table.compare {
        min-width: 0;
    }

    table.compare thead {
        display: none;
    }

    table.compare,
    table.compare tbody,
    table.compare tr {
        display: block;
        width: 100%;
    }

    table.compare tr {
        border-bottom: 1px solid var(--border);
        padding: 8px 0;
    }

    table.compare td {
        display: flex;
        justify-content: space-between;
        gap: 14px;
        padding: 8px 14px;
        border-bottom: 0;
    }

    table.compare td:first-child {
        position: static;
        width: 100%;
        background: transparent;
        border-right: 0;
        font-weight: var(--fw-semibold);
        padding-top: 14px;
    }

    table.compare td:not(:first-child)::before {
        content: attr(data-label);
        color: var(--muted);
        font-weight: var(--fw-medium);
    }

    table.compare td:nth-child(3) {
        background: transparent;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        transition: none !important;
    }
}

/* ============================================
   HOMEPAGE - System Status Panel
   ============================================ */
.status-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    min-width: 280px;
    box-shadow: var(--shadow);
}

.status-header {
    font-weight: var(--fw-semibold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
}

.status-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--muted);
    flex-shrink: 0;
}

.status-dot.active {
    background: var(--success, #22c55e);
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
    animation: pulse-green 2s infinite;
}

.status-dot.warning {
    background: var(--warning, #f59e0b);
}

.status-dot.error {
    background: var(--danger, #ef4444);
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.status-value {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: var(--fw-semibold);
    color: var(--success, #22c55e);
    background: rgba(34, 197, 94, 0.1);
    padding: 3px 8px;
    border-radius: var(--radius-pill);
}

/* ============================================
   HOMEPAGE - Transparency/Prinzipien Grid
   ============================================ */
.transparency {
    padding: 72px 0;
}

.trans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}

@media (max-width: 1024px) {
    .trans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .trans-grid {
        grid-template-columns: 1fr;
    }
}

.trans-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.trans-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #8b5cf6);
    opacity: 0;
    transition: opacity var(--transition);
}

.trans-card:hover {
    border-color: rgba(59,130,246,0.25);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.trans-card:hover::before {
    opacity: 1;
}

.trans-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(139,92,246,0.06) 100%);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.trans-card:hover .trans-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(59,130,246,0.15) 0%, rgba(139,92,246,0.1) 100%);
}

.trans-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.8;
}

.trans-card h3 {
    font-size: 1.1rem;
    font-weight: var(--fw-bold);
    margin-bottom: 10px;
    color: var(--text);
}

.trans-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ============================================
   HOMEPAGE - FAQ Accordion
   ============================================ */
.faq {
    padding: 72px 0;
}

.accordion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 36px;
}

@media (max-width: 900px) {
    .accordion-grid {
        grid-template-columns: 1fr;
    }
}

.accordion-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.accordion-item[open] {
    border-color: var(--primary);
}

.accordion-summary {
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: var(--fw-semibold);
    font-size: 0.9rem;
    color: var(--text);
    list-style: none;
    transition: background var(--transition);
}

.accordion-summary::-webkit-details-marker {
    display: none;
}

.accordion-summary:hover {
    background: var(--card2);
}

.accordion-summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--muted);
    transition: transform 0.2s;
}

.accordion-item[open] .accordion-summary::after {
    content: '\2212';
}

.acc-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.acc-icon {
    font-size: 1rem;
    color: var(--primary);
}

.accordion-body {
    padding: 0 18px 18px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   HOMEPAGE - Compare Table (Standalone)
   ============================================ */
.compare {
    padding: 72px 0;
}

.compare-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 28px;
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.compare-table th {
    background: var(--card2);
    font-weight: var(--fw-semibold);
    color: var(--text);
    font-size: 0.85rem;
    position: sticky;
    top: 0;
}

.compare-table th:first-child {
    text-align: left;
}

.compare-table th:not(:first-child) {
    text-align: center;
}

.compare-table td:not(:first-child) {
    text-align: center;
    color: var(--muted);
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table tr:hover td {
    background: rgba(59,130,246,0.03);
}

.compare-table td:first-child {
    font-weight: var(--fw-medium);
    color: var(--text);
}

/* Highlighted package column */
.compare-table th.highlighted,
.compare-table td.highlighted {
    background: rgba(59,130,246,0.05);
}

/* ============================================
   HOMEPAGE - Hero Visual
   ============================================ */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px;
}

@media (min-width: 1024px) {
    .hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }

    .hero-visual {
        margin-top: 0;
    }
}

/* ============================================
   HOMEPAGE - Pricing Meta
   ============================================ */
.pricing-meta {
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 28px;
}

.pricing-logic {
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 20px;
    padding: 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
