:root {
    --primary: #1d3557;
    --accent: #7209b7;
    --text: #2b2d42;
    --bg: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    --border: rgba(29, 53, 87, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.6; background: var(--bg); overflow-x: hidden; }

/* Navigation */
.glass-nav {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 1200px; padding: 15px 30px;
    background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(20px);
    border-radius: 100px; display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.logo { font-weight: 800; font-size: 1.4rem; color: var(--primary); }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

/* Hero */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; text-align: center; padding: 0 20px; }
.hero-content { position: relative; z-index: 10; max-width: 900px; }
.hero-badge { background: rgba(114, 9, 183, 0.1); color: var(--accent); padding: 6px 15px; border-radius: 20px; font-weight: 600; font-size: 0.8rem; }
h1 { font-size: 4rem; font-weight: 800; margin-top: 20px; line-height: 1.1; color: var(--primary); }
h1 span { color: var(--accent); }
.hero p { font-size: 1.3rem; margin: 25px auto; max-width: 650px; color: #555; }

/* Background Blurs */
.hero-blur-1 { position: absolute; top: 10%; right: 10%; width: 400px; height: 400px; background: rgba(114, 9, 183, 0.1); filter: blur(100px); border-radius: 50%; }
.hero-blur-2 { position: absolute; bottom: 10%; left: 10%; width: 400px; height: 400px; background: rgba(29, 53, 87, 0.08); filter: blur(100px); border-radius: 50%; }

/* Cards & Grid */
.container { max-width: 1200px; margin: 100px auto; padding: 0 20px; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; color: var(--primary); }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
.price-card { 
    background: var(--bg); padding: 40px; border-radius: 30px; border: 1px solid var(--border);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-10px); border-color: var(--accent); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.price-card.featured { border: 2.5px solid var(--accent); background: linear-gradient(145deg, #ffffff, #fcfaff); }

.tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; padding: 4px 12px; border-radius: 10px; background: #eee; }
.tag.purple { background: var(--accent); color: white; }
.tag.blue { background: var(--primary); color: white; }

.feat-list { list-style: none; margin: 30px 0; flex-grow: 1; }
.feat-list li { margin-bottom: 12px; font-size: 0.9rem; position: relative; padding-left: 25px; }
.feat-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* Buttons */
.btn-primary { background: var(--primary); color: white; padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; }
.btn-purple { background: var(--accent); color: white; padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; text-align: center; }
.btn-outline { border: 1px solid var(--primary); color: var(--primary); padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; text-align: center; }

/* Formula Section */
.formula-grid { display: flex; justify-content: space-between; align-items: center; margin: 40px 0; }
.formula-item { text-align: center; }
.formula-item strong { display: block; font-size: 2rem; color: var(--primary); }
.formula-item span { font-size: 0.8rem; opacity: 0.7; }
.plus { font-size: 1.5rem; font-weight: 300; opacity: 0.4; }

/* Table */
.table-container { padding: 40px; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; margin-top: 20px; }
th { text-align: left; padding: 15px; border-bottom: 2px solid var(--border); color: var(--accent); }
td { padding: 15px; border-bottom: 1px solid var(--border); }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .nav-links, .nav-right .btn-cta { display: none; }
    .formula-grid { flex-direction: column; gap: 20px; }
}

/* Explorer Sektion Styling */
.explorer-wrapper {
    margin-top: 40px;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    border: 1px solid var(--border);
}

.explorer-nav {
    display: flex;
    background: rgba(29, 53, 87, 0.03);
    border-bottom: 1px solid var(--border);
    padding: 10px;
    gap: 10px;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    border: none;
    background: transparent;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: white;
    color: var(--accent);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.explorer-content {
    padding: 50px;
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.benefit-list {
    margin-top: 25px;
    list-style: none;
}

.benefit-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 1.05rem;
}

/* Kreative Visuals (Platzhalter für Grafiken) */
.ai-sphere, .hybrid-circle, .module-box, .team-grid-visual {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 20px 40px rgba(114, 9, 183, 0.2);
    animation: float 4s ease-in-out infinite;
}

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

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

@media (max-width: 768px) {
    .content-grid { grid-template-columns: 1fr; }
    .explorer-nav { flex-wrap: wrap; }
    .visual-side { display: none; }
}

/* Contact Section Styling */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px !important;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border);
    margin-bottom: 80px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin: 20px 0;
}

.contact-meta {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.meta-item strong {
    color: var(--accent);
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Form Design */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    padding-left: 5px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.8);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(114, 9, 183, 0.1);
    background: white;
}

.btn-submit {
    background: var(--accent);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(114, 9, 183, 0.3);
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 25px !important;
    }
}

/* FAQ Styling */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px !important;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 25px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: color 0.3s ease;
}

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

