/* Premium Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-500: #6366f1;
    --primary-600: #4f46e5;
    --primary-700: #4338ca;
    --primary-50: #eef2ff;
    --primary-100: #e0e7ff;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Animations */
    --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    padding-top: 80px; /* Space for fixed header */
    /* Mobile optimizations */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Gradient Text Effect */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.logo-image,
.footer-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-700);
}

/* Clean Fixed Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s ease;
}
}

.header.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    background: white !important;
}

/* Smooth scroll offset for anchor links - moved body padding-top to main body declaration above */

/* FREEZE HEADER COMPLETELY - OVERRIDE ALL OTHER RULES */
.header {
    animation: none !important;
    transition: box-shadow 0.2s ease !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: 80px !important;
    z-index: 2147483647 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) translateZ(0) !important;
    margin: 0 !important;
    padding: 0 !important;
    will-change: auto !important;
    contain: layout style !important;
    pointer-events: auto !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
}

.header,
.header *,
.header::before,
.header::after {
    box-sizing: border-box !important;
    will-change: auto !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
}

/* Prevent any scroll-based hiding */
.header {
    transform: translateY(0) !important;
    animation: none !important;
}

/* Override any potential hiding animations */
@keyframes none {
    0%, 100% {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand .logo-image {
    height: 83px;
    width: 250px;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-brand .logo-image:hover {
    transform: translateY(-2px) scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.nav-brand h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-brand h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-brand h2:hover::after {
    width: 100%;
}

.nav-brand h2:hover {
    transform: translateY(-1px);
}

.nav-content {
    display: flex !important;
    align-items: center !important;
    gap: 3rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu {
    display: flex !important;
    list-style: none !important;
    align-items: center !important;
    gap: 1rem !important;
    margin: 0 !important;
    padding: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu li {
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: list-item !important;
}

.nav-menu a {
    text-decoration: none !important;
    color: #374151 !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    text-transform: capitalize !important;
    letter-spacing: 0.3px !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 69, 193, 0.08) 100%);
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-menu a:hover {
    color: var(--primary-600);
    transform: translateY(-1px);
}

.nav-menu a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-cta {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-cta-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border: none !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3) !important;
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: inline-block !important;
}

.nav-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(99, 102, 241, 0.4);
}

.nav-cta-btn:hover::before {
    left: 0;
}

.nav-cta-btn:active {
    transform: translateY(0);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    position: relative;
}

.nav-toggle:hover {
    background: var(--gray-100);
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background: var(--gray-700);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
}

/* Premium Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%, #f8fafc 100%);
    overflow: hidden;
    /* No padding-top needed - body already has padding for fixed header */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-accent);
    top: 60%;
    right: -5%;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-secondary);
    top: 30%;
    right: 20%;
    animation-delay: -10s;
}

/* Mobile device optimizations */
.mobile-device {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mobile-device * {
    -webkit-tap-highlight-color: transparent;
}

.mobile-device .hero {
    min-height: 70vh; /* Reduced for mobile keyboards */
}

.mobile-device .nav-menu.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    bottom: 20%;
    left: 20%;
    animation-delay: -15s;
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-500);
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-float 25s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: -3s; }
.particle:nth-child(3) { left: 30%; animation-delay: -6s; }
.particle:nth-child(4) { left: 40%; animation-delay: -9s; }
.particle:nth-child(5) { left: 60%; animation-delay: -12s; }
.particle:nth-child(6) { left: 70%; animation-delay: -15s; }
.particle:nth-child(7) { left: 80%; animation-delay: -18s; }
.particle:nth-child(8) { left: 90%; animation-delay: -21s; }

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    min-height: 70vh;
}

.hero-main {
    animation: slideInUp 1s var(--ease-out-expo);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    position: relative;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    color: var(--gray-900);
}

.title-line {
    display: block;
    animation: slideInUp 1s var(--ease-out-expo);
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-2xl);
    max-width: 90%;
    animation: slideInUp 1s var(--ease-out-expo) 0.4s both;
}

.hero-cta-group {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
    animation: slideInUp 1s var(--ease-out-expo) 0.5s both;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-2xl);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s var(--ease-in-out-back);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cta-btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    transition: left 0.3s var(--ease-out-expo);
}

