/* ========================================
   SLIDE 6 - IT & ITeS
   ======================================== */

.code-transformation-section {
    margin-top: 1.5rem;
}

.code-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.code-before,
.code-after {
    flex: 1;
    max-width: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #1e1e1e;
}

.code-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4b5563;
}

.code-header.bad .dot:first-child {
    background: #ef4444;
}

.code-header.bad .dot:nth-child(2) {
    background: #f97316;
}

.code-header.bad .dot:nth-child(3) {
    background: #22c55e;
}

.code-header.good .dot:first-child {
    background: #ef4444;
}

.code-header.good .dot:nth-child(2) {
    background: #f97316;
}

.code-header.good .dot:nth-child(3) {
    background: #22c55e;
}

.file-name {
    flex: 1;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.status-bad,
.status-good {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.status-bad {
    background: rgba(239, 68, 68, 0.2);
    color: var(--accent-red);
}

.status-good {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
}

.code-block {
    background: #0d0d0d;
    padding: 1rem;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.75rem;
    line-height: 1.6;
    overflow-x: auto;
    min-height: 180px;
}

.bad-code {
    border-left: 3px solid var(--accent-red);
}

.good-code {
    border-left: 3px solid var(--accent-green);
}

.code-block .comment {
    color: #6b7280;
}

.code-block .keyword {
    color: #c084fc;
}

.code-block .function {
    color: #60a5fa;
}

.code-block .param {
    color: #f97316;
}

.code-block .method {
    color: #34d399;
}

.code-block .boolean {
    color: #fbbf24;
}

.transform-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.ai-badge {
    background: var(--gradient-1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    animation: pulse 2s ease infinite;
}

.transform-arrow svg {
    width: 40px;
    height: 40px;
    color: var(--accent-blue);
    animation: arrowMove 1s ease-in-out infinite;
}

@keyframes arrowMove {

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

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

.it-content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.content-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.content-card .card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.content-card ul {
    list-style: none;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.content-card ul li {
    padding: 0.2rem 0;
    padding-left: 1rem;
    position: relative;
}

.content-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

.content-card.pain {
    border-color: rgba(239, 68, 68, 0.3);
}

.content-card.solution {
    border-color: rgba(79, 140, 255, 0.3);
}

.content-card.outcome {
    border-color: rgba(16, 185, 129, 0.3);
}

.velocity-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    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-md);
    padding: 1.25rem;
}

.metric-circle {
    position: relative;
    width: 80px;
    height: 80px;
}

.metric-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.metric-circle .bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.metric-circle .progress {
    fill: none;
    stroke: url(#blueGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 170;
    animation: progressFill 1.5s ease forwards;
}

@keyframes progressFill {
    from {
        stroke-dashoffset: 283;
    }

    to {
        stroke-dashoffset: 170;
    }
}

.metric-circle .value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.velocity-metric p {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
}

.quote-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
}

.quote-icon {
    font-size: 1.5rem;
}

.quote-banner p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   SLIDE 7 - Healthcare
   ======================================== */

.healthcare-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.xray-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.xray-container {
    position: relative;
}

.xray-image {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    height: 280px;
    position: relative;
    overflow: hidden;
}

.lung-outline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(79, 140, 255, 0.1) 0%, transparent 70%);
    border-radius: 50% 50% 40% 40%;
}

.ai-detection {
    position: absolute;
}

.detection-1 {
    top: 30%;
    left: 30%;
}

.detection-2 {
    top: 55%;
    right: 25%;
}

.detection-box {
    width: 50px;
    height: 40px;
    border: 2px solid var(--accent-cyan);
    border-radius: 4px;
    animation: detectionPulse 2s ease-in-out infinite;
}

@keyframes detectionPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(6, 182, 212, 0);
    }
}

.detection-label {
    position: absolute;
    top: -25px;
    left: 0;
    font-size: 0.65rem;
    color: var(--accent-cyan);
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    animation: scanMove 3s ease-in-out infinite;
}

