/* 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: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.section-title {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8b5cf6;
}

.cta-button {
    background: linear-gradient(135deg, #6b46c1 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.6);
    background: linear-gradient(135deg, #8b5cf6 0%, #9333ea 100%);
    color: white;
}

.nav-cta {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23007bff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23007bff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23007bff" opacity="0.1"/></svg>');
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, #8b5cf6 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #4B3F72;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.hero-benefits {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* color: #6b46c1; */
    font-weight: 600;
}

.benefit-item i {
    color: #8b5cf6;
    filter: drop-shadow(0 1px 2px rgba(107, 70, 193, 0.3));
    font-size: 1.2rem;
}

.primary-cta {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    transform: none;
    animation: subtle-float 6s ease-in-out infinite;
}

@keyframes subtle-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Styling for Demo Video */
.demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.demo-placeholder {
    text-align: center;
    color: #666;
}

.demo-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #8b5cf6;
}

.demo-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.demo-placeholder small {
    color: #999;
}

/* Surreal Purple Wave Background */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        #f3e8ff 0%,
        #e9d5ff 25%,
        #c4b5fd 50%,
        #ddd6fe 75%,
        #faf5ff 100%
    );
    z-index: 0;
    pointer-events: none;
    content: '';
}

/* Surreal Wave Container */
.surreal-wave-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

/* Modern Surreal Waves */
.surreal-wave {
    position: absolute;
    width: 175%;
    height: 200px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(139, 92, 246, 0.8) 10%,
        rgba(147, 51, 234, 0.9) 30%,
        rgba(139, 92, 246, 0.8) 50%,
        rgba(196, 181, 253, 0.7) 70%,
        rgba(139, 92, 246, 0.6) 90%,
        transparent 100%
    );
    animation: surreal-flowing-wave ease-in-out infinite;
    transform-origin: center center;
    border-radius: 50%;
    filter: blur(1px) brightness(1.1);
}

.surreal-wave-1 {
    bottom: 10%;
    left: 0;
    animation-duration: 20s;
    animation-delay: 0s;
}

.surreal-wave-2 {
    bottom: 20%;
    left: -25%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(147, 51, 234, 0.7) 15%,
        rgba(139, 92, 246, 0.8) 35%,
        rgba(147, 51, 234, 0.7) 55%,
        rgba(196, 181, 253, 0.6) 75%,
        rgba(147, 51, 234, 0.5) 85%,
        transparent 100%
    );
    animation-duration: 28s;
    animation-delay: -7s;
}

.surreal-wave-3 {
    bottom: 15%;
    left: -50%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(196, 181, 253, 0.6) 20%,
        rgba(139, 92, 246, 0.7) 40%,
        rgba(196, 181, 253, 0.8) 60%,
        rgba(147, 51, 234, 0.6) 80%,
        rgba(196, 181, 253, 0.4) 95%,
        transparent 100%
    );
    animation-duration: 25s;
    animation-delay: -14s;
}

.surreal-wave-4 {
    bottom: 5%;
    left: -75%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(107, 70, 193, 0.5) 25%,
        rgba(139, 92, 246, 0.6) 45%,
        rgba(107, 70, 193, 0.7) 65%,
        rgba(139, 92, 246, 0.5) 85%,
        rgba(107, 70, 193, 0.3) 98%,
        transparent 100%
    );
    animation-duration: 35s;
    animation-delay: -21s;
}

.surreal-wave-5 {
    bottom: 0%;
    left: -100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(147, 51, 234, 0.4) 30%,
        rgba(107, 70, 193, 0.5) 50%,
        rgba(147, 51, 234, 0.4) 70%,
        rgba(107, 70, 193, 0.3) 90%,
        transparent 100%
    );
    animation-duration: 40s;
    animation-delay: -28s;
}

/* Surreal Flowing Waves Animation */
@keyframes surreal-flowing-wave {
    0% {
        transform: translateX(-50%) rotate(0deg) scaleY(1) scaleX(1);
    }
    25% {
        transform: translateX(-30%) rotate(2deg) scaleY(1.1) scaleX(1.05);
    }
    50% {
        transform: translateX(-10%) rotate(-1deg) scaleY(0.9) scaleX(0.95);
    }
    75% {
        transform: translateX(10%) rotate(1deg) scaleY(1.05) scaleX(1.02);
    }
    100% {
        transform: translateX(30%) rotate(0deg) scaleY(1) scaleX(1);
    }
}

