/* AI Page Styles - Brainwave Software */

:root {
    --ai-purple: #9b59b6;
    --ai-purple-light: #a569bd;
    --ai-purple-dark: #7d3c98;
    --ai-gradient-start: #6799C8;
    --ai-gradient-end: #9b59b6;
}

/* AI Podcast Player */
.ai-podcast-player {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.podcast-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.podcast-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.podcast-btn.playing {
    background: rgba(255, 255, 255, 0.95);
    color: var(--brainwave-blue);
    border-color: #fff;
}

.podcast-btn i {
    font-size: 18px;
}

.podcast-label {
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.podcast-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
}

.podcast-time {
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    min-width: 40px;
}

.podcast-slider {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
}

.podcast-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.podcast-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.podcast-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .ai-podcast-player {
        justify-content: center;
    }
    
    .podcast-label {
        width: 100%;
        text-align: center;
    }
    
    .podcast-progress {
        padding: 10px 12px;
    }
}

/* Hero Section */
.ai-hero {
    background: linear-gradient(135deg, var(--brainwave-blue) 0%, var(--ai-purple) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.ai-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {

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

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

.ai-hero .container {
    position: relative;
    z-index: 1;
}

.ai-hero h1 {
    font-family: 'Mulish', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.ai-hero .tagline {
    font-family: 'Mulish', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
}

.ai-hero p {
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 900px;
}


.ai-digital-brain {
    position: relative;
    margin: 0 auto;
}


/* Hero Robot Icon */
.hero-robot-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: robot-float 4s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hero-robot-icon i {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes robot-float {

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

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


/* Floating AI Icons Animation */
.ai-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.ai-floating-icons i {
    position: absolute;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.15);
    animation: float-up 15s linear infinite;
}

.ai-floating-icons i:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.ai-floating-icons i:nth-child(2) {
    left: 25%;
    animation-delay: 3s;
}

.ai-floating-icons i:nth-child(3) {
    left: 40%;
    animation-delay: 6s;
}

.ai-floating-icons i:nth-child(4) {
    left: 55%;
    animation-delay: 9s;
}

.ai-floating-icons i:nth-child(5) {
    left: 70%;
    animation-delay: 12s;
}

.ai-floating-icons i:nth-child(6) {
    left: 85%;
    animation-delay: 2s;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    90% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Section Styles */
.ai-section {
    padding: 45px 0;
}

.ai-section-alt {
    background-color: #f1f7fe;
}

.ai-section .section-title {
    margin-bottom: 40px;
}

.ai-section .section-title h2 {
    font-family: 'Mulish', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--brainwave-blue);
    margin-bottom: 15px;
}

.ai-section .section-title p {
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
}

/* Capability Cards - Row wrapper for equal heights */

.ai-capabilities-row>[class*="col-"] {
    display: flex;
}

.ai-capability-card {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(68, 88, 144, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(103, 153, 200, 0.1);
}

.ai-capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(68, 88, 144, 0.2);
}

.ai-capability-card .card-header {
    background: linear-gradient(135deg, var(--brainwave-blue) 0%, var(--ai-purple) 100%);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ai-capability-card .card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}

.ai-capability-card h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.ai-capability-card .card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ai-capability-card p {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
    flex: 1;
}

.ai-capability-card .example {
    font-size: 13px;
    color: var(--brainwave-grey);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 15px 18px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 3px solid var(--brainwave-blue);
}

.ai-capability-card .example strong {
    color: var(--brainwave-blue);
}


.ai-capability-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.ai-capability-card ul li {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.ai-capability-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--brainwave-blue), var(--ai-purple));
    border-radius: 50%;
}

/* Badges */
.badge-demonstrated {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-confident {
    display: inline-block;
    background: linear-gradient(135deg, var(--ai-purple-dark), var(--ai-purple));
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Option Cards */
.ai-option-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(68, 88, 144, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ai-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(68, 88, 144, 0.15);
}

.ai-option-card.option-a {
    border-top: 5px solid var(--brainwave-blue);
}

.ai-option-card.option-b {
    border-top: 5px solid var(--ai-purple);
}

.ai-option-card .option-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ai-option-card .option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.ai-option-card.option-a .option-icon {
    background: linear-gradient(135deg, var(--brainwave-blue), #5a8fc0);
    color: white;
}

.ai-option-card.option-b .option-icon {
    background: linear-gradient(135deg, var(--ai-purple), var(--ai-purple-light));
    color: white;
}

.ai-option-card h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--brainwave-grey);
    margin: 0;
}

.ai-option-card .option-tagline {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.ai-option-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.ai-option-card ul li {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    color: var(--text-gray);
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.ai-option-card ul li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 12px;
    width: 12px;
    height: 6px;
    border-left: 2px solid #27ae60;
    border-bottom: 2px solid #27ae60;
    transform: rotate(-45deg);
}

.ai-option-card .cost-note {
    background: #fff8e1;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
    margin-top: 20px;
}

.ai-option-card .cost-note strong {
    color: var(--brainwave-grey);
}

/* IP Details Box */
.ai-ip-box {
    background: linear-gradient(135deg, #f5f0ff 0%, #ebe4f7 100%);
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
    border-left: 4px solid var(--ai-purple);
}

.ai-ip-box h4 {
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ai-purple-dark);
    margin-bottom: 15px;
}

.ai-ip-box ul {
    margin-bottom: 0;
}

.ai-ip-box ul li::before {
    border-left-color: var(--ai-purple);
    border-bottom-color: var(--ai-purple);
}

/* Hardware Section */
.ai-hardware-tier {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.ai-hardware-tier:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.ai-hardware-tier .tier-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brainwave-blue), var(--ai-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.ai-hardware-tier .tier-content h4 {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--brainwave-grey);
    margin-bottom: 5px;
}

.ai-hardware-tier .tier-content p {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.ai-hardware-tier .tier-price {
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--brainwave-blue);
    margin-left: auto;
    white-space: nowrap;
}

/* CTA Section */
.ai-cta {
    background: transparent;
    padding: 45px 0;
    text-align: center;
}

.ai-cta h2 {
    font-family: 'Mulish', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.ai-cta p {
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: 0px;
    margin-right: auto;
}

.ai-cta .cta-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.ai-cta .cta-step {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
}

.ai-cta .cta-step .step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.ai-cta .btn-cta {
    display: inline-block;
    background: #fff;
    color: var(--brainwave-blue);
    font-size: 18px;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ai-cta .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: var(--brainwave-grey);
}

    .ai-cta .no-fluff {
        font-family: 'Mulish', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--brainwave-grey);
        margin-top: 25px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        width: 100%;
    }

/* CTA Card Layout */
.cta-card {
    background: linear-gradient(135deg, var(--brainwave-blue) 0%, var(--brainwave-grey) 100%);
    border-radius: 20px;
    padding: 40px;


}

.cta-card-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cta-photo-col {
    flex-shrink: 0;
    text-align: center;
}

.cta-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.cta-photo-col h4 {
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px 0;
}

.cta-photo-col span {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-content-col {
    flex: 1;
    text-align: left;
}

.cta-content-col h2 {
    font-family: 'Mulish', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}

.cta-quote {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    max-width: none;
}

.cta-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cta-checklist li {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-checklist li i {
    color: rgba(255, 255, 255, 0.7);
}

.cta-content-col .btn-cta {
    display: inline-block;
}

@media (max-width: 768px) {
    .cta-card {
        padding: 30px 20px;
    }

    .cta-card-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-content-col {
        text-align: center;
    }

    .cta-checklist {
        justify-content: center;
    }
}

/* FAQ Section */
.ai-faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 5px 25px rgba(68, 88, 144, 0.08);
    border-left: 4px solid var(--brainwave-blue);
    transition: all 0.3s ease;
}

.ai-faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 35px rgba(68, 88, 144, 0.12);
}

.ai-faq-item:nth-child(even) {
    border-left-color: var(--ai-purple);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question i {
    font-size: 22px;
    color: var(--brainwave-blue);
    margin-top: 2px;
    flex-shrink: 0;
}

.ai-faq-item:nth-child(even) .faq-question i {
    color: var(--ai-purple);
}

.faq-question h4 {
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--brainwave-grey);
    margin: 0;
    line-height: 1.4;
}

.faq-answer {
    padding-left: 37px;
}

.faq-answer p {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.faq-answer strong {
    color: var(--brainwave-grey);
}

.faq-answer em {
    color: var(--brainwave-blue);
    font-style: italic;
}

/* Intro Section Styling */
.ai-intro-highlight {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(68, 88, 144, 0.08);
    border-left: 4px solid var(--brainwave-blue);
}

.ai-intro-highlight h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--brainwave-grey);
    margin-bottom: unset;
}

    .ai-intro-highlight i {
        font-size: 16px;
        color: var(--brainwave-blue);
    }

    .ai-intro-highlight p {
        font-family: 'Mulish', sans-serif;
        font-size: 14px;
        color: var(--text-gray);
        line-height: 1.8;
    }

    .ai-intro-highlight p:last-child {
        margin: unset;
    }

/* Learn More External Link */
.ai-learn-more-link {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--brainwave-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ai-learn-more-link:hover {
    color: var(--ai-purple);
    text-decoration: underline;
}

.ai-learn-more-link i {
    font-size: 11px;
}

/* Responsive */
@media (max-width: 768px) {
    .ai-hero h1 {
        font-size: 32px;
    }

    .ai-hero .tagline {
        font-size: 20px;
    }

    .ai-option-card {
        padding: 25px;
    }

    .ai-option-card .option-header {
        flex-direction: column;
        text-align: center;
    }

    .ai-hardware-tier {
        flex-direction: column;
        text-align: center;
    }

    .ai-hardware-tier .tier-price {
        margin-left: 0;
        margin-top: 10px;
    }

    .ai-cta .cta-steps {
        flex-direction: column;
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .ai-hero h1 {
        font-size: 52px;
    }

    .ai-section .section-title h2 {
        font-size: 36px;
    }
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Offset for anchor targets to account for sticky nav */
#challenge,
#capabilities,
#use-cases,
#options,
#hardware,
#faq,
#cta {
    scroll-margin-top: 180px;
}

/* Quick Navigation Bar */
.ai-quick-nav {
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(68, 88, 144, 0.1);
    position: sticky;
    top: 91px;
    z-index: 99;
}

.ai-quick-nav .nav-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ai-quick-nav .nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--brainwave-grey);
    background: #f8f9fa;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.ai-quick-nav .nav-pill:hover {
    background: linear-gradient(135deg, var(--brainwave-blue) 0%, var(--ai-purple) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(103, 153, 200, 0.3);
}

.ai-quick-nav .nav-pill i {
    font-size: 11px;
}

.ai-quick-nav .nav-pill-primary {
    background: linear-gradient(135deg, var(--brainwave-blue) 0%, var(--ai-purple) 100%);
    color: #fff;
}

.ai-quick-nav .nav-pill-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 153, 200, 0.4);
}

@media (max-width: 768px) {
    .ai-quick-nav {
        top: 83px;
    }

    .ai-digital-brain {
        width: 250px !important;
        height: 250px !important;
    }

    .ai-quick-nav .nav-pills {
        gap: 5px;
        padding: 0 10px;
    }

    .ai-quick-nav .nav-pill {
        padding: 5px 10px;
        font-size: 10px;
        border-radius: 15px;
    }

    .ai-quick-nav .nav-pill i {
        display: none;
    }

    /* Adjust anchor scroll offset for mobile */
    #challenge,
    #capabilities,
    #use-cases,
    #options,
    #hardware,
    #faq,
    #cta {
        scroll-margin-top: 130px;
    }
}

/* Remove focus outline on nav pills */
.ai-quick-nav .nav-pill:focus,
.ai-quick-nav .nav-pill:active {
    outline: none;
    box-shadow: none;
}

.ai-quick-nav .nav-pill-primary:focus,
.ai-quick-nav .nav-pill-primary:active {
    outline: none;
    box-shadow: none;
    background: linear-gradient(135deg, var(--brainwave-blue) 0%, var(--ai-purple) 100%);
}

/* TL;DR Section */
.ai-tldr {
    padding: 45px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid rgba(103, 153, 200, 0.1);
}

.tldr-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 35px;
    box-shadow: 0 4px 20px rgba(68, 88, 144, 0.08);
    border-left: 4px solid var(--brainwave-blue);

}

.tldr-card h5 {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--brainwave-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tldr-card h5 i {
    margin-right: 8px;
}

.tldr-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
    text-align: left;
}

.tldr-list li {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    text-align: left;
    word-spacing: normal;
    gap: 10px;
}

.tldr-list li i {
    color: #27ae60;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.tldr-list li span {
    flex: 1;
    text-align: left;
}

.tldr-list li strong {
    color: var(--brainwave-grey);
}

.tldr-cta {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--brainwave-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.tldr-cta:hover {
    color: var(--ai-purple);
    gap: 12px;
}

.tldr-cta i {
    font-size: 12px;
}

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

    .tldr-card {
        padding: 20px 25px;
    }
}

/* Real-World Use Cases Section */
.use-case-category {
    font-family: 'Mulish', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--brainwave-grey);
    margin: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(103, 153, 200, 0.2);
}