/* Der Chevron-Pfeil */
.chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .chevron {
    transform: rotate(-135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 15px;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Groß genug für den Text */
    padding-bottom: 25px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
}


.roi-wrapper {
    padding: 60px !important;
    background: var(--glass-bg);
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 40px 0;
}

.input-group {
    margin-bottom: 35px;
}

.label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
}

.label-row span {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Apple Style Slider */
.apple-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: var(--glass-border);
    border-radius: 5px;
    outline: none;
}

.apple-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: white;
    border: 2px solid var(--accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.apple-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}


/* Der Track (die Schiene) */
input[type="range"].apple-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    background: rgba(29, 53, 87, 0.1); 
    border-radius: 20px;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    /* Ermöglicht die farbige Füllung links vom Griff via JS */
    background-image: linear-gradient(var(--accent), var(--accent));
    background-size: 0% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.2s ease;
}


/* Ergebnis Styling */
.roi-results {
    background: rgba(114, 9, 183, 0.03);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.result-box {
    display: flex;
    flex-direction: column;
}

.res-label { font-size: 0.85rem; opacity: 0.7; }
.res-value { font-size: 1.8rem; font-weight: 800; color: var(--primary); }

.result-box.highlighted .res-value {
    color: var(--accent);
}

.savings-badge {
    background: var(--accent);
    color: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 10px;
}

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


.config-wrapper {
    padding: 60px !important;
    text-align: center;
}

.config-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.step label {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.option-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.opt-btn {
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.opt-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(114, 9, 183, 0.3);
}

/* Ergebnis Panel */
.config-result {
    margin-top: 50px;
    padding: 40px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(114, 9, 183, 0.05), rgba(29, 53, 87, 0.05));
    border: 2px solid var(--accent);
    animation: pulseBorder 2s infinite;
}

.recommend-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--accent);
}

#res-title {
    font-size: 2.2rem;
    margin: 10px 0;
    color: var(--primary);
}

@keyframes pulseBorder {
    0% { border-color: var(--accent); }
    50% { border-color: var(--primary); }
    100% { border-color: var(--accent); }
}

.mixer-wrapper {
    padding: 60px !important;
    background: var(--glass-bg);
}

.mixer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.mixer-group {
    margin-bottom: 30px;
}

.mixer-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Der Anzeige-Bereich */
.mixer-display {
    position: relative;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: var(--primary); /* Basis-Farbe */
    transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    transition: transform 0.5s ease;
}