.cta-btn.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.cta-btn.primary:hover::before {
    left: 0;
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-600);
    border: 2px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: var(--primary-50);
    border-color: var(--primary-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-social-proof {
    display: flex;
    gap: var(--space-2xl);
    animation: slideInUp 1s var(--ease-out-expo) 0.6s both;
}

.social-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.social-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.social-text {
    display: flex;
    flex-direction: column;
}

.social-text strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.social-text span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Hero Visual Cards */
.hero-visual {
    position: relative;
    height: 600px;
    animation: slideInUp 1s var(--ease-out-expo) 0.3s both;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-2xl);
    transition: all 0.3s var(--ease-out-expo);
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px -12px rgb(0 0 0 / 0.25);
}

.main-card {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 400px;
    z-index: 3;
}

.floating-card {
    padding: var(--space-lg);
    width: 280px;
    height: 80px;
    display: flex;
    align-items: center;
    animation: float 6s infinite ease-in-out;
}

.card-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: -20px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    right: -20px;
    animation-delay: 4s;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--gray-200);
}

.card-icons {
    display: flex;
    gap: var(--space-xs);
}

.card-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.card-icon.red { background: #ef4444; }
.card-icon.yellow { background: #f59e0b; }
.card-icon.green { background: #10b981; }

.card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
}

.growth-chart {
    display: flex;
    align-items: end;
    gap: var(--space-sm);
    height: 120px;
    margin-bottom: var(--space-lg);
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    height: var(--height);
    animation: growUp 1s var(--ease-out-expo) calc(0.8s + var(--i) * 0.1s) both;
}

.chart-bar:nth-child(1) { --i: 0; }
.chart-bar:nth-child(2) { --i: 1; }
.chart-bar:nth-child(3) { --i: 2; }
.chart-bar:nth-child(4) { --i: 3; }
.chart-bar:nth-child(5) { --i: 4; }

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
}

.notification-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.notification-item div {
    display: flex;
    flex-direction: column;
}

.notification-item strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--space-xs);
}

.notification-item span {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: var(--space-2xl);
    }
    
    .main-card {
        width: 280px;
        height: 320px;
    }
    
    .floating-card {
        width: 240px;
        height: 70px;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 1024px) {
    .nav-content {
        gap: var(--space-xl);
    }
    
    .nav-cta-btn {
        padding: var(--space-sm) var(--space-lg);
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Remove padding from nav - handled by container */
    .nav {
        padding: 0 !important;
    }
    
    .nav-brand h2 {
        font-size: 1.8rem;
    }
    
    /* Mobile Navigation - Override all desktop styles */
    .nav-content {
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        flex-direction: column !important;
        padding: 2rem 1.5rem !important;
        gap: 1.5rem !important;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15) !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-20px) !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        max-height: calc(100vh - 80px) !important;
        overflow-y: auto !important;
        z-index: 9998 !important;
        pointer-events: none !important;
        /* Improved scrolling on iOS */
        -webkit-overflow-scrolling: touch !important;
    }
    
    .nav-content.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }
    
    .nav-menu {
        flex-direction: column !important;
        gap: var(--space-md) !important;
        width: 100% !important;
    }
    
    .nav-menu li {
        width: 100% !important;
    }
    
    .nav-menu a {
        display: block !important;
        text-align: center !important;
        padding: var(--space-lg) !important;
        background: rgba(99, 102, 241, 0.05) !important;
        border: 1px solid rgba(99, 102, 241, 0.1) !important;
        border-radius: var(--radius-lg) !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .nav-menu a:hover,
    .nav-menu a:active {
        background: rgba(99, 102, 241, 0.1) !important;
        border-color: rgba(99, 102, 241, 0.2) !important;
        transform: translateY(-2px) !important;
    }
    
    .nav-cta {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .nav-cta-btn {
        width: 100% !important;
        max-width: 200px !important;
        padding: var(--space-lg) var(--space-xl) !important;
        font-size: 1rem !important;
    }
    
    .nav-toggle {
        display: flex !important;
        z-index: 10000 !important;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
        background: var(--primary-600);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background: var(--primary-600);
    }
    
    .hero {
        padding: var(--space-4xl) 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-description {
        font-size: 1.125rem;
        max-width: 100%;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-social-proof {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .main-card {
        width: 250px;
        height: 280px;
    }
    
    .floating-card {
        display: none;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(2deg);
    }
    66% {
        transform: translateY(10px) rotate(-1deg);
    }
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes growUp {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: var(--height);
        opacity: 1;
    }
}

/* Rest of the sections - keeping them simple for now to focus on hero */
section {
    padding: var(--space-4xl) 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Process Section */
.process {
    background: var(--gray-100);
    width: 100%;
    margin: 0;
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-2xl);
}

.process-step {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s var(--ease-out-expo);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    font-size: 2rem;
    color: white;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--gray-800);
}

.process-step p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

.service-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease-out-expo);
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--gray-800);
}