@keyframes scanMove {

    0%,
    100% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.ai-analysis-panel {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: 1rem;
}

.ai-analysis-panel h4 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: var(--accent-cyan);
}

.analysis-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.analysis-item .label {
    color: var(--text-muted);
}

.analysis-item .value {
    color: var(--text-primary);
}

.analysis-item .value.good {
    color: var(--accent-green);
}

.healthcare-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.card-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.card-icon-wrapper.pain {
    background: rgba(239, 68, 68, 0.15);
}

.card-icon-wrapper.solution {
    background: rgba(6, 182, 212, 0.15);
}

.card-icon-wrapper.outcome {
    background: rgba(16, 185, 129, 0.15);
}

.card-text h4 {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.card-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.solution-tags {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.solution-tags span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding-left: 0.75rem;
    position: relative;
}

.solution-tags span::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

.time-saved-metric {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    margin-top: auto;
}

.clock-icon {
    font-size: 2.5rem;
}

.metric-text {
    display: flex;
    flex-direction: column;
}

.big-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.unit {
    font-size: 1rem;
    color: var(--text-primary);
}

.detail {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   SLIDE 8 - Logistics Case Study
   ======================================== */

.case-study-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.route-comparison {
    position: relative;
}

.map-container {
    background: linear-gradient(180deg, #1e3a5f 0%, #0f1f33 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    height: 320px;
    overflow: hidden;
}

.map-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 40%, rgba(79, 140, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 60%, rgba(79, 140, 255, 0.1) 0%, transparent 30%);
}

.route {
    position: absolute;
    inset: 2rem;
}

.route svg {
    width: 100%;
    height: 100%;
}

.route-path {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

.route-path.old {
    stroke: var(--accent-red);
    stroke-dasharray: 8 4;
    opacity: 0.6;
}

.route-path.new {
    stroke: var(--accent-green);
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawRoute 2s ease forwards 0.5s;
}

@keyframes drawRoute {
    to {
        stroke-dashoffset: 0;
    }
}

.point {
    fill: var(--text-primary);
    stroke: var(--bg-primary);
    stroke-width: 2;
}

.point.start {
    fill: var(--accent-blue);
}

.point.end {
    fill: var(--accent-green);
}

.route-label {
    position: absolute;
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
}

.route-label.old {
    bottom: 10%;
    left: 10%;
    color: var(--accent-red);
}

.route-label.new {
    top: 10%;
    right: 10%;
    color: var(--accent-green);
}

.optimization-factors {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.factor {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    background: rgba(79, 140, 255, 0.2);
    border-radius: 4px;
    color: var(--accent-blue);
}

.case-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.card-stripe {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.detail-card.challenge .card-stripe {
    background: var(--accent-red);
}

.detail-card.solution .card-stripe {
    background: var(--accent-blue);
}

.detail-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.detail-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-left: 0.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
    padding-left: 0.5rem;
}

.feature-list span {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding-left: 1rem;
    position: relative;
}

.feature-list span::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

.results-showcase {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-top: auto;
}

.results-showcase h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.result-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

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

.result-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.result-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   SLIDE 9 - Fintech Case Study
   ======================================== */

.fintech-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.chat-demo {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 320px;
    background: var(--bg-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.phone-notch {
    width: 100px;
    height: 25px;
    background: var(--bg-primary);
    margin: 0 auto;
    border-radius: 0 0 15px 15px;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(79, 140, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.chat-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.chat-status {
    font-size: 0.7rem;
    color: var(--accent-green);
}

.chat-messages {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 350px;
    overflow-y: auto;
}

.message {
    max-width: 85%;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    position: relative;
}

.message p {
    margin-bottom: 0.25rem;
}

.message .time {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.message.user {
    align-self: flex-end;
    background: var(--gradient-1);
    border-bottom-right-radius: 4px;
}

.message.bot {
    align-self: flex-start;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 4px;
}

.message.resolved {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.resolution-badge {
    display: block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 4px;
    font-size: 0.65rem;
    color: var(--accent-green);
}

.chat-input {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-input input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    font-size: 0.8rem;
}

.chat-input button {
    width: 36px;
    height: 36px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
}

.fintech-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.challenge-box,
.solution-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.challenge-box {
    border-left: 4px solid var(--accent-red);
}

.solution-box {
    border-left: 4px solid var(--accent-blue);
}

.challenge-box h4,
.solution-box h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.challenge-box p,
.solution-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: auto;
}

.metric-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
}

.metric-card.primary {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.metric-card.secondary {
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    border-color: rgba(79, 140, 255, 0.3);
}

.metric-card .metric-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.metric-card .metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-card.secondary .metric-value {
    background: var(--gradient-1);
    -webkit-background-clip: text;
}

.metric-card .metric-desc {
    font-size: 0.9rem;
    font-weight: 600;
}

.metric-card .metric-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ========================================
   SLIDE 10 - Summary
   ======================================== */

.checklist-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.checklist-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateX(-20px);
}

.slide.active .checklist-item {
    animation: slideInItem 0.5s ease forwards;
}

.slide.active .checklist-item[data-item="1"] {
    animation-delay: 0.2s;
}

.slide.active .checklist-item[data-item="2"] {
    animation-delay: 0.4s;
}

.slide.active .checklist-item[data-item="3"] {
    animation-delay: 0.6s;
}

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

.checklist-item:hover {
    border-color: var(--accent-blue);
    transform: translateX(5px);
}

.checkbox {
    width: 32px;
    height: 32px;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.checklist-item:hover .checkbox {
    background: var(--accent-blue);
}

.checkbox svg {
    width: 18px;
    height: 18px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.checklist-item:hover .checkbox svg {
    opacity: 1;
}

.item-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.item-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.stages-mini {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.stages-mini span {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    background: rgba(79, 140, 255, 0.15);
    color: var(--accent-blue);
    border-radius: 4px;
}

.sweet-spot-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quadrant-mini {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-cyan) 100%);
    border-radius: 4px;
}

.sweet-spot-mini span {
    font-size: 0.75rem;
    color: var(--accent-green);
}

.guardrails {
    display: flex;
    gap: 0.5rem;
}

.guardrails span {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    background: rgba(168, 85, 247, 0.15);
    color: var(--accent-purple);
    border-radius: 4px;
}

.key-takeaway {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: var(--radius-lg);
    height: fit-content;
}

.takeaway-icon {
    font-size: 2rem;
}

.takeaway-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-orange);
}

.takeaway-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   SLIDE 11 - Q&A
   ======================================== */

.qa-slide {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qa-visual {
    position: relative;
    margin-bottom: 3rem;
}

.floating-icons {
    position: absolute;
    inset: -100px;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.5;
    animation: floatIcon 4s ease-in-out infinite;
}

.i1 {
    top: 0;
    left: 20%;
    animation-delay: 0s;
}

.i2 {
    top: 20%;
    right: 10%;
    animation-delay: 0.5s;
}

.i3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.i4 {
    bottom: 0;
    right: 20%;
    animation-delay: 1.5s;
}

.i5 {
    top: 50%;
    left: 0;
    animation-delay: 2s;
}

@keyframes floatIcon {

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

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

.qa-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.qa-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.thank-you-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.thank-you-card {
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    border: 1px solid rgba(79, 140, 255, 0.3);
    border-radius: var(--radius-lg);
}

.thank-you-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.thank-you-card p {
    color: var(--text-secondary);
}

.contact-section {
    display: flex;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.contact-item:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-blue);
}

.contact-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.branding-footer {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo-placeholder {
    padding: 0.75rem 2rem;
    background: var(--gradient-1);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

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

/* ========================================
   RESPONSIVE - Extended
   ======================================== */

@media (max-width: 1024px) {
    .code-visual {
        flex-direction: column;
    }

    .code-before,
    .code-after {
        max-width: 100%;
    }

    .transform-arrow {
        flex-direction: row;
        padding: 1rem 0;
    }

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

    .it-content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .healthcare-layout {
        grid-template-columns: 1fr;
    }

    .case-study-layout {
        grid-template-columns: 1fr;
    }

    .fintech-layout {
        grid-template-columns: 1fr;
    }

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

.it-content-grid {
    grid-template-columns: 1fr;
}

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

.contact-section {
    flex-direction: column;
}
}

/* ========================================
   JAIN SOFTWARE SHOWCASE STYLES
   ======================================== */

.jain-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
}

.highlight-gradient {
    background: linear-gradient(135deg, #4f8cff 0%, #a855f7 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jain-software-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.jain-intro {
    text-align: center;
}

.jain-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 2rem;
}

.jain-logo-large {
    max-width: 150px;
    height: auto;
    background: rgba(255, 255, 255, 0.85);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.jain-stats {
    display: flex;
    gap: 1.5rem;
}

.jain-stats .stat-item {
    text-align: center;
    padding: 0.75rem 1rem;
    background: rgba(79, 140, 255, 0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 8px;
    border: 1px solid rgba(79, 140, 255, 0.15);
}

.jain-stats .stat-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #4f8cff;
}

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

.jain-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.jain-case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
}

.jain-case-card.featured {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-color: rgba(79, 140, 255, 0.3);
}

.jain-case-card .case-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.jain-case-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.jain-case-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.jain-case-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jain-case-card ul li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
}

.jain-case-card .impact-tag {
    margin-top: 0.75rem;
    padding: 0.6rem;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    color: #10b981;
    text-align: center;
}

.jain-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    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.2);
    border-radius: 12px;
    margin-top: 0.5rem;
}

.jain-cta span {
    font-size: 1.5rem;
}

.jain-cta p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ========================================
   CATEGORY CASE STUDIES STYLES
   ======================================== */

.category-badge {
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
    color: #ffffff !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.category-cases-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.category-case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.category-case-card:hover {
    transform: translateY(-3px);
}

.category-case-card.education {
    border-left: 3px solid #06b6d4;
}

.category-case-card.finance {
    border-left: 3px solid #10b981;
}

.category-case-card.logistics {
    border-left: 3px solid #f59e0b;
}

.category-case-card.government {
    border-left: 3px solid #8b5cf6;
}

.category-case-card.retail {
    border-left: 3px solid #ec4899;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.category-icon {
    font-size: 1.5rem;
}

.category-header h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
}

.case-example .company-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 0.25rem;
}

.case-example ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0;
}

.case-example ul li {
    font-size: 0.85rem;
    color: var(--text-primary);
    padding: 0.15rem 0;
}

.case-example .local-example {
    font-size: 0.85rem;
    padding: 0.5rem;
    background: rgba(255, 165, 0, 0.15);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 6px;
    color: var(--text-primary);
    margin-top: 0.5rem;
    font-weight: 500;
}

.category-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 10px;
    margin-top: 1rem;
}

.category-cta span {
    font-size: 1.25rem;
}

.category-cta p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ========================================
   RAIPUR EXAMPLES BOX FIX
   ======================================== */

.raipur-examples-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
}

.raipur-examples-box .example-label {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.raipur-examples-box .example-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.raipur-examples-box .example-item {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
}

.raipur-examples-box .example-item strong {
    color: var(--accent-orange);
}

/* ========================================
   PRACTICAL TAKEAWAY BOX
   ======================================== */

.practical-takeaway {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    margin-top: 1rem;
}

.practical-takeaway span {
    font-size: 1.25rem;
}

.practical-takeaway p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ========================================
   REAL CASE BOX
   ======================================== */

.real-case-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.real-case-box p {
    font-size: 1rem;
    margin: 0.4rem 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

.real-case-box ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.real-case-box ul li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
}

.real-case-box.healthcare-case ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.real-case-box.healthcare-case ul li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
}

/* Jain Software Highlight Box */
.real-case-box.jain-highlight {
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 2px solid rgba(79, 140, 255, 0.4);
    padding: 1.25rem;
}

.real-case-box.jain-highlight p {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0.5rem 0;
}

.real-case-box.jain-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.real-case-box.jain-highlight ul li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.real-case-box.jain-highlight ul li:last-child {
    border-bottom: none;
}

/* ========================================
   ENHANCED LIST STYLES
   ======================================== */

.enhanced-list {
    list-style: none;
    padding: 0;
}

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

.enhanced-list li:last-child {
    border-bottom: none;
}

/* ========================================
   NEW PRACTICAL EXAMPLES SLIDES STYLES
   ======================================== */

/* Quick Wins Grid */
.quick-wins-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.quick-win-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.quick-win-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 40px rgba(79, 140, 255, 0.15);
}