.match-percentage {
    margin-top: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

/* State-Farben */
.bg-flex { background: linear-gradient(135deg, #1d3557, #457b9d) !important; }
.bg-hybrid { background: linear-gradient(135deg, #7209b7, #3f37c9) !important; }
.bg-pay { background: linear-gradient(135deg, #4895ef, #4cc9f0) !important; }
.bg-team { background: linear-gradient(135deg, #03045e, #7209b7) !important; }


.insights-wrapper {
    padding: 60px !important;
    border: 1px solid var(--accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
    text-align: center;
}

.stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.stat-circle svg {
    transform: rotate(-90deg);
}

.stat-circle circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.stat-circle .bg { stroke: var(--glass-border); }
.stat-circle .prog {
    stroke: var(--accent);
    stroke-dasharray: 339; /* 2 * PI * r */
    stroke-dashoffset: 339;
    transition: stroke-dashoffset 2s ease-out;
}

.stat-num {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

/* Comparison Bars */
.comparison-bars {
    max-width: 800px;
    margin: 0 auto;
}

.bar-row {
    margin-bottom: 20px;
}

.bar-row span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.bar-bg {
    width: 100%;
    height: 12px;
    background: var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
}

.bar-row.highlight .bar-fill {
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.study-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
}

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


/* --- Consulting Formula Section --- */

/* --- Consulting Formula Section --- */.liquid-formula-container {

padding: 80px 40px !important;

text-align: center;

border-radius: 40px !important;

background: radial-gradient(circle at top left, rgba(114, 9, 183, 0.05), transparent),

var(--glass-bg) !important;

border: 1px solid var(--glass-border) !important;

box-shadow: 0 40px 100px rgba(0,0,0,0.08) !important;

}.formula-header h2 {

font-size: 2.8rem;

margin-bottom: 50px;

color: var(--primary);

}.formula-visual {

display: flex;

justify-content: center;

align-items: center;

gap: 20px;

flex-wrap: wrap;

margin: 40px 0;

}/* Die einzelnen Knoten (Nodes) */.formula-node {

background: var(--glass-bg);

backdrop-filter: blur(15px);

border: 1px solid var(--glass-border);

padding: 25px;

border-radius: 24px;

width: 180px;

transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

display: flex;

flex-direction: column;

align-items: center;

position: relative;

z-index: 2;

}.formula-node:hover {

transform: translateY(-15px) scale(1.05);

border-color: var(--accent);

box-shadow: 0 20px 40px rgba(114, 9, 183, 0.15);

}.node-icon {

font-size: 3rem;

margin-bottom: 15px;

}.node-label strong {

display: block;

font-size: 1.4rem;

color: var(--primary);

letter-spacing: 1px;

}.node-label span {

font-size: 0.8rem;

text-transform: uppercase;

opacity: 0.6;

font-weight: 700;

}/* Operatoren (+ und =) */.operator {

font-size: 2.5rem;

font-weight: 300;

color: var(--accent);

opacity: 0.5;

padding: 0 10px;

}/* Liquid Glow Effekte hinter den Nodes */.blur-blue::before {

content: ''; position: absolute; width: 100%; height: 100%;

background: rgba(29, 53, 87, 0.2); filter: blur(40px); z-index: -1; top: 0; left: 0;

}.blur-purple::before {

content: ''; position: absolute; width: 100%; height: 100%;

background: rgba(114, 9, 183, 0.2); filter: blur(40px); z-index: -1; top: 0; left: 0;

}.result-node {

background: linear-gradient(135deg, var(--primary), var(--accent));

border: none;

}.result-node .node-label strong,.result-node .node-label span {

color: white;

}/* Das Zitat */.formula-quote {

margin-top: 60px;

}.formula-quote blockquote {

font-size: 1.5rem;

font-style: italic;

color: var(--text);

max-width: 700px;

margin: 0 auto;

position: relative;

font-weight: 300;

}.formula-quote blockquote::before {

content: '“';

font-size: 5rem;

position: absolute;

left: -40px;

top: -30px;

opacity: 0.1;

color: var(--accent);

}@media (max-width: 900px) {

.formula-visual { flex-direction: column; }

.operator { transform: rotate(90deg); padding: 20px 0; }

}





.mixer-container {
    padding: 80px 50px !important;
    border-radius: 50px !important;
}

.mixer-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
}

/* Slider Design */
.control-node { margin-bottom: 40px; }
.node-info { 
    display: flex; justify-content: space-between; 
    margin-bottom: 12px; font-weight: 700; color: var(--primary);
}

.slider-wrapper { position: relative; height: 12px; display: flex; align-items: center; }

input[type="range"].apple-slider {
    -webkit-appearance: none;
    width: 100%; height: 100%;
    background: rgba(29, 53, 87, 0.1);
    border-radius: 20px;
    outline: none;
    z-index: 2;
}

/* Der Griff (Thumb) - Extrem sichtbar */
input[type="range"].apple-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 32px; height: 32px;
    background: #ffffff;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    cursor: grab;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

input[type="range"].apple-slider:active::-webkit-slider-thumb { transform: scale(1.2); cursor: grabbing; }

/* Die dynamischen Füllbalken */
.slider-fill {
    position: absolute; top: 0; left: 0;
    height: 100%; border-radius: 20px;
    z-index: 1; pointer-events: none;
    transition: width 0.1s ease;
}
.ai-fill { background: var(--primary); }
.human-fill { background: var(--accent); }
.tools-fill { background: #4cc9f0; }

/* Result Card */
.result-display {
    position: relative;
    padding: 50px;
    border-radius: 40px;
    background: var(--primary);
    color: white;
    text-align: center;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.liquid-glow {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(114, 9, 183, 0.4) 0%, transparent 60%);
    animation: rotate-glow 10s linear infinite;
}

@keyframes rotate-glow { 100% { transform: rotate(360deg); } }

.package-content { position: relative; z-index: 2; }
.pkg-icon { font-size: 5rem; margin-bottom: 20px; }
.match-score { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin: 20px 0; background: rgba(255,255,255,0.2); border-radius: 20px; padding: 5px; }

@media (max-width: 900px) {
    .mixer-layout { grid-template-columns: 1fr; }
}

     footer {
            text-align: center; padding: 40px; border-top: 1px solid rgba(0,0,0,0.05);
            color: var(--text-muted); font-size: 0.9rem;
        }


.gradient-shine {
    background: linear-gradient(90deg, #1d1d1f, #0071e3, #1d1d1f);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine { to { background-position: 200% center; } }