/*
Theme Name: Cannacyra Minimal
Theme URI: https://cannacyra.de
Author: Cannacyra
Description: Minimalistisches medizinisches Theme - strukturiert, ruhig, kompetent.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: cannacyra-minimal
*/

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    touch-action: pan-y;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Page loader overlay */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f3f2ed;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    transition: opacity 1000ms ease-out;
}

.page-loader.fade-out {
    opacity: 0;
}

/* AOS Override - minimal movement for medical seriousness */
[data-aos] {
    opacity: 0;
}
[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(10px);
}
[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}
[data-aos="fade-left"] {
    transform: translateX(10px);
}
[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Placeholder shadows before animation */
[data-aos]:not(.aos-animate)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.04) 100%);
    border-radius: inherit;
    opacity: 0.5;
}

.feature-card[data-aos]:not(.aos-animate),
.contact-item[data-aos]:not(.aos-animate),
.pricing-table[data-aos]:not(.aos-animate),
.section-image[data-aos]:not(.aos-animate) {
    position: relative;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.03);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(15px, 2.5vw, 17px);
    line-height: 1.75;
    color: #1a1a1a;
    background: #f3f2ed;
}

/* Desktop-only line break utility */
.desktop-break {
    display: none;
}
@media (min-width: 769px) {
    .desktop-break {
        display: block;
    }
}

/* Paper Effect - CSS only, no images */
.site {
    position: relative;
    isolation: isolate;
}

/* Subtle paper grain via gradients */
.site::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0,0,0,0.035) 0, rgba(0,0,0,0) 55%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.028) 0, rgba(0,0,0,0) 60%),
        linear-gradient(0deg, rgba(0,0,0,0.02), rgba(0,0,0,0.02));
    opacity: 0.22;
    mix-blend-mode: soft-light;
}

/* Fiber-hint - very subtle diagonal micro-structure */
.site::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        repeating-linear-gradient(
            115deg,
            rgba(0,0,0,0.010) 0px,
            rgba(0,0,0,0.010) 1px,
            rgba(0,0,0,0.000) 3px,
            rgba(0,0,0,0.000) 7px
        );
    opacity: 0.12;
    mix-blend-mode: soft-light;
}

/* Keep content above paper texture */
.site > * {
    position: relative;
    z-index: 1;
}

/* Mobile: reduce to avoid pattern appearance */
@media (max-width: 768px) {
    .site::before { opacity: 0.16; }
    .site::after { opacity: 0.06; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: #0a0a0a;
    margin: 0 0 1rem 0;
}

h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.375rem, 4vw, 1.75rem); font-weight: 500; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 3vw, 1.25rem); font-weight: 500; }

p {
    margin: 0 0 1.5rem 0;
    color: #4a4a4a;
}

a {
    color: #0a0a0a;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #4a6b52;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2rem);
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2rem);
}

@media (max-width: 768px) {
    .container-narrow {
        padding: 0 1.25rem;
    }

    body.home .container-narrow {
        max-width: none;
        margin: 0;
        padding: 0;
    }
}

/* Spacing */
.section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
}

.section-sm {
    padding: clamp(2rem, 6vw, 4rem) 0;
    overflow: hidden;
}

.bg-subtle {
    overflow: hidden;
}

/* Colors */
.text-muted { color: #6b6b6b; }
.text-accent { color: #4a6b52; }
.bg-white { background: #f3f2ed; }

/* Darker sections with stronger paper effect */
.bg-subtle {
    background: #eae8e1;
    position: relative;
    isolation: isolate;
}

.bg-subtle::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(0,0,0,0.05) 0, rgba(0,0,0,0) 50%),
        radial-gradient(ellipse at 85% 80%, rgba(0,0,0,0.04) 0, rgba(0,0,0,0) 55%),
        radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.025) 0, rgba(0,0,0,0) 70%),
        linear-gradient(0deg, rgba(0,0,0,0.015), rgba(0,0,0,0.015));
    opacity: 0.4;
    mix-blend-mode: soft-light;
}

