/* ==============================================
   HOC-System – Produktseite
   ============================================== */

:root {
    --font: 'Outfit', sans-serif;
    --ink: #1a1a2e;
    --ink-2: #3d3d5c;
    --ink-3: #7c7c9a;
    --ink-4: #b0b0c8;
    --ink-5: #d4d4e8;
    --bg: #ffffff;
    --bg-2: #fafaff;
    --bg-3: #f3f2ff;
    --border: #eaeaf2;
    --radius-xl: 24px;
    --radius: 16px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --grad: linear-gradient(135deg, var(--primary), #a78bfa, var(--accent));
    --grad-btn: linear-gradient(135deg, var(--primary), #8b5cf6);
    --bs-primary: var(--primary);
    --bs-primary-rgb: var(--primary-rgb);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; overscroll-behavior: none; }
body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    line-height: 1.6;
}

/* ── Bootstrap ── */
.btn-primary {
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-bg: var(--primary-dark);
    --bs-btn-hover-border-color: var(--primary-dark);
    --bs-btn-focus-shadow-rgb: var(--primary-rgb);
}
.form-control:focus, .form-select:focus, .form-check-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}
.form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }

/* ══════════ ANIMATIONS ══════════ */
@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}
@keyframes float-y-sm {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes morph-blob {
    0%, 100% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; transform: rotate(0deg); }
    33% { border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%; }
    66% { border-radius: 30% 70% 32% 68% / 50% 60% 40% 50%; transform: rotate(5deg); }
}
@keyframes grad-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}
@keyframes slide-in-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* ══════════ NAVBAR ══════════ */
.hoc-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hoc-nav.scrolled {
    padding: 0.6rem 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}
.hoc-nav .navbar-brand {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--ink) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    letter-spacing: -0.02em;
}
.nav-logo {
    width: 38px; height: 38px;
    background: var(--grad-btn);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
    transition: transform 0.3s;
}
.hoc-nav .navbar-brand:hover .nav-logo { transform: scale(1.1) rotate(-5deg); }
.hoc-nav .navbar-toggler { border: 1px solid var(--border); border-radius: var(--radius-xs); }
.hoc-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a1a2e' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.hoc-nav .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink-2) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-xs);
    transition: all 0.2s;
}
.hoc-nav .nav-link:hover { color: var(--primary) !important; background: rgba(var(--primary-rgb), 0.05); }
.nav-cta {
    background: var(--grad-btn) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: var(--radius-sm) !important;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
    transition: all 0.3s !important;
    position: relative;
    overflow: hidden;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.4) !important; }

