* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header */
}

body {
    background: white;
    color: #111827;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
}

.display-heading {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -20px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 20px) scale(1.05);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 1s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 1s ease-out;
}

.animate-float {
    animation: float 8s ease-in-out infinite;
}

.animate-blob {
    animation: blob 10s ease-in-out infinite;
}

.gradient-text {
    background: linear-gradient(135deg, #1e88e5 0%, #f57c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(30, 136, 229, 0.25);
}

.bg-pattern {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(30, 136, 229, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 124, 0, 0.03) 0%, transparent 50%);
}

.mesh-gradient {
    background: 
        radial-gradient(at 0% 0%, rgba(30, 136, 229, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(245, 124, 0, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(30, 136, 229, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(245, 124, 0, 0.1) 0px, transparent 50%);
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: all 0.5s;
}

nav.scrolled {
    background: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 96px;
    padding: 0 2rem;
}

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

.logo-container a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-full {
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo-full:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

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

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
    background: transparent;
}

.btn-outline:hover {
    background: #eff6ff;
}

.btn-primary {
    background: linear-gradient(to right, #2563eb, #1d4ed8, #f57c00);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.4);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    padding: 1.5rem 1rem;
}

.mobile-menu-content a,
.mobile-menu-content button {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 1rem 6rem;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
}

.blob-1 {
    top: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: #93c5fd;
    animation: blob 10s ease-in-out infinite;
}

.blob-2 {
    bottom: 5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: #fed7aa;
    animation: blob 10s ease-in-out infinite;
    animation-delay: 2s;
}

.blob-3 {
    top: 10rem;
    left: 50%;
    width: 24rem;
    height: 24rem;
    background: #bfdbfe;
    animation: blob 10s ease-in-out infinite;
    animation-delay: 4s;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(to right, #dbeafe, #fed7aa);
    border: 2px solid #bfdbfe;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.5rem;
    color: #4b5563;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 1rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding-top: 1.5rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.star {
    color: #fb923c;
    fill: #fb923c;
    width: 1.5rem;
    height: 1.5rem;
}

.divider {
    height: 3.5rem;
    width: 1px;
    background: #d1d5db;
}

.dashboard-wrapper {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.dashboard-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #60a5fa, #fb923c);
    border-radius: 1.5rem;
    filter: blur(60px);
    opacity: 0.2;
    animation: pulse-slow 3s ease-in-out infinite;
}

.dashboard {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 2px solid #f3f4f6;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    animation: float 8s ease-in-out infinite;
}

.floating-card-1 {
    left: -2rem;
    top: 5rem;
}

.floating-card-2 {
    right: -2rem;
    bottom: 5rem;
    animation-delay: 1s;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sections */
section {
    padding: 7rem 1rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-description {
    font-size: 1.25rem;
    color: #4b5563;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

/* Features */
.feature-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
}

.check-icon {
    color: #10b981;
    flex-shrink: 0;
}

.feature-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid #f3f4f6;
}

.image-placeholder {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

/* Pricing */
.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f4f6;
    padding: 0.5rem;
    border-radius: 9999px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    margin-bottom: 4rem;
}

.pricing-toggle button {
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    color: #6b7280;
}

.pricing-toggle button.active {
    background: white;
    color: #111827;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.pricing-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.pricing-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-card.popular {
    background: linear-gradient(to bottom right, #2563eb, #f57c00);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.popular-badge {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #111827;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-features {
    list-style: none;
    margin: 2.5rem 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-content {
    font-size: 1.125rem;
    color: #374151;
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #3b82f6, #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: linear-gradient(to bottom right, #f9fafb, white);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.5s;
    cursor: pointer;
}

.industry-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #93c5fd;
    transform: translateY(-0.5rem);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

/* CTA Section */
.cta {
    background: linear-gradient(to bottom right, #2563eb, #1d4ed8, #f57c00);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-description {
    font-size: 1.5rem;
    color: #bfdbfe;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.75;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: #bfdbfe;
    font-size: 1.125rem;
}

/* Footer */
footer {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 4rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    grid-column: span 2;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #d1d5db;
    padding-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.social-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

/* Responsive */
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
}

/* Logo Cloud */
.logo-cloud {
    padding: 4rem 1rem;
    background: linear-gradient(to right, #dbeafe, white, #fed7aa);
}

.logo-cloud-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    opacity: 0.6;
}

.company-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #9ca3af;
}

/* Stats Section */
.stats-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom right, #2563eb, #1d4ed8, #f57c00);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #bfdbfe;
    font-size: 1.125rem;
}

/* Marquee Animation */
.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 4rem;
}

.marquee:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo-wrapper {
    min-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.client-logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.client-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-wrapper:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablets and smaller (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-grid {
        gap: 3rem;
    }
    
    .feature-row {
        gap: 2rem;
    }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    /* Navigation adjustments */
    nav {
        z-index: 100;
    }
    
    .nav-container {
        height: 70px;
        padding: 0 1rem;
    }
    
    .logo-full {
        height: 45px;
    }
    
    /* Scroll padding for anchor links */
    html {
        scroll-padding-top: 90px;
    }
    
    /* Typography */
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .feature-title {
        font-size: 1.5rem !important;
    }
    
    .cta-title {
        font-size: 1.75rem !important;
    }
    
    /* Hero Section */
    .hero {
        padding: 6rem 1rem 3rem !important;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-description {
        font-size: 1rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .dashboard-wrapper {
        margin-top: 2rem;
    }
    
    /* Trust Indicators */
    .trust-indicators {
        gap: 1.5rem !important;
        padding: 1.5rem 1rem !important;
    }
    
    .trust-stat {
        font-size: 2rem !important;
    }
    
    /* Client Logos Marquee */
    .marquee {
        gap: 2rem;
    }
    
    .client-logo-wrapper {
        min-width: 150px;
        height: 80px;
        padding: 1rem;
    }
    
    /* Industries Grid */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .industry-card {
        padding: 1rem;
    }
    
    /* Features Section */
    .feature-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .feature-row[style*="direction: rtl"] {
        flex-direction: column;
    }
    
    .feature-image {
        width: 100%;
    }
    
    .feature-list {
        font-size: 0.9rem;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Pricing Grid */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* CTA Section */
    .cta {
        padding: 3rem 1rem !important;
    }
    
    .cta-description {
        font-size: 1rem !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Mobile App Section */
    .mobile-app-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    /* Even smaller typography */
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .feature-title {
        font-size: 1.25rem !important;
    }
    
    /* Container padding */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero section */
    .hero {
        padding: 5rem 1rem 2rem !important;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    /* Trust indicators stack */
    .trust-indicators {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    /* Industries - single column */
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    /* Client logos */
    .client-logo-wrapper {
        min-width: 120px;
        height: 70px;
        padding: 0.75rem;
    }
    
    .marquee {
        gap: 1.5rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Feature icons */
    .feature-icon {
        width: 3rem !important;
        height: 3rem !important;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    /* Image placeholders */
    .image-placeholder {
        font-size: 0.8rem;
        padding: 1rem;
    }
    
    /* Stats */
    .trust-stat {
        font-size: 1.75rem !important;
    }
    
    /* FAQ spacing */
    .faq-item {
        margin-bottom: 1rem;
    }
    
    /* Testimonial cards */
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-content {
        font-size: 0.9rem;
    }
}

/* Fix for overflow issues */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    section {
        overflow-x: hidden;
    }
    
    .container {
        overflow-x: hidden;
    }
    
    /* Prevent horizontal scroll */
    * {
        max-width: 100%;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    a, button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        min-height: 48px;
    }
}

/* Landscape orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 3rem 1rem 2rem !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
    }
}
