/* =====================================================
   MURIX – Premium Light Theme CSS
   Modern Beige + Cyan Accent Design
   ===================================================== */

/* ============ Design Tokens ============ */
:root {
    /* Brand Colors – Cyan */
    --cyan-50: #e0fcff;
    --cyan-100: #bef8fd;
    --cyan-200: #87eaf2;
    --cyan-300: #54d1db;
    --cyan-400: #38bec9;
    --cyan-500: #00b8d4;
    --cyan-600: #0097a7;
    --cyan-700: #007c91;
    --cyan-800: #005662;
    --cyan-900: #003d47;

    /* Light Beige Palette */
    --beige-50: #fefcf9;
    --beige-100: #fdf8f0;
    --beige-200: #f9f1e3;
    --beige-300: #f0e6d3;
    --beige-400: #e4d5bc;
    --beige-500: #d4c4a5;

    /* Neutrals */
    --gray-50: #fafaf9;
    --gray-100: #f5f5f4;
    --gray-200: #e7e5e4;
    --gray-300: #d6d3d1;
    --gray-400: #a8a29e;
    --gray-500: #78716c;
    --gray-600: #57534e;
    --gray-700: #44403c;
    --gray-800: #292524;
    --gray-900: #1c1917;
    --gray-950: #0c0a09;

    /* Semantic */
    --bg-primary: var(--beige-50);
    --bg-secondary: var(--beige-100);
    --bg-tertiary: #ffffff;
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-tertiary: var(--gray-400);
    --accent: var(--cyan-500);
    --accent-light: var(--cyan-50);
    --accent-dark: var(--cyan-700);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00b8d4, #0097a7);
    --gradient-hero: linear-gradient(150deg, #fefcf9 0%, #f0f8ff 40%, #e0fcff22 100%);
    --gradient-card: linear-gradient(145deg, #ffffff, #fdf8f0);
    --gradient-cta: linear-gradient(135deg, #00b8d4, #007c91);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1200px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 4px 30px rgba(0, 184, 212, 0.2);
    --shadow-glow-lg: 0 8px 50px rgba(0, 184, 212, 0.3);

    /* Borders */
    --border: 1px solid rgba(0, 0, 0, 0.06);
    --border-accent: 1px solid rgba(0, 184, 212, 0.2);

    /* Transitions */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 200ms var(--ease);
    --transition-medium: 500ms var(--ease);
    --transition-slow: 800ms var(--ease);
}

/* ============ Reset ============ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: var(--cyan-200);
    color: var(--gray-900);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
    cursor: none;
}

button,
input,
select,
textarea {
    cursor: none;
}

/* ============ Custom Cursor ============ */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s var(--ease), background 0.3s;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s, background 0.3s;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.cursor-dot.hover {
    transform: translate(-50%, -50%) scale(2.5);
    background: var(--accent);
    mix-blend-mode: normal;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
    opacity: 0.3;
    background: rgba(0, 184, 212, 0.05);
}

.cursor-dot.clicking {
    transform: translate(-50%, -50%) scale(0.5);
}

/* ============ Container / Utility ============ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--accent-light);
    border: 1px solid rgba(0, 184, 212, 0.12);
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

.text-gradient-animated {
    background: linear-gradient(135deg, #00b8d4, #0097a7, #00b8d4);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* ============ Reveal Animations ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 15px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: none;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-cta);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-lg);
    color: #fff;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--gray-800);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(254, 252, 249, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: var(--border);
    box-shadow: var(--shadow-xs);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-900);
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    display: inline-block;
    margin-left: 2px;
    vertical-align: middle;
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--bg-primary);
    border: var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    min-width: 520px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-section {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-tertiary);
    padding: 4px 10px 6px;
    margin-bottom: 2px;
}

.dropdown-menu a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--accent-light);
    color: var(--accent);
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #fff;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--gradient-cta);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--gray-900);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--gray-900);
    background: rgba(0, 0, 0, 0.03);
}

.nav-cta {
    background: var(--gradient-cta) !important;
    color: #fff !important;
    font-weight: 600;
    margin-left: 8px;
}

.nav-cta:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
    background: var(--gradient-hero);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 184, 212, 0.15), transparent);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1), transparent);
    bottom: -10%;
    left: -5%;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 184, 212, 0.08), transparent);
    top: 40%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -40px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(40px, 30px) scale(1.02);
    }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.reveal-hero {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.9s var(--ease) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.typewriter {
    position: relative;
    color: var(--primary);
    display: inline-block;
    white-space: pre;
}

.typewriter::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 80%;
    background: var(--primary);
    animation: cursor-blink 0.8s infinite;
}

@keyframes cursor-blink {
    50% { opacity: 0; }
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    opacity: 0.15;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    pointer-events: none;
    user-select: none;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    color: var(--gray-900);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--gray-800);
}

.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Trust section in hero */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg, var(--accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    border: 2px solid var(--bg-primary);
    margin-right: -8px;
}

.trust-text {
    text-align: left;
}

.trust-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 1px;
    line-height: 1;
}

.trust-text span {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.trust-text strong {
    color: var(--gray-800);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 48px;
    background: var(--gray-200);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 50%;
    background: var(--accent);
    border-radius: 2px;
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% {
        top: -50%;
    }

    100% {
        top: 120%;
    }
}

/* ============ MARQUEE ============ */
.marquee-section {
    padding: 20px 0;
    background: var(--gray-900);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
    padding: 0 20px;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
}

.marquee-dot {
    color: var(--accent) !important;
    font-size: 0.7rem !important;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============ HOOK / PROBLEM ============ */
.hook-section {
    background: var(--bg-secondary);
}

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

.hook-text .section-tag {
    margin-bottom: 20px;
}

.hook-text .section-title {
    text-align: left;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 20px;
}

.hook-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.hook-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pain-card {
    padding: 24px;
    background: var(--bg-tertiary);
    border: var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
}

.pain-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pain-card.solution {
    background: var(--accent-light);
    border-color: rgba(0, 184, 212, 0.15);
}

.pain-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    color: var(--accent);
    margin-bottom: 14px;
}

.pain-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--gray-800);
}

.pain-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============ LEISTUNGEN ============ */
.leistungen {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--bg-tertiary);
    border: var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 184, 212, 0.15);
}