/* ══════════ HERO ══════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg) 100%);
}
.hero-bg {
    position: absolute; inset: 0;
    pointer-events: none; overflow: hidden;
}
.hero-blob {
    position: absolute;
    filter: blur(100px);
    opacity: 0.35;
    animation: morph-blob 15s ease-in-out infinite;
}
.hero-blob--1 { width: 600px; height: 600px; background: rgba(var(--primary-rgb), 0.3); top: -15%; right: -10%; animation-delay: 0s; }
.hero-blob--2 { width: 500px; height: 500px; background: rgba(var(--accent-rgb), 0.2); bottom: -20%; left: -10%; animation-delay: -5s; }
.hero-blob--3 { width: 300px; height: 300px; background: rgba(var(--success-rgb), 0.15); top: 50%; left: 40%; animation-delay: -10s; }
.hero-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
}
.hero .container { position: relative; z-index: 2; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 18px 6px 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-2);
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    animation: slide-in-up 0.5s ease-out both;
}
.hero-tag-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--grad-btn);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 0.65rem;
}
.hero-tag strong { color: var(--primary); }

.hero-h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    animation: slide-in-up 0.6s ease-out 0.08s both;
}
.hero-h1-grad {
    background: var(--grad);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: grad-move 5s ease infinite;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--ink-2);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 2.5rem;
    animation: slide-in-up 0.6s ease-out 0.16s both;
}

.hero-btns {
    display: flex; gap: 14px; flex-wrap: wrap;
    animation: slide-in-up 0.6s ease-out 0.24s both;
}
.btn-main {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-sm);
    font-weight: 700; font-size: 1rem;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font);
}
.btn-main--fill {
    background: var(--grad-btn); color: #fff;
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.35);
    position: relative; overflow: hidden;
}
.btn-main--fill::after {
    content: ''; position: absolute; top: 0; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shine 3s ease-in-out infinite;
}
.btn-main--fill:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(var(--primary-rgb), 0.45); color: #fff; }
.btn-main--ghost {
    background: var(--bg); color: var(--ink);
    border: 2px solid var(--border);
}
.btn-main--ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.06); }

/* Hero Visual */
.hero-visual { position: relative; animation: slide-in-up 0.8s ease-out 0.3s both; }
.hero-screen {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.01), 0 25px 65px rgba(var(--primary-rgb), 0.1);
    transition: transform 0.5s, box-shadow 0.5s;
}
.hero-screen:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 4px 6px rgba(0,0,0,0.01), 0 35px 80px rgba(var(--primary-rgb), 0.15);
}
.screen-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 18px; background: var(--bg-2);
    border-bottom: 1px solid var(--border);
}
.screen-dot { width: 11px; height: 11px; border-radius: 50%; }
.screen-dot--r { background: #ff6b6b; }
.screen-dot--y { background: #feca57; }
.screen-dot--g { background: #1dd1a1; }
.screen-url {
    flex: 1; margin-left: 12px;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 8px; padding: 5px 14px;
    font-size: 0.72rem; color: var(--ink-3);
}
.screen-body { padding: 20px; }
.screen-sidebar {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
}
.screen-menu {
    display: flex; flex-direction: column; gap: 6px;
    padding: 8px 0;
}
.screen-menu-item {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; color: var(--ink-3);
    transition: all 0.2s; cursor: default;
}
.screen-menu-item--active { background: var(--bg-3); color: var(--primary); }
.screen-content { flex: 1; }
.screen-row {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; border-radius: var(--radius-xs);
    margin-bottom: 6px; transition: all 0.3s;
    border: 1px solid transparent;
}
.screen-row:hover { background: var(--bg-2); border-color: var(--border); transform: translateX(4px); }
.screen-ico {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; flex-shrink: 0;
}
.screen-ico--purple { background: rgba(var(--primary-rgb), 0.1); color: var(--primary); }
.screen-ico--cyan { background: rgba(var(--accent-rgb), 0.1); color: var(--accent); }
.screen-ico--green { background: rgba(var(--success-rgb), 0.1); color: var(--success); }
.screen-ico--amber { background: #fff3cd; color: #d97706; }
.screen-lbl { font-weight: 600; font-size: 0.85rem; }
.screen-badge {
    margin-left: auto; font-size: 0.7rem; font-weight: 700;
    padding: 3px 10px; border-radius: 50px; white-space: nowrap;
}
.screen-badge--ok { background: #d1fae5; color: #059669; }
.screen-badge--warn { background: #fef3c7; color: #d97706; }
.screen-badge--info { background: var(--bg-3); color: var(--ink-3); }

/* Floating accents */
.hero-float {
    position: absolute;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    z-index: 3;
}
.hero-float--tl { top: 15px; left: -35px; animation: float-y 6s ease-in-out infinite; }
.hero-float--br { bottom: 25px; right: -25px; animation: float-y 5s ease-in-out 1.5s infinite; }
.hero-float-ico {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; color: #fff;
}
.hero-float-t { font-weight: 700; font-size: 0.82rem; }
.hero-float-s { font-size: 0.7rem; color: var(--ink-3); }

/* ══════════ SECTIONS ══════════ */
.sec { padding: 100px 0; }
.sec--tint { background: var(--bg-2); }
.sec--dark { background: var(--ink); color: #fff; }
.sec-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 700;
    color: var(--primary); text-transform: uppercase;
    letter-spacing: 0.08em; margin-bottom: 1rem;
}
.sec-label-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--grad-btn);
}
.sec-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800; letter-spacing: -0.03em;
    line-height: 1.12; margin-bottom: 1rem;
}
.sec-sub {
    font-size: 1.1rem; color: var(--ink-2);
    line-height: 1.7; max-width: 560px;
}

/* ══════════ FEATURES ══════════ */
.feat-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feat-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.feat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.1);
    border-color: rgba(var(--primary-rgb), 0.15);
}
.feat-card:hover::before { transform: scaleX(1); }
.feat-ico {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 1.2rem;
    transition: transform 0.3s;
}
.feat-card:hover .feat-ico { transform: scale(1.15) rotate(-5deg); }
.feat-ico--1 { background: rgba(var(--primary-rgb), 0.1); color: var(--primary); }
.feat-ico--2 { background: rgba(var(--accent-rgb), 0.1); color: var(--accent); }
.feat-ico--3 { background: #fff3cd; color: #d97706; }
.feat-ico--4 { background: rgba(var(--success-rgb), 0.1); color: var(--success); }
.feat-ico--5 { background: #fce7f3; color: #ec4899; }
.feat-ico--6 { background: #e0e7ff; color: #6366f1; }
.feat-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.feat-text { font-size: 0.92rem; color: var(--ink-2); line-height: 1.65; }

/* ══════════ TIERS / SCALING ══════════ */
.tier-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tier-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(var(--primary-rgb), 0.25);
}
.tier-card--featured {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(var(--primary-rgb),0.04) 100%);
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 10px 35px rgba(var(--primary-rgb), 0.08);
}
.tier-badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: var(--grad-btn);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}
.tier-step {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.tier-step-num {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}
.tier-card--featured .tier-step-num {
    background: var(--grad-btn);
    color: #fff;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}
.tier-name {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 0.55rem;
    color: var(--ink);
}
.tier-tagline {
    font-size: 0.93rem;
    color: var(--ink-2);
    line-height: 1.55;
    margin-bottom: 1.5rem;
}
.tier-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}
.tier-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.45rem 0;
    font-size: 0.9rem;
    color: var(--ink-2);
    line-height: 1.45;
}
.tier-list li i {
    color: var(--success);
    margin-top: 0.3rem;
    flex-shrink: 0;
    font-size: 0.78rem;
}
.tier-list li strong {
    color: var(--ink);
    font-weight: 600;
}
.tier-list li em {
    color: var(--ink-3);
    font-style: normal;
    font-size: 0.82rem;
    margin-right: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.tier-foot {
    padding-top: 1.1rem;
    border-top: 1px solid var(--border);
    font-size: 0.83rem;
    color: var(--ink-3);
}
.tier-foot strong { color: var(--ink-2); font-weight: 600; }
.tier-note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--ink-3);
    font-size: 0.95rem;
}
.tier-note i {
    color: var(--accent);
    margin-right: 0.5rem;
}

