/* ============================================
   CONSTANZE WALTER – LANDINGPAGE
   Kirschblüten-Design inspiriert vom Flyer
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Farben – Flyer-Palette */
    --color-dark: #1a2530;
    --color-dark-teal: #1c2e3a;
    --color-dark-accent: #243844;
    --color-medium: #2d4a5a;
    
    --color-blossom-light: #f5d5d9;
    --color-blossom: #f0c4ca;
    --color-blossom-mid: #e8b4bc;
    --color-blossom-dark: #d4919a;
    --color-blossom-deep: #c9808a;
    
    --color-gold: #c9a96e;
    --color-gold-light: #ddc08a;
    --color-gold-glow: rgba(201, 169, 110, 0.4);
    
    --color-cream: #faf5f0;
    --color-cream-warm: #f5ede3;
    --color-white: #ffffff;
    --color-text-dark: #2a2a2a;
    --color-text-body: #4a4a4a;
    --color-text-light: rgba(255, 255, 255, 0.9);
    --color-text-muted: rgba(255, 255, 255, 0.6);
    
    /* Typografie */
    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1100px;
    --container-narrow: 780px;
    
    /* Transitions */
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a {
    color: var(--color-blossom-dark);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

a:hover {
    color: var(--color-blossom-deep);
}

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

/* --- Floating Petals --- */
.petals-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: 12px;
    height: 12px;
    opacity: 0;
    pointer-events: none;
    animation: petalFall linear forwards;
}

.petal svg {
    width: 100%;
    height: 100%;
}

@keyframes petalFall {
    0% {
        opacity: 0;
        transform: translateY(-20px) rotate(0deg) scale(0.8);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(360deg) scale(0.4);
    }
}

/* --- Navigation --- */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-smooth);
    background: transparent;
}

.main-nav.scrolled {
    background: rgba(26, 37, 48, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-white) !important;
    letter-spacing: 0.02em;
}

.nav-instagram {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.55) !important;
    margin-left: 14px;
    margin-right: auto;
    padding: 5px 14px 5px 10px;
    border: 1px solid rgba(232, 180, 188, 0.2);
    border-radius: 30px;
    font-size: 0.8rem;
    transition: all var(--transition-smooth);
}

.nav-instagram:hover {
    color: var(--color-blossom) !important;
    border-color: rgba(232, 180, 188, 0.45);
    background: rgba(232, 180, 188, 0.08);
}

.nav-instagram svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nav-instagram-label {
    white-space: nowrap;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
    transition: color var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-blossom);
    transition: width var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--color-white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: rgba(212, 145, 154, 0.2) !important;
    color: var(--color-blossom-light) !important;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(232, 180, 188, 0.3);
    transition: all var(--transition-smooth) !important;
}

.nav-cta:hover {
    background: rgba(212, 145, 154, 0.35) !important;
    border-color: rgba(232, 180, 188, 0.5);
}

.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

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

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

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-blossom-dark), var(--color-blossom-deep));
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(212, 145, 154, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 145, 154, 0.45);
    color: var(--color-white);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.05rem;
}

.btn-glow {
    animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(212, 145, 154, 0.3);
    }
    50% {
        box-shadow: 0 4px 35px rgba(212, 145, 154, 0.5), 0 0 60px rgba(201, 169, 110, 0.15);
    }
}

/* --- Sparkles --- */
.hero-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: sparkleGlow 3s ease-in-out infinite;
}

.sparkle::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, var(--color-gold-glow), transparent);
    border-radius: 50%;
}

.sparkle-1 { top: 15%; left: 10%; animation-delay: 0s; }
.sparkle-2 { top: 25%; right: 15%; animation-delay: 0.8s; }
.sparkle-3 { top: 60%; left: 20%; animation-delay: 1.5s; }
.sparkle-4 { top: 70%; right: 25%; animation-delay: 2.2s; }
.sparkle-5 { top: 40%; left: 50%; animation-delay: 0.4s; }
.sparkle-6 { top: 20%; left: 15%; animation-delay: 0.3s; }
.sparkle-7 { top: 50%; right: 20%; animation-delay: 1.1s; }
.sparkle-8 { top: 80%; left: 40%; animation-delay: 1.8s; }
.sparkle-9 { top: 10%; right: 10%; animation-delay: 0.6s; }
.sparkle-10 { top: 85%; left: 25%; animation-delay: 2.0s; }

