html {
    scroll-behavior: smooth;
}

.navbar {
    background: rgba(4, 9, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(4, 9, 20, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    display: inline-flex;
    align-items: baseline;
}

.navbar .nav-link i {
    font-size: 0.9rem;
    line-height: 1;
}

.navbar .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.navbar .nav-link.current {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.navbar .brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-left: 10px;
}

.landing-hero,
.features-section,
.about-section,
section#models {
    background-color: #040914;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
}

.landing-hero {
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 230px 80px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 300px 200px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 380px 60px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 450px 180px, rgba(255, 255, 255, 0.8), transparent);
    background-size: 500px 500px;
    animation: starsMove 120s linear infinite;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

@keyframes starsMove {
    0% {
        transform: translateY(0) translateX(0);
    }

    100% {
        transform: translateY(-500px) translateX(-500px);
    }
}

.landing-floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.landing-floating-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    animation: floatOrb1 20s ease-in-out infinite;
}

.landing-floating-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, transparent 70%);
    bottom: 20%;
    left: 5%;
    animation: floatOrb2 25s ease-in-out infinite;
}

.landing-floating-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
    top: 60%;
    right: 25%;
    animation: floatOrb3 18s ease-in-out infinite;
}

@keyframes floatOrb1 {

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

    25% {
        transform: translate(-30px, 40px) scale(1.1);
    }

    50% {
        transform: translate(20px, -30px) scale(0.9);
    }

    75% {
        transform: translate(-40px, -20px) scale(1.05);
    }
}

@keyframes floatOrb2 {

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

    33% {
        transform: translate(50px, -40px) scale(1.15);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.85);
    }
}

@keyframes floatOrb3 {

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

    50% {
        transform: translate(40px, 50px) rotate(180deg);
    }
}

.features-section::before,
.about-section::before,
section#models::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 50px 50px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 150px 150px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 250px 100px, rgba(255, 255, 255, 0.5), transparent);
    background-size: 300px 300px;
    animation: starsMove 180s linear infinite;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.z-10 {
    z-index: 10 !important;
}

.landing-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 60px;
}

.landing-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
}

.landing-nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.landing-brand {
    font-size: 24px;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.landing-logo-img {
    height: 32px;
    width: auto;
}

.landing-nav-links {
    display: flex;
    gap: 24px;
}

.landing-nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.2s;
}

.landing-nav-links a:hover {
    color: white;
}

.btn-try-landing {
    padding: 8px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    background: transparent;
}

.btn-try-landing:hover {
    background: white;
    color: black;
    border-color: white;
}

.landing-bg-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 150%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
    z-index: 1;
    filter: blur(100px);
}

.features-bg-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
    z-index: 0;
    filter: blur(100px);
}

.models-bg-glow {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 70%;
    height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

.about-bg-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(120px);
}

.landing-big-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 23vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    z-index: 0;
    user-select: none;
    white-space: nowrap;
    letter-spacing: -10px;
}

.landing-section-big-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.015);
    pointer-events: none;
    z-index: 0;
    user-select: none;
    white-space: nowrap;
    letter-spacing: -5px;
}

.landing-content-wrapper {
    max-width: 700px;
    width: 100%;
    z-index: 20;
}

.landing-search-box-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.landing-search-box {
    background: rgba(20, 20, 25, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 6px 6px 6px 24px;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    height: 64px;
}

.landing-search-box:focus-within {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    background: rgba(30, 30, 35, 0.9);
}

.landing-input {
    background: transparent;
    border: none;
    color: #fff;
    flex: 1;
    outline: none;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.landing-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.landing-send-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: 12px;
}

.landing-input:not(:placeholder-shown)~.landing-send-btn {
    background: white;
    color: black;
}

.landing-send-btn:hover:not(:disabled) {
    transform: scale(1.05);
}

.landing-send-btn:disabled {
    opacity: 0.5;
    cursor: default;
}

.landing-input-loader {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 0 24px 24px;
    animation: loading-slide 1.5s infinite;
    display: none;
}

@keyframes loading-slide {
    0% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(200%);
    }
}

.landing-response-container {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 100%;
}

.landing-response-card {
    background: rgba(20, 20, 25, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    color: #e2e8f0;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
}

.response-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #d1d5db;
}

.response-content p {
    margin-bottom: 0.75rem;
}

.response-content ul {
    padding-left: 1.2rem;
    margin-bottom: 0.75rem;
}

.response-content strong {
    color: #f3f4f6;
    font-weight: 600;
}

.feature-card {
    background: rgba(20, 20, 25, 0.6) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 2.5rem !important;
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    background: rgba(35, 35, 45, 0.85) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}

.feature-title {
    color: #ffffff !important;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.feature-description {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.95rem;
}

.feature-tags {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: all 0.2s;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
}

.landing-bottom-bar {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0 40px;
    pointer-events: none;
}

.landing-scroll-down a {
    color: white;
    font-size: 1.2rem;
    display: block;
    animation: bounce 2s infinite;
    pointer-events: auto;
}