.service-card.featured {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-glow);
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--gradient-cta);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.service-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 184, 212, 0.06);
    line-height: 1;
    margin-bottom: 8px;
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    color: var(--accent);
    margin-bottom: 20px;
    transition: all var(--transition-medium);
}

.service-card:hover .service-icon-wrap {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.92rem;
    line-height: 1.7;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* ============ STATS BANNER ============ */
.stats-banner {
    background: var(--gray-900);
    padding: 64px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============ VORTEILE ============ */
.vorteile {
    background: var(--bg-secondary);
}

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

.vorteil-card {
    padding: 36px 28px;
    background: var(--bg-tertiary);
    border: var(--border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-medium);
    text-align: center;
}

.vorteil-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 184, 212, 0.15);
}

.vorteil-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    color: var(--accent);
    margin: 0 auto 16px;
    transition: all var(--transition-medium);
}

.vorteil-card:hover .vorteil-icon-wrap {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
}

.vorteil-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.vorteil-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============ PROZESS ============ */
.prozess {
    background: var(--bg-primary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(0, 184, 212, 0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.step-line {
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============ PORTFOLIO ============ */
.portfolio {
    background: var(--bg-secondary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 24px;
}

.portfolio-card {
    background: var(--bg-tertiary);
    border: var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-card.large {
    grid-row: span 1;
}

.portfolio-visual {
    padding: 28px;
    background: linear-gradient(135deg, rgb(from var(--accent) r g b / 0.05), rgb(from var(--accent) r g b / 0.02));
    background: var(--accent-light);
    display: flex;
    justify-content: center;
    min-height: 200px;
}

.portfolio-mockup-browser {
    width: 100%;
    max-width: 320px;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium);
}

.portfolio-card:hover .portfolio-mockup-browser {
    transform: scale(1.02);
}

.browser-dots {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    background: var(--gray-50);
    border-bottom: var(--border);
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
}

.browser-content {
    padding: 14px;
}

.browser-content:has(.portfolio-screenshot) {
    padding: 0;
}

.portfolio-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.mock-nav {
    height: 8px;
    width: 70%;
    background: var(--gray-100);
    border-radius: 4px;
    margin-bottom: 14px;
}

.mock-hero-block {
    height: 50px;
    background: rgba(0, 184, 212, 0.1);
    border-radius: 8px;
    margin-bottom: 14px;
}

.mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    margin-bottom: 10px;
}

.mock-grid div {
    height: 30px;
    background: var(--gray-100);
    border-radius: 4px;
}

.mock-text {
    height: 6px;
    background: var(--gray-100);
    border-radius: 3px;
    margin-bottom: 6px;
    width: 90%;
}

.mock-text.short {
    width: 60%;
}

.browser-content.purple .mock-hero-block {
    background: rgba(168, 85, 247, 0.1);
}

.browser-content.green .mock-hero-block {
    background: rgba(34, 197, 94, 0.1);
}

.mock-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 10px;
}

.mock-cards-row div {
    height: 40px;
    background: rgba(168, 85, 247, 0.06);
    border-radius: 4px;
}

.mock-btn {
    height: 20px;
    width: 35%;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 4px;
    margin-top: 10px;
}

.portfolio-details {
    padding: 24px 28px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.portfolio-tags span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    background: var(--accent-light);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.portfolio-details h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.portfolio-details p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.portfolio-result {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: var(--border);
}

.portfolio-result div {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.portfolio-result strong {
    color: var(--accent);
    font-weight: 800;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    background: var(--bg-primary);
}

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

.testimonial-card {
    padding: 36px 28px;
    background: var(--bg-tertiary);
    border: var(--border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-medium);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 184, 212, 0.12);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 24px;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card>p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg, var(--accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.author-avatar-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-100);
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-800);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-tertiary);
}

/* ============ PREISE ============ */
.preise {
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-tertiary);
    border: var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all var(--transition-medium);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-glow);
    transform: scale(1.03);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: var(--shadow-glow-lg);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-cta);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gray-900);
}