.win-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.quick-win-card h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.win-example {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.win-result {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
}

.result-metric {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-green);
    font-family: 'Space Grotesk', sans-serif;
}

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

.pro-tip {
    font-size: 0.9rem;
    color: var(--accent-blue);
    padding: 0.5rem;
    background: rgba(79, 140, 255, 0.1);
    border-radius: 6px;
}

.slide-cta-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    border-radius: 12px;
    font-size: 1.2rem;
}

.slide-cta-banner span {
    font-size: 1.5rem;
}

/* Raipur Examples Grid */
.raipur-examples-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.raipur-example-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.raipur-example-card:hover {
    border-color: var(--accent-orange);
}

.raipur-example-card.featured-example {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    border-color: rgba(249, 115, 22, 0.3);
}

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

.example-icon {
    font-size: 1.75rem;
}

.example-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-secondary);
}

.raipur-example-card h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.example-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.example-results {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem 0;
}

.example-results li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
}

.example-cost {
    font-size: 0.85rem;
    color: var(--accent-green);
    font-weight: 600;
    padding: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 6px;
    text-align: center;
}

/* Pro Tips Grid */
.pro-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.tip-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid transparent;
}

.tip-card.tip-do {
    border-color: rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
}

.tip-card.tip-dont {
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.02) 100%);
}

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

