/* KI-WORKSHOPS PAGE STYLES */
:root {
    --ws-accent: #0891b2;
    --ws-accent-dark: #0f172a;
    --ws-gradient: linear-gradient(135deg, #0891b2 0%, #0f172a 100%);
    --ws-teal-glow: rgba(8, 145, 178, 0.15);
}

/* Hero */
.ws-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    overflow: hidden;
    color: #0f172a;
}
.ws-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.55) 0%,
        rgba(255,255,255,0.65) 50%,
        rgba(248,250,252,1) 100%
    );
    z-index: 1;
}
.ws-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(8,145,178,0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: orbFloat 15s ease-in-out infinite;
}
.ws-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(34,211,238,0.06) 0%, transparent 60%);
    pointer-events: none;
    animation: orbFloat 20s ease-in-out infinite reverse;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}
.ws-hero .container { position: relative; z-index: 2; padding-top: 80px; }
.ws-hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.2rem; border: 1px solid rgba(8,145,178,0.4);
    background: rgba(8,145,178,0.08); border-radius: 99px;
    color: var(--ws-accent); font-size: 0.8rem; font-weight: 600;
    backdrop-filter: blur(5px); margin-bottom: 2rem;
    letter-spacing: 0.05em; text-transform: uppercase;
}
.ws-hero-badge .pulse-dot {
    width: 8px; height: 8px; background: var(--ws-accent);
    border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.ws-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800;
    line-height: 1.08; margin-bottom: 1.5rem; letter-spacing: -0.03em;
    max-width: 800px; color: #0f172a;
}
.ws-hero h1 span { color: var(--ws-accent); }
.ws-hero .lead {
    font-size: 1.2rem; color: #475569;
    line-height: 1.7; max-width: 650px; margin-bottom: 2.5rem; font-weight: 400;
}
.ws-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.ws-btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 2rem; background: var(--ws-accent); color: #fff;
    border: none; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
    text-decoration: none; cursor: pointer; transition: all 0.3s;
    letter-spacing: 0.03em;
}
.ws-btn-primary:hover {
    transform: translateY(-3px); background: #06b6d4;
    box-shadow: 0 15px 35px rgba(8,145,178,0.4);
}
.ws-btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 2rem; background: transparent;
    border: 1px solid #cbd5e1; color: #0f172a;
    border-radius: 50px; font-size: 0.9rem; font-weight: 600;
    text-decoration: none; cursor: pointer; transition: all 0.3s;
}
.ws-btn-outline:hover {
    background: rgba(15,23,42,0.05);
    border-color: #94a3b8;
    transform: translateY(-3px);
}