.bg-subtle::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        repeating-linear-gradient(
            125deg,
            rgba(0,0,0,0.012) 0px,
            rgba(0,0,0,0.012) 1px,
            rgba(0,0,0,0.000) 2px,
            rgba(0,0,0,0.000) 5px
        );
    opacity: 0.25;
    mix-blend-mode: soft-light;
}

.bg-subtle > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .bg-subtle::before { opacity: 0.3; }
    .bg-subtle::after { opacity: 0.15; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-primary {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.1rem 2.25rem;
    border-radius: 12px;
}

.btn-primary:hover {
    background: #3a3a3a;
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #4a4a4a;
    border: 1px solid #d8d6cf;
}

.btn-secondary:hover {
    border-color: #a8a59e;
    background: rgba(0, 0, 0, 0.02);
    color: #1a1a1a;
}

/* Cards */
.card {
    background: #ffffff;
    border: 1px solid #e5e3dc;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(45, 42, 38, 0.04), 0 1px 3px rgba(45, 42, 38, 0.02);
}

/* Labels/Tags */
.label {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 6px;
    background: #e5e3da;
    color: #6b6860;
}

/* D2: Mini-Signature vor Labels - LED Glow */
.label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #8bc34a;
    border-radius: 50%;
    margin-right: 0.5rem;
    border: 1.5px solid #6a9c39;
    box-shadow: 0 0 3px rgba(139, 195, 74, 0.9), 0 0 6px rgba(139, 195, 74, 0.4), 0 0 10px rgba(139, 195, 74, 0.2);
}

.label-accent {
    background: #e5e3da;
    color: #6b6860;
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background: #e5e3dc;
    margin: 3rem 0;
}

/* Section Images */
.section-image-wrapper {
    perspective: 1000px;
    margin-bottom: 2.5rem;
}

.section-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(45, 42, 38, 0.08);
}

/* Depth effect for images */
.depth-image {
    box-shadow:
        0 4px 8px rgba(45, 42, 38, 0.08),
        0 12px 24px rgba(45, 42, 38, 0.10),
        0 24px 48px rgba(45, 42, 38, 0.12);
    transform: rotateY(-2deg) rotateX(1deg);
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.depth-image:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-6px);
    box-shadow:
        0 8px 16px rgba(45, 42, 38, 0.10),
        0 20px 40px rgba(45, 42, 38, 0.14),
        0 40px 80px rgba(45, 42, 38, 0.12);
}

@media (max-width: 768px) {
    .depth-image {
        transform: rotateY(-1.5deg) rotateX(0.5deg);
    }

    .depth-image:hover {
        transform: rotateY(0deg) rotateX(0deg) translateY(-3px);
    }
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-image-wide {
    max-height: 320px;
    overflow: hidden;
}

.section-image-wide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 30%;
}

.section-image-atmosphere {
    max-height: 280px;
    overflow: hidden;
}

.section-image-atmosphere img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
}

.section-image-contact {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    max-height: 240px;
    overflow: hidden;
}

.section-image-contact img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
}

.section-image-link {
    display: block;
    position: relative;
    text-decoration: none;
}

.section-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-image-overlay {
    display: none;
}

