/* VORTRAG PAGE - GLOBAL STYLES */
:root {
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-serif: "Didot", "Bodoni MT", "Times New Roman", Georgia, serif;
    --hero-bg: #ffffff;
    --hero-text: #0f172a;
    --accent-color: #0891b2;
    --accent-gradient: linear-gradient(135deg, #0891b2 0%, #0f172a 100%);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(8, 145, 178, 0.4), 0 0 20px rgba(8, 145, 178, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.97);
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: transparent;
    border: 2px solid;
    transition: all 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0f172a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: -1;
}

.btn-outline:hover::before {
    transform: scaleX(1);
}

.btn-outline:hover {
    color: white !important;
    border-color: #0f172a;
    transform: translateY(-4px) scale(1.03);
}

/* Typography */
.font-serif {
    font-family: var(--font-serif);
}

.text-gradient-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.eyebrow-accent {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1rem;
}

/* Hero */
.vortrag-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: var(--hero-bg);
    overflow: hidden;
    color: var(--hero-text);
    perspective: 1000px;
}

.vortrag-hero .container {
    position: relative;
    z-index: 10;
    padding-top: 60px;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.2) 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(8, 145, 178, 0.3);
    background: rgba(8, 145, 178, 0.1);
    border-radius: 99px;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #475569;
    max-width: 650px;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Sections */
.section-dark {
    background: #475569;
    color: white;
    padding: 100px 0;
}

.section-gray {
    background: #f8fafc;
    padding: 100px 0;
}

section {
    padding: 100px 0;
}

/* Realtalk Cards */
.realtalk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.rt-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.rt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.rt-card:hover::before {
    width: 100%;
}

.rt-card:hover {
    transform: translateY(-12px) scale(1.03) rotateX(5deg) rotateY(-2deg);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(8, 145, 178, 0.1);
}

.rt-num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1;
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.rt-text {
    font-size: 1.1rem;
    color: #334155;
    font-weight: 500;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.03) rotateX(3deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(8, 145, 178, 0.2);
    border-color: rgba(8, 145, 178, 0.3);
}

.bento-card:hover .bento-icon {
    transform: scale(1.3) rotate(-12deg) translateY(-5px);
}

.bento-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

/* Context Tabs */
.context-tabs-wrapper {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 40px;
    display: flex;
    gap: 2rem;
    overflow-x: auto;
}

.ctx-tab {
    background: none;
    border: none;
    padding: 1rem 0;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    white-space: nowrap;
    position: relative;
}

.ctx-tab:hover {
    color: #0f172a;
    transform: translateY(-2px);
}

.ctx-tab.active {
    color: #0f172a;
    border-bottom-color: var(--accent-color);
}

.ctx-content {
    display: block;
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: blur(4px);
}

.ctx-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    position: relative;
    filter: blur(0);
}

.ctx-content-wrapper {
    position: relative;
    min-height: 300px;
}

.ctx-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Quote Box */
.quote-box {
    background: #0f172a;
    color: white;
    padding: 40px;
    border-radius: 16px;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    position: relative;
}

.quote-box::before {
    content: "";
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 0;
    left: 20px;
    line-height: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fade-in {
    animation: fadeIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Text Reveal Animation */
@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.text-reveal {
    animation: textReveal 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Slide In Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.slide-in-up {
    animation: slideInUp 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #0891b2, #0f172a, #0891b2);
    background-size: 200% 100%;
    z-index: 9999;
    width: 0%;
    animation: progressShimmer 2s linear infinite;
}

@keyframes progressShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* FAQ */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    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 cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq-item:hover {
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-trigger {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.2s;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: #94a3b8;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.faq-item.active .faq-icon {
    transform: rotate(135deg) scale(1.1);
    color: var(--accent-color);
    background: rgba(8, 145, 178, 0.1);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq-inner {
    padding: 0 25px 25px;
    color: #475569;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease 0.1s;
}

.faq-item.active .faq-inner {
    opacity: 1;
    transform: translateY(0);
}

.faq-item.active .faq-content {
    max-height: 1000px;
}

/* Termine Section */
.termine-wrapper {
    position: relative;
}

.termine-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.termine-grid::-webkit-scrollbar {
    display: none;
}

.termine-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    color: #0f172a;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.termine-arrow:hover {
    background: #0f172a;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.termine-arrow--left {
    left: -22px;
}

.termine-arrow--right {
    right: -22px;
}

.termine-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

.termin-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 22px;
    position: relative;
    overflow: hidden;
    flex: 0 0 calc((100% - 60px) / 3.3);
    min-width: 260px;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.termin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.12);
}

.termin-card--past {
    opacity: 0.65;
}

.termin-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #22d3ee);
}

.termin-date {
    background: #0f172a;
    color: white;
    border-radius: 12px;
    padding: 10px 14px;
    text-align: center;
    line-height: 1.2;
    flex-shrink: 0;
}

.termin-day {
    font-size: 1.5rem;
    font-weight: 800;
}

.termin-month {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.termin-type {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #64748b;
    font-weight: 600;
    hyphens: auto;
    -webkit-hyphens: auto;
    overflow-wrap: break-word;
}

.termin-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    hyphens: auto;
    -webkit-hyphens: auto;
    overflow-wrap: break-word;
    word-break: break-word;
}

.termin-speaker {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 4px;
}

.termin-location {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 16px;
}

.termin-link {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.termin-link:hover {
    text-decoration: underline;
}

/* Format Section Grid */
.format-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 50px auto 0;
}

/* Format Section */
.format-section {
    background: linear-gradient(135deg, #0a0f1c 0%, #0f172a 50%, #1a1f3a 100%);
    position: relative;
    overflow: hidden;
}

.format-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
}

.format-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(8, 145, 178, 0.3), 0 0 30px rgba(8, 145, 178, 0.2);
    border-color: rgba(8, 145, 178, 0.4);
}