@keyframes sparkleGlow {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(58, 35, 40, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(40, 55, 65, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 80%, rgba(60, 35, 40, 0.3) 0%, transparent 50%),
        linear-gradient(160deg, #1a2530 0%, #1c2e3a 30%, #243040 50%, #2a2535 70%, #1a2530 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 60%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 30% 40%, rgba(212, 145, 154, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.cherry-branch {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.cherry-branch-hero {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    opacity: 0.7;
}

.cherry-branch-steps {
    left: -20px;
    top: 20px;
    width: 250px;
    opacity: 0.5;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-title-accent {
    font-style: italic;
    color: var(--color-blossom);
    display: block;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--color-blossom-mid), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 0.8; transform: scaleY(1); }
}

/* ============================================
   SECTIONS – GENERAL
   ============================================ */
.section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.section-light {
    background-color: var(--color-cream);
    color: var(--color-text-body);
}

.section-dark {
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(58, 35, 40, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(40, 55, 65, 0.3) 0%, transparent 60%),
        linear-gradient(170deg, #1a2530 0%, #1c2e3a 40%, #22303c 60%, #1a2530 100%);
    color: var(--color-text-light);
}

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

.section-header-light h2,
.section-dark h2 {
    color: var(--color-white) !important;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-blossom-dark);
    margin-bottom: 12px;
}

.section-label-light {
    color: var(--color-blossom);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 400;
    color: var(--color-text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-divider {
    display: flex;
    justify-content: center;
}

.divider-blossom {
    width: 120px;
    height: 20px;
}

/* Florale Dekorationen an den Seiten */
.section-floral {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.section-floral-left {
    left: 0;
}

.section-floral-right {
    right: 0;
}

.section-floral svg {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* ============================================
   MEINE GESCHICHTE
   ============================================ */
.story-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.story-portrait {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid rgba(232, 180, 188, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(212, 145, 154, 0.1);
    transition: all var(--transition-slow);
}

.story-portrait:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 15px rgba(212, 145, 154, 0.15);
    transform: translateY(-2px);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--color-cream-warm), var(--color-blossom-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--color-blossom-mid);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(212, 145, 154, 0.2);
    border-radius: 12px;
}

.image-placeholder span {
    font-size: 0.85rem;
    color: var(--color-blossom-dark);
    font-style: italic;
    text-align: center;
    padding: 20px;
}

.story-text {
    max-width: var(--container-narrow);
}

.story-lead {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-blossom-deep);
    line-height: 1.6;
    margin-bottom: 24px;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-text em {
    color: var(--color-blossom-deep);
    font-style: italic;
}

/* ============================================
   DEIN WEG – 3 SCHRITTE
   ============================================ */
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 180, 188, 0.1);
    border-radius: 20px;
    transition: all var(--transition-slow);
    position: relative;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(232, 180, 188, 0.2);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-blossom-dark), var(--color-blossom-deep));
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 145, 154, 0.3);
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 8px auto 20px;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 14px;
}

.step-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-weight: 300;
}

.step-connector {
    display: flex;
    align-items: center;
    width: 60px;
    flex-shrink: 0;
    padding-top: 80px;
}

.step-connector svg {
    width: 100%;
}

.steps-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ============================================
   FÜR WEN?
   ============================================ */
.fuer-wen-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fuer-wen-intro {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 40px;
    color: var(--color-text-body);
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 24px;
    background: var(--color-white);
    border-radius: 14px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(232, 180, 188, 0.15);
    transition: all var(--transition-smooth);
}

.check-list li:hover {
    border-color: rgba(232, 180, 188, 0.35);
    box-shadow: 0 4px 25px rgba(212, 145, 154, 0.1);
    transform: translateX(4px);
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.check-icon svg {
    width: 100%;
    height: 100%;
}

.check-list li span:last-child {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-body);
}