@media (max-width: 768px) {
    .section-image-wide img,
    .section-image-atmosphere img {
        height: 200px;
    }

    .section-image-contact img {
        height: 160px;
    }

    .section-image-overlay {
        display: block;
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(26, 26, 26, 0.75);
        color: #fff;
        font-size: 0.75rem;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

/* About Page Image */
.about-image-wrapper {
    perspective: 1000px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .about-image-wrapper {
        max-width: 280px;
    }
}

/* Vita List */
.vita-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.vita-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.vita-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: #4a6b52;
    border-radius: 50%;
}

.vita-list li:last-child {
    margin-bottom: 0;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(234, 232, 225, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(229, 227, 218, 0.5) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 0%, rgba(244, 243, 238, 0.8) 0%, transparent 70%),
        linear-gradient(90deg, rgba(243, 242, 237, 0.97) 0%, rgba(238, 236, 229, 0.98) 50%, rgba(243, 242, 237, 0.97) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(221, 219, 212, 0.4);
    z-index: 100;
    padding: 1rem 0;
    box-shadow: 0 1px 8px rgba(45, 42, 38, 0.03);
}

@media (max-width: 768px) {
    .site-header {
        position: relative;
        border-bottom: none;
        padding: 0.75rem 0;
        padding-top: calc(0.75rem + env(safe-area-inset-top));
        background: rgba(243, 242, 237, 0.6);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow:
            0 4px 16px rgba(0, 0, 0, 0.06),
            0 1px 3px rgba(0, 0, 0, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.5),
            inset 0 -1px 0 rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.375rem;
    font-weight: 600;
    color: #0a0a0a;
    letter-spacing: -0.01em;
}

.site-logo-text {
    line-height: 1;
    position: relative;
    animation: logoGlow 2s ease-out forwards;
    overflow: visible;
}

/* Light streak across logo */
.site-logo-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 150%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 20%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.08) 80%,
        transparent 100%
    );
    filter: blur(3px);
    transform: skewX(-15deg);
    animation: lightStreak 1.5s ease-in-out forwards;
    animation-delay: 0.3s;
    pointer-events: none;
}

@media (max-width: 768px) {
    .site-logo-text::before {
        top: -80%;
        width: 400%;
        filter: blur(1px);
    }

    /* Move bling to mobile logo icon */
    .site-logo-text::after {
        display: none;
    }

    .site-logo-mobile {
        position: relative;
    }

    .site-logo-mobile img {
        animation: logoIconGlow 2s ease-out forwards;
    }

    .site-logo-mobile::after {
        content: '✦';
        position: absolute;
        top: -4px;
        right: -8px;
        font-size: 12px;
        color: rgba(139, 195, 74, 0);
        text-shadow: none;
        animation: blingSparkle 1.5s ease-out forwards;
        animation-delay: 0.8s;
        pointer-events: none;
    }

    @keyframes logoIconGlow {
        0% {
            filter: drop-shadow(0 0 4px rgba(139, 195, 74, 0.9))
                    drop-shadow(0 0 8px rgba(139, 195, 74, 0.6));
        }
        30% {
            filter: drop-shadow(0 0 3px rgba(139, 195, 74, 0.5))
                    drop-shadow(0 0 5px rgba(139, 195, 74, 0.3));
        }
        100% {
            filter: none;
        }
    }
}

/* Bling sparkle top right */
.site-logo-text::after {
    content: '✦';
    position: absolute;
    top: -8px;
    right: -12px;
    font-size: 14px;
    color: rgba(139, 195, 74, 0);
    text-shadow: none;
    animation: blingSparkle 1.5s ease-out forwards;
    animation-delay: 0.8s;
    pointer-events: none;
}

@keyframes logoGlow {
    0% {
        color: #5a8a62;
        text-shadow:
            0 0 2px rgba(139, 195, 74, 0.9),
            0 0 4px rgba(139, 195, 74, 0.6);
    }
    30% {
        color: #4a6b52;
        text-shadow:
            0 0 2px rgba(139, 195, 74, 0.5),
            0 0 3px rgba(139, 195, 74, 0.3);
    }
    100% {
        color: #0a0a0a;
        text-shadow: none;
    }
}