.tip-icon {
    font-size: 2rem;
}

.tip-header h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
}

.tip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-list li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tip-list li:last-child {
    border-bottom: none;
}

.golden-rule-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 16px;
}

.rule-icon-large {
    font-size: 3rem;
}

.rule-content h4 {
    font-size: 1.2rem;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.rule-content p {
    font-size: 1.15rem;
    color: var(--text-primary);
}

/* Tools Comparison Grid */
.tools-comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.budget-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.budget-card:hover {
    transform: translateY(-5px);
}

.budget-card.budget-free {
    border-color: rgba(16, 185, 129, 0.3);
}

.budget-card.budget-mid {
    border-color: rgba(79, 140, 255, 0.3);
}

.budget-card.budget-enterprise {
    border-color: rgba(168, 85, 247, 0.3);
}

.budget-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.budget-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.budget-header h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.budget-range {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tool-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.tool-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.best-for {
    font-size: 0.9rem;
    color: var(--accent-blue);
    padding: 0.75rem;
    background: rgba(79, 140, 255, 0.1);
    border-radius: 8px;
    text-align: center;
}

.recommendation-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(79, 140, 255, 0.15) 100%);
    border-radius: 12px;
    font-size: 1.1rem;
}

.recommendation-banner span {
    font-size: 1.5rem;
}

