.elementor-1275 .elementor-element.elementor-element-969e705{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ba9c94f */:root {
    --cosmic-night: #1A1A2E;
    --cosmic-purple: #6B3FA0;
    --cosmic-purple-deep: #5A1A9E;
    --cosmic-purple-light: #A855F7;
    --gold: #B8922E;
    --gold-light: #D4A843;
    --gold-soft: #E8D5A3;
    --cream: #FAF6F0;
    --cosmic-cream: #FBF7F4;
    --white: #FFFFFF;
    --cosmic-lavender: #F0E6F6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cosmic-night);
    color: var(--white);
    overflow-x: hidden;
}

/* ══════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* Cosmic Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(107, 63, 160, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(184, 146, 46, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(90, 26, 158, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, #0A0A14 0%, #111122 30%, #1A1A2E 70%, #111122 100%);
    z-index: 0;
}

/* Floating Particles */
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(212, 168, 67, 0.6), transparent),
        radial-gradient(1px 1px at 30% 60%, rgba(168, 85, 247, 0.4), transparent),
        radial-gradient(1.5px 1.5px at 50% 10%, rgba(212, 168, 67, 0.5), transparent),
        radial-gradient(1px 1px at 70% 40%, rgba(168, 85, 247, 0.3), transparent),
        radial-gradient(1.5px 1.5px at 90% 70%, rgba(212, 168, 67, 0.4), transparent),
        radial-gradient(1px 1px at 20% 80%, rgba(168, 85, 247, 0.3), transparent),
        radial-gradient(1px 1px at 60% 90%, rgba(212, 168, 67, 0.3), transparent),
        radial-gradient(1.5px 1.5px at 85% 15%, rgba(168, 85, 247, 0.4), transparent);
    z-index: 1;
    animation: drift 20s ease-in-out infinite alternate;
}

@keyframes drift {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-15px) translateX(10px); }
}

/* Hero Image -- Magazine Cover Style */
.hero-cover {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    overflow: hidden;
}

.hero-cover img {
    width: 100%;
    height: auto;
    display: block;
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

/* Vogue-Style Magazine Cover Overlay */
.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

/* REBEL -- huge masthead, top center */
.cover-rebel {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 14px;
    line-height: 0.85;
    text-shadow: none;
}

/* "Vom Bauernhof..." -- top left, over the buildings */
.cover-bauernhof {
    position: absolute;
    top: 140px;
    left: 16px;
    max-width: 200px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 500;
    color: #E84B8A;
    line-height: 1.3;
    text-shadow: 0 1px 12px rgba(0,0,0,0.3), 0 0 20px rgba(0,0,0,0.15);
}

/* "9 Jahre / 20.000+ Kunden" -- left side, mid-lower */
.cover-stats {
    position: absolute;
    top: 200px;
    left: 16px;
    max-width: 180px;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    text-shadow: none;
}

.cover-stats .stat-small {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
}

.cover-stats .stat-big {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 2px;
}

.cover-stats .highlight {
    color: #E84B8A;
}

/* "Wahnsinn / 780K" -- right side, dark area */
.cover-launch {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    text-shadow: 0 2px 15px rgba(0,0,0,0.5), 0 0 30px rgba(0,0,0,0.2);
}

.cover-launch .launch-big {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    line-height: 1;
}

.cover-launch .launch-sub {
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 2px;
    display: block;
    margin-top: 4px;
    opacity: 0.9;
}

/* 2026 on cover */
.cover-year {
    position: absolute;
    top: 55px;
    right: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--gold-light);
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

/* Podcast -- right side */
.cover-podcast {
    position: absolute;
    top: 180px;
    right: 16px;
    text-align: right;
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    text-shadow: 0 1px 10px rgba(0,0,0,0.5), 0 0 20px rgba(0,0,0,0.2);
    line-height: 1.1;
}

.cover-podcast .podcast-big {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
}

.cover-podcast .podcast-sub {
    font-size: 11px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 2px;
    display: block;
    margin-top: 4px;
    color: #000000;
    text-shadow: none;
}

/* Topic bar at very bottom of cover */
.cover-topics {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.cover-topics .sep {
    margin: 0 8px;
    color: var(--gold-light);
    opacity: 0.6;
}

/* Hero Content below image */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    margin-top: -40px;
    max-width: 480px;
    width: 100%;
}

.hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1.1;
}