.pricing-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-price {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: var(--border);
}

.price-from {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    display: block;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    display: block;
    line-height: 1.2;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 7px 0;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li.included {
    color: var(--gray-700);
}

.pricing-features li.excluded {
    color: var(--text-tertiary);
    text-decoration: line-through;
}

.pricing-features li.included::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 800;
    flex-shrink: 0;
}

.pricing-features li.excluded::before {
    content: '✕';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--gray-100);
    color: var(--gray-400);
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 800;
    flex-shrink: 0;
}

.pricing-note {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    padding: 12px 0 16px;
    line-height: 1.5;
    border-top: var(--border);
    margin-top: auto;
    margin-bottom: 16px;
}

.pricing-addon {
    margin-top: 48px;
    padding: 36px;
    background: var(--bg-tertiary);
    border: var(--border);
    border-radius: var(--radius-xl);
}

.pricing-addon h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.addon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.addon-item {
    flex: 0 1 calc(33.333% - 14px);
    min-width: 200px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: var(--border);
}

.addon-name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.addon-price {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.addon-desc {
    display: block;
    font-size: 0.78rem;
    color: var(--text-tertiary);
    line-height: 1.4;
}

.pricing-disclaimer {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-tertiary);
    margin-top: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ============ FAQ ============ */
.faq {
    background: var(--bg-primary);
}

.faq-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

.faq-header {
    position: sticky;
    top: 100px;
}

.faq-header .section-title {
    text-align: left;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.faq-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-tertiary);
    border: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(0, 184, 212, 0.12);
}

.faq-item.active {
    border-color: rgba(0, 184, 212, 0.2);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    cursor: none;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all var(--transition-fast);
}

.faq-toggle span {
    display: block;
    position: absolute;
    background: var(--accent);
    border-radius: 1px;
    transition: transform 0.3s ease;
}

.faq-toggle span:first-child {
    width: 12px;
    height: 2px;
}

.faq-toggle span:last-child {
    width: 2px;
    height: 12px;
}

.faq-item.active .faq-toggle span:last-child {
    transform: rotate(90deg);
}

.faq-item.active .faq-toggle {
    background: var(--accent);
}

