/* CSS Variables - Design System */
:root {
    --background: 0 0% 100%;
    --foreground: 240 10% 10%;
    --card: 0 0% 100%;
    --card-foreground: 240 10% 10%;
    --popover: 0 0% 100%;
    --popover-foreground: 240 10% 10%;
    --primary: 214 100% 50%;
    --primary-foreground: 0 0% 100%;
    --primary-light: 214 100% 60%;
    --primary-dark: 214 100% 40%;
    --secondary: 220 15% 96%;
    --secondary-foreground: 240 10% 10%;
    --accent: 199 89% 48%;
    --accent-foreground: 0 0% 100%;
    --accent-light: 199 89% 60%;
    --muted: 220 15% 96%;
    --muted-foreground: 240 5% 45%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 220 13% 91%;
    --input: 220 13% 91%;
    --ring: 214 100% 50%;
    --radius: 1rem;
    --gradient-hero: linear-gradient(135deg, hsl(214 100% 50%), hsl(199 89% 48%));
    --gradient-card: linear-gradient(135deg, hsl(214 100% 98%), hsl(199 89% 98%));
    --gradient-mesh: radial-gradient(at 0% 0%, hsl(214 100% 50% / 0.2) 0px, transparent 50%),
                     radial-gradient(at 100% 0%, hsl(199 89% 48% / 0.2) 0px, transparent 50%),
                     radial-gradient(at 100% 100%, hsl(214 100% 50% / 0.2) 0px, transparent 50%),
                     radial-gradient(at 0% 100%, hsl(199 89% 48% / 0.2) 0px, transparent 50%);
    --shadow-card: 0 4px 20px -4px hsl(240 10% 10% / 0.08);
    --shadow-card-hover: 0 8px 30px -4px hsl(240 10% 10% / 0.12);
    --shadow-lg: 0 20px 40px -10px hsl(240 10% 10% / 0.15);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--gradient-mesh);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid hsl(var(--border) / 0.3);
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: hsl(var(--background) / 0.9);
    pointer-events: none;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    height: 4rem;
    position: relative;
    z-index: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: hsl(var(--foreground));
}

.logo-img {
    /* width: 4.5rem; */
    height: 3.5rem;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: hsl(var(--foreground));
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: hsl(var(--primary));
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: hsl(var(--primary));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-connect {
    padding: 0.5rem 1rem!important;
    font-size: 0.8rem;
    border-radius: 9999px;
    transition: all 0.2s ease;
    height: 38px!important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-connect:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -4px hsl(var(--primary) / 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: hsl(var(--foreground));
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
    background: hsl(var(--secondary));
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: hsl(var(--background));
        border-top: 1px solid hsl(var(--border));
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-connect {
        width: 100%;
        justify-content: center;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    font-size: 16px;
    padding-top: 4rem; /* Add padding for fixed navbar */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Animations */
@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.6s ease-out;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    overflow: hidden;
    background: var(--gradient-mesh);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        hsl(var(--primary) / 0.1) 30%,
        hsl(var(--accent) / 0.1) 50%,
        hsl(var(--primary) / 0.1) 70%,
        transparent 100%);
    clip-path: ellipse(140% 80% at 0% 0%);
    border-radius: 100% 0% 0% 0% / 100% 0% 0% 0%;
    animation: diagonal-wave 8s ease-in-out infinite;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, hsl(var(--primary)) 2px, transparent 2px),
                radial-gradient(circle at 40% 30%, hsl(var(--accent)) 2px, transparent 2px),
                radial-gradient(circle at 60% 40%, hsl(var(--primary)) 2px, transparent 2px),
                radial-gradient(circle at 80% 50%, hsl(var(--accent)) 2px, transparent 2px);
    animation: wave-dots 12s linear infinite;
    pointer-events: none;
}

@keyframes wave-dots {
    0% {
        transform: translateX(0%) translateY(0%);
    }
    25% {
        transform: translateX(25%) translateY(25%);
    }
    50% {
        transform: translateX(50%) translateY(50%);
    }
    75% {
        transform: translateX(75%) translateY(75%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

@keyframes diagonal-wave {
    0%, 100% {
        transform: translateX(-20px) translateY(10px);
        opacity: 0.3;
    }
    50% {
        transform: translateX(20px) translateY(-10px);
        opacity: 0.7;
    }
}

.hero-decorations {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
}

.decoration-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: hsl(var(--primary) / 0.1);
}

.decoration-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--accent) / 0.1);
}

