/* ========================================
   INTERACTIVE SLIDES & AI TOOLS STYLES
   ======================================== */

/* ========================================
   PERSISTENT LOGO WATERMARK
   ======================================== */

.logo-watermark {
    position: fixed;
    top: 1rem;
    right: 1.5rem;
    z-index: 100;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.logo-watermark:hover {
    transform: scale(1.05);
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow: 0 4px 30px rgba(168, 85, 247, 0.4);
}

.watermark-logo {
    height: 32px;
    width: auto;
    display: block;
}

/* HP Partner Badge */
.hp-badge {
    position: fixed;
    top: 1rem;
    left: 1.5rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 150, 214, 0.15) 0%, rgba(0, 86, 140, 0.15) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 150, 214, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 150, 214, 0.1);
    transition: all 0.3s ease;
}

.hp-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 150, 214, 0.5);
}

.hp-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.hp-certified {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Presenter Card */
.presenter-card {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(15, 15, 25, 0.9);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    margin-top: 1rem;
}

.presenter-card h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.25rem;
}

.presenter-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.presenter-card .company-name {
    font-size: 0.75rem;
    color: #a855f7;
    font-weight: 500;
}

/* ========================================
   ANIMATED MASCOT/CARICATURE SYSTEM
   ======================================== */

.slide-mascot {
    position: absolute;
    bottom: 6rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: mascotBounce 3s ease-in-out infinite;
    z-index: 50;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slide-mascot:hover {
    transform: scale(1.15);
}

.slide-mascot:hover .mascot-speech {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mascot-emoji {
    font-size: 4rem;
    filter: drop-shadow(0 4px 15px rgba(79, 140, 255, 0.5));
    animation: mascotWiggle 2s ease-in-out infinite;
}

.mascot-speech {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.9);
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a2e;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
}

.mascot-speech::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(255, 255, 255, 0.95);
}

@keyframes mascotBounce {

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

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

@keyframes mascotWiggle {

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

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

/* Different mascot positions */
.mascot-left {
    right: auto;
    left: 2rem;
}

.mascot-top {
    bottom: auto;
    top: 6rem;
}

/* Mascot themes */
.mascot-robot .mascot-emoji {
    filter: drop-shadow(0 4px 15px rgba(79, 140, 255, 0.5));
}

.mascot-brain .mascot-emoji {
    filter: drop-shadow(0 4px 15px rgba(236, 72, 153, 0.5));
}

.mascot-chart .mascot-emoji {
    filter: drop-shadow(0 4px 15px rgba(16, 185, 129, 0.5));
}

.mascot-warning .mascot-emoji {
    filter: drop-shadow(0 4px 15px rgba(249, 115, 22, 0.5));
}

.mascot-success .mascot-emoji {
    filter: drop-shadow(0 4px 15px rgba(16, 185, 129, 0.5));
}

/* Floating decorative icons */
.floating-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.deco-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatDeco 6s ease-in-out infinite;
}

.deco-icon:nth-child(1) {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.deco-icon:nth-child(2) {
    top: 25%;
    right: 8%;
    animation-delay: 1s;
}

.deco-icon:nth-child(3) {
    bottom: 30%;
    left: 8%;
    animation-delay: 2s;
}

.deco-icon:nth-child(4) {
    top: 40%;
    left: 15%;
    animation-delay: 0.5s;
}

.deco-icon:nth-child(5) {
    bottom: 25%;
    right: 12%;
    animation-delay: 1.5s;
}

@keyframes floatDeco {

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

    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.5;
    }
}

/* ========================================
   BHOLARAM vs SAMAJHDARJI CHARACTER SYSTEM
   ======================================== */

.character-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: stretch;
    margin: 1.5rem 0;
}

.character-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.character-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.character-wrong {
    border: 2px solid rgba(239, 68, 68, 0.4);
}