/* ══════════ HOW IT WORKS ══════════ */
.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
}
.step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--grad-btn);
    color: #fff;
    font-weight: 900; font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
    transition: transform 0.3s;
}
.step-card:hover .step-num { transform: scale(1.15); }
.step-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-text { font-size: 0.92rem; color: var(--ink-2); line-height: 1.6; }
.step-connector {
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-4);
    font-size: 1.5rem;
    padding-top: 1.5rem;
}

/* ══════════ STATS ══════════ */
.stat-bar {
    background: var(--ink);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ══════════ CTA ══════════ */
.cta-block {
    background: var(--grad);
    background-size: 200% 200%;
    animation: grad-move 8s ease infinite;
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-block::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    top: -150px; right: -100px;
    animation: float-y 8s ease-in-out infinite;
}
.cta-block::after {
    content: '';
    position: absolute;
    width: 250px; height: 250px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    bottom: -80px; left: -50px;
    animation: float-y 10s ease-in-out infinite reverse;
}
.cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800; color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    position: relative; z-index: 1;
}
.cta-text {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem; line-height: 1.7;
    max-width: 500px; margin: 0 auto 2rem;
    position: relative; z-index: 1;
}
.btn-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; color: var(--primary);
    font-weight: 700; font-size: 1rem;
    padding: 0.9rem 2.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none; border: none;
    transition: all 0.3s;
    position: relative; z-index: 1;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.2); color: var(--primary); }