.decoration-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, hsl(var(--border)) 1px, transparent 1px),
                linear-gradient(to bottom, hsl(var(--border)) 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, #000 70%, transparent 100%);
    opacity: 0.2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding-top: 6rem;
}

.hero-text {
    text-align: left;
}

.hero-visual {
    text-align: center;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid hsl(var(--primary) / 0.2);
    background: hsl(var(--primary) / 0.05);
    backdrop-filter: blur(4px);
    margin-bottom: 2rem;
    animation: fade-in 0.6s ease-out;
}

.ai-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--primary));
}

.sparkles-icon {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--primary));
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
    animation: fade-in 0.6s ease-out;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)), hsl(var(--primary)), hsl(var(--primary-light)));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite, lightGlow 2s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 0 3px rgba(22, 119, 255, 0.2));
    text-shadow: 0 0 8px rgba(22, 119, 255, 0.15);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes lightGlow {
    0% {
        filter: drop-shadow(0 0 3px rgba(22, 119, 255, 0.2));
        text-shadow: 0 0 8px rgba(22, 119, 255, 0.15);
    }
    50% {
        filter: drop-shadow(0 0 6px rgba(22, 119, 255, 0.4));
        text-shadow: 0 0 15px rgba(22, 119, 255, 0.3);
    }
    100% {
        filter: drop-shadow(0 0 3px rgba(22, 119, 255, 0.2));
        text-shadow: 0 0 8px rgba(22, 119, 255, 0.15);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 3rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
    animation: fade-in 0.6s ease-out;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
    animation: fade-in 0.6s ease-out;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    padding: 1rem 1.5rem;
    height: auto;
}

.btn-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: 0 10px 15px -3px hsl(240 10% 10% / 0.1);
}

.btn-primary:hover {
    background: hsl(var(--primary-light));
    box-shadow: 0 20px 25px -5px hsl(240 10% 10% / 0.1);
}

.btn-outline {
    border: 2px solid hsl(var(--border));
    color: hsl(var(--foreground));
    background: transparent;
}

.btn-outline:hover {
    background: hsl(var(--secondary));
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 0.95rem;
}

.btn-icon {
    margin-left: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
}

.hero-screenshot {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    animation: fade-in 0.6s ease-out;
}

.screenshot-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.2;
    filter: blur(3rem);
}

