:root {
    /* LUXURY PALETTE */
    --col-deep: #050814;            
    --col-patricks: #0f1642;        
    --col-patricks-light: #182052; 
    
    /* METALLIC GOLD PALETTE */
    --gold-dark: #8E793E;
    --gold-main: #AD9C65;
    --gold-light: #F3E5AB;
    --gold-gradient: linear-gradient(135deg, #8E793E 0%, #D4AF37 50%, #F3E5AB 100%);
    
    /* METALLIC SILVER PALETTE (für Basis & Enterprise) */
    --silver-gradient: linear-gradient(135deg, #9FA4C4 0%, #E2E4EB 50%, #9FA4C4 100%);

    --text-white: #ffffff;
    --text-grey: #a0aec0;
    
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --border-subtle: rgba(255,255,255,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    width: 100%;
    background-color: var(--col-deep);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    /* FIX für Horizontal Scroll: Overflow gehört HIER hin, nicht in wrapper */
    overflow-x: hidden; 
}

.page-wrapper {
    /* WICHTIG: Kein overflow-x hier, sonst bricht GSAP Pinning */
    width: 100%;
    position: relative;
}

/* --- BACKGROUND FX --- */
.parallax-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); z-index: -1; opacity: 0.3; pointer-events: none;
}
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, var(--col-patricks-light), transparent); top: 5%; left: -10%; }
.orb-2 { width: 700px; height: 700px; background: radial-gradient(circle, #242e75, transparent); bottom: 20%; right: -20%; }

.ambient-glow {
    position: fixed; top: -20%; right: -10%; width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(28, 38, 102, 0.4) 0%, transparent 70%);
    filter: blur(100px); z-index: -1; pointer-events: none;
}
.noise-overlay {
    position: fixed; width: 100%; height: 100%; top: 0; left: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 999;
}

/* GLOBAL CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.text-gold { 
    background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block;
}
.text-white-dim { color: rgba(255,255,255,0.3); }
.center { text-align: center; }

/* 3D Perspective Wrappers */
.hero-content, .section-header, .story-card, .pricing-card { perspective: 1000px; transform-style: preserve-3d; }

/* --- NAVBAR --- */
.navbar {
    width: 100%; 
    position: fixed; 
    top: 0; 
    z-index: 100;
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(12px); 
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    padding: 1rem 0; 
    transition: all 0.4s ease; 
    transform: none !important; 
    opacity: 1 !important;      
    top: 0 !important;          
}

.nav-inner {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%;
}

.nav-logo {
    height: 110px; 
    width: auto;
    display: block;
    transition: height 0.4s ease; 
    margin-left: -19px; 
}

/* Buttons */
.btn {
    padding: 0.8rem 1.8rem; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 0.9rem;
    transition: all 0.4s ease; cursor: pointer; border: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}

/* GOLD BUTTON */
.btn-gold { background: var(--gold-gradient); color: #0f1642; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2); }

/* SILVER BUTTON */
.btn-silver { 
    background: var(--silver-gradient); 
    color: var(--col-patricks); 
    font-weight: 700;
}
.btn-silver:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 10px 30px rgba(226, 228, 235, 0.25); 
}

/* OUTLINE BUTTON */
.btn-gold-outline { 
    border: 1px solid var(--col-patricks); 
    color: var(--col-patricks); 
    background: transparent; 
    padding: 0.7rem 1.5rem; 
    margin: 0; 
}
.btn-gold-outline:hover { 
    background: var(--col-patricks); 
    color: #fff;
}

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

/* --- HERO SECTION --- */
.hero { 
    padding-top: 220px; 
    min-height: 95vh; 
    display: flex; 
    align-items: center; 
    position: relative; 
}

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }
.gold-line { width: 60px; height: 4px; background: var(--gold-gradient); margin-bottom: 2rem; }
.hero-title { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.1rem; color: var(--text-grey); max-width: 500px; margin-bottom: 3rem; line-height: 1.6; }
.hero-buttons { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.link-text { color: white; text-decoration: none; font-size: 0.9rem; opacity: 0.7; }

.image-frame { position: relative; width: 100%; overflow: hidden; border-radius: 8px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); transform: translateZ(0); }
.image-frame img { width: 100%; height: 120%; object-fit: cover; transform: scale(1.1); filter: sepia(10%) contrast(1.1); }

/* --- HORIZONTAL SECTION (OPTIMIERT) --- */
.horizontal-section {
    padding: 6rem 0;
    width: 100%;
    /* Wichtig: Überlässt das Handling dem inneren Container */
}
.horizontal-container {
    width: 100%;
    overflow: hidden; /* Versteckt den Überhang nach rechts */
}
.center-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
}
.horizontal-track {
    display: flex;
    gap: 4rem;
    padding-left: 10vw;
    width: max-content; /* Zwingt die Elemente nebeneinander */
    flex-wrap: nowrap;  /* Kein Umbruch */
    height: 100%;       
    align-items: center; 
}
.story-card.h-card {
    width: 70vw;
    max-width: 500px;
    flex-shrink: 0;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- STANDARD SECTIONS --- */
.overline { color: var(--gold-main); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; display: block; margin-bottom: 1rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); }

