.demo-item--fullimg .demo-image--fullimg {
    height: 350px;
    object-fit: contain;
    background: #222;
    display: block;
}

.demo-item--fullimg .demo-content--squeezed {
    max-height: 110px;
    overflow: hidden;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background-color: #111827;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(17, 24, 39, 0.98);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    will-change: transform;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #e5e7eb;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.4);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #9ca3af;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #a78bfa;
}

/* Navigation contact button */
.nav-contact-btn {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    margin-left: 1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    line-height: 1.2 !important;
}

.nav-contact-btn:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: #e5e7eb;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #1f2937;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    z-index: 999;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.mobile-menu.active {
    max-height: 400px;
    opacity: 1;
}

.mobile-menu a {
    padding: 1rem 2rem;
    text-decoration: none;
    color: #9ca3af;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu a:hover {
    color: #a78bfa;
    background: rgba(167, 139, 250, 0.1);
}

/* Mobile menu contact button */
.mobile-menu .nav-contact-btn {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
    padding: 0.75rem 1rem !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    margin: 0.5rem 0 !important;
    display: block !important;
    text-align: center !important;
}

.mobile-menu .nav-contact-btn:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
}

/* Mobile Header Improvements */
@media (max-width: 768px) {
    .nav {
        padding: 0.75rem 1rem;
    }

    .nav-brand {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.5rem 1rem;
    }

    .nav-brand {
        font-size: 1rem;
    }

    .brand-name {
        font-size: 0.9rem;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 360px) {
    .brand-name {
        display: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    position: relative;
    color: white;
    padding: 8rem 0 6rem 0;
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 100%;
    animation: fadeInRight 1s ease-out 0.5s both;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    will-change: transform, opacity;
}

.hero-image {
    width: 140%;
    max-width: 950px;
    height: auto;
    border-radius: 15px;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
    object-fit: contain;
    will-change: transform, filter;
}

.hero-image:hover {
    transform: translateY(-5px) scale(1.02);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

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

@keyframes float {

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

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

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

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

.highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s ease-in-out infinite;
    will-change: background-position;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
    line-height: 1.6;
}

.hero-stats {
    display: none;
}



.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-bottom: 0.5rem;
    align-self: flex-start;
    max-width: 500px;
}

.cta-micro-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    margin: 0.5rem 0 3rem 0;
    font-weight: 400;
    opacity: 0.8;
    max-width: 500px;
    align-self: flex-start;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-primary,
.cta-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-primary::before,
.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover::before,
.cta-secondary:hover::before {
    left: 100%;
}

.cta-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4), 0 0 0 2px rgba(255, 107, 53, 0.2);
    font-size: 1.1rem;
    font-weight: 800;
    padding: 1.2rem 2.5rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s ease-in-out infinite;
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6), 0 0 0 3px rgba(255, 107, 53, 0.3), 0 0 30px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff5722 0%, #ff6b35 50%, #ff5722 100%);
    background-size: 200% 200%;
    animation: pulse-glow 1s ease-in-out infinite, shimmer-fast 1.5s linear infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4), 0 0 0 2px rgba(255, 107, 53, 0.2);
    }

    50% {
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6), 0 0 0 3px rgba(255, 107, 53, 0.4);
    }
}

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

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

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

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-left {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }



    .hero-cta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 300px;
        margin: 0 auto 0.5rem auto;
        gap: 1rem;
    }

    .cta-secondary {
        display: none;
    }

    .cta-primary {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .cta-micro-text {
        text-align: center;
        margin: 0.5rem auto 2.5rem auto;
        max-width: 300px;
    }

    .hero-graphic {
        max-width: 1100px;
        order: -1;
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .demo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 4rem 0 4rem 0;
    }

    .hero-content {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .hero-graphic {
        max-width: 850px;
        margin: 1rem auto;
    }

    .hero-image {
        min-height: 400px;
        border-radius: 10px;
    }



    .hero-cta {
        max-width: 250px;
        gap: 0.75rem;
        margin: 0 auto 0.5rem auto;
        flex-direction: column;
        align-items: center;
    }

    .cta-secondary {
        display: none;
    }

    .cta-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 800;
        letter-spacing: 0.3px;
        width: 100%;
        text-align: center;
    }

    .cta-micro-text {
        text-align: center;
        margin: 0.5rem auto 2rem auto;
        max-width: 250px;
    }

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

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

    .pricing-card {
        padding: 1.25rem;
    }

    .demo-grid {
        gap: 1.25rem;
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #f9fafb;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: #9ca3af;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Demo Video Section */
.demo-video {
    padding: 6rem 0;
    background: #0f172a;
    position: relative;
}

.demo-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
}

.video-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #a78bfa, #ec4899);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(167, 139, 250, 0.2);
    transition: all 0.4s ease;
    background: #000;
}