/* Section Base */
.ws-section { padding: 100px 0; }
.ws-section-light { background: #f8fafc; }
.ws-section-white { background: #fff; }
.ws-section-dark { background: linear-gradient(135deg, #0a0f1c, #0f172a); color: #fff; }
.ws-eyebrow {
    text-transform: uppercase; letter-spacing: 0.15em;
    font-size: 0.75rem; font-weight: 700; color: var(--ws-accent);
    display: block; margin-bottom: 1rem;
}
.ws-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
    color: #0f172a; margin-bottom: 1rem; letter-spacing: -0.02em; line-height: 1.1;
}
.ws-section-dark .ws-headline { color: #fff; }
.ws-subline {
    font-size: 1.1rem; color: #64748b; line-height: 1.7;
    max-width: 700px; margin-bottom: 3rem;
}
.ws-section-dark .ws-subline { color: rgba(255,255,255,0.6); }

/* Package Card */
.ws-package-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 24px;
    overflow: hidden; position: relative;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
.ws-package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px -12px rgba(0,0,0,0.12);
}
.ws-package-header {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2.5rem; color: #fff; position: relative; overflow: hidden;
}
.ws-package-header::before {
    content: ''; position: absolute; top: -50%; right: -30%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(8,145,178,0.2), transparent 70%);
    border-radius: 50%;
}
.ws-package-header h3 {
    font-size: 1.8rem; font-weight: 700; margin-bottom: 0.5rem; color: #fff;
}
.ws-package-header p { color: rgba(255,255,255,0.6); font-size: 1rem; }
.ws-package-body { padding: 2.5rem; }
.ws-package-price {
    display: flex; align-items: baseline; gap: 0.5rem;
    margin-bottom: 2rem; padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.ws-package-price .price-amount {
    font-size: 2.5rem; font-weight: 800; color: #0f172a;
    font-family: var(--font-display);
}
.ws-package-price .price-details {
    font-size: 0.85rem; color: #64748b; line-height: 1.4;
}

/* Workshop Day Cards */
.ws-day-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.ws-day-card {
    background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px;
    padding: 2rem; position: relative; overflow: hidden;
    transition: all 0.3s ease;
}
.ws-day-card:hover {
    border-color: var(--ws-accent);
    box-shadow: 0 8px 24px rgba(8,145,178,0.08);
}
.ws-day-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.3rem 0.8rem; background: var(--ws-accent);
    color: #fff; border-radius: 99px; font-size: 0.7rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.ws-day-card h4 {
    font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; color: #0f172a;
}
.ws-day-card .ws-time {
    font-size: 0.8rem; color: var(--ws-accent); font-weight: 600;
    margin-bottom: 0.75rem; display: block;
}
.ws-day-list {
    list-style: none; padding: 0; margin: 0;
}
.ws-day-list li {
    padding: 0.5rem 0; font-size: 0.9rem; color: #475569;
    display: flex; gap: 0.6rem; align-items: flex-start; line-height: 1.5;
}
.ws-day-list li::before {
    content: '→'; color: var(--ws-accent); font-weight: 700;
    flex-shrink: 0; margin-top: 1px;
}

/* Goals Grid */
.ws-goals-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.ws-goal-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 2rem; text-align: center;
    transition: all 0.3s ease; backdrop-filter: blur(8px);
}
.ws-goal-card:hover {
    border-color: rgba(8,145,178,0.4);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    background: rgba(8,145,178,0.05);
}
.ws-goal-icon {
    font-size: 2rem; margin-bottom: 1rem;
    transition: transform 0.3s cubic-bezier(0.68,-0.55,0.265,1.55);
}
.ws-goal-card:hover .ws-goal-icon { transform: scale(1.2) rotate(-5deg); }
.ws-goal-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.ws-goal-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* Branchen Grid */
.ws-branchen-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.ws-branche-chip {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 1rem 1.25rem; background: #fff; border: 1px solid #e2e8f0;
    border-radius: 12px; transition: all 0.25s ease; cursor: default;
    min-width: 0; overflow: hidden;
}
.ws-branche-chip:hover {
    border-color: var(--ws-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.ws-branche-chip .chip-icon {
    width: 40px; height: 40px; min-width: 40px;
    display: flex; align-items: center; justify-content: center;
    background: #f1f5f9; border-radius: 10px; font-size: 1.2rem;
    transition: all 0.3s ease;
}
.ws-branche-chip:hover .chip-icon {
    background: rgba(8,145,178,0.1); transform: scale(1.1);
}
.ws-branche-chip span {
    font-size: 0.9rem; font-weight: 600; color: #334155;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Process Timeline */
.ws-timeline { position: relative; max-width: 700px; margin: 0 auto; }
.ws-timeline::before {
    content: ''; position: absolute; left: 24px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, var(--ws-accent), #e2e8f0);
}
.ws-timeline-item {
    position: relative; padding-left: 70px; padding-bottom: 2.5rem;
}
.ws-timeline-item:last-child { padding-bottom: 0; }
.ws-timeline-dot {
    position: absolute; left: 12px; top: 4px;
    width: 26px; height: 26px; border-radius: 50%;
    background: #fff; border: 3px solid var(--ws-accent);
    z-index: 1; transition: all 0.3s ease;
}
.ws-timeline-item:hover .ws-timeline-dot {
    background: var(--ws-accent); transform: scale(1.2);
    box-shadow: 0 0 15px rgba(8,145,178,0.4);
}
.ws-timeline-item h4 { font-size: 1.1rem; font-weight: 700; color: #0f172a; margin-bottom: 0.4rem; }
.ws-timeline-item p { font-size: 0.9rem; color: #64748b; line-height: 1.6; }

/* Testimonial / Quote */
.ws-quote-block {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 20px; padding: 3.5rem; text-align: center;
    position: relative; overflow: hidden;
}
.ws-quote-block::before {
    content: '"'; position: absolute; top: -10px; left: 30px;
    font-size: 8rem; color: rgba(255,255,255,0.03);
    font-family: var(--font-display); line-height: 1;
}
.ws-quote-block blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic; color: #fff; line-height: 1.5;
    max-width: 700px; margin: 0 auto 1rem;
}
.ws-quote-block cite {
    font-size: 0.85rem; color: rgba(255,255,255,0.4); font-style: normal;
}

/* FAQ */
.ws-faq-item {
    background: #fff; border-radius: 12px; margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); overflow: hidden;
    border: 1px solid #e2e8f0; transition: all 0.3s ease;
}
.ws-faq-item:hover {
    box-shadow: 0 8px 25px -5px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.ws-faq-trigger {
    width: 100%; text-align: left; padding: 20px 25px;
    background: none; border: none; font-size: 1.05rem;
    font-weight: 600; color: #0f172a; display: flex;
    justify-content: space-between; align-items: center;
    cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.ws-faq-trigger:hover { color: var(--ws-accent); }
.ws-faq-icon {
    font-size: 1.5rem; color: #94a3b8;
    transition: all 0.4s cubic-bezier(0.68,-0.55,0.265,1.55);
    width: 32px; height: 32px; display: inline-flex;
    align-items: center; justify-content: center; border-radius: 50%;
}
.ws-faq-item.active .ws-faq-icon {
    transform: rotate(135deg) scale(1.1);
    color: var(--ws-accent); background: rgba(8,145,178,0.1);
}
.ws-faq-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.ws-faq-inner {
    padding: 0 25px 25px; color: #475569; line-height: 1.7;
    opacity: 0; transform: translateY(-10px);
    transition: all 0.3s ease 0.1s;
}
.ws-faq-item.active .ws-faq-inner { opacity: 1; transform: translateY(0); }
.ws-faq-item.active .ws-faq-content { max-height: 500px; }

/* CTA Section */
.ws-cta-section {
    background: #fff; text-align: center; padding: 100px 0;
}
.ws-cta-section h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
    font-style: italic; color: #0f172a; margin-bottom: 1.5rem; font-weight: 700;
}
.ws-cta-section p {
    color: #64748b; max-width: 550px; margin: 0 auto 2.5rem; line-height: 1.7;
}

/* Bento Gallery */
.ws-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}
.ws-bento-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: default;
}
.ws-bento-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.ws-bento-item:hover img {
    transform: scale(1.05);
}
.ws-bento-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2.5rem 1.25rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    color: #fff; font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.01em;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.35s ease;
}
.ws-bento-item:hover .ws-bento-caption {
    opacity: 1;
    transform: translateY(0);
}
.ws-bento-large {
    grid-column: span 2;
    grid-row: span 2;
}
.ws-bento-wide {
    grid-column: span 2;
}

/* Responsive */
@media (max-width: 1024px) {
    .ws-goals-grid { grid-template-columns: repeat(2, 1fr); }
    .ws-branchen-grid { grid-template-columns: repeat(3, 1fr); }
    .ws-bento-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 768px) {
    .ws-hero { min-height: auto; padding: 8rem 0 4rem; }
    .ws-section { padding: 60px 0; }
    .ws-day-grid { grid-template-columns: 1fr; }
    .ws-goals-grid { grid-template-columns: 1fr; }
    .ws-branchen-grid { grid-template-columns: repeat(2, 1fr); }
    .ws-package-price .price-amount { font-size: 2rem; }
    .ws-quote-block { padding: 2rem 1.5rem; }
    .ws-bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .ws-bento-large { grid-column: span 2; grid-row: span 1; }
    .ws-bento-caption { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
    .ws-branchen-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .ws-hero-cta { flex-direction: column; }
    .ws-hero-cta a, .ws-hero-cta button { width: 100%; justify-content: center; }
    .ws-bento-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .ws-bento-large, .ws-bento-wide { grid-column: span 1; }
}