.faq-item.active .faq-toggle span {
    background: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer p:last-child {
    padding-bottom: 20px;
}

/* ============ STATIC vs CMS COMPARISON ============ */
.static-vs-cms {
    background: var(--bg-primary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.comparison-card {
    position: relative;
    background: var(--bg-tertiary);
    border: var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all var(--transition-medium);
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.comparison-card.primary {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-glow);
}

.comparison-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--gradient-cta);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.comparison-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: var(--radius-lg);
    color: var(--accent);
    margin-bottom: 20px;
}

.comparison-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.comparison-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.comparison-desc strong {
    color: var(--gray-800);
}

.comparison-list {
    list-style: none;
    margin-bottom: 28px;
}

.comparison-list li {
    padding: 7px 0;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-list li.pro {
    color: var(--gray-700);
}

.comparison-list li.pro::before {
    content: '\2713';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 800;
    flex-shrink: 0;
}

.comparison-list li.con {
    color: var(--gray-600);
}

.comparison-list li.con::before {
    content: '\2717';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 800;
    flex-shrink: 0;
}

.comparison-list li.neutral {
    color: var(--text-secondary);
}

.comparison-list li.neutral::before {
    content: '\2014';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--gray-100);
    color: var(--gray-500);
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 800;
    flex-shrink: 0;
}

.comparison-cost {
    padding-top: 24px;
    border-top: var(--border);
}

.cost-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.cost-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    display: block;
    line-height: 1.2;
}

.cost-value.highlight {
    color: var(--accent);
}

.cost-note {
    display: block;
    font-size: 0.78rem;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.comparison-footer {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 40px;
}

.comparison-footer a {
    font-weight: 600;
}

/* ============ CTA ============ */
.cta-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.cta-box {
    text-align: center;
    padding: 80px 60px;
    background: var(--gray-900);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.cta-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-orb:first-child {
    width: 400px;
    height: 400px;
    background: rgba(0, 184, 212, 0.15);
    top: -30%;
    right: -10%;
    animation: float-orb 15s ease-in-out infinite;
}

.cta-orb:last-child {
    width: 300px;
    height: 300px;
    background: rgba(0, 184, 212, 0.1);
    bottom: -30%;
    left: -10%;
    animation: float-orb 15s ease-in-out infinite 5s;
}

.cta-box .section-tag {
    background: rgba(0, 184, 212, 0.15);
    border-color: rgba(0, 184, 212, 0.2);
    color: var(--cyan-300);
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-box .btn {
    position: relative;
}

/* ============ KONTAKT ============ */
.kontakt {
    background: var(--bg-primary);
}

.kontakt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.kontakt-text .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.kontakt-text>p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.kontakt-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kontakt-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.kontakt-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    color: var(--accent);
    flex-shrink: 0;
}

.kontakt-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    margin-bottom: 2px;
}

.kontakt-item a,
.kontakt-item span {
    font-size: 0.95rem;
    color: var(--gray-800);
    font-weight: 500;
}

/* Form */
.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: var(--bg-tertiary);
    border: var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-800);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 184, 212, 0.08);
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 44px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--gray-900);
    color: #fff;
    padding: 60px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.88rem;
    margin-top: 14px;
    line-height: 1.6;
}