@keyframes lightStreak {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

@keyframes blingSparkle {
    0% {
        color: rgba(139, 195, 74, 0);
        transform: scale(0) rotate(0deg);
        text-shadow: none;
    }
    50% {
        color: rgba(255, 255, 255, 1);
        transform: scale(1.5) rotate(180deg);
        text-shadow:
            0 0 8px rgba(139, 195, 74, 1),
            0 0 16px rgba(139, 195, 74, 0.8),
            0 0 24px rgba(255, 255, 255, 0.6);
    }
    100% {
        color: rgba(139, 195, 74, 0);
        transform: scale(0) rotate(360deg);
        text-shadow: none;
    }
}

/* Mobile: reduced glow */
@media (max-width: 768px) {
    @keyframes logoGlow {
        0% {
            color: #5a8a62;
            text-shadow:
                0 0 1px rgba(139, 195, 74, 0.7),
                0 0 2px rgba(139, 195, 74, 0.4);
        }
        40% {
            color: #4a6b52;
            text-shadow:
                0 0 1px rgba(139, 195, 74, 0.3);
        }
        100% {
            color: #0a0a0a;
            text-shadow: none;
        }
    }

    .site-logo-text::after {
        font-size: 12px;
        top: -6px;
        right: -10px;
    }
}

.site-logo-icon {
    width: 38px;
    height: 38px;
    padding: 2px;
    object-fit: contain;
    border: 1px solid rgba(26, 26, 26, 0.3);
    border-radius: 50%;
    vertical-align: middle;
}

.site-logo-mobile {
    display: none;
}

@media (max-width: 768px) {
    .site-logo {
        font-size: 2.5rem;
    }

    .site-logo-icon {
        display: none;
    }

    .site-logo-mobile {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-40%);
        right: 0;
    }

    .site-logo-mobile img {
        width: 48px;
        height: 48px;
        padding: 0;
        object-fit: contain;
        border: 1px solid rgba(26, 26, 26, 0.3);
        border-radius: 50%;
    }

    .site-header {
        padding: 0.75rem 0;
    }

    .header-inner {
        position: relative;
    }
}

.logo-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #4a6b52;
    border-radius: 50%;
    margin-left: 0.4em;
    vertical-align: middle;
    opacity: 0.7;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.9375rem;
    color: #6b6b6b;
    font-weight: 400;
}

.main-nav a:hover,
.main-nav a.current {
    color: #0a0a0a;
}

/* Footer */
.site-footer {
    background: #eae8e1;
    border-top: 1px solid #e5e3dc;
    padding: 3rem 0;
    margin-top: 0;
}