.service-tagline {
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.download-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    background: rgba(255, 255, 255, 0.95);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.download-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.download-icon i {
    font-size: 2.5rem;
    color: white;
}

.download-text {
    flex: 1;
}

.download-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.download-text p {
    font-size: 1rem;
    color: var(--gray-600);
    margin: 0;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-2xl);
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    white-space: nowrap;
}

.download-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.download-btn i {
    font-size: 1.25rem;
}

/* Mobile Download Section */
@media (max-width: 768px) {
    .download-content {
        flex-direction: column;
        text-align: center;
        padding: var(--space-xl);
    }
    
    .download-text h3 {
        font-size: 1.25rem;
    }
    
    .download-text p {
        font-size: 0.875rem;
    }
    
    .download-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Testimonials */
.testimonials {
    background: var(--gray-100);
    width: 100%;
    margin: 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

.testimonial-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease-out-expo);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
}

.testimonial-author h4 {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--space-xs);
}

.testimonial-author p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(232, 145, 54, 0.3));
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 0 30px rgba(232, 145, 54, 0.6));
    animation-play-state: paused;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section > p {
    text-align: left;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    max-width: 100%;
    word-wrap: break-word;
    hyphens: none;
}

/* First footer section intro paragraph */
.footer .footer-section:first-child > p {
    text-align: left !important;
    max-width: 90%;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-400);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact-info i {
    color: var(--primary-400);
    width: 20px;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-400);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--space-xl);
    text-align: center;
    color: var(--gray-500);
}

/* Enhanced Mobile Responsive Design */

/* Touch-friendly optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link, .cta-btn, .service-card {
        transition: all 0.2s ease;
    }
    
    .nav-link:active, .cta-btn:active {
        transform: scale(0.98);
    }
}

/* Small mobile devices (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .main-card {
        width: min(280px, 90vw);
        height: 320px;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        min-height: 48px;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: left;
    }
    
    .footer-section {
        align-items: flex-start;
    }
    
    .footer-section > p {
        text-align: left !important;
        max-width: 100%;
    }
    
    .footer .footer-section:first-child > p {
        text-align: left !important;
    }
    
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        min-height: 48px;
        justify-content: center;
    }
    
    .hero-social-proof {
        justify-content: center;
        text-align: center;
    }
}

/* Other sections with basic styling */
.why-choose {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
}

.why-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.95;
}

.seo-analysis {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.analysis-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.analysis-content p {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: white;
    margin: 1% auto;
    padding: 0.85rem 1.1rem 1.5rem;
    border-radius: var(--radius-2xl);
    width: 90%;
    max-width: 470px;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    position: relative;
}

.close {
    position: absolute;
    right: var(--space-lg);
    top: var(--space-lg);
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-500);
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--gray-800);
}

.modal-content h3 {
    text-align: center;
    margin-bottom: 0.7rem;
    font-size: 1.15rem;
    color: var(--gray-800);
    line-height: 1.2;
}

.form-group {
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.6rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.55rem;
    font-size: 14px; /* Prevents zoom on iOS */
    transition: border-color 0.3s ease;
    font-family: var(--font-secondary);
    min-height: 40px; /* Touch-friendly minimum */
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 55px;
    max-height: 55px;
}

/* Form Section Styles */
.form-section {
    margin-bottom: 0.85rem;
}