.landing-info-text {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    line-height: 1.5;
}

.landing-bottom-buttons {
    display: flex;
    gap: 16px;
    pointer-events: auto;
}

.btn-bottom-action {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.2s;
    text-transform: uppercase;
}

.btn-bottom-action:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.about-text {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

.landing-footer {
    background-color: #040914;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    z-index: 10;
}

.landing-footer .footer-big-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.landing-footer .text-muted {
    color: rgba(255, 255, 255, 0.4) !important;
}

.landing-footer a {
    transition: color 0.2s;
}

.landing-footer a:hover {
    color: white !important;
}

.hero-fade-in {
    opacity: 0;
    animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-fade-in-delay-1 {
    animation-delay: 0.2s;
}

.hero-fade-in-delay-2 {
    animation-delay: 0.4s;
}

.hero-fade-in-delay-3 {
    animation-delay: 0.6s;
}

.hero-fade-in-delay-4 {
    animation-delay: 0.8s;
}

.hero-fade-in-delay-5 {
    animation-delay: 1s;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-scale-in {
    opacity: 0;
    transform: scale(0.95);
    animation: heroScaleIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-scale-in-delay-1 {
    animation-delay: 0.3s;
}

.hero-scale-in-delay-2 {
    animation-delay: 0.5s;
}

@keyframes heroScaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

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

.hero-glow-in {
    opacity: 0;
    animation: heroGlowIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroGlowIn {
    from {
        opacity: 0;
        filter: blur(100px) brightness(0);
    }

    to {
        opacity: 1;
        filter: blur(100px) brightness(1);
    }
}

.hero-orb-in-1 {
    opacity: 0;
    animation: heroOrbIn1 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

@keyframes heroOrbIn1 {
    from {
        opacity: 0;
        transform: translate(-50px, -50px) scale(0.5);
    }

    to {
        opacity: 0.4;
        transform: translate(0, 0) scale(1);
    }
}

.hero-orb-in-2 {
    opacity: 0;
    animation: heroOrbIn2 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

@keyframes heroOrbIn2 {
    from {
        opacity: 0;
        transform: translate(50px, 50px) scale(0.5);
    }

    to {
        opacity: 0.4;
        transform: translate(0, 0) scale(1);
    }
}

.hero-orb-in-3 {
    opacity: 0;
    animation: heroOrbIn3 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

@keyframes heroOrbIn3 {
    from {
        opacity: 0;
        transform: translate(30px, -30px) scale(0.5);
    }

    to {
        opacity: 0.4;
        transform: translate(0, 0) scale(1);
    }
}

.hero-big-text-in {
    opacity: 0;
    animation: heroBigTextIn 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

@keyframes heroBigTextIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.1);
        letter-spacing: -15px;
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        letter-spacing: -10px;
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.scroll-reveal-delay-1 {
    transition-delay: 0.1s;
}

.scroll-reveal-delay-2 {
    transition-delay: 0.2s;
}

.scroll-reveal-delay-3 {
    transition-delay: 0.3s;
}

.scroll-reveal-delay-4 {
    transition-delay: 0.4s;
}

.scroll-reveal-delay-5 {
    transition-delay: 0.5s;
}

.scroll-reveal-delay-6 {
    transition-delay: 0.6s;
}

@media (max-width: 768px) {
    .landing-bg-glow {
        display: none;
    }

    .landing-floating-orb {
        display: none;
    }

    .landing-big-text {
        font-size: 18vw;
        letter-spacing: -5px;
    }

    .landing-nav {
        padding: 16px 20px;
    }

    .landing-nav-links {
        display: none;
    }

    .landing-content-wrapper {
        padding: 0 20px;
    }

    .landing-search-box {
        height: 56px;
        padding: 5px 5px 5px 20px;
    }

    .landing-input {
        font-size: 1rem;
    }

    .landing-send-btn {
        width: 44px;
        height: 44px;
    }

    .feature-card {
        padding: 1.5rem !important;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .landing-bottom-bar {
        bottom: 20px;
        padding: 0 20px;
    }

    .features-bg-glow,
    .models-bg-glow,
    .about-bg-glow {
        display: none;
    }
}

.demo-showcase {
    max-width: 700px;
    margin: 0 auto;
}

.demo-card {
    background: rgba(15, 15, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.demo-card.switching {
    opacity: 0;
    transform: scale(0.98) translateY(4px);
}

.demo-question {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    margin-bottom: 20px;
    color: white;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.demo-question i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.demo-answer {
    padding: 20px;
    background: rgba(20, 20, 25, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-answer-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-ai-logo {
    height: 22px;
    width: auto;
}

.demo-agent {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.demo-answer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.65;
}

.demo-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.demo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.demo-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.demo-dot.active {
    background: #3b82f6;
    transform: scale(1.3);
}

.demo-cta {
    text-align: center;
    margin-top: 28px;
}

.demo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.demo-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.35);
    color: white;
}

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

    .demo-question {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .demo-answer {
        padding: 16px;
    }

    .demo-cta-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}