.character-wrong::before {
    background: linear-gradient(90deg, #ef4444, #f97316);
}

.character-wrong:hover {
    border-color: #ef4444;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
}

.character-right {
    border: 2px solid rgba(16, 185, 129, 0.4);
}

.character-right::before {
    background: linear-gradient(90deg, #10b981, #06b6d4);
}

.character-right:hover {
    border-color: #10b981;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.character-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: avatarBounce 3s ease-in-out infinite;
}

.wrong-avatar {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(249, 115, 22, 0.2));
    border: 2px solid rgba(239, 68, 68, 0.5);
}

.right-avatar {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    border: 2px solid rgba(16, 185, 129, 0.5);
}

.avatar-emoji {
    font-size: 2.5rem;
}

.avatar-status {
    position: absolute;
    bottom: -5px;
    right: -5px;
    font-size: 1.25rem;
    animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes avatarBounce {

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

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

@keyframes statusPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.character-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.character-wrong .character-name {
    color: #ef4444;
}

.character-right .character-name {
    color: #10b981;
}

.character-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.character-story {
    text-align: left;
}

.story-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    margin-bottom: 0.4rem;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.story-item:hover {
    transform: translateX(5px);
}

.story-item.wrong {
    background: rgba(239, 68, 68, 0.08);
    border-left: 2px solid #ef4444;
}

.story-item.right {
    background: rgba(16, 185, 129, 0.08);
    border-left: 2px solid #10b981;
}

.step-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.story-item p {
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
    line-height: 1.3;
}

.character-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem;
    border-radius: 10px;
    margin-top: 0.75rem;
    font-size: 0.75rem;
}

.result-bad {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.result-good {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.result-icon {
    font-size: 1.25rem;
}

.character-result p {
    margin: 0;
    color: var(--text-secondary);
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4f8cff, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: white;
    animation: vsPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

@keyframes vsPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 30px rgba(168, 85, 247, 0.6);
    }
}

.character-lesson {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    margin-top: 1rem;
}

.lesson-icon {
    font-size: 1.5rem;
    animation: lessonGlow 2s ease-in-out infinite;
}

@keyframes lessonGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(255, 200, 0, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(255, 200, 0, 0.8));
    }
}

.character-lesson p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Floating Character Mascots for slides */
.character-mascot {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.character-mascot:hover {
    transform: scale(1.15);
}

.character-mascot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mascot-bholaram {
    bottom: 5rem;
    left: 1rem;
    border: 3px solid #ef4444;
    animation: mascotShake 3s ease-in-out infinite;
    width: 50px;
    height: 50px;
    opacity: 0.9;
}

.mascot-samajhdar {
    bottom: 5rem;
    right: 1rem;
    border: 3px solid #10b981;
    animation: mascotNod 3s ease-in-out infinite;
    width: 50px;
    height: 50px;
    opacity: 0.9;
}

opacity: 0.8;
}

@keyframes mascotShake {

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

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

@keyframes mascotNod {

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

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

.mascot-tip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #1a1a2e;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
}

.character-mascot:hover .mascot-tip {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.mascot-tip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid white;
}

/* Interactive example boxes */
.example-box {
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(79, 140, 255, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.example-box:hover {
    border-color: rgba(79, 140, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 140, 255, 0.2);
}

.example-box::before {
    content: '💡 Example';
    position: absolute;
    top: -1px;
    left: 1rem;
    background: linear-gradient(135deg, #4f8cff, #a855f7);
    padding: 0.25rem 0.75rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.65rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-box p {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Company Branding Bar */
.branding-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.branding-bar img {
    height: 25px;
    width: auto;
}

.branding-bar span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Animated Caricature/Icon Containers */
.caricature-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.caricature {
    font-size: 5rem;
    animation: caricatureBounce 3s ease-in-out infinite;
}

@keyframes caricatureBounce {

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

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

    75% {
        transform: translateY(-5px) rotate(3deg);
    }
}

.caricature-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(79, 140, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

/* Slide Footer with Branding */
.slide-footer {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-footer img {
    height: 20px;
}

.slide-footer span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Animated Stats Counter */
.stats-counter {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Animated List Items */
.animated-list li {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s ease forwards;
}

.animated-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.animated-list li:nth-child(2) {
    animation-delay: 0.2s;
}

.animated-list li:nth-child(3) {
    animation-delay: 0.3s;
}

.animated-list li:nth-child(4) {
    animation-delay: 0.4s;
}

.animated-list li:nth-child(5) {
    animation-delay: 0.5s;
}

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

/* Floating Elements */
.floating-element {
    animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {

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

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

/* Section Badge Colors */
.section-badge.tools {
    background: rgba(236, 72, 153, 0.15);
    color: #ec4899;
}

.section-badge.interactive {
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    color: var(--accent-blue);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(79, 140, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(79, 140, 255, 0.2);
    }
}

.highlight-pink {
    color: #ec4899;
}

/* ========================================
   TOOL CARDS - FLIP ANIMATION
   ======================================== */

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    perspective: 1000px;
}

.tool-card {
    height: 280px;
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-card.flipped {
    transform: rotateY(180deg);
}

.tool-front,
.tool-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tool-front {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.tool-front:hover {
    border-color: #ec4899;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.2);
}

.tool-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounceIcon 2s ease-in-out infinite;
}

@keyframes bounceIcon {

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

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

.tool-front h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.click-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: auto;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    animation: pulse 2s ease-in-out infinite;
}

.tool-back {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(79, 140, 255, 0.3);
    transform: rotateY(180deg);
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
}

.tool-back h5 {
    font-size: 0.9rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.tool-back ul {
    list-style: none;
    width: 100%;
    margin-bottom: 1rem;
}

.tool-back ul li {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tool-back ul li strong {
    color: var(--accent-cyan);
}

.roi-tag {
    margin-top: auto;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-green);
}

/* ========================================
   OPERATIONS GRID
   ======================================== */

.operations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.ops-category {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.ops-category:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
}

.ops-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    font-weight: 600;
}

.ops-header span {
    font-size: 1.5rem;
}

.ops-tools {
    padding: 1rem 1.25rem;
}

.ops-tool {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.ops-tool:last-child {
    border-bottom: none;
}

.ops-tool strong {
    color: var(--accent-cyan);
}

.ops-tool span {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Interactive Poll */
.interactive-poll {
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(79, 140, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

.interactive-poll h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.poll-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.poll-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.poll-btn:hover {
    border-color: var(--accent-blue);
    transform: scale(1.05);
}

.poll-btn.selected {
    background: var(--gradient-1);
    border-color: transparent;
    animation: selectPop 0.3s ease;
}

@keyframes selectPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.05);
    }
}

/* ========================================
   BUSINESS TYPES GRID
   ======================================== */

.business-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.business-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.business-card.startup::before {
    background: linear-gradient(90deg, #10b981, #06b6d4);
}

.business-card.sme::before {
    background: linear-gradient(90deg, #4f8cff, #a855f7);
}

.business-card.enterprise::before {
    background: linear-gradient(90deg, #f97316, #ec4899);
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.business-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.business-icon {
    font-size: 2rem;
    animation: rotateScale 3s ease-in-out infinite;
}

@keyframes rotateScale {

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

    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

.business-header h4 {
    font-size: 1.25rem;
}

.business-focus {
    margin-bottom: 1rem;
}

.business-focus p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.recommended-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tool-tag {
    padding: 0.25rem 0.6rem;
    background: rgba(79, 140, 255, 0.15);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--accent-blue);
}

.use-case-example {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-left: 3px solid var(--accent-green);
}

/* ========================================
   WORKSHOP EXERCISE
   ======================================== */

.workshop-exercise {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.exercise-step {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    opacity: 0.6;
    transition: all var(--transition-normal);
}

.exercise-step.active {
    opacity: 1;
    border-color: var(--accent-blue);
    box-shadow: 0 0 30px rgba(79, 140, 255, 0.1);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-header h4 {
    font-size: 1rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pain-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pain-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pain-option:hover {
    background: rgba(79, 140, 255, 0.1);
}

.pain-option input[type="radio"] {
    accent-color: var(--accent-blue);
}

.solution-matcher {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.match-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.match-item span:first-child {
    color: var(--text-secondary);
}

.match-item span:nth-child(2) {
    color: var(--accent-cyan);
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {

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

    50% {
        transform: translateX(3px);
    }
}

.match-item span:last-child {
    color: var(--accent-green);
    font-weight: 500;
}

.metric-template p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.template-box {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 2;
}

.inline-input {
    background: rgba(79, 140, 255, 0.1);
    border: 1px solid rgba(79, 140, 255, 0.3);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    color: var(--text-primary);
    font-size: 0.85rem;
    width: 100px;
    margin: 0 0.25rem;
}

.inline-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px rgba(79, 140, 255, 0.2);
}

.workshop-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: var(--radius-lg);
}

.workshop-timer span {
    font-size: 1.5rem;
    animation: timerPulse 1s ease-in-out infinite;
}

@keyframes timerPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.workshop-timer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ========================================
   IMPLEMENTATION CHECKLIST
   ======================================== */

.implementation-checklist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.checklist-phase {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: all var(--transition-fast);
}

.checklist-phase:hover {
    border-color: var(--accent-green);
    transform: translateY(-3px);
}

.checklist-phase h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.check-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.check-label:hover {
    color: var(--text-primary);
}

.check-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent-green);
    cursor: pointer;
}

.check-label input[type="checkbox"]:checked+span {
    text-decoration: line-through;
    color: var(--accent-green);
}

/* ========================================
   FOOTER LOGO STYLES
   ======================================== */

.footer-logo {
    height: 35px;
    width: auto;
}

.jain-logo-animated {
    position: relative;
    padding: 10px;
}

.jain-logo-animated::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.3), rgba(79, 140, 255, 0.3));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(15px);
}

.jain-logo-animated:hover::after {
    opacity: 1;
    animation: logoGlowPulse 2s ease-in-out infinite;
}

@keyframes logoGlowPulse {

    0%,
    100% {
        filter: blur(15px);
        transform: scale(1);
    }

    50% {
        filter: blur(20px);
        transform: scale(1.05);
    }
}

/* ========================================
   ANIMATED ICONS
   ======================================== */

.animated-icon {
    display: inline-block;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

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

    40% {
        transform: translateY(-10px);
    }

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

.spin-icon {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.pulse-icon {
    animation: pulseScale 1.5s ease-in-out infinite;
}

@keyframes pulseScale {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 1200px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .business-types-grid {
        grid-template-columns: 1fr;
    }

    .workshop-exercise {
        grid-template-columns: 1fr;
    }

    .implementation-checklist {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .operations-grid {
        grid-template-columns: 1fr;
    }

    .implementation-checklist {
        grid-template-columns: 1fr;
    }

    .poll-options {
        flex-direction: column;
    }
}