/* Section Badges */
.section-badge.success-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(79, 140, 255, 0.2) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.section-badge.raipur-badge {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.2) 100%);
    border-color: rgba(249, 115, 22, 0.3);
}

.section-badge.tips-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.section-badge.tools-badge {
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border-color: rgba(79, 140, 255, 0.3);
}

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

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

    .category-cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .quick-wins-grid,
    .raipur-examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-comparison-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .demo-showcase-grid,
    .visual-ai-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .whatsapp-demo-layout {
        grid-template-columns: 1fr;
    }
}

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

    .category-cases-grid {
        grid-template-columns: 1fr;
    }

    .jain-logo-section {
        flex-direction: column;
    }

    .jain-stats {
        flex-direction: row;
        justify-content: center;
    }

    .raipur-examples-box .example-grid {
        grid-template-columns: 1fr;
    }

    .quick-wins-grid,
    .raipur-examples-grid {
        grid-template-columns: 1fr;
    }

    .pro-tips-grid {
        grid-template-columns: 1fr;
    }

    .tools-comparison-grid {
        grid-template-columns: 1fr;
    }

    .demo-showcase-grid,
    .visual-ai-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   LIVE DEMO SLIDES STYLES
   ======================================== */

/* Demo Badge */
.section-badge.demo-badge {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(249, 115, 22, 0.2) 100%);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* Demo Showcase Grid */
.demo-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.demo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.demo-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-3px);
}