.hero-bio {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-top: 12px;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.hero-bio strong {
    color: var(--gold-light);
    font-weight: 500;
}

/* ══════════════════════════════════════
   TOPICS / HIGHLIGHTS
   ══════════════════════════════════════ */

.topics {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    padding: 0 20px;
    flex-wrap: wrap;
    max-width: 480px;
}

.topic-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1px solid rgba(184, 146, 46, 0.35);
    border-radius: 100px;
    color: var(--gold-light);
    background: rgba(184, 146, 46, 0.08);
    backdrop-filter: blur(10px);
}

/* ══════════════════════════════════════
   LIEBLINGSKUNDEN SECTION
   ══════════════════════════════════════ */

.clients {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 480px;
    margin-top: 48px;
    padding: 0 24px;
}

.section-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: var(--white);
    line-height: 1.3;
}

.section-headline em {
    font-style: italic;
    color: var(--gold-light);
}

.client-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.client-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.client-item .check {
    color: var(--gold-light);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.soulmate-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    text-align: center;
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 24px;
}

.soulmate-intro em {
    color: var(--gold-light);
    font-style: italic;
}

.soulmate-statement {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 20px;
}

.soulmate-closing {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.soulmate-closing strong {
    color: var(--gold-light);
    font-weight: 700;
}

.soulmate-closing em {
    font-style: italic;
    color: var(--gold-light);
}

.client-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto;
}

.client-note {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    text-align: center;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

/* ══════════════════════════════════════
   ARCHETYPEN SECTION
   ══════════════════════════════════════ */

.archetypes {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 480px;
    margin-top: 48px;
    padding: 0 24px;
}

.archetype-grid {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.archetype-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.archetype-card:hover {
    background: rgba(107, 63, 160, 0.1);
    border-color: rgba(107, 63, 160, 0.25);
}

.archetype-symbol {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: var(--gold-light);
    border: 1px solid rgba(184, 146, 46, 0.3);
    background: rgba(184, 146, 46, 0.08);
}

.archetype-info {
    flex: 1;
}

.archetype-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.archetype-desc {
    font-size: 11px;
    font-weight: 300;
    color: #ffffff;
    margin-top: 2px;
    line-height: 1.4;
}

/* ══════════════════════════════════════
   SOCIAL PROOF BAR
   ══════════════════════════════════════ */

.proof-bar {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 480px;
    margin-top: 40px;
    padding: 20px 24px;
    display: flex;
    justify-content: center;
    gap: 32px;
    border-top: 1px solid rgba(184, 146, 46, 0.15);
    border-bottom: 1px solid rgba(184, 146, 46, 0.15);
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-light);
}

.proof-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}

/* ══════════════════════════════════════
   CTA CARDS
   ══════════════════════════════════════ */

.cta-section {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 480px;
    padding: 40px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Primary CTA -- The Unfolding */
.cta-primary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(107, 63, 160, 0.3), rgba(184, 146, 46, 0.2));
    border: 1px solid rgba(184, 146, 46, 0.3);
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-primary:hover {
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(184, 146, 46, 0.2);
}

.cta-image {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.cta-text {
    flex: 1;
}

.cta-badge {
    display: inline-block;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 6px;
}

.badge-live {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--cosmic-night);
}

.badge-free {
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--cosmic-purple-light);
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.cta-sub {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}

.cta-arrow {
    color: var(--gold-light);
    font-size: 18px;
    flex-shrink: 0;
    opacity: 0.6;
}

/* Secondary CTAs */
.cta-secondary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-1px);
}

.cta-secondary .cta-image {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

.cta-secondary .cta-title {
    font-size: 15px;
}

/* Rebel Universe Placeholder Image */
.rebel-badge {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-purple-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-light);
    box-shadow: 0 4px 16px rgba(107, 63, 160, 0.3);
}

/* Simple Text Links */
.more-links {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 480px;
    padding: 32px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.more-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.more-link:hover {
    color: var(--gold-light);
}

.more-link .arrow {
    font-size: 12px;
    opacity: 0.4;
}

/* ══════════════════════════════════════
   TESTIMONIAL
   ══════════════════════════════════════ */

.testimonial {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 480px;
    margin-top: 48px;
    padding: 32px 24px;
    text-align: center;
}

.testimonial-card {
    padding: 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 12px;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
}

.testimonial-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--gold-light);
    margin-top: 10px;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════════
   SOCIAL & FOOTER
   ══════════════════════════════════════ */

.socials {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.footer {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 24px;
    font-size: 10px;
    color: rgba(255,255,255,0.2);
}

.footer a {
    color: rgba(255,255,255,0.25);
    text-decoration: none;
}

.footer a:hover { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════
   PULSE ANIMATION
   ══════════════════════════════════════ */

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184, 146, 46, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(184, 146, 46, 0); }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-light);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-gold 2s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}/* End custom CSS */