.fuer-wen-closing {
    text-align: center;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--color-blossom-deep);
    margin-bottom: 30px;
}

.fuer-wen-cta {
    text-align: center;
}

/* ============================================
   FRAGEBOGEN
   ============================================ */
.form-intro {
    max-width: var(--container-narrow);
    margin: 0 auto 50px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.form-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    font-weight: 300;
}

.form-intro-small {
    margin-top: 12px;
    font-size: 0.9rem !important;
    color: var(--color-text-muted) !important;
    font-style: italic;
}

.questionnaire {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 28px;
}

.form-group > label:first-child {

    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.required {
    color: var(--color-blossom);
}

.optional {
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(232, 180, 188, 0.2);
    border-radius: 12px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-smooth);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-blossom-mid);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(212, 145, 154, 0.1);
}

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

/* Checkbox & Radio Styles */
.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(232, 180, 188, 0.12);
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    font-weight: 400 !important;
    margin-bottom: 0 !important;
}

.checkbox-label:hover,
.radio-label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(232, 180, 188, 0.25);
}

.checkbox-label input,
.radio-label input {
    display: none;
}

.checkbox-custom,
.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(232, 180, 188, 0.4);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition-smooth);
}

.radio-custom {
    border-radius: 50%;
}

.checkbox-label input:checked ~ .checkbox-custom,
.radio-label input:checked ~ .radio-custom {
    background: var(--color-blossom-dark);
    border-color: var(--color-blossom-dark);
}

.checkbox-custom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: 2px solid var(--color-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--color-white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.checkbox-label input:checked ~ .checkbox-custom::after,
.radio-label input:checked ~ .radio-custom::after {
    opacity: 1;
}

.checkbox-label span:last-child,
.radio-label span:last-child {
    font-size: 0.92rem;
    color: var(--color-text-light);
}

.checkbox-label input:checked ~ span:last-child,
.radio-label input:checked ~ span:last-child {
    color: var(--color-white);
}

/* Messenger Extra Fields */
.messenger-extra {
    display: none;
    margin-top: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 180, 188, 0.15);
    border-radius: 12px;
    animation: fadeSlideIn 0.35s ease-out;
}

.messenger-extra.visible {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.messenger-extra .form-subgroup {
    margin-bottom: 16px;
}

.messenger-extra .form-subgroup:last-child {
    margin-bottom: 0;
}

.messenger-extra .form-subgroup label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 6px;
}

.messenger-extra select {
    width: 100%;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(232, 180, 188, 0.2);
    border-radius: 10px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: all var(--transition-smooth);
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e8b4bc' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.messenger-extra select:focus {
    border-color: var(--color-blossom-mid);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(212, 145, 154, 0.1);
}

.messenger-extra select option {
    background: #1c2e3a;
    color: var(--color-white);
}

.messenger-extra input[type="text"] {
    width: 100%;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(232, 180, 188, 0.2);
    border-radius: 10px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: all var(--transition-smooth);
    outline: none;
}

.messenger-extra input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

.messenger-extra input[type="text"]:focus {
    border-color: var(--color-blossom-mid);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(212, 145, 154, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 24px;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.form-disclaimer a {
    color: var(--color-blossom);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Erfolgsmeldung */
.form-success {
    text-align: center;
    padding: 60px 30px;
    position: relative;
    z-index: 2;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    animation: successPulse 2s ease-in-out infinite;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.form-success p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

.success-name {
    margin-top: 24px !important;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem !important;
    color: var(--color-blossom) !important;
}

/* ============================================
   VERTRAUEN & HINWEISE
   ============================================ */
.vertrauen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.vertrauen-card {
    padding: 36px 30px;
    background: var(--color-white);
    border-radius: 16px;
    border: 1px solid rgba(232, 180, 188, 0.15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    transition: all var(--transition-smooth);
}

.vertrauen-card:hover {
    box-shadow: 0 8px 30px rgba(212, 145, 154, 0.1);
    border-color: rgba(232, 180, 188, 0.3);
}

.vertrauen-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.vertrauen-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--color-text-body);
}

/* Testimonials */
.testimonials {
    position: relative;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    text-align: center;
    color: var(--color-text-dark);
    margin-bottom: 40px;
    font-style: italic;
}

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

.testimonial-card {
    padding: 36px 30px 28px;
    background: linear-gradient(135deg, var(--color-white), var(--color-cream-warm));
    border-radius: 16px;
    border: 1px solid rgba(232, 180, 188, 0.12);
    position: relative;
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 145, 154, 0.1);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-blossom-mid);
    line-height: 1;
    margin-bottom: -8px;
    opacity: 0.6;
}

.testimonial-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--color-text-body);
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-blossom-deep);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-dark);
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-blossoms {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
}