@media (max-width: 768px) {
    .site-footer {
        margin-top: 0;
        padding: 2rem 0;
    }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-text {
    font-size: 0.875rem;
    color: #7a756d;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: #7a756d;
}

.footer-links a:hover {
    color: #1a1a1a;
}

/* Hero */
.hero {
    padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 5rem);
    overflow: hidden;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr clamp(280px, 30vw, 380px);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-content {
    /* Content styles inherited */
}

.hero-image-wrapper {
    perspective: 1000px;
    position: relative;
    z-index: 1;
}

.hero-image {
    border-radius: 16px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-link {
    display: block;
    position: relative;
    text-decoration: none;
}

.hero-image-overlay {
    display: none;
}

@media (max-width: 768px) {
    .hero-image-overlay {
        display: block;
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(26, 26, 26, 0.75);
        color: #fff;
        font-size: 0.75rem;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .hero-image img {
        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: center 35%;
        border-radius: 12px;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b6860;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #e5e3da;
    border-radius: 6px;
}

/* Desktop: show inside content, hide above grid */
.hero-eyebrow-mobile {
    display: none;
}

.hero-eyebrow-desktop {
    display: inline-flex;
}

/* Mobile: show above grid, hide inside content */
@media (max-width: 768px) {
    .hero-eyebrow-mobile {
        display: inline-flex;
    }

    .hero-eyebrow-desktop {
        display: none;
    }
}

/* A2: Marker-Punkt vor Subline - LED Glow */
.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #8bc34a;
    border-radius: 50%;
    margin-right: 0.5rem;
    border: 1.5px solid #6a9c39;
    box-shadow: 0 0 3px rgba(139, 195, 74, 0.9), 0 0 6px rgba(139, 195, 74, 0.4), 0 0 10px rgba(139, 195, 74, 0.2);
}

.hero h1 {
    font-size: clamp(1.75rem, 6vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    max-width: 700px;
}

/* A3: Headline "atmen" lassen - Abstand nach erstem Satz visuell durch word-spacing */
.hero h1 span.headline-break {
    display: block;
    margin-top: 0.5rem;
}

.hero-lead {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: #5a5550;
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-buttons-wrapper {
    display: inline-grid;
    grid-template-columns: auto auto;
    gap: 1rem 1rem;
    margin-top: 2.25rem;
}

.hero-actions {
    display: contents;
}

.hero-jumps {
    display: contents;
}

/* Mobile Hero Optimizations */
@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 0 3rem;
    }

    /* 2. Eyebrow - mobil etwas kleiner */
    .hero-eyebrow {
        font-size: 0.6875rem;
        letter-spacing: 0.04em;
    }

    .hero-eyebrow::before {
        width: 5px;
        height: 5px;
        margin-right: 0.6rem;
    }

    /* 3. Headline atmen lassen */
    .hero h1 {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 1.75rem;
    }

    /* 4. Lead text - emotional entlasten */
    .hero-lead {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #5a5550;
        max-width: 90%;
        margin-bottom: 2.5rem;
    }

    /* 5. CTA Buttons neu gewichten */
    .hero-buttons-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2.5rem;
        width: 100%;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-jumps {
        display: flex;
        gap: 0.75rem;
    }

    .btn-jump {
        flex: 1;
        padding: 0.875rem 1rem;
    }

    .hero-actions .btn-primary {
        padding: 1.15rem 2.5rem;
        font-size: 1.0625rem;
        border-radius: 12px;
        background: #1a1a1a;
        width: 100%;
    }

    .hero-actions .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-width: 1.5px;
        border-color: #1a1a1a;
        color: #1a1a1a;
        width: 100%;
    }
}

/* Steps */
.steps {
    display: grid;
    gap: 2rem;
}

.step {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1.5rem;
    align-items: start;
}

.step-number {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e3da;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 600;
    color: #4a4845;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    margin: 0;
    color: #6b6b6b;
}

/* Features Grid - 2x2 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 3vw, 1.5rem);
}

@media (max-width: 700px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    padding: clamp(1.25rem, 4vw, 2rem);
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e3dc;
    box-shadow: 0 6px 20px rgba(45, 42, 38, 0.04), 0 1px 3px rgba(45, 42, 38, 0.02);
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 1rem;
}

/* Ohne Icon: normale Spalte */
.feature-card:not(:has(.feature-card-icon)) {
    flex-direction: column;
    gap: 0.5rem;
}

.feature-card-icon {
    flex-shrink: 0;
    color: #5a6b5e;
}

.feature-card-content {
    flex: 1;
}

.feature-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: #5a6b5e !important;
    stroke-width: 1.5 !important;
    color: #5a6b5e !important;
    opacity: 0.85;
}

/* C1: Optional marker dot in card header */
.feature-card-content h3 {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.feature-card-content h3::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #8bc34a;
    border-radius: 50%;
    margin-right: 0.6rem;
    border: 1.5px solid #6a9c39;
    box-shadow: 0 0 3px rgba(139, 195, 74, 0.9), 0 0 6px rgba(139, 195, 74, 0.4), 0 0 10px rgba(139, 195, 74, 0.2);
}

.feature-card-content p {
    font-size: 0.9375rem;
    margin: 0;
    color: #6b6860;
}

/* Pricing */
.pricing-table {
    border: 1px solid #e5e3dc;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(45, 42, 38, 0.04), 0 1px 3px rgba(45, 42, 38, 0.02);
    background: #ffffff;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eeedea;
    align-items: center;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.header {
    background: #f5f4f1;
    font-weight: 500;
    font-size: 0.875rem;
    color: #7a756d;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-service h4 {
    display: flex;
    align-items: center;
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 500;
}

/* D2: Mini-Signature vor Preisleistungen - LED Glow */
.pricing-service h4::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #8bc34a;
    border-radius: 50%;
    margin-right: 0.6rem;
    border: 1.5px solid #6a9c39;
    box-shadow: 0 0 3px rgba(139, 195, 74, 0.9), 0 0 6px rgba(139, 195, 74, 0.4), 0 0 10px rgba(139, 195, 74, 0.2);
}

.pricing-service p {
    margin: 0;
    font-size: 0.875rem;
    color: #7a756d;
}

.pricing-amount {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a0a0a;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e3dc;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(45, 42, 38, 0.04), 0 1px 3px rgba(45, 42, 38, 0.02);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.contact-item {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: clamp(1.25rem, 4vw, 2rem);
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e3dc;
    box-shadow: 0 6px 20px rgba(45, 42, 38, 0.04), 0 1px 3px rgba(45, 42, 38, 0.02);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-item:hover {
    box-shadow: 0 8px 28px rgba(45, 42, 38, 0.08), 0 2px 6px rgba(45, 42, 38, 0.04);
    transform: translateY(-2px);
}

.contact-item-icon {
    margin-bottom: 1rem;
    color: #5a6b5e;
}

.contact-item-icon svg {
    width: 32px;
    height: 32px;
    stroke: #5a6b5e !important;
    stroke-width: 1.5 !important;
    color: #5a6b5e !important;
    opacity: 0.85;
}

/* WhatsApp icon uses fill, no stroke */
.contact-item-whatsapp .contact-item-icon svg {
    fill: #5a6b5e;
    stroke: none !important;
}

.contact-item-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #7a756d;
    margin-bottom: 0.5rem;
}

.contact-item-value {
    font-size: 1rem;
    font-weight: 500;
    color: #0a0a0a;
    white-space: nowrap;
}

/* Page Content */
.page-header {
    padding: 6rem 0 3rem;
    border-bottom: 1px solid #e5e6e3;
}

@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0 1.5rem;
    }
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header .lead {
    font-size: 1.125rem;
    color: #6b6b6b;
    margin: 0;
}

.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
}