.story-card { 
    background: rgba(255,255,255,0.02); padding: 2.5rem; 
    border-left: 1px solid var(--border-subtle); transition: 0.3s;
}
.highlight-card { 
    background: linear-gradient(to bottom, var(--col-patricks-light), #0f1642); 
    border-left: 2px solid var(--gold-main); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.4); 
}
.story-card h3 { font-size: 1.4rem; margin: 1rem 0; font-family: var(--font-head); }
.story-card p { color: var(--text-grey); font-size: 0.95rem; }
.icon-dim { font-size: 2rem; color: #333; }
.icon-gold { font-size: 2rem; color: var(--gold-main); }

.process-section { padding: 6rem 0; background: #080c1d; }
.timeline { max-width: 800px; margin: 4rem auto 0; position: relative; border-left: 1px solid var(--border-subtle); padding-left: 3rem; }
.timeline-item { margin-bottom: 4rem; position: relative; }
.number { 
    position: absolute; left: -4.5rem; top: 0; width: 3rem; height: 3rem; background: var(--col-deep); 
    border: 1px solid var(--border-subtle); color: var(--text-grey); display: flex; align-items: center; justify-content: center; border-radius: 50%; font-family: var(--font-head);
}
.highlight .number { border-color: var(--gold-main); color: var(--gold-main); }
.timeline-item h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.timeline-item p { color: var(--text-grey); }


/* --- COST OF VACANCY SECTION --- */
.cost-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #080c1d, var(--col-deep));
    position: relative;
    overflow: hidden; 
}

.cost-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem; 
    align-items: center;
    margin-top: 4rem; 
}

.cost-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cost-item:last-child {
    margin-bottom: 0;
}

.cost-icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-main);
    font-size: 1.5rem;
}

.cost-content h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.8rem;
    font-family: var(--font-head);
}

.cost-content p {
    color: var(--text-grey);
    line-height: 1.7;
    font-size: 1rem;
}

.loss-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 12px; 
    padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4); 
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    transition: transform 0.3s ease;
}

.loss-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.1);
}

.loss-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(173, 156, 101, 0.15), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.loss-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.loss-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-subtle);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-grey);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    color: #d1d5db;
    font-size: 1.05rem;
}

.calc-val {
    font-family: var(--font-head);
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
}