/* Additional Liquid Flow Effect */
.liquid-flow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg,
        rgba(139, 92, 246, 0.1) 0%,
        rgba(147, 51, 234, 0.08) 25%,
        rgba(196, 181, 253, 0.06) 50%,
        rgba(139, 92, 246, 0.04) 75%,
        rgba(196, 181, 253, 0.08) 100%
    );
    animation: liquid-flow-animation 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes liquid-flow-animation {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        border-radius: 50% 30% 60% 40%;
    }
    25% {
        transform: scale(1.05) rotate(90deg);
        border-radius: 40% 60% 30% 70%;
    }
    50% {
        transform: scale(0.95) rotate(180deg);
        border-radius: 60% 40% 80% 20%;
    }
    75% {
        transform: scale(1.1) rotate(270deg);
        border-radius: 30% 70% 40% 80%;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f3e8ff 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(107, 70, 193, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.zigzag-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

/* Base Step Styles */
.zigzag-step {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.zigzag-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Left-Aligned Steps */
.step-left {
    justify-content: flex-start;
    margin-left: 10%;
    margin-right: 30%;
}

.step-left .step-content {
    flex-direction: row;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.15);
    border: 1px solid rgba(0, 123, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.step-left .step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
    pointer-events: none;
}

/* Right-Aligned Steps */
.step-right {
    justify-content: flex-end;
    margin-right: 10%;
    margin-left: 30%;
}

.step-right .step-content {
    flex-direction: row-reverse;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(255, 0, 255, 0.15);
    border: 1px solid rgba(255, 0, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.step-right .step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
    pointer-events: none;
}

/* Content Areas */
.step-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.step-icon-section {
    flex-shrink: 0;
    text-align: center;
    min-width: 120px;
}

.step-text {
    flex: 1;
}

/* Purple Theme Step Numbers and Icons */
.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    background: linear-gradient(135deg, #6b46c1 0%, #8b5cf6 100%);
    color: white;
    box-shadow:
        0 0 15px rgba(107, 70, 193, 0.6),
        0 0 30px rgba(107, 70, 193, 0.4);
    border: 2px solid rgba(107, 70, 193, 0.8);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #6b46c1;
    filter: drop-shadow(0 0 8px rgba(107, 70, 193, 0.6));
}

/* Typography */
.step-text h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Connecting Arrows with Purple Gradients */
.step-arrow-left,
.step-arrow-right {
    position: absolute;
    font-size: 1.8rem;
    background: linear-gradient(90deg, #8b5cf6, #9333ea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 10px rgba(107, 70, 193, 0.8));
    z-index: 2;
}

.step-arrow-left {
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.step-arrow-right {
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
}

/* Last step doesn't need right arrow */
.zigzag-step:last-child .step-arrow-right {
    display: none;
}

/* Animations */
@keyframes glowCyan {
    0% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), 0 0 40px rgba(0, 255, 255, 0.2), inset 0 0 20px rgba(0, 255, 255, 0.1); }
    100% { box-shadow: 0 0 30px rgba(0, 255, 255, 0.5), 0 0 60px rgba(0, 255, 255, 0.3), inset 0 0 30px rgba(0, 255, 255, 0.2); }
}

@keyframes glowMagenta {
    0% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.3), 0 0 40px rgba(255, 0, 255, 0.2), inset 0 0 20px rgba(255, 0, 255, 0.1); }
    100% { box-shadow: 0 0 30px rgba(255, 0, 255, 0.5), 0 0 60px rgba(255, 0, 255, 0.3), inset 0 0 30px rgba(255, 0, 255, 0.2); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
    }
    50% {
        transform: translateY(-50%) translateX(5px);
        filter: drop-shadow(0 0 20px rgba(0, 255, 255, 1));
    }
}

@keyframes arrowPulseMagenta {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.8));
    }
    50% {
        transform: translateY(-50%) translateX(-5px);
        filter: drop-shadow(0 0 20px rgba(255, 0, 255, 1));
    }
}