.footer-blossom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.footer-blossom svg {
    width: 100%;
    height: 100%;
}

.footer-blossom-1 {
    left: 15%;
    width: 40px;
    height: 40px;
}

.footer-blossom-2 {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
}

.footer-blossom-3 {
    right: 15%;
    width: 40px;
    height: 40px;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--color-blossom-mid);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.footer-social {
    margin-bottom: 24px;
}

.footer-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.88rem;
    padding: 8px 18px;
    border: 1px solid rgba(232, 180, 188, 0.2);
    border-radius: 30px;
    transition: all var(--transition-smooth);
}

.footer-instagram:hover {
    color: var(--color-blossom) !important;
    border-color: rgba(232, 180, 188, 0.45);
    background: rgba(232, 180, 188, 0.08);
}

.footer-instagram svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-legal {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-legal a {
    color: var(--color-blossom);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   ANIMATIONS – Scroll Reveal
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE – Tablet
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .cherry-branch-hero {
        width: 250px;
        opacity: 0.4;
    }
    
    .story-content {
        grid-template-columns: 240px 1fr;
        gap: 40px;
    }
    
    .vertrauen-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .vertrauen-grid {
        margin-bottom: 50px;
    }
    
    /* Instagram nav – icon only on tablet and below */
    .nav-instagram-label {
        display: none !important;
    }
    
    .nav-instagram {
        padding: 6px;
        border: none;
        margin-left: 8px;
    }
}

/* ============================================
   RESPONSIVE – Mobile
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Navigation Mobile */
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(26, 37, 48, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 30px 40px;
        gap: 0;
        transition: right var(--transition-smooth);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-cta {
        margin-top: 16px;
        text-align: center;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
        min-height: 100svh;
    }
    
    .cherry-branch-hero {
        width: 180px;
        opacity: 0.3;
        right: -40px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Geschichte Mobile */
    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-image-placeholder {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .image-placeholder {
        aspect-ratio: 1 / 1;
    }
    
    .story-lead {
        font-size: 1.2rem;
    }
    
    /* Steps Mobile */
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .step-card {
        max-width: 100%;
        width: 100%;
    }
    
    .step-connector {
        transform: rotate(90deg);
        width: 40px;
        padding-top: 0;
    }
    
    /* Für wen Mobile */
    .check-list li {
        padding: 14px 18px;
    }
    
    /* Formular Mobile */
    .questionnaire {
        max-width: 100%;
    }
    
    .btn-large {
        padding: 16px 36px;
        font-size: 1rem;
        width: 100%;
    }
    
    /* Vertrauen Mobile */
    .vertrauen-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    /* Florale Dekorationen auf Mobile reduzieren */
    .section-floral {
        width: 80px;
        opacity: 0.5;
    }
    
    .cherry-branch-steps {
        width: 150px;
        opacity: 0.3;
    }
    
    /* Instagram nav – icon only on mobile */
    .nav-instagram {
        padding: 6px;
        border: none;
        margin-left: 8px;
    }
    
    .nav-instagram-label {
        display: none;
    }
}

/* ============================================
   RESPONSIVE – Small Mobile
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .vertrauen-card {
        padding: 28px 22px;
    }
    
    .testimonial-card {
        padding: 28px 22px 22px;
    }
    
    .section-floral {
        display: none;
    }
}

/* ============================================
   ACCESSIBILITY & PREFERENCES
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .petal {
        display: none;
    }
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--color-blossom-dark);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Selection */
::selection {
    background: var(--color-blossom-light);
    color: var(--color-text-dark);
}