.section-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.form-section .form-select {
    width: 100%;
    padding: 0.6rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.55rem;
    font-size: 14px;
    transition: border-color 0.3s ease;
    font-family: var(--font-secondary);
    min-height: 40px;
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    padding-right: 2.1rem;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.form-section .form-select:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Tab Container */
.tab-container {
    width: 100%;
}

/* Tab Buttons */
.tab-buttons {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-buttons::-webkit-scrollbar {
    height: 4px;
}

.tab-buttons::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 2px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.3rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    position: relative;
}

.tab-btn:hover {
    color: var(--primary-600);
}

.tab-btn.active {
    color: var(--primary-600);
    border-bottom-color: var(--primary-600);
    font-weight: 600;
}

/* Services tabs styling */
.services-tabs .tab-btn {
    font-size: 0.8rem;
    padding: var(--space-xs) var(--space-sm);
}

/* Tab Content */
.tab-content-container {
    position: relative;
    min-height: 58px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

.tab-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.4rem;
}

.tab-content p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.tab-content textarea,
.tab-content select {
    width: 100%;
    padding: 0.6rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.55rem;
    font-size: 14px;
    transition: border-color 0.3s ease;
    font-family: var(--font-secondary);
    min-height: 40px;
    -webkit-appearance: none;
    appearance: none;
}

.tab-content textarea:focus,
.tab-content select:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-select {
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Modal Form Submit Button */
#leadForm .cta-btn,
#leadForm button[type="submit"] {
    width: 100%;
    margin-top: 0.65rem;
    margin-bottom: 0.5rem;
    padding: 0.7rem 1.4rem;
    font-size: 0.92rem;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: var(--gray-100);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    cursor: pointer;
    accent-color: var(--primary-600);
}

.checkbox-label span {
    font-size: 0.9rem;
    color: var(--gray-700);
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keep mobile responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: var(--space-xl);
        width: 95%;
        max-width: none;
    }
    
    .tab-buttons {
        gap: var(--space-xxs);
    }
    
    .tab-btn {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-sm);
    }
    
    .services-tabs .tab-btn {
        font-size: 0.7rem;
        padding: var(--space-xxs) var(--space-xs);
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE DESIGN
   ============================================ */

/* Base Mobile Styles - Apply to all mobile devices */
@media (max-width: 1024px) {
    /* Container adjustments */
    .container {
        padding: 0 1.5rem;
    }
    
    /* Section spacing */
    section {
        padding: var(--space-3xl) 0;
    }
    
    /* Services Grid - Responsive */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--space-xl);
    }
    
    /* Testimonials Grid - Responsive */
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--space-xl);
    }
    
    /* Process Grid - Responsive */
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-xl);
    }
    
    /* Hero Social Proof - Stack on tablet */
    .hero-social-proof {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-lg);
    }
}