/* Use Cases Section */
.use-cases {
    padding: 80px 0;
    background: #f8f9fa;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.use-case-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    margin: -1px -1px 0 -1px;
}

.use-case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.use-case-card:hover .use-case-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.1) 0%,
        rgba(99, 102, 241, 0.05) 50%,
        rgba(196, 181, 253, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-case-card:hover .image-overlay {
    opacity: 1;
}

.card-content {
    padding: 24px;
}

.use-case-card h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.use-case-list {
    list-style: none;
    text-align: left;
    padding: 0;
}

.use-case-list li {
    padding: 0.5rem 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
    border-bottom: 1px solid #e9ecef;
    color: #666;
}

.use-case-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
}

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

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: #f8f9fa;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #1a1a1a;
}

.faq-question i {
    color: #8b5cf6;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-logo-img {
    height: 30px;
    width: auto;
}

.footer-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

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

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-benefits {
        justify-content: center;
        flex-wrap: wrap;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

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

    /* Fix navbar overlap - mobile only */
    body {
        padding-top: 40px; /* Push content below fixed navbar on mobile */
    }

    /* Optimized Hero Section for Mobile */
    .hero {
        padding: 60px 0 60px;
        position: relative;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Typography Adjustments for Mobile */
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        text-align: center;
        letter-spacing: 0.02em;
        font-weight: 700;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        text-align: center;
        color: #555;
        font-weight: 600;
        letter-spacing: 0.01em;
        line-height: 1.4;
    }

    .hero-benefits {
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1;
        min-width: 80px;
        justify-content: center;
        font-size: 0.85rem;
    }

    .benefit-item i {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    /* CTA Button Optimization for Mobile */
    .primary-cta {
        font-size: 1rem;
        padding: 0.8rem 1.6rem;
        margin: 0 auto;
        width: fit-content;
        display: inline-block;
        text-decoration: none;
    }

    /* Phone Mockup Scaling for Better Mobile Balance */
    .phone-frame {
        width: 250px;
        height: 480px;
    }

    .phone-mockup {
        animation: none; /* Remove animation on mobile for better performance */
    }

    /* Other mobile optimizations */
    .step-content {
        padding: 1.5rem 1rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .step-icon {
        font-size: 2.2rem;
    }

    .step-text h3 {
        font-size: 1.3rem;
    }

    .step-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    /* Tablet adjustments */
    .zigzag-container {
        padding: 1rem 0;
    }

    .zigzag-step {
        margin-bottom: 60px;
    }

    .step-left {
        margin-left: 5%;
        margin-right: 40%;
    }

    .step-right {
        margin-right: 5%;
        margin-left: 40%;
    }

    .step-content {
        padding: 2rem;
        gap: 1.5rem;
    }

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

    .step-text h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    /* Mobile: Vertical stack layout */
    .zigzag-container {
        padding: 1rem 0;
    }

    .zigzag-step {
        justify-content: center;
        margin-bottom: 40px;
        margin-left: 0;
        margin-right: 0;
    }

    .step-left,
    .step-right {
        justify-content: center;
        margin-left: 0;
        margin-right: 0;
    }

    .step-content {
        flex-direction: column !important;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        max-width: 100%;
        text-align: center;
    }

    .step-icon-section {
        min-width: auto;
        order: -1;
    }

    .step-text {
        order: 1;
    }

    .step-arrow-left,
    .step-arrow-right {
        display: none;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin: 0 auto 0.5rem;
    }

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

    .step-text h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .step-text p {
        font-size: 1rem;
        max-width: 100%;
    }

    /* Mobile use case cards */
    .use-case-image-container {
        height: 160px;
    }

    .card-content {
        padding: 20px 16px;
    }

    .card-content h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    /* Small mobile adjustments */
    .zigzag-container {
        padding: 1rem;
    }

    .step-content {
        padding: 1.5rem 1rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .step-icon {
        font-size: 2.2rem;
    }

    .step-text h3 {
        font-size: 1.3rem;
    }

    .step-text p {
        font-size: 0.95rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions for all interactive elements */
button, a, .faq-question {
    transition: all 0.3s ease;
}