.footer-brand .logo-text {
    color: #fff;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a,
.footer-col span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .vorteile-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .portfolio-card.large {
        grid-row: auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-header {
        position: static;
    }

    .faq-header .section-title {
        text-align: center;
    }

    .faq-header {
        text-align: center;
    }

    .hook-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .hook-text .section-title {
        text-align: center;
    }

    .hook-text {
        text-align: center;
    }

    .kontakt-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    html,
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    *,
    a,
    button,
    input,
    select,
    textarea {
        cursor: auto !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(254, 252, 249, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px;
        gap: 4px;
        transition: right var(--transition-medium);
        border-left: var(--border);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 12px 0;
        width: 100%;
    }

    .nav-link.nav-cta {
        padding: 14px 28px;
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        grid-template-columns: 1fr;
        min-width: 0;
        box-shadow: none;
        border: none;
        padding: 0 0 8px 16px;
        background: transparent;
    }

    .nav-dropdown.open .dropdown-menu {
        display: grid;
    }

    .dropdown-arrow {
        transition: transform var(--transition-fast);
    }

    .nav-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-label {
        margin-top: 8px;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .vorteile-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hook-cards {
        grid-template-columns: 1fr;
    }

    .addon-grid {
        grid-template-columns: 1fr;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-box {
        padding: 48px 24px;
    }

    .kontakt-form {
        padding: 24px;
    }

    .section-header {
        margin-bottom: 48px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 16px 60px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ SUBPAGE STYLES ============ */

/* Subpage Hero */
.subpage-hero {
    padding: 160px 0 80px;
    background: var(--bg-secondary);
    text-align: center;
}

.subpage-hero.compact {
    padding: 140px 0 60px;
}

.subpage-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.subpage-hero .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 20px;
}

.subpage-hero .hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 32px;
}

.subpage-hero .hero-ctas {
    justify-content: center;
}

/* Content Layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}

.content-main h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.3;
}

.content-main h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-top: 40px;
    margin-bottom: 12px;
}

.content-main p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-main a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.content-main a:hover {
    color: var(--accent-dark);
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0 32px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-tertiary);
    border: var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
}

.feature-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    color: var(--accent);
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.88rem;
    color: var(--text-tertiary);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Styled List */
.styled-list {
    padding-left: 0;
    list-style: none;
    margin: 16px 0 24px;
}

.styled-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

ol.styled-list {
    counter-reset: step-counter;
}

ol.styled-list li {
    counter-increment: step-counter;
}

ol.styled-list li::before {
    content: counter(step-counter);
    width: 22px;
    height: 22px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 10px;
}

/* Info Table */
.info-table {
    margin: 24px 0 32px;
    border: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.info-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.info-table-row span {
    padding: 14px 18px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border-bottom: var(--border);
    border-right: var(--border);
}

.info-table-row span:last-child {
    border-right: none;
}

.info-table-row:last-child span {
    border-bottom: none;
}

.info-table-row.header span {
    background: var(--bg-tertiary);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--gray-800);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sidebar */
.content-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-cta {
    padding: 32px 24px;
    background: var(--gray-900);
    border-radius: var(--radius-xl);
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
}

.sidebar-cta h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.sidebar-cta p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.5;
}

.sidebar-links {
    padding: 24px;
    background: var(--bg-tertiary);
    border: var(--border);
    border-radius: var(--radius-xl);
}

.sidebar-links h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.sidebar-links ul {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 8px;
}

.sidebar-links a {
    font-size: 0.88rem;
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.sidebar-links a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* Region Tags */
.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 32px;
}

.region-tag {
    padding: 8px 16px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.region-tag:hover {
    background: var(--accent);
    color: #fff;
}

/* Legal Pages */
.legal-content {
    padding-top: 40px;
}

.container.narrow {
    max-width: 800px;
}

.legal-text h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-top: 40px;
    margin-bottom: 12px;
}

.legal-text h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-top: 28px;
    margin-bottom: 8px;
}

.legal-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-top: 20px;
    margin-bottom: 6px;
}

.legal-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-text a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-text ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-text li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 4px;
}

/* Subpage CTA */
.subpage-content .cta-section {
    margin-top: 0;
}

/* ============ SUBPAGE RESPONSIVE ============ */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-sidebar {
        position: static;
    }

    .info-table-row {
        grid-template-columns: 1fr;
    }

    .info-table-row span {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .subpage-hero {
        padding: 120px 0 60px;
    }

    .subpage-hero.compact {
        padding: 110px 0 40px;
    }

    .content-main h2 {
        font-size: 1.5rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 12px;
    }
}
/* ============ MURIX CARE (SUBSCRIPTIONS) ============ */
.care-section {
    padding-top: 60px;
    border-top: 1px dashed var(--border-color);
    margin-top: 80px;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.care-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.care-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.care-header {
    margin-bottom: 20px;
}

.care-header h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.care-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 15px;
}

.care-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-tertiary);
}

.care-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.care-features li {
    font-size: 0.85rem;
    padding: 6px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.care-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 800;
}

.care-card .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .care-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto 0;
    }
    .featured-care {
        transform: scale(1) !important;
    }
}