.divider-dashed {
    border-top: 1px dashed rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.loss-result {
    text-align: center;
}

.result-label {
    display: block;
    color: var(--text-grey);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-number {
    display: block;
    font-size: 3.5rem; 
    font-weight: 800;
    font-family: var(--font-head);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.result-sub {
    display: block;
    font-size: 0.9rem;
    color: #888;
}


/* --- PRICING SECTION --- */
.pricing-section { padding: 8rem 0; }
.pricing-header { text-align: center; margin-bottom: 5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.pricing-wrapper.three-cards { 
    display: grid; 
    grid-template-columns: 1fr 1.15fr 1fr; 
    gap: 2rem; 
    align-items: stretch; 
}

.pricing-card { 
    background: var(--col-patricks); 
    border: 1px solid var(--border-subtle); 
    padding: 3rem 2rem; 
    border-radius: 4px; 
    position: relative; 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    transition: all 0.3s ease; 
    z-index: 1;
}

.pricing-card:hover { 
    border-color: var(--gold-main); 
    transform: scale(1.03); 
    z-index: 10; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.premium-card {
    background: linear-gradient(160deg, #242e75 0%, #0a0e29 100%); 
    border: 1px solid var(--gold-main); 
    padding: 3rem 2rem; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.5); 
    z-index: 2;
}

.shimmer {
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-main), transparent); opacity: 0.5;
}
.rec-badge { 
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gold-dark); color: white; font-size: 0.7rem; text-transform: uppercase; padding: 4px 12px; border-radius: 2px; letter-spacing: 1px; font-weight: bold; width: max-content;
}

.card-top { text-align: center; }
.card-top h3 { color: var(--text-grey); font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.model-sub { font-size: 0.85rem; color: var(--text-grey); margin-bottom: 0.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; line-height: 1.3; }

.investment { font-size: 1.8rem; font-weight: 700; font-family: var(--font-head); margin-bottom: 0.5rem; line-height: 1; }
.currency { font-size: 1rem; vertical-align: top; margin-right: 5px; opacity: 0.6; }
.invest-desc { font-size: 0.9rem; color: var(--text-grey); margin-bottom: 2rem; }
.divider { height: 1px; background: rgba(255,255,255,0.05); margin-bottom: 2rem; width: 100%; }

/* PREMIUM CHF FIX */
.investment.text-gold .currency {
    -webkit-text-fill-color: initial; 
    background: none;
    color: var(--gold-main); 
    opacity: 0.9;
}

/* LIST ITEM OPTIMIERUNG */
.benefit-list { 
    list-style: none; 
    margin-bottom: auto; 
    padding-bottom: 2rem; 
}

.benefit-list li { 
    margin-bottom: 1rem; 
    color: #d1d5db; 
    display: flex; 
    align-items: flex-start; 
    gap: 12px; 
    font-size: 0.95rem; 
    text-align: left;
    line-height: 1.4;
}

.benefit-list li span {
    flex: 1;
    display: block;
}

.benefit-list li i { 
    color: var(--gold-main); 
    margin-top: 3px; 
    flex-shrink: 0;
}

/* SUCCESS BOX FIX */
.success-fee { 
    background: rgba(0,0,0,0.3); 
    padding: 1.2rem; 
    border-radius: 4px; 
    text-align: center; 
    margin-bottom: 2rem; 
    border: 1px solid rgba(255,255,255,0.05);
    min-height: 110px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gold-fee { background: rgba(212, 175, 55, 0.05); border: 1px solid rgba(212, 175, 55, 0.3); }
.fee-label { display: block; font-size: 0.75rem; text-transform: uppercase; color: var(--text-grey); margin-bottom: 0.3rem; letter-spacing: 1px; }

.fee-value { display: block; font-size: 1.2rem; font-weight: 700; font-family: var(--font-head); color: white; }
.fee-value small { 
    font-size: 0.8rem; font-weight: 400; color: rgba(255, 255, 255, 0.7); 
    margin-left: 5px; font-family: var(--font-body); -webkit-text-fill-color: initial; background: none;
}

.budget-info {
    margin-top: 4rem; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-subtle);
    border-radius: 8px; padding: 1.5rem; display: flex; gap: 1.5rem; align-items: center;
    max-width: 800px; margin-left: auto; margin-right: auto; text-align: left;
}
.budget-icon { font-size: 2rem; color: var(--gold-main); flex-shrink: 0; }
.budget-text { font-size: 0.95rem; color: var(--text-grey); line-height: 1.6; }
.budget-text strong { color: white; }

/* --- FOOTER --- */
footer { padding: 6rem 0 2rem; background: linear-gradient(to top, #000, var(--col-deep)); text-align: center; }
.cta-container { margin-bottom: 4rem; }
.cta-container h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.big-btn { padding: 1.2rem 3rem; font-size: 1.1rem; margin-top: 2rem; }

.footer-bottom { 
    border-top: 1px solid var(--border-subtle); 
    padding: 3rem 2rem; 
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1.5rem; max-width: 1200px; margin: 0 auto; color: #888; font-size: 0.8rem; 
}
.footer-logo { height: 80px; width: auto; display: block; opacity: 0.9; margin-bottom: 0.5rem; }

/* --- RESPONSIVE OPTIMIERUNGEN --- */
@media (max-width: 1024px) {
    .pricing-wrapper.three-cards { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
    .pricing-card:hover { transform: none; z-index: 1; box-shadow: none; border-color: var(--border-subtle); }
    .premium-card { margin: 2rem 0; border-color: var(--gold-main); } 
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 900px) {
    .cost-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center; 
    }
    .cost-item {
        flex-direction: column; 
        align-items: center;
        gap: 1rem;
    }
    .cost-text { text-align: center; }
    .loss-card { width: 100%; }
    
    .contact-split { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.8rem; }
    
    .nav-logo { height: 70px !important; }
    .hero { padding-top: 150px; } 
    
    .budget-info { flex-direction: column; text-align: center; gap: 1rem; }
    
    .pricing-card, .premium-card { padding: 2rem 1.5rem; } 
    .pricing-wrapper.three-cards { gap: 1.5rem; }
    .investment { font-size: 2rem; }
    .benefit-list li { font-size: 0.9rem; gap: 10px; }
}

/* --- KONTAKT & ABOUT PAGES --- */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; padding-top: 4rem; }
.contact-form { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-subtle); padding: 3rem; border-radius: 4px; backdrop-filter: blur(10px); }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; color: var(--text-grey); font-size: 0.85rem; margin-bottom: 0.5rem; letter-spacing: 1px; text-transform: uppercase; }
.form-input, .form-textarea { width: 100%; background: rgba(0, 0, 0, 0.3); border: 1px solid var(--border-subtle); color: white; padding: 1rem; font-family: var(--font-body); font-size: 1rem; border-radius: 2px; transition: 0.3s; }
.form-input:focus, .form-textarea:focus { border-color: var(--gold-main); outline: none; background: rgba(0, 0, 0, 0.5); }
.form-textarea { resize: vertical; min-height: 120px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 4rem; }
.team-card { background: linear-gradient(160deg, var(--col-patricks-light) 0%, #0a0e29 100%); border: 1px solid var(--border-subtle); padding: 3rem 2rem; text-align: center; border-radius: 4px; transition: transform 0.3s; }
.team-card:hover { transform: translateY(-5px); border-color: var(--gold-main); }
.team-icon { font-size: 3rem; color: var(--gold-main); margin-bottom: 1.5rem; background: rgba(255,255,255,0.05); width: 80px; height: 80px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); }
.role-title { font-family: var(--font-head); font-size: 1.2rem; color: white; margin-bottom: 0.5rem; }
.role-desc { font-size: 0.9rem; color: var(--text-grey); }