.use-case-category i {
    color: var(--brainwave-blue);
}

.use-case-category-pricing {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    color: var(--brainwave-blue);
    margin-top: 8px;
    margin-bottom: 0;
}

.use-case-category-pricing i {
    opacity: 0.7;
}

.use-case-category-note {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 12px;
    margin-bottom: 0;
    padding: 12px 16px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 8px;
    border-left: 3px solid #ef4444;
}

.use-case-category-note strong {
    color: #dc2626;
}

.use-case-category-note em {
    font-style: italic;
    color: #b91c1c;
}

.ai-use-cases-row {
    display: flex;
    flex-wrap: wrap;
}

.ai-use-cases-row>[class*="col-"] {
    display: flex;
}

.ai-use-case-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(68, 88, 144, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid rgba(103, 153, 200, 0.1);
    position: relative;
    overflow: hidden;
}

.ai-use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brainwave-blue) 0%, var(--ai-purple) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ai-use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(68, 88, 144, 0.12);
}

.ai-use-case-card:hover::before {
    opacity: 1;
}

.use-case-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brainwave-blue), var(--ai-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.use-case-icon i {
    font-size: 22px;
    color: #fff;
}

.ai-use-case-card h4 {
    font-family: 'Mulish', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--brainwave-grey);
    margin-bottom: 12px;
    line-height: 1.3;
}

.ai-use-case-card p {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* ROI Note */
.use-case-roi-note {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border-left: 4px solid #f59e0b;
}

.use-case-roi-note i {
    font-size: 28px;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 2px;
}

.use-case-roi-note p {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    color: #78350f;
    line-height: 1.7;
    margin: 0;
}

.use-case-roi-note strong {
    color: #92400e;
}

@media (max-width: 768px) {
    .use-case-category {
        font-size: 18px;
    }

    .ai-use-case-card {
        padding: 20px;
    }

    .use-case-roi-note {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* Normal Screen 18 Inch - 19 Inch ( (Resolution 1366x768 ) 1349px and up) */
@media (min-width: 1349px) {

    .ai-section {
        padding: 75px 0;
    }

    .ai-cta {
        padding: 75px 0;
    }

    .ai-digital-brain {
        width: 350px;
        height: 350px;
    }

    .ai-intro-highlight p {
        font-size: 16px;
    }
}