/* ══════════ CONTACT ══════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem; align-items: start;
}
@media (max-width: 991px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
}
.contact-entry {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 1.5rem;
}
.contact-entry:last-child { margin-bottom: 0; }
.contact-ico {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem; flex-shrink: 0;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    transition: all 0.3s;
}
.contact-entry:hover .contact-ico { background: var(--primary); color: #fff; transform: scale(1.1); }
.contact-lbl { font-weight: 700; font-size: 0.85rem; margin-bottom: 2px; }
.contact-val { font-size: 0.9rem; color: var(--ink-2); line-height: 1.5; }

/* Form */
.hoc-form .form-label { font-weight: 600; font-size: 0.85rem; margin-bottom: 0.4rem; }
.hoc-form .form-control,
.hoc-form .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 0.75rem 1rem; font-size: 0.92rem;
    font-family: var(--font);
    transition: all 0.3s;
}
.hoc-form .form-control:focus, .hoc-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}
.hoc-form .form-control::placeholder { color: var(--ink-4); }
.hoc-form .form-check-label { font-size: 0.85rem; color: var(--ink-2); }
.hoc-form .form-check-label a { color: var(--primary); text-decoration: none; }
.hoc-form .form-check-label a:hover { text-decoration: underline; }
.btn-send {
    width: 100%; padding: 0.85rem;
    background: var(--grad-btn); border: none;
    color: #fff; font-weight: 700; font-size: 0.95rem;
    border-radius: var(--radius-xs);
    font-family: var(--font); cursor: pointer;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
    transition: all 0.3s;
    position: relative; overflow: hidden;
}
.btn-send::after {
    content: ''; position: absolute; top: 0; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s ease-in-out infinite;
}
.btn-send:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.4); }
.btn-send:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* Feedback */
#kontakt-success { display: none; background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: var(--radius-sm); padding: 2rem; text-align: center; }
.kontakt-success-icon { color: #059669; }
.kontakt-success-msg { color: var(--ink-2); margin: 0; }
#kontakt-error { display: none; background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius-xs); padding: 0.8rem 1rem; margin-bottom: 1rem; }
.kontakt-error-icon { color: #dc2626; }
.kontakt-error-text { color: #dc2626; font-size: 0.88rem; }
#kontaktBtnSpinner { display: none; }

/* Datenschutz-Modal */
#datenschutzModal { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(26,26,46,0.5); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 1rem; }
.ds-modal { background: var(--bg); border-radius: 20px; width: 100%; max-width: 700px; max-height: 85vh; display: flex; flex-direction: column; box-shadow: 0 25px 60px rgba(0,0,0,0.15); }
.ds-modal-head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.ds-modal-title { font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
.ds-modal-title i { color: var(--primary); }
.ds-modal-x { background: var(--bg-2); border: 1px solid var(--border); border-radius: 8px; color: var(--ink-3); width: 32px; height: 32px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.ds-modal-x:hover { background: var(--bg-3); }
.ds-modal-body { overflow-y: auto; padding: 1.25rem 1.5rem; color: var(--ink-2); font-size: 0.9rem; line-height: 1.7; }
.ds-modal-load { text-align: center; padding: 2rem; color: var(--ink-4); }
.ds-modal-foot { padding: 1rem 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 0.75rem; }
.ds-modal-link { background: var(--bg-2); border: 1px solid var(--border); border-radius: 8px; color: var(--ink-2); padding: 0.5rem 1rem; font-size: 0.82rem; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: background 0.2s; }
.ds-modal-link:hover { background: var(--bg-3); color: var(--ink); }
.ds-modal-ok { background: var(--primary); border: none; border-radius: 8px; color: #fff; padding: 0.5rem 1.5rem; font-size: 0.82rem; font-weight: 700; cursor: pointer; font-family: var(--font); transition: background 0.2s; }
.ds-modal-ok:hover { background: var(--primary-dark); }

/* ══════════ FAQ ACCORDION ══════════ */
.hoc-accordion {
    border: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hoc-accordion .accordion-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hoc-accordion .accordion-item:hover {
    border-color: rgba(var(--primary-rgb), 0.2);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.06);
}
.hoc-accordion .accordion-button {
    background: transparent;
    font-family: var(--font);
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none !important;
    gap: 1rem;
}
.hoc-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--primary);
}
.hoc-accordion .accordion-button::after {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236C5CE7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3e%3c/svg%3e");
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(var(--primary-rgb), 0.06);
    border-radius: 10px;
    transition: all 0.3s;
}
.hoc-accordion .accordion-button:not(.collapsed)::after {
    background-color: rgba(var(--primary-rgb), 0.12);
    transform: rotate(-180deg);
}
.hoc-accordion .accordion-body {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.94rem;
    color: var(--ink-2);
    line-height: 1.75;
}

/* ══════════ FOOTER ══════════ */
.hoc-footer { background: var(--ink); color: rgba(255,255,255,0.5); padding: 60px 0 30px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; color: #fff; margin-bottom: 1rem; }
.footer-brand .nav-logo { width: 32px; height: 32px; font-size: 0.85rem; border-radius: 8px; }
.footer-text { font-size: 0.88rem; line-height: 1.6; max-width: 300px; }
.footer-h { font-size: 0.82rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }
.footer-ul { list-style: none; padding: 0; margin: 0; }
.footer-ul li { margin-bottom: 0.5rem; font-size: 0.88rem; }
.footer-ul a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-ul a:hover { color: #fff; }
.footer-line { border-color: rgba(255,255,255,0.07); margin: 2rem 0; }
.footer-end { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── BACK TO TOP ── */
#backToTop {
    position: fixed; bottom: 30px; right: 30px;
    width: 46px; height: 46px;
    border-radius: 14px;
    background: var(--grad-btn);
    color: #fff; border: none;
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.35);
    display: none; align-items: center; justify-content: center;
    font-size: 0.9rem; cursor: pointer; z-index: 9999;
    transition: all 0.3s;
}
#backToTop:hover { transform: translateY(-4px) scale(1.05); }

/* ── COMING-SOON CORNER RIBBON ── */
.hoc-coming-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    width: 270px;
    height: 270px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1100;
}
.hoc-coming-ribbon a {
    display: block;
    position: absolute;
    top: 52px;
    left: -85px;
    width: 340px;
    transform: rotate(-45deg);
    background: var(--grad-btn);
    color: #fff;
    text-align: center;
    padding: 0.8rem 0;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.4), 0 2px 6px rgba(0,0,0,0.12);
    pointer-events: auto;
    transition: box-shadow 0.3s ease, filter 0.3s ease;
}
.hoc-coming-ribbon a:hover {
    color: #fff;
    box-shadow: 0 12px 34px rgba(var(--primary-rgb), 0.55), 0 4px 10px rgba(0,0,0,0.18);
    filter: brightness(1.08);
}
.hoc-coming-ribbon i { margin-right: 0.5rem; font-size: 0.95rem; }
@media (max-width: 575px) {
    .hoc-coming-ribbon { width: 210px; height: 210px; }
    .hoc-coming-ribbon a {
        top: 38px; left: -92px; width: 280px;
        font-size: 0.85rem; padding: 0.6rem 0;
    }
}

/* ── LEGAL ── */
.legal-page { padding: 120px 0 80px; min-height: 60vh; }
.legal-page h1 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.legal-page h2 { font-size: 1.15rem; font-weight: 700; margin-top: 2rem; margin-bottom: 0.5rem; }
.legal-page h3 { font-size: 1rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.4rem; }
.legal-page p, .legal-page ul, .legal-page address { font-size: 0.92rem; color: var(--ink-2); line-height: 1.8; font-style: normal; }
.legal-page ul { padding-left: 1.5rem; }
.legal-page a { color: var(--primary); }
.legal-breadcrumb { font-size: 0.82rem; color: var(--ink-3); margin-bottom: 2rem; }
.legal-breadcrumb a { color: var(--primary); text-decoration: none; }

/* ── 404 ── */
.error-page { padding: 160px 0 100px; min-height: 70vh; text-align: center; }
.error-code { font-size: 7rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.error-title { font-size: 1.6rem; font-weight: 700; margin: 1rem 0 0.5rem; }
.error-text { color: var(--ink-2); font-size: 1rem; margin-bottom: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-visual { margin-top: 3rem; }
    .hero-float { display: none; }
    .cta-block { padding: 3rem 2rem; }
    .step-connector { display: none; }
    .stat-bar { padding: 2.5rem 1.5rem; }
}
@media (max-width: 767px) {
    .sec { padding: 70px 0; }
    .hero-h1 { font-size: 2.4rem; }
    .sec-title { font-size: 1.8rem; }
    .cta-block { padding: 2.5rem 1.5rem; }
    .contact-info { padding: 2rem; }
    .stat-bar { border-radius: var(--radius); flex-direction: column; }
}

/* ── LANGUAGE SWITCHER ── */
.hoc-lang-switcher { display: inline-flex; align-items: center; gap: 2px; padding: 4px; border-radius: 999px; background: rgba(0,0,0,0.04); margin: 0 0.25rem; }
.hoc-lang-switcher .hoc-lang-link { display: inline-flex; align-items: center; justify-content: center; min-width: 2.1rem; padding: 0.25rem 0.55rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-2); text-decoration: none; border-radius: 999px; transition: background 0.15s, color 0.15s; }
.hoc-lang-switcher .hoc-lang-link:hover { color: var(--accent); background: rgba(0,0,0,0.05); }
.hoc-lang-switcher .hoc-lang-link.active { color: #fff; background: var(--accent); cursor: default; }
.hoc-nav.scrolled .hoc-lang-switcher { background: rgba(0,0,0,0.05); }