.screenshot-content {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid hsl(var(--border));
    box-shadow: var(--shadow-lg);
    background: hsl(var(--card));
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: hsl(var(--secondary) / 0.3);
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    max-height: 80vh;
    background: hsl(var(--background));
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.modal-content video {
    width: 100%;
    height: auto;
    display: block;
}


.calendly-modal .modal-content {
    max-width: 960px;
    width: 100%;
    height: 90vh;
    max-height: 90vh;
    padding: 3.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.calendly-embed {
    flex: 1;
    height: 100%;
    min-height: 0;
}

.calendly-embed iframe {
    border: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
}

.gallery-modal .modal-content {
    max-width: 1100px;
    width: 100%;
    padding: 2rem;
    background: hsl(var(--background));
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image-container {
    width: 100%;
    max-height: 70vh;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    background: hsl(var(--secondary) / 0.15);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: translateX(0);
}

.gallery-slide-in {
    animation: gallerySlideIn 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    will-change: transform;
}

@keyframes gallerySlideIn {
    0% {
        transform: translateX(20%);
    }
    100% {
        transform: translateX(0);
    }
}

.gallery-image-container img:not(.gallery-slide-in) {
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    .gallery-slide-in {
        animation: none;
    }
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: none;
    background: hsl(var(--background) / 0.85);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
    color: hsl(var(--foreground));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-nav:hover {
    transform: translateY(-50%) scale(1.05);
    background: hsl(var(--background));
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.gallery-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background: hsl(var(--muted-foreground) / 0.3);
    transition: all 0.2s ease;
    cursor: pointer;
}

.gallery-indicator:hover {
    background: hsl(var(--muted-foreground) / 0.6);
}

.gallery-indicator.active {
    background: hsl(var(--primary));
    transform: scale(1.15);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Mobile Modal */
@media (max-width: 768px) {
    .video-modal {
        padding: 1rem;
    }
    
    .modal-content {
        max-height: 70vh;
    }
    
    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }

    .calendly-modal .modal-content {
        padding: 2.5rem 1rem 1rem;
        height: 80vh;
    }
    
    .calendly-embed {
        min-height: 0;
    }

    .gallery-modal .modal-content {
        padding: 1.5rem 1rem;
    }

    .gallery-nav {
        width: 3rem;
        height: 3rem;
    }

    .gallery-prev {
        left: 0.5rem;
    }

    .gallery-next {
        right: 0.5rem;
    }

    .gallery-image-container {
        max-height: 60vh;
        aspect-ratio: auto;
    }
}

.screenshot-placeholder {
    aspect-ratio: 16/9;
    background: var(--gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.placeholder-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    background: var(--gradient-hero);
    opacity: 0.1;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 48rem;
    margin: 5rem auto 15px;
    padding-top: 3rem;
    border-top: 1px solid hsl(var(--border) / 0.5);
    animation: fade-in 0.6s ease-out;
}

.stat {
    text-align: center;
    animation: slideInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.stat:nth-child(1) {
    animation-delay: 0.2s;
}

.stat:nth-child(2) {
    animation-delay: 0.4s;
}

.stat:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    animation: countUp 1.2s ease-out;
    animation-fill-mode: both;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    font-weight: 300;
}

/* Problem Section */
.problem-section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 1.95rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    /* margin-bottom: 1rem; */
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.6rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    font-weight: 300;
    line-height: 1.6;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.problem-stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05), hsl(var(--accent) / 0.05));
    border: 2px solid hsl(var(--primary) / 0.2);
    border-radius: 1.5rem;
    box-shadow: 0 4px 16px -4px hsl(var(--primary) / 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-number {
    opacity: 0;
    transform: translateY(20px);
    animation: switchStyleFade 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.problem-stat-card:nth-child(1) .problem-number {
    animation-delay: 0.1s;
}

.problem-stat-card:nth-child(2) .problem-number {
    animation-delay: 0.3s;
}

.problem-stat-card:nth-child(3) .problem-number {
    animation-delay: 0.5s;
}

.problem-stat-card p {
    opacity: 0;
    transform: translateY(15px);
    animation: switchStyleFade 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.problem-stat-card:nth-child(1) p {
    animation-delay: 0.3s;
}

.problem-stat-card:nth-child(2) p {
    animation-delay: 0.5s;
}

.problem-stat-card:nth-child(3) p {
    animation-delay: 0.7s;
}

@keyframes switchStyleFade {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-2px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.problem-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
}

.problem-stat-card:hover {
    box-shadow: 0 8px 24px -4px hsl(var(--primary) / 0.15);
    transform: translateY(-2px);
    border-color: hsl(var(--primary) / 0.4);
}

.problem-number {
    font-size: 3rem;
    font-weight: 300;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.problem-stat-card p {
    color: hsl(var(--muted-foreground));
    font-weight: 300;
}

/* Solution Section */
.solution-section {
    padding: 8rem 0;
    background: hsl(var(--secondary) / 0.3);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    border: 1px solid hsl(var(--primary) / 0.2);
    background: hsl(var(--primary) / 0.05);
    color: hsl(var(--primary));
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.solution-card {
    padding: 2rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: all 0.2s ease;
}

.solution-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    transition: transform 0.2s ease;
}

.solution-card:hover .card-icon {
    transform: scale(1.1);
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.solution-card p {
    color: hsl(var(--muted-foreground));
    font-weight: 300;
    line-height: 1.6;
}

.feature-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.showcase-content h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .showcase-content h3 {
        font-size: 2.25rem;
    }
}

.showcase-content p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(15px);
    animation: switchStyleFade 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.feature-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-list li:nth-child(2) {
    animation-delay: 0.3s;
}

.feature-list li:nth-child(3) {
    animation-delay: 0.5s;
}

.list-dot {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.list-dot::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: hsl(var(--primary));
}

.feature-list span {
    color: hsl(var(--muted-foreground));
    font-weight: 300;
}

.showcase-visual {
    position: relative;
}

.visual-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.1;
    filter: blur(3rem);
}

.visual-content {
    position: relative;
    padding: 1.5rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.visual-placeholder {
    aspect-ratio: 1;
    border-radius: 0.75rem;
    background: var(--gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.visual-placeholder .placeholder-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    background: var(--gradient-hero);
    opacity: 0.2;
}

.visual-placeholder p {
    color: hsl(var(--muted-foreground));
    font-weight: 300;
    font-size: 0.875rem;
}

.visual-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.75rem;
}

.showcase-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    border-radius: 1rem;
    padding-top: 2rem;
    /* box-shadow: 0 8px 16px -4px hsl(var(--primary) / 0.2); */
}

/* How It Works Section */
.how-it-works-section {
    padding: 8rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto 4rem;
}

.step-card {
    padding: 2rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-hero);
}

.step-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.step-card p {
    color: hsl(var(--muted-foreground));
    font-weight: 300;
    line-height: 1.6;
}

.process-visual {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
}

.ai-workflow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border) / 0.2);
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 200px;
    opacity: 0;
    transform: translateX(-30px);
    animation: switchStyleSlide 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.workflow-step:nth-child(1) {
    animation-delay: 0.1s;
}

.workflow-step:nth-child(3) {
    animation-delay: 0.3s;
}

.workflow-step:nth-child(5) {
    animation-delay: 0.5s;
}

.workflow-step:nth-child(7) {
    animation-delay: 0.7s;
}

.workflow-step h4 {
    opacity: 0;
    transform: translateY(15px);
    animation: switchStyleFade 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.workflow-step:nth-child(1) h4 {
    animation-delay: 0.2s;
}

.workflow-step:nth-child(3) h4 {
    animation-delay: 0.4s;
}

.workflow-step:nth-child(5) h4 {
    animation-delay: 0.6s;
}

.workflow-step:nth-child(7) h4 {
    animation-delay: 0.8s;
}

.workflow-step p {
    opacity: 0;
    transform: translateY(10px);
    animation: switchStyleFade 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.workflow-step:nth-child(1) p {
    animation-delay: 0.3s;
}

.workflow-step:nth-child(3) p {
    animation-delay: 0.5s;
}

.workflow-step:nth-child(5) p {
    animation-delay: 0.7s;
}

.workflow-step:nth-child(7) p {
    animation-delay: 0.9s;
}

@keyframes switchStyleSlide {
    0% {
        opacity: 0;
        transform: translateX(-30px) scale(0.95);
    }
    60% {
        opacity: 0.8;
        transform: translateX(5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.workflow-step:hover {
    border-color: hsl(var(--primary) / 0.3);
}

.step-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    color: hsl(var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.step-icon svg {
    stroke-width: 1;
}

.workflow-step h4 {
    font-size: 1rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.workflow-step p {
    font-size: 0.95rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
    margin: 0;
}

.workflow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 -1rem;
    flex-shrink: 0;
    background: white;
    padding: 0.25rem;
    border-radius: 50%;
    border: 1px solid hsl(var(--primary));
    z-index: 10;
    position: relative;
}

.workflow-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
    margin: 0;
}

/* Tablet AI Workflow */
@media (max-width: 1024px) and (min-width: 769px) {
    .ai-workflow {
        gap: 8px;
    }
    
    .workflow-step {
        padding: 1.25rem 0.75rem;
        min-width: 180px;
    }
    
    .step-icon {
        width: 2.75rem;
        height: 2.75rem;
        margin-bottom: 0.75rem;
    }
    
    .workflow-step h4 {
        font-size: 0.95rem;
    }
    
    .workflow-step p {
        font-size: 0.85rem;
    }
}

/* Mobile AI Workflow */
@media (max-width: 768px) {
    .ai-workflow {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
        margin: 0.125rem 0;
        padding: 0.125rem;
    }
    
    .workflow-step {
        padding: 1rem 0.75rem;
        min-width: auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .step-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .workflow-step h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .workflow-step p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* Small Mobile AI Workflow */
@media (max-width: 480px) {
    .ai-workflow {
        gap: 0.5rem;
    }
    
    .workflow-step {
        padding: 0.875rem 0.5rem;
    }
    
    .step-icon {
        width: 2.25rem;
        height: 2.25rem;
        margin-bottom: 0.5rem;
    }
    
    .workflow-step h4 {
        font-size: 0.9rem;
    }
    
    .workflow-step p {
        font-size: 0.75rem;
    }
}

.process-content {
    padding: 2rem;
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.process-flow {
    aspect-ratio: 16/6;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.flow-step {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--gradient-hero);
    opacity: 0.3;
}

.flow-line {
    width: 3rem;
    height: 4px;
    background: var(--gradient-hero);
    opacity: 0.3;
}

.process-content p {
    text-align: center;
    color: hsl(var(--muted-foreground));
    font-weight: 300;
    font-size: 0.875rem;
}

/* AI Features Section */
.ai-features-section {
    padding: 8rem 0;
    background: hsl(var(--secondary) / 0.3);
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.ai-feature-card {
    padding: 2.5rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: all 0.2s ease;
}

.ai-feature-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: hsl(var(--primary));
    transition: transform 0.2s ease;
}

.feature-icon.accent {
    background: hsl(var(--accent) / 0.1);
    color: hsl(var(--accent));
}

.ai-feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.ai-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.ai-feature-card p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    font-weight: 300;
    line-height: 1.6;
}

/* ROI Section */
.roi-section {
    padding: 8rem 0;
}

.roi-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.roi-card {
    padding: 2rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: all 0.2s ease;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: switchStyleFade 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.roi-card:nth-child(1) {
    animation-delay: 0.1s;
}

.roi-card:nth-child(2) {
    animation-delay: 0.3s;
}

.roi-card:nth-child(3) {
    animation-delay: 0.5s;
}

.roi-number {
    opacity: 0;
    transform: translateY(20px);
    animation: switchStyleFade 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.roi-card:nth-child(1) .roi-number {
    animation-delay: 0.2s;
}

.roi-card:nth-child(2) .roi-number {
    animation-delay: 0.4s;
}

.roi-card:nth-child(3) .roi-number {
    animation-delay: 0.6s;
}

.roi-card h3 {
    opacity: 0;
    transform: translateY(15px);
    animation: switchStyleFade 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.roi-card:nth-child(1) h3 {
    animation-delay: 0.3s;
}

.roi-card:nth-child(2) h3 {
    animation-delay: 0.5s;
}

.roi-card:nth-child(3) h3 {
    animation-delay: 0.7s;
}

.roi-card p {
    opacity: 0;
    transform: translateY(10px);
    animation: switchStyleFade 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.roi-card:nth-child(1) p {
    animation-delay: 0.4s;
}

.roi-card:nth-child(2) p {
    animation-delay: 0.6s;
}

.roi-card:nth-child(3) p {
    animation-delay: 0.8s;
}

.roi-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.roi-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.roi-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.roi-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.roi-card p {
    color: hsl(var(--muted-foreground));
    font-weight: 300;
}

.comparison-card {
    padding: 2.5rem;
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 64rem;
    margin: 0 auto;
}

.comparison-card h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.comparison-before .comparison-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.comparison-after .comparison-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comparison-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid hsl(var(--border));
}

.comparison-list li span:first-child {
    color: hsl(var(--muted-foreground));
}

.comparison-list li span:last-child {
    font-weight: 500;
    color: hsl(var(--foreground));
}

.comparison-list li span.primary {
    font-weight: 700;
    color: hsl(var(--primary));
}

/* Pricing Section */
.pricing-section {
    padding: 8rem 0;
    background: hsl(var(--secondary) / 0.3);
}

.pricing-card {
    padding: 3rem;
    max-width: 32rem;
    margin: 0 auto 3rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-price {
    font-size: 3.75rem;
    font-weight: 700;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.pricing-period {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    font-weight: 300;
}

.pricing-description {
    text-align: center;
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    font-weight: 300;
    max-width: 28rem;
    margin: 0 auto 2.5rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: hsl(var(--primary));
}

.feature-item span {
    color: hsl(var(--foreground));
    font-weight: 300;
}

.pricing-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid hsl(var(--border));
}

.pricing-footer p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    font-weight: 300;
}

.highlight {
    color: hsl(var(--foreground));
    font-weight: 500;
}

.pricing-cta {
    text-align: center;
}

.savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: hsl(var(--primary) / 0.1);
    margin-bottom: 1rem;
}

.savings-badge span {
    color: hsl(var(--primary));
    font-weight: 600;
}

.savings-note {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    font-weight: 300;
    margin-bottom: 2rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
}

.cta-card {
    padding: 4rem;
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

.cta-content p {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Trusted Clients Section */
.clients-section {
    padding: 6rem 0;
    background: hsl(var(--secondary) / 0.3);
    border-top: 1px solid hsl(var(--border) / 0.3);
    border-bottom: 1px solid hsl(var(--border) / 0.3);
}

.clients-carousel {
    overflow: hidden;
    margin-top: 3rem;
    position: relative;
}

.clients-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 2rem;
    align-items: center;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    flex-shrink: 0;
    min-width: 200px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
}

.client-logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Clients */
@media (max-width: 768px) {
    .clients-track {
        gap: 1.5rem;
    }
    
    .client-logo {
        padding: 0.5rem;
        min-width: 150px;
    }
    
    .client-logo img {
        max-height: 50px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    /* background: hsl(var(--secondary) / 0.3); */
}

.faq-container {
    max-width: 60rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-card-hover);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.faq-question:hover {
    background: hsl(var(--secondary) / 0.5);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0;
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem 2rem;
    color: hsl(var(--muted-foreground));
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* Mobile FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer p {
        padding: 1.5rem 1.5rem;
    }
}

/* Footer */
.footer {
    padding: 4rem 0 1rem;
    border-top: 1px solid hsl(var(--border) / 0.5);
    background: hsl(var(--secondary) / 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    /* margin-bottom: 1rem; */
}

.footer-logo-img {
    /* width: 2rem; */
    height: 3.5rem;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    font-weight: 300;
    max-width: 40rem;
    margin: 0 auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section li {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    font-weight: 300;
}

.footer-section a {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: hsl(var(--primary));
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid hsl(var(--border) / 0.5);
}

.footer-copyright {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    font-weight: 300;
}


/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
        padding-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .stat {
        padding: 1rem;
        background: hsl(var(--card) / 0.5);
        border-radius: 0.75rem;
        border: 1px solid hsl(var(--border) / 0.3);
    }
    
    .solution-cards,
    .steps-grid,
    .ai-features-grid,
    .roi-cards {
        grid-template-columns: 1fr;
    }
    
    .feature-showcase {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-20 {
    margin-bottom: 5rem;
}