.page-content {
    padding: 4rem 0;
}

.page-content h2 {
    margin-top: 3rem;
}

.page-content h2:first-child {
    margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        padding-bottom: 3rem;
    }

    .section {
        padding: 3rem 0;
    }

    .main-nav {
        display: none;
    }

    .pricing-row {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.25rem;
    }

    .pricing-service {
        flex: 1;
    }

    .pricing-amount {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #ffffff;
        border: 1px solid #e5e3dc;
        box-shadow: 0 6px 20px rgba(45, 42, 38, 0.04), 0 1px 3px rgba(45, 42, 38, 0.02);
        font-size: 0.875rem;
        font-weight: 600;
        flex-shrink: 0;
        padding: 0.4rem 0.75rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }


    /* Accordion for steps on mobile */
    .step {
        align-items: center;
    }

    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.9rem;
    }

    .step-content p {
        display: none;
    }

    .step-content h3 {
        cursor: pointer;
        position: relative;
        padding-right: 1.5rem;
        margin: 0;
        line-height: 1.2;
    }

    .step-content h3::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 0;
        font-weight: 400;
        color: #6b6b6b;
    }

    .step-content.open h3::after {
        content: '−';
    }

    .step-content.open p {
        display: block;
        margin-top: 0.5rem;
    }

    /* Compact features on mobile */
    .feature-card-content p {
        font-size: 0.875rem;
        margin: 0;
    }

    .features-grid {
        gap: 1rem;
    }

    .feature-card {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .feature-card-icon {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.04);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12), 0 0 12px rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .feature-card-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* Floating Dock */