.video-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6);
    border-color: rgba(167, 139, 250, 0.4);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

@media (max-width: 768px) {
    .video-title {
        font-size: 2rem;
    }

    .video-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .demo-video {
        padding: 4rem 0;
    }

    .video-wrapper {
        border-radius: 12px;
        margin: 0 20px;
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #1f2937;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(145deg, #374151, #2d3748);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(167, 139, 250, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpStaggered 0.8s ease-out forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(167, 139, 250, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(167, 139, 250, 0.3);
    border-color: #a78bfa;
    background: linear-gradient(145deg, #4a5568, #374151);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.feature-icon-img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f9fafb;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: #d1d5db;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Mobile optimizations for features */
@media (max-width: 768px) {
    .features {
        padding: 6rem 0 4rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 1.5rem;
        /* Disable hover effects on mobile */
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }

    .feature-card:hover {
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
        background: linear-gradient(145deg, #374151, #2d3748) !important;
    }

    .feature-icon {
        height: 60px;
        width: 60px;
        margin: 0 auto 1rem;
        /* Ensure icon stays within bounds */
        position: static;
        overflow: hidden;
    }

    .feature-icon-img {
        width: 24px;
        height: 24px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 5rem 0 3rem 0;
    }

    .features-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .feature-card {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .feature-icon {
        height: 50px;
        width: 50px;
        border-radius: 15px;
    }

    .feature-icon-img {
        width: 20px;
        height: 20px;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}

/* Shadow AI Problem Section */
.shadow-ai-problem {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    color: white;
    position: relative;
}

.shadow-ai-problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.problem-content {
    position: relative;
    z-index: 1;
}

.problem-header {
    text-align: center;
    margin-bottom: 3rem;
}

.problem-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-red {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

.problem-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(167, 139, 250, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    border-color: rgba(167, 139, 250, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.stat-item.cost-highlight {
    border-color: rgba(167, 139, 250, 0.4);
    background: rgba(167, 139, 250, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-number.red {
    background: linear-gradient(45deg, #a78bfa, #c4b5fd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-number.cost {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    color: #d1d5db;
    line-height: 1.3;
    font-size: 0.9rem;
}

.risk-cascade {
    max-width: 800px;
    margin: 0 auto;
}

.cascade-title {
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #f9fafb;
}

.cascade-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.cascade-step {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 500px;
    width: 100%;
    transition: all 0.3s ease;
}

.cascade-step.danger {
    border-color: rgba(167, 139, 250, 0.4);
    background: rgba(167, 139, 250, 0.1);
}

.cascade-step.warning {
    border-color: rgba(196, 181, 253, 0.4);
    background: rgba(196, 181, 253, 0.1);
}

.cascade-step.critical {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.1);
}

.cascade-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cascade-text {
    color: #d1d5db;
    line-height: 1.4;
    font-size: 0.95rem;
}

.fine-amount {
    background: linear-gradient(45deg, #a78bfa, #c4b5fd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.cascade-arrow {
    color: #9ca3af;
    font-size: 1.25rem;
    font-weight: bold;
    opacity: 0.7;
}

/* Solution Preview Section */
.solution-preview {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.solution-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-check {
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text {
    color: #d1d5db;
    line-height: 1.5;
}

.mock-ui {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 500px;
}

.ui-header {
    background: #e5e7eb;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d1d5db;
}

.ui-title {
    font-weight: 600;
    color: #374151;
}

.ui-controls {
    display: flex;
    gap: 0.5rem;
}

.ui-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.ui-dot.red {
    background: #ef4444;
}

.ui-dot.yellow {
    background: #f59e0b;
}

.ui-dot.green {
    background: #10b981;
}

.ui-content {
    padding: 1.5rem;
    background: white;
}

.ui-message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ui-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ui-text {
    color: #374151;
    line-height: 1.5;
    padding: 0.5rem;
}

.ui-alert {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid #3b82f6;
    border-radius: 8px;
    overflow: hidden;
}

.alert-content {
    padding: 1rem;
}

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

.alert-icon {
    color: #3b82f6;
}

.alert-title {
    font-weight: 600;
    color: #1e40af;
    flex: 1;
}

.alert-close {
    color: #6b7280;
    cursor: pointer;
    font-weight: bold;
}

.alert-body p {
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.detected-info {
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.detected-info strong {
    color: #374151;
    display: block;
    margin-bottom: 0.5rem;
}

.redacted-text {
    color: #6b7280;
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.4;
}

.alert-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-continue,
.btn-edit {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-continue {
    background: #3b82f6;
    color: white;
}

.btn-continue:hover {
    background: #2563eb;
}

.btn-edit {
    background: transparent;
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.btn-edit:hover {
    background: #3b82f6;
    color: white;
}

@media (max-width: 768px) {
    .problem-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cascade-step {
        flex-direction: column;
        text-align: center;
    }

    .solution-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .solution-title {
        font-size: 2rem;
    }

    .mock-ui {
        margin: 0 auto;
    }
}

/* Demo Section */
.demo {
    padding: 6rem 0;
    background: #1f2937;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    background: #374151;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #4b5563;
}

.slideshow-wrapper {
    position: relative;
    height: 800px;
    overflow: hidden;
}

.slide {
    display: none;
    position: relative;
    height: 100%;
    animation: slideIn 0.5s ease-in-out;
}

.slide.active {
    display: block;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #374151;
}

/* Navigation Buttons */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.nav-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(167, 139, 250, 0.8);
    transform: scale(1.1);
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Dots Indicator */
.dots-container {
    text-align: center;
    padding: 1.5rem;
    background: #374151;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #6b7280;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #a78bfa;
    transform: scale(1.2);
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

/* Responsive Design */
@media (max-width: 768px) {
    .slideshow-container {
        max-width: 95%;
    }

    .slideshow-wrapper {
        height: 500px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Founder Bio Section */
.founder-bio {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
}

.founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-image {
    position: relative;
}

.founder-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid transparent;
    background: linear-gradient(135deg, #ff9d4d 0%, #ff6b35 100%) padding-box,
        linear-gradient(135deg, #ff9d4d 0%, #ff6b35 100%) border-box;
}

.founder-text {
    max-width: 600px;
}

.founder-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff9d4d 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.founder-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

.founder-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.founder-description:last-child {
    margin-bottom: 0;
}

.founder-description.strong {
    font-weight: 600;
    color: #f9fafb;
    font-size: 1.2rem;
}

/* Mobile responsiveness for founder bio */
@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .founder-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .founder-photo {
        height: 250px;
    }

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

    .founder-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .founder-description {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .founder-bio {
        padding: 4rem 0;
    }

    .founder-image {
        max-width: 200px;
    }

    .founder-photo {
        height: 200px;
    }

    .founder-title {
        font-size: 1.5rem;
    }

    .founder-subtitle {
        font-size: 1.1rem;
    }

    .founder-description {
        font-size: 0.95rem;
    }

    .founder-description.strong {
        font-size: 1.05rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(156, 163, 175, 0.3);
    border-radius: 12px 12px 0 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(156, 163, 175, 0.5);
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Subtle tier differentiation with gradients */
.pricing-card.tier-free {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(31, 41, 55, 0.8) 100%);
    border-color: rgba(16, 185, 129, 0.2);
}

.pricing-card.tier-free::before {
    background: rgba(16, 185, 129, 0.6);
}

.pricing-card.tier-small {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(31, 41, 55, 0.8) 100%);
    border-color: rgba(99, 102, 241, 0.2);
}

.pricing-card.tier-small::before {
    background: rgba(99, 102, 241, 0.6);
}

.pricing-card.tier-medium {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(31, 41, 55, 0.8) 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.pricing-card.tier-medium::before {
    background: rgba(59, 130, 246, 0.6);
}

.pricing-card.tier-large {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(31, 41, 55, 0.8) 100%);
    border-color: rgba(245, 158, 11, 0.2);
}

.pricing-card.tier-large::before {
    background: rgba(245, 158, 11, 0.6);
}

.pricing-card.tier-global {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(31, 41, 55, 0.8) 100%);
    border-color: rgba(239, 68, 68, 0.2);
}

.pricing-card.tier-global::before {
    background: rgba(239, 68, 68, 0.6);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.pricing-card li {
    padding: 0.375rem 0;
    color: #d1d5db;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
}

.pricing-card li:before {
    content: "✓";
    color: #10b981;
    font-weight: 600;
    font-size: 0.875rem;
}

.pricing-card.featured {
    border-color: rgba(156, 163, 175, 0.5);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-featured {

    0%,
    100% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
            0 6px 24px rgba(167, 139, 250, 0.3);
    }

    50% {
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5),
            0 8px 32px rgba(167, 139, 250, 0.5);
    }
}

.pricing-card.enterprise {
    border-color: rgba(156, 163, 175, 0.4);
    background: rgba(31, 41, 55, 0.8);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(75, 85, 99, 0.9);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes bounce-badge {

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

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

.pricing-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f9fafb;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 0.25rem;
}

.period {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 400;
}

.price-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.pricing-users {
    font-size: 1rem;
    font-weight: 500;
    color: #d1d5db;
    margin: 1rem 0;
    text-align: center;
    padding: 0.75rem;
    background: rgba(31, 41, 55, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.pricing-cta {
    width: 100%;
    background: rgba(75, 85, 99, 0.8);
    color: white;
    border: none;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-cta:hover {
    background: rgba(55, 65, 81, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pricing-card.enterprise .pricing-cta {
    background: rgba(75, 85, 99, 0.8);
}

.pricing-card.enterprise .pricing-cta:hover {
    background: rgba(55, 65, 81, 0.9);
}

/* Subtle tier-specific button variations */
.pricing-card.tier-free .pricing-cta {
    background: rgba(16, 185, 129, 0.8);
    color: white;
}

.pricing-card.tier-free .pricing-cta:hover {
    background: rgba(16, 185, 129, 0.9);
}

.pricing-card.tier-small .pricing-cta {
    background: rgba(99, 102, 241, 0.8);
    color: white;
}

.pricing-card.tier-small .pricing-cta:hover {
    background: rgba(99, 102, 241, 0.9);
}

.pricing-card.tier-medium .pricing-cta {
    background: rgba(59, 130, 246, 0.8);
    color: white;
}

.pricing-card.tier-medium .pricing-cta:hover {
    background: rgba(59, 130, 246, 0.9);
}

.pricing-card.tier-large .pricing-cta {
    background: rgba(245, 158, 11, 0.8);
    color: white;
}

.pricing-card.tier-large .pricing-cta:hover {
    background: rgba(245, 158, 11, 0.9);
}

.pricing-card.tier-global .pricing-cta {
    background: rgba(239, 68, 68, 0.8);
    color: white;
}

.pricing-card.tier-global .pricing-cta:hover {
    background: rgba(239, 68, 68, 0.9);
}

/* Individual tier color schemes */
.pricing-card.tier-free {
    border-color: #10b981;
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

.modal-content {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    margin: 2% auto;
    padding: 2.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 650px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 157, 77, 0.2);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }

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

.modal-content h2 {
    color: #ff9d4d;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #ff9d4d 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.close {
    color: #9ca3af;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close:hover {
    color: #ff9d4d;
    background: rgba(255, 157, 77, 0.1);
    transform: rotate(90deg);
}

.plan-info {
    background: linear-gradient(135deg, #ff9d4d 0%, #ff6b35 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 157, 77, 0.3);
    position: relative;
    overflow: hidden;
}

.plan-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #f9fafb;
    font-size: 1rem;
    position: relative;
}

.form-group label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff9d4d 0%, #ff6b35 100%);
    transition: width 0.3s ease;
}

.form-group:focus-within label::after {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #4b5563;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #1f2937;
    color: #e5e7eb;
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff9d4d;
    box-shadow: 0 0 0 3px rgba(255, 157, 77, 0.1);
    background: #111827;
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    opacity: 0.8;
}

.form-summary {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    color: #f9fafb;
    border: 1px solid #6b7280;
    position: relative;
    overflow: hidden;
}

.form-summary::before {
    content: '✨';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.6;
}

.form-summary h3 {
    color: #ff9d4d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #6b7280;
    font-size: 1rem;
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ff9d4d;
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.summary-item span:last-child {
    font-weight: 600;
}

.purchase-submit {
    width: 100%;
    background: linear-gradient(135deg, #ff9d4d 0%, #ff6b35 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 157, 77, 0.4);
}

.purchase-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.purchase-submit:hover::before {
    left: 100%;
}

.purchase-submit:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #e55100 100%);
    box-shadow: 0 12px 35px rgba(255, 157, 77, 0.5);
    transform: translateY(-2px);
}

.purchase-submit:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(255, 157, 77, 0.4);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand .logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
}

.footer-brand .brand-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: #e5e7eb;
}

.footer-brand p {
    margin-top: 0;
    color: #ccc;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        display: none;
        /* Hide stat tiles on tablet and mobile */
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .demo-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 6rem 0 4rem 0;
    }

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

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

    /* Hide stat tiles on mobile - they look cramped */
    .hero-stats {
        display: none;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Product Slideshow Section */
.slideshow-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.slideshow-container {
    position: relative;
    max-width: 2000px;
    margin: 0 auto;
    background: #1f2937;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(167, 139, 250, 0.2);
    pointer-events: auto;
}

.slideshow-wrapper {
    position: relative;
    height: 1125px;
    overflow: hidden;
    pointer-events: none;
}

.slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #1f2937;
    border-radius: 16px;
}

/* Navigation arrows */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.slideshow-nav:hover {
    background: rgba(167, 139, 250, 0.9);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(167, 139, 250, 0.3);
}

.slideshow-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.slideshow-nav.prev {
    left: 20px;
}

.slideshow-nav.next {
    right: 20px;
}

/* Slide indicators */
.slideshow-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.dot.active,
.dot:hover {
    background: #a78bfa;
    border-color: #a78bfa;
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.4);
}

/* Slideshow animations */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

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

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .slideshow-section {
        padding: 4rem 0;
    }

    .slideshow-container {
        max-width: 95%;
        margin: 0 auto;
        border-radius: 12px;
    }

    .slideshow-wrapper {
        height: 750px;
    }

    .slideshow-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .slideshow-nav.prev {
        left: 10px;
    }

    .slideshow-nav.next {
        right: 10px;
    }

    .slideshow-indicators {
        bottom: 15px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slideshow-wrapper {
        height: 450px;
    }

    .slideshow-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slideshow-nav.prev {
        left: 5px;
    }

    .slideshow-nav.next {
        right: 5px;
    }

    .slideshow-indicators {
        bottom: 10px;
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Modal Mobile Responsiveness */
@media (max-width: 768px) {
    .modal-content {
        margin: 1% auto;
        padding: 1.5rem;
        width: 95%;
        max-width: none;
        border-radius: 12px;
    }

    .modal-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .close {
        right: 1rem;
        top: 1rem;
        font-size: 28px;
        width: 35px;
        height: 35px;
    }

    .plan-info {
        padding: 1rem;
        font-size: 1rem;
    }

    .form-summary {
        padding: 1.5rem;
    }

    .form-summary h3 {
        font-size: 1.1rem;
    }

    .purchase-submit {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        max-height: 100vh;
    }

    .modal-content h2 {
        font-size: 1.4rem;
        text-align: left;
        margin-right: 2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
    }

    .purchase-submit {
        padding: 1rem;
        font-size: 1rem;
        letter-spacing: 0.25px;
    }
}

.feature-card,
.pricing-card,
.demo-item {
    animation: fadeInUp 0.6s ease forwards;
}