.demo-card.featured-demo {
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-color: rgba(79, 140, 255, 0.3);
}

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

.demo-icon {
    font-size: 1.75rem;
}

.demo-header h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
}

.demo-example {
    margin-bottom: 1rem;
}

.demo-input,
.demo-output {
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.demo-input {
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid var(--accent-red);
    margin-bottom: 0.5rem;
}

.demo-output {
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid var(--accent-green);
}

.demo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.demo-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.4rem 0;
}

.demo-stats {
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: 600;
    padding: 0.5rem;
    background: rgba(79, 140, 255, 0.1);
    border-radius: 6px;
    text-align: center;
}

.demo-stats.highlight-stat {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
}

.try-it-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    border-radius: 12px;
    font-size: 1.1rem;
}

.try-it-banner span {
    font-size: 1.5rem;
}

/* WhatsApp Demo Layout */
.whatsapp-demo-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
    align-items: start;
}

.phone-mockup {
    background: #075e54;
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #128c7e;
    border-radius: 12px 12px 0 0;
    margin: -1rem -1rem 1rem -1rem;
    padding: 1rem;
}

.business-name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.verified-badge {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: white;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
}

.message {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 85%;
}

.message.customer {
    background: #dcf8c6;
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.message.bot {
    background: white;
    color: #000;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.demo-benefits {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
}

.demo-benefits h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
}

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

.raipur-businesses {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.raipur-businesses h5 {
    font-size: 1rem;
    color: var(--accent-orange);
    margin-bottom: 0.75rem;
}

.raipur-businesses ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.raipur-businesses li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
}

/* Visual AI Grid */
.visual-ai-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.visual-demo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.visual-demo-card:hover {
    border-color: var(--accent-purple);
}

.visual-demo-card.featured-visual {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-color: rgba(168, 85, 247, 0.3);
}

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

.visual-icon {
    font-size: 1.5rem;
}

.visual-header h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
}

.visual-demo {
    margin-bottom: 1rem;
}

.before-after {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.arrow {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent-blue);
}

.before,
.after {
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.before {
    background: rgba(255, 255, 255, 0.05);
}

.after {
    background: rgba(16, 185, 129, 0.1);
}

.before .label,
.after .label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.25rem;
}

.before p,
.after p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.4;
}

.arrow {
    font-size: 1.25rem;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.use-case {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem;
    background: rgba(79, 140, 255, 0.1);
    border-radius: 6px;
}

.tools-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(79, 140, 255, 0.15) 100%);
    border-radius: 12px;
    font-size: 1.05rem;
}

.tools-banner span {
    font-size: 1.5rem;
}