.floating-dock {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: none;
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.floating-dock.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dock-item,
.dock-item:hover,
.dock-item:active,
.dock-item:focus,
.dock-item:visited {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f3f2ed;
    color: #1a1a1a !important;
    text-decoration: none;
    transition: transform 150ms ease, background 150ms ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
}

/* Hover nur auf echten Hover-Geräten */
@media (hover: hover) and (pointer: fine) {
    .dock-item:hover {
        transform: scale(1.06);
        background: #e5e3da;
    }
}

.dock-item:active {
    transform: scale(0.9);
    background: #f3f2ed;
    color: #1a1a1a !important;
}

.dock-item:focus {
    outline: none;
}

.dock-item:focus-visible {
    outline: 2px solid rgba(26, 26, 26, 0.25);
    outline-offset: 3px;
}

.dock-item svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.75;
}

/* WhatsApp icon uses fill, no stroke */
.dock-whatsapp svg {
    fill: #1a1a1a;
    stroke: none;
}

@media (max-width: 768px) {
    .floating-dock {
        bottom: calc(8px + env(safe-area-inset-bottom, 0));
        background: rgba(243, 242, 237, 0.95);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        gap: 12px;
    }

    .dock-item {
        width: 44px;
        height: 44px;
        border: 1px solid rgba(26, 26, 26, 0.12);
    }

    .dock-item svg {
        width: 20px;
        height: 20px;
    }
}

/* Hero Jump Links - styled as subtle buttons */
.btn-jump {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #7a756d;
    text-decoration: none;
    text-align: center;
    border: 1px solid #c5c2ba;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-jump:hover {
    color: #4a4540;
    border-color: #9a958d;
    background: rgba(0, 0, 0, 0.02);
}

/* FAQ List (Cannabis Page) */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e3dc;
    border-radius: 14px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 12px rgba(45, 42, 38, 0.04);
}

.faq-item h3 {
    display: flex;
    align-items: center;
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
}

.faq-item h3::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #8bc34a;
    border-radius: 50%;
    margin-right: 0.6rem;
    border: 1.5px solid #6a9c39;
    box-shadow: 0 0 3px rgba(139, 195, 74, 0.9), 0 0 6px rgba(139, 195, 74, 0.4);
}

.faq-item p {
    margin: 0;
    color: #5a5550;
    font-size: 0.9375rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 1.25rem;
    }

    .faq-item h3 {
        font-size: 0.9375rem;
    }

    .faq-item p {
        font-size: 0.875rem;
    }
}

/* Example Costs (Pricing Page) */
/* Desktop: Like pricing table rows */
.example-costs {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
    border: 1px solid #e5e3dc;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(45, 42, 38, 0.04), 0 1px 3px rgba(45, 42, 38, 0.02);
}

.example-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eeedea;
}

.example-card:last-child {
    border-bottom: none;
}

.example-label {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #1a1a1a;
}

/* LED dot before label like pricing items */
.example-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #8bc34a;
    border-radius: 50%;
    margin-right: 0.6rem;
    border: 1.5px solid #6a9c39;
    box-shadow: 0 0 3px rgba(139, 195, 74, 0.9), 0 0 6px rgba(139, 195, 74, 0.4), 0 0 10px rgba(139, 195, 74, 0.2);
}

.example-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a0a0a;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e3dc;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(45, 42, 38, 0.04), 0 1px 3px rgba(45, 42, 38, 0.02);
    flex-shrink: 0;
}

/* Mobile: Same table style as pricing table */
@media (max-width: 768px) {
    .example-card {
        padding: 1.25rem;
    }

    .example-label {
        font-size: 0.9375rem;
    }

    .example-price {
        font-size: 0.875rem;
        padding: 0.4rem 0.75rem;
    }
}