/* Tablet and Medium Devices (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile Devices (up to 768px) */
@media (max-width: 768px) {
    /* Typography adjustments */
    html {
        font-size: 15px;
    }
    
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Section spacing */
    section {
        padding: var(--space-2xl) 0;
    }
    
    /* Section headers */
    .section-header {
        margin-bottom: var(--space-2xl);
    }
    
    .section-header h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Hero Section */
    .hero {
        min-height: auto;
        padding: calc(80px + var(--space-xl)) 0 var(--space-2xl);
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: var(--space-lg);
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: var(--space-xl);
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 10px 20px;
        margin-bottom: var(--space-lg);
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: var(--space-md);
        width: 100%;
        margin-bottom: var(--space-2xl);
    }
    
    .cta-btn {
        width: 100%;
        max-width: 100%;
        padding: var(--space-lg) var(--space-xl);
        font-size: 1rem;
        min-height: 48px; /* Touch-friendly */
        justify-content: center;
    }
    
    .hero-social-proof {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: center;
        text-align: center;
    }
    
    .social-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: var(--space-xl);
    }
    
    .main-card {
        width: min(280px, 85vw);
        height: 320px;
    }
    
    .floating-card {
        display: none; /* Hide floating cards on mobile */
    }
    
    /* Services Grid - Single column on mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .service-card {
        padding: var(--space-xl);
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.125rem;
    }
    
    /* Process Grid - Single column */
    .process-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .process-step {
        padding: var(--space-xl);
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: var(--space-lg);
    }
    
    /* Testimonials Grid - Single column */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .testimonial-card {
        padding: var(--space-xl);
    }
    
    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Footer */
    .footer {
        padding: var(--space-2xl) 0 var(--space-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .footer-logo {
        height: 60px;
        margin: 0 auto var(--space-lg);
    }
    
    .contact-info {
        align-items: center;
        justify-content: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    /* Modals - Full width on mobile */
    .modal-content {
        margin: 5% auto;
        padding: var(--space-lg);
        width: 95%;
        max-width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-content h3 {
        font-size: 1.25rem;
        margin-bottom: var(--space-lg);
    }
    
    /* Forms - Mobile optimized */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem;
        min-height: 48px;
    }
    
    .form-section {
        margin-bottom: var(--space-lg);
    }
    
    .section-label {
        font-size: 0.9rem;
        margin-bottom: var(--space-sm);
    }
    
    /* Tab buttons - Scrollable on mobile */
    .tab-buttons {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: var(--space-xs);
    }
    
    .tab-buttons::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        font-size: 0.8rem;
        padding: var(--space-sm) var(--space-md);
        white-space: nowrap;
        min-width: fit-content;
    }
    
    .services-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .services-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .service-tab-btn {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-sm);
        white-space: nowrap;
    }
    
    /* Services Modal */
    .services-modal-content {
        width: 95%;
        max-width: 100%;
        padding: var(--space-lg);
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .services-modal-title {
        font-size: 1.5rem;
    }
    
    .service-detail-layout {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .service-cta-left {
        width: 100%;
    }
    
    .service-cta-left .cta-btn {
        width: 100%;
    }
    
    .service-content-right {
        width: 100%;
    }
    
    .service-description ul {
        padding-left: var(--space-lg);
    }
    
    .service-description li {
        font-size: 0.9rem;
        margin-bottom: var(--space-sm);
    }
    
    /* View More Button */
    .view-more-btn {
        width: 100%;
        max-width: 100%;
        padding: var(--space-lg);
        font-size: 1rem;
    }
    
    /* SEO Analysis Section */
    .seo-analysis {
        padding: var(--space-2xl) 0;
    }
    
    .analysis-content h2 {
        font-size: 1.5rem;
    }
    
    .analysis-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* About Section */
    .about-content {
        padding: var(--space-xl);
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Instagram Grid - Responsive */
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    /* Floating Social Icons - Hide on mobile */
    .floating-social-icons {
        display: none;
    }
    
    /* Particles - Reduce on mobile */
    .particles-container {
        display: none;
    }
    
    /* Shapes - Reduce size on mobile */
    .shape {
        opacity: 0.05;
    }
    
    .shape-1, .shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .shape-3, .shape-4 {
        width: 100px;
        height: 100px;
    }
}

/* Small Mobile Devices (up to 480px) */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    section {
        padding: var(--space-xl) 0;
    }
    
    /* Header adjustments */
    .header {
        height: 70px;
    }
    
    body {
        padding-top: 70px;
    }
    
    html {
        scroll-padding-top: 70px;
    }
    
    .nav-content {
        top: 70px;
        max-height: calc(100vh - 70px);
    }
    
    .nav-brand .logo-image {
        height: 40px;
    }
    
    /* Hero adjustments */
    .hero {
        padding: calc(70px + var(--space-md)) 0 var(--space-xl);
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
    
    .cta-btn {
        padding: 0.875rem var(--space-lg);
        font-size: 0.95rem;
    }
    
    /* Cards */
    .service-card,
    .process-step,
    .testimonial-card {
        padding: var(--space-lg);
    }
    
    .main-card {
        width: min(250px, 90vw);
        height: 280px;
        padding: var(--space-lg);
    }
    
    /* Section headers */
    .section-header h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Modals */
    .modal-content {
        margin: 2% auto;
        padding: var(--space-md);
        width: 98%;
    }
    
    .services-modal-content {
        padding: var(--space-md);
        width: 98%;
    }
    
    /* Forms */
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        font-size: 16px;
    }
    
    /* Tab buttons */
    .tab-btn {
        font-size: 0.7rem;
        padding: var(--space-xs) var(--space-sm);
    }
    
    .service-tab-btn {
        font-size: 0.65rem;
        padding: 6px 10px;
    }
    
    /* Instagram Grid - Single column on very small screens */
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-logo {
        height: 50px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.125rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: calc(80px + var(--space-md)) 0 var(--space-lg);
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .modal-content {
        max-height: 85vh;
    }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .process-step:hover,
    .testimonial-card:hover {
        transform: none;
    }
    
    /* Add active states for touch */
    .service-card:active,
    .process-step:active {
        transform: scale(0.98);
    }
    
    /* Larger touch targets */
    .nav-menu a,
    .nav-cta-btn,
    .cta-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better tap feedback */
    button:active,
    a:active {
        opacity: 0.8;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image,
    .footer-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav-toggle,
    .floating-social-icons,
    .particles-container,
    .modal,
    .services-modal,
    .landing-popup {
        display: none !important;
    }
    
    body {
        padding-top: 0;
    }
    
    section {
        page-break-inside: avoid;
    }
}