.format-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.2), rgba(8, 145, 178, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 24px;
    border: 1px solid rgba(8, 145, 178, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.format-card:hover .format-card-icon {
    transform: scale(1.15) rotate(8deg);
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.4), rgba(8, 145, 178, 0.1));
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.3);
}

.format-card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #22d3ee;
    padding: 6px 12px;
    background: rgba(8, 145, 178, 0.15);
    border-radius: 99px;
}

.format-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.format-card-content {
    color: #ffffff;
    line-height: 2;
    font-size: 1.1rem;
}

.format-card-time {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
}

.format-card-desc {
    color: #ffffff;
    margin-bottom: 16px;
    opacity: 0.9;
}

.format-card-footer {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.format-duration-badge {
    color: #ffffff;
    font-size: 1.1rem;
}

.format-duration-badge span {
    opacity: 0.9;
}

.format-duration-badge strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .realtalk-grid,
    .bento-grid,
    .ctx-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .vortrag-hero {
        min-height: auto;
        padding-bottom: 60px;
    }

    /* Format Section Mobile */
    .format-section {
        padding: 60px 0 !important;
    }

    .format-section h3 {
        font-size: 2.2rem !important;
    }

    .format-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .format-card {
        padding: 32px 24px;
    }

    .format-card-title {
        font-size: 1.4rem;
    }

    .format-card-time {
        font-size: 1.25rem;
    }

    /* Termine Grid Mobile */
    .termin-card {
        flex: 0 0 80%;
        min-width: 240px;
    }

    .termine-arrow {
        display: none;
    }

    /* Section padding mobile */
    section {
        padding: 60px 0;
    }

    .section-gray {
        padding: 60px 0;
    }
}

/* ============================================
   MICRO-INTERACTIONS & ANIMATIONS
   ============================================ */

/* Reveal Animations (Scroll-Triggered) - Enhanced */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.reveal {
    transform: translateY(50px) scale(0.95);
}

.reveal-left {
    transform: translateX(-80px) scale(0.95);
}

.reveal-right {
    transform: translateX(80px) scale(0.95);
}

.reveal-scale {
    transform: scale(0.8);
    filter: blur(10px);
}

.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
    filter: blur(0);
}

/* Stagger Animation Delays - Faster */
.stagger-1 {
    transition-delay: 0.05s;
}

.stagger-2 {
    transition-delay: 0.1s;
}

.stagger-3 {
    transition-delay: 0.15s;
}

.stagger-4 {
    transition-delay: 0.2s;
}

.stagger-5 {
    transition-delay: 0.25s;
}

.stagger-6 {
    transition-delay: 0.3s;
}

/* Magnetic Button Effect - Enhanced */
.magnetic-btn {
    transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.2s;
    will-change: transform;
}

.magnetic-btn:hover {
    box-shadow: 0 0 30px rgba(8, 145, 178, 0.4);
}

/* Bento Card Glare Effect */
.glare-card {
    position: relative;
    overflow: hidden;
}

.glare-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: left 0.7s ease;
    pointer-events: none;
    z-index: 10;
}

.glare-card:hover::before {
    left: 150%;
}

/* Enhanced Card Hover Effects */
.rt-card:hover .rt-num {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

/* FAQ Icon Animation Enhancement */
.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

/* Tab Content Transition Enhancement - Snappier */
.ctx-content {
    display: block;
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: blur(4px);
}

.ctx-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Bento Card Enhanced Hover */
.bento-card {
    position: relative;
    overflow: hidden;
}

.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(8, 145, 178, 0.1) 0%,
            transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.bento-card:hover::after {
    opacity: 1;
}

/* Hero Badge Pulse Animation - Enhanced */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(8, 145, 178, 0.5);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(8, 145, 178, 0);
        transform: scale(1.02);
    }
}

.hero-badge:hover {
    animation: pulse 1.2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Floating Animation Enhancement */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-3px) rotate(1deg);
    }

    75% {
        transform: translateY(-7px) rotate(-1deg);
    }

    50% {
        transform: translateY(-10px) rotate(0deg);
    }
}

.hero-badge {
    animation: float 4s ease-in-out infinite;
}

/* Smooth Image Hover for Speaker Portrait - Enhanced */
img[src*="portrait-speaker"] {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

img[src*="portrait-speaker"]:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

/* Quote Box Enhancement */
.quote-box {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.quote-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Eyebrow Animation */
.eyebrow-accent {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.eyebrow-accent:hover {
    transform: translateX(5px);
    letter-spacing: 0.2em;
}

/* List Item Hover Effects */
li {
    transition: all 0.2s ease;
}

li:hover {
    transform: translateX(5px);
}

li:hover span {
    color: var(--accent-color);
    transform: scale(1.2);
}

/* Context Tab Hover Enhancement - Snappier */
.ctx-tab {
    position: relative;
}

.ctx-tab::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: all 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(-50%);
}

.ctx-tab:hover::after {
    width: 100%;
}

.ctx-tab.active::after {
    width: 100%;
}

/* Enhanced Card Hover Effects */
.rt-card:hover .rt-num {
    color: var(--accent-color);
    transform: scale(1.1);
}