/* ========================================
   Reflexion App
   ======================================== */

.reflexion-app {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.reflexion-container {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.reflexion-screen {
    display: none;
    animation: fadeIn 0.4s ease;
}

.reflexion-screen.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.reflexion-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.reflexion-start {
    margin-bottom: 3rem;
}

.reflexion-disclaimer {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: #8a8a8a;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    border: 1px solid #e5e3dc;
    text-align: justify;
}

/* Progress Bar */
.reflexion-progress {
    width: 100%;
    height: 4px;
    background: #e5e3dc;
    border-radius: 2px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.reflexion-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4a6b52, #8bc34a);
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* Question hint */
.reflexion-hint {
    font-size: 0.9375rem;
    color: #6b6b6b;
    margin-bottom: 1.5rem;
}

/* Options */
.reflexion-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.reflexion-option {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e3dc;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    color: #1a1a1a;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(45, 42, 38, 0.04);
}

.reflexion-option:hover {
    border-color: #c5c3bc;
    box-shadow: 0 4px 12px rgba(45, 42, 38, 0.08);
    transform: translateY(-2px);
}

.reflexion-option:active {
    transform: translateY(0);
}

.reflexion-option.selected {
    border-color: #4a6b52;
    background: #f0f5f1;
    box-shadow: 0 0 0 2px rgba(74, 107, 82, 0.15);
}

/* Result Card */
.result-card {
    background: #ffffff;
    border: 1px solid #e5e3dc;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
    box-shadow: 0 8px 24px rgba(45, 42, 38, 0.08);
}

.result-card h3 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4a6b52;
    margin-bottom: 0.75rem;
}

.result-spiegel {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #eeedea;
}

.result-spiegel-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.result-hilft {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #eeedea;
}

.result-hilft-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.result-hilft-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.result-hilft-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: #8bc34a;
    border-radius: 50%;
}

.result-hilft-list li:last-child {
    margin-bottom: 0;
}

.result-schritt-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
    font-style: italic;
    padding: 1rem 1.25rem;
    background: #f8f7f4;
    border-radius: 8px;
    border-left: 3px solid #4a6b52;
}

/* Result CTA */
.result-cta-text {
    font-size: 0.9375rem;
    color: #6b6b6b;
    margin-bottom: 1.5rem;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.reflexion-restart {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.875rem;
    color: #8a8a8a;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
}

.reflexion-restart:hover {
    color: #4a4a4a;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .reflexion-app {
        padding: 2rem 0;
        min-height: auto;
    }

    .reflexion-container {
        padding: 0 1rem;
    }

    .reflexion-lead {
        font-size: 1rem;
    }

    .reflexion-option {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }

    .result-card {
        padding: 1.5rem;
    }

    .result-actions {
        flex-direction: column;
    }

    .result-actions .btn {
        width: 100%;
    }
}

/* Feedback Widget */
.feedback-widget {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: #f8f7f4;
    border-radius: 12px;
    text-align: center;
}

.feedback-question {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.feedback-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feedback-btn {
    padding: 0.6rem 1.25rem;
    background: #ffffff;
    border: 1px solid #e5e3dc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.875rem;
    color: #4a4a4a;
    cursor: pointer;
    transition: all 0.2s ease;
}

.feedback-btn:hover {
    border-color: #c5c3bc;
}

.feedback-btn.selected {
    border-color: #4a6b52;
    background: #f0f5f1;
    color: #3d5a45;
}

.feedback-text-wrapper {
    margin-top: 1rem;
}

.feedback-text-wrapper textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e3dc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.875rem;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 0.75rem;
}

.feedback-text-wrapper textarea:focus {
    outline: none;
    border-color: #4a6b52;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.feedback-thanks {
    font-size: 0.875rem;
    color: #4a6b52;
    font-weight: 500;
    margin-top: 1rem;
}
