/* CSS Variables */
:root {
    --color-background: #ffffff;
    --color-foreground: #0a0a0a;
    --color-card: #ffffff;
    --color-border: #e5e7eb;
    --color-muted: #f9fafb;
    --color-muted-foreground: #6b7280;
    --color-accent: #3b82f6;
    --color-accent-foreground: #ffffff;
    --color-secondary: #f3f4f6;
    --color-secondary-foreground: #1f2937;
    
    --gradient-blue: linear-gradient(135deg, #3b82f6, #06b6d4);
    --gradient-purple: linear-gradient(135deg, #a855f7, #ec4899);
    --gradient-orange: linear-gradient(135deg, #f97316, #ef4444);
    --gradient-green: linear-gradient(135deg, #10b981, #059669);
    --gradient-indigo: linear-gradient(135deg, #6366f1, #3b82f6);
    --gradient-teal: linear-gradient(135deg, #14b8a6, #06b6d4);
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    
    --radius: 0.625rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --color-background: #0a0a0a;
        --color-foreground: #f5f5f5;
        --color-card: #171717;
        --color-border: #262626;
        --color-muted: #171717;
        --color-muted-foreground: #a3a3a3;
        --color-secondary: #1a1a1a;
        --color-secondary-foreground: #e5e5e5;
    }
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-background);
    color: var(--color-foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    min-height: 44px; /* Touch-friendly minimum */
}

@media (min-width: 768px) {
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-accent-foreground);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-foreground);
    border-color: var(--color-border);
    border-width: 2px;
}

.btn-outline:hover {
    background-color: var(--color-muted);
    border-color: var(--color-accent);
}

.btn-ghost {
    background-color: transparent;
    color: var(--color-foreground);
    border: none;
}

.btn-ghost:hover {
    background-color: var(--color-muted);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    height: 3.5rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

@media (prefers-color-scheme: dark) {
    .nav {
        background-color: rgba(10, 10, 10, 0.8);
    }
}

.nav.scrolled {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

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

.logo {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-icon {
    color: var(--color-accent-foreground);
    font-weight: 700;
    font-size: 1.125rem;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-muted-foreground);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-foreground);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: none;
    gap: 1rem;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: var(--color-foreground);
    min-width: 44px; /* Touch-friendly */
    min-height: 44px;
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--color-border);
    background-color: var(--color-background);
}

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

.mobile-menu-content {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-muted-foreground);
    text-decoration: none;
    transition: var(--transition);
    min-height: 44px; /* Touch-friendly */
    display: flex;
    align-items: center;
}

.mobile-nav-link:hover {
    color: var(--color-foreground);
}

.mobile-actions {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .nav-actions {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 2rem;
    width: 100%;
}

.gradient-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    z-index: 0;
    width: 100%;
}

.hero-container {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
    display: grid;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-container {
        padding: 3rem 0;
        gap: 3rem;
    }
}

@media (min-width: 768px) {
    .hero {
        padding-bottom: 0;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-content {
        gap: 1.5rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
    width: fit-content;
}

.pulse-dot {
    position: relative;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-accent);
    border-radius: 50%;
    opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.accent-text {
    display: block;
    color: var(--color-accent);
}

.hero-description {
    font-size: 1rem;
    color: var(--color-muted-foreground);
    max-width: 42rem;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.hero-cta .btn {
    width: 100%;
}

@media (min-width: 480px) {
    .hero-cta {
        flex-direction: row;
        width: auto;
    }
    
    .hero-cta .btn {
        width: auto;
    }
}

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

@media (min-width: 640px) {
    .hero-stats {
        gap: 1.5rem;
    }
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

@media (min-width: 640px) {
    .stat-value {
        font-size: 1.875rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 2rem;
    background-color: var(--color-border);
}

@media (min-width: 640px) {
    .stat-divider {
        height: 3rem;
    }
}

.hero-visual {
    position: relative;
}

.globe-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (prefers-color-scheme: dark) {
    .globe-container {
        background-color: rgba(23, 23, 23, 0.5);
        border-color: rgba(255, 255, 255, 0.1);
    }
}

#globe-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.location-markers {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.location-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.marker-dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    transition: var(--transition);
}

.marker-ping {
    position: absolute;
    inset: 0;
    width: 0.75rem;
    height: 0.75rem;
    background-color: var(--color-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.marker-label {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-foreground);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.location-marker:hover .marker-label {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.location-marker:hover .marker-dot {
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

@media (prefers-color-scheme: dark) {
    .marker-label {
        background-color: rgba(23, 23, 23, 0.9);
    }
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Social Proof */
.social-proof {
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .social-proof {
        padding: 4rem 0;
    }
}

.social-proof-text {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .social-proof-text {
        font-size: 0.875rem;
        margin-bottom: 3rem;
    }
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: center;
}

.company-logo {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius);
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-muted-foreground);
    transition: var(--transition);
    margin: 0 auto;
}

.company-logo:hover {
    color: var(--color-foreground);
    border-color: rgba(59, 130, 246, 0.5);
}

@media (min-width: 480px) {
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .company-logo {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .companies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .companies-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 2rem;
    }
    
    .company-logo {
        width: 6rem;
        height: 6rem;
        font-size: 2rem;
    }
}

/* Features Section */
.features {
    padding: 3rem 0;
    background-color: var(--color-muted);
}

@media (min-width: 768px) {
    .features {
        padding: 5rem 0;
    }
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .section-header {
        margin: 0 auto 4rem;
    }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1rem;
    color: var(--color-muted-foreground);
}

@media (min-width: 640px) {
    .section-description {
        font-size: 1.125rem;
    }
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    padding: 1.5rem;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

@media (min-width: 768px) {
    .feature-card {
        padding: 2rem;
    }
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: rgba(59, 130, 246, 0.2);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--color-muted-foreground);
    line-height: 1.7;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Testimonials */
.testimonials {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .testimonials {
        padding: 5rem 0;
    }
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

.testimonial-card {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
}

@media (prefers-color-scheme: dark) {
    .testimonial-card {
        background-color: rgba(23, 23, 23, 0.8);
    }
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-icon {
    color: var(--color-accent);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.testimonial-quote p {
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.gradient-blue { background: var(--gradient-blue); }
.gradient-purple { background: var(--gradient-purple); }
.gradient-orange { background: var(--gradient-orange); }
.gradient-green { background: var(--gradient-green); }
.gradient-indigo { background: var(--gradient-indigo); }
.gradient-teal { background: var(--gradient-teal); }

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
}

.author-role {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (min-width: 768px) {
    .pricing {
        padding: 5rem 0;
    }
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 90rem;
    margin: 0 auto;
}

.pricing-card {
    padding: 1.5rem;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

@media (min-width: 768px) {
    .pricing-card {
        padding: 2rem;
    }
}

.pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card-popular {
    border-color: var(--color-accent);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.2);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    color: var(--color-accent-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .pricing-name {
        font-size: 1.5rem;
    }
}

.pricing-description {
    color: var(--color-muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
}

@media (min-width: 640px) {
    .price-currency {
        font-size: 1.875rem;
    }

    .price-amount {
        font-size: 3rem;
    }
}

.price-period {
    color: var(--color-muted-foreground);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.pricing-features i {
    color: var(--color-accent);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pricing-card-popular {
        transform: scale(1.05);
    }
    
    .pricing-card-popular:hover {
        transform: scale(1.05) translateY(-8px);
    }
}

/* CTA Section */
.cta {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(255, 255, 255, 0), rgba(168, 85, 247, 0.05));
}

@media (min-width: 768px) {
    .cta {
        padding: 5rem 0;
    }
}

.cta-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3.75rem;
    }
}

.cta-description {
    font-size: 1rem;
    color: var(--color-muted-foreground);
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .cta-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.cta-buttons .btn {
    width: 100%;
    max-width: 300px;
}

@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons .btn {
        width: auto;
    }
}

.cta-note {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

/* Remove duplicate media query - already defined above */

/* Footer */
.footer {
    background-color: var(--color-secondary);
    color: var(--color-secondary-foreground);
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 0;
    }
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        margin-bottom: 3rem;
    }
}

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

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

.footer-logo {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.footer-brand-description {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    max-width: 20rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary-foreground);
    transition: var(--transition);
    font-size: 1.125rem;
}

.social-link:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.footer-links-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-secondary-foreground);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.footer-bottom-links a {
    color: var(--color-muted-foreground);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--color-secondary-foreground);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

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

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

section.animate-in,
.feature-card.animate-in,
.testimonial-card.animate-in,
.pricing-card.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Mobile-Specific Enhancements */
@media (max-width: 640px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Fix hero section overflow on mobile */
    .hero {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .hero-container {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-title {
        max-width: 100%;
        word-break: break-word;
    }
    
    /* Ensure all containers stay within bounds */
    .container {
        max-width: 100%;
    }
    
    /* Better text wrapping */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Prevent text cutoff on left side */
    .hero-title,
    .section-title,
    .cta-title {
        padding-left: 0;
        margin-left: 0;
    }
    
    /* Hide stat dividers on very small screens */
    .stat-divider {
        display: none;
    }
    
    /* Stack hero stats vertically on very small screens */
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    /* Better globe sizing on mobile */
    .globe-container {
        aspect-ratio: 1 / 1;
    }
    
    /* Adjust feature icons */
    .feature-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    /* Better testimonial avatars */
    .author-avatar {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }
    
    /* Ensure all sections respect padding */
    section {
        width: 100%;
        max-width: 100%;
    }
}

/* Landscape mode optimization for mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
}

/* Improve touch targets for all interactive elements */
@media (hover: none) and (pointer: coarse) {
    a, button, .btn, input[type="submit"] {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        padding: 1rem 0.75rem;
    }
}
