/* SMS Gateway Landing Page Styles */
/* Maintains AdminLTE consistency while creating modern landing page design */

/*
4-COLOR THEME SYSTEM USAGE GUIDELINES:

1. PRIMARY COLOR (#2563eb - Blue):
   - Main CTAs and primary buttons
   - Navigation active states
   - Primary feature icons (1st, 4th features)
   - Step numbers (1st step)
   - Pricing amounts
   - Main floating elements

2. SECONDARY COLOR (#64748b - Slate):
   - Secondary buttons and outlines
   - Trust indicators
   - Quote icons in testimonials
   - Author avatars
   - Step numbers (3rd step)
   - Secondary floating elements

3. ACCENT COLOR (#10b981 - Emerald):
   - Success states and highlights
   - Main CTA buttons (Start Free Trial)
   - User count badges
   - Testimonial top borders
   - Feature icons (2nd, 5th features)
   - Step numbers (2nd step)
   - Urgency indicators

4. NEUTRAL COLOR (#374151 - Gray):
   - Text content and body copy
   - Subtle backgrounds
   - Step numbers (4th step)
   - Neutral floating elements
   - General content areas

Color accessibility: All combinations maintain WCAG AA contrast ratios.
*/

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

.landing-page {
    font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

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

.landing-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.landing-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}

.nav-logo {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.nav-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-link:hover {
    color: var(--primary-color);
    text-decoration: none;
    background: rgba(37, 99, 235, 0.08);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.12);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9375rem;
    letter-spacing: 0.005em;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Enhanced CTA Buttons */
.btn-cta-main {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border: none;
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 200px;
    letter-spacing: 0.005em;
}

.btn-cta-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-cta-main:hover::before {
    left: 100%;
}

.btn-cta-main:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.btn-cta-main i {
    font-size: 1.2em;
    margin-right: 8px;
}

.btn-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.005em;
}

/* Urgency Indicators */
.urgency-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 14px 22px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    color: var(--neutral-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 500;
    letter-spacing: 0.005em;
    line-height: 1.4;
}

.urgency-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.live-counter {
    font-weight: 600;
    color: var(--accent-color);
}



/* Hero Section */
.hero-section {
    padding: 140px 0 80px;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    opacity: 0.95;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 50%;
    opacity: 0.1;
    animation: float-random 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
}

.floating-element:nth-child(3) {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
}

.floating-element:nth-child(4) {
    background: linear-gradient(135deg, var(--neutral-color), var(--neutral-hover));
}

.floating-element:nth-child(2) {
    animation-delay: -2s;
    animation-duration: 8s;
}

.floating-element:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 7s;
}

.floating-element:nth-child(4) {
    animation-delay: -1s;
    animation-duration: 9s;
}

@keyframes float-random {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--neutral-color);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--neutral-color);
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.005em;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.stat-item {
    text-align: left;
    flex: 1;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 1rem;
    color: var(--neutral-color);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.005em;
}

.hero-actions {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    align-items: center;
}

.hero-actions .btn {
    min-width: 200px;
    height: 56px;
    padding: 16px 32px;
    font-size: 1.0625rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.005em;
}

.hero-actions .btn-primary {
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.25);
}

.hero-actions .btn-secondary {
    background: transparent;
    color: var(--neutral-color);
    border: 2px solid var(--border-color);
    font-weight: 600;
}

.hero-actions .btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    background: rgba(0, 123, 255, 0.02);
}

.hero-trust {
    color: var(--neutral-color);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.005em;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 40px;
}

.hero-screenshot {
    max-width: 90%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.4s ease;
}

.hero-screenshot:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    max-height: 480px;
    transition: transform 0.4s ease;
}

.screenshot-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.005em;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    background: white;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* Alternate feature icon colors for variety */
.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-description {
    color: var(--neutral-color);
    line-height: 1.6;
    font-size: 1rem;
    letter-spacing: 0.005em;
}

/* Social Proof Section */
.social-proof-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e9ecef;
}

.social-proof-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.user-count-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px 35px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent-color);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.user-count {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.badge-text {
    font-size: 1rem;
    color: var(--neutral-color);
    font-weight: 600;
    letter-spacing: 0.005em;
    line-height: 1.4;
}

.trust-indicators {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-top: 8px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 18px;
    background: rgba(0, 123, 255, 0.04);
    border-radius: 24px;
    border: 1px solid rgba(0, 123, 255, 0.08);
    letter-spacing: 0.005em;
    line-height: 1.4;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    margin-bottom: 25px;
}

.quote-icon {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--neutral-color);
    font-style: italic;
    margin: 0;
    letter-spacing: 0.005em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.author-title {
    font-size: 0.9375rem;
    color: var(--secondary-color);
    letter-spacing: 0.005em;
}

/* Recent Activity */
.recent-activity {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.activity-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--neutral-color);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.005em;
}

.activity-pulse {
    color: #28a745;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.step-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

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

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Alternate step number colors */
.step-card:nth-child(2) .step-number {
    background: var(--accent-color);
}

.step-card:nth-child(3) .step-number {
    background: var(--secondary-color);
}

.step-card:nth-child(4) .step-number {
    background: var(--neutral-color);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.step-description {
    color: var(--neutral-color);
    line-height: 1.6;
    font-size: 1rem;
    letter-spacing: 0.005em;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

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

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

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 30px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.amount {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--secondary-color);
}

.pricing-features {
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 16px;
}

.no-plans-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--neutral-color);
    font-size: 1.125rem;
    letter-spacing: 0.005em;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.faq-icon {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px 25px;
    display: none;
    color: var(--neutral-color);
    line-height: 1.6;
    font-size: 1rem;
    letter-spacing: 0.005em;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 8px;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.cta-section .btn-outline {
    color: white;
    border-color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Footer Styles */
.landing-footer {
    background: #37474f;
    color: white;
}

/* Social Media Bar */
.footer-social-bar {
    background: var(--primary-color);
    padding: 12px 0;
}

.social-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-text {
    color: white;
    font-size: 1rem;
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-icon:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Main Footer Content */
.footer-main {
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

.footer-column:first-child {
    max-width: 320px;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-description {
    color: #b0bec5;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
    letter-spacing: 0.005em;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.005em;
    display: inline-block;
    padding: 8px 0;
    min-height: 44px;
    line-height: 1.5;
    border-radius: 4px;
}

.footer-list a:hover {
    color: white;
    text-decoration: none;
    transform: translateX(4px);
}

.footer-list a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    color: white;
}



/* Footer Bottom */
.footer-bottom {
    background: #263238;
    padding: 16px 0;
    text-align: center;
}

.footer-copyright {
    color: #90a4ae;
    font-size: 0.875rem;
    margin: 0;
}

.footer-copyright a {
    color: #90a4ae;
    text-decoration: none;
}

.footer-copyright a:hover {
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 6px;
    }

    .cta-subtitle {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-column:first-child {
        max-width: none;
    }

    .footer-main {
        padding: 36px 0;
    }

    .footer-social-bar {
        padding: 16px 0;
    }

    .footer-bottom {
        padding: 20px 0;
    }
}

/* Medium tablet breakpoint */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* Container and Layout */
    .container {
        padding: 0 16px;
        max-width: 100%;
    }



    /* Hero Section Mobile Optimization */
    .hero-section {
        padding: 120px 0 80px;
        min-height: auto;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        padding: 0 16px;
        max-width: 100%;
    }

    .hero-text {
        max-width: 100%;
        order: 1;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.15;
        margin-bottom: 28px;
        letter-spacing: -0.02em;
        font-weight: 700;
        color: #1f2937;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.6;
        margin-bottom: 48px;
        padding: 0 8px;
        color: #4b5563;
        font-weight: 400;
    }

    /* Enhanced Button Styling */
    .btn {
        min-height: 48px;
        padding: 14px 24px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .btn-cta-main,
    .btn-primary {
        width: 100%;
        max-width: 320px;
        min-height: 52px;
        padding: 16px 24px;
        font-size: 1.0625rem;
        font-weight: 600;
    }

    .btn-outline {
        width: 100%;
        max-width: 320px;
        min-height: 48px;
        border: 2px solid var(--primary-color);
    }

    /* Hero Stats Mobile Layout */
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 56px;
        padding: 0;
    }

    .stat-item {
        text-align: center;
        padding: 28px 20px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .stat-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .stat-number {
        font-size: 2.75rem;
        font-weight: 800;
        margin-bottom: 8px;
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
    }

    .stat-label {
        font-size: 1rem;
        line-height: 1.4;
        color: #6b7280;
        font-weight: 500;
    }

    /* Hero Actions Mobile Layout */
    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 56px;
        padding: 0;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        min-height: 56px;
        font-size: 1.125rem;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .hero-actions .btn-primary {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        border: none;
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    }

    .hero-actions .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    }

    .hero-actions .btn-secondary {
        background: rgba(255, 255, 255, 0.9);
        color: #374151;
        border: 2px solid #e5e7eb;
        backdrop-filter: blur(10px);
    }

    .hero-actions .btn-secondary:hover {
        background: rgba(255, 255, 255, 1);
        border-color: #2563eb;
        color: #2563eb;
        transform: translateY(-2px);
    }

    /* Urgency Indicators */
    .urgency-indicators {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        padding: 0 16px;
    }

    .urgency-item {
        font-size: 0.9375rem;
        padding: 14px 20px;
        width: 100%;
        max-width: 320px;
        text-align: center;
        border-radius: 25px;
    }

    .social-proof-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .trust-indicators {
        justify-content: center;
        gap: 20px;
    }

    .trust-indicators {
        justify-content: center;
        gap: 16px;
        margin-top: 16px;
    }

    .trust-item {
        font-size: 0.9375rem;
        padding: 8px 14px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .user-count-badge {
        padding: 20px 25px;
        gap: 15px;
    }

    .user-count {
        font-size: 2rem;
    }

    /* Enhanced Mobile Navigation */
    .landing-nav {
        padding: 12px 0;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .nav-container {
        padding: 0 16px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-link {
        padding: 16px 20px;
        margin: 4px 0;
        border-radius: 12px;
        font-size: 1.0625rem;
        font-weight: 500;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(37, 99, 235, 0.08);
        transform: translateY(-1px);
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        background: rgba(37, 99, 235, 0.15);
        color: var(--primary-color);
        font-weight: 600;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-toggle:hover {
        background: rgba(37, 99, 235, 0.08);
    }

    .nav-toggle span {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero Content Layout */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 8px;
    }

    /* Hero Image Mobile Optimization */
    .hero-image {
        padding: 0;
        margin-top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        order: 2;
    }

    .hero-screenshot {
        max-width: 100%;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        position: relative;
    }

    .hero-screenshot::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(29, 78, 216, 0.1));
        border-radius: 20px;
        z-index: -1;
    }

    .screenshot-img {
        width: 100%;
        height: auto;
        max-height: 350px;
        border-radius: 16px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        object-fit: contain;
        transition: all 0.3s ease;
    }

    .screenshot-img:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    }

    /* All images responsive */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Circular graphics and icons */
    .feature-icon,
    .step-icon,
    .testimonial-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto;
    }

    .logo-img,
    .footer-logo-img {
        max-width: 120px;
        height: auto;
    }

    /* Section Titles and Typography */
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 16px;
        padding: 0 16px;
    }

    .section-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 32px;
        padding: 0 16px;
    }

    /* Features Grid - Equal Card Dimensions */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }

    .feature-card {
        padding: 24px;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .feature-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .feature-description {
        font-size: 1rem;
        line-height: 1.6;
        flex-grow: 1;
    }

    /* Steps Grid */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }

    .step-card {
        padding: 24px;
        min-height: 180px;
        text-align: center;
        border-radius: 12px;
    }

    /* Pricing Grid */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }

    .pricing-card {
        padding: 32px 24px;
        min-height: 400px;
        border-radius: 12px;
        transform: none !important;
    }

    .pricing-card.popular {
        transform: none !important;
        border: 2px solid var(--primary-color);
    }

    /* FAQ Section */
    .faq-grid {
        padding: 0 16px;
    }

    .faq-item {
        margin-bottom: 16px;
        border-radius: 12px;
        overflow: hidden;
    }

    .faq-question {
        padding: 20px;
        font-size: 1.0625rem;
    }

    .faq-question h3 {
        font-size: 1.0625rem;
        line-height: 1.4;
        margin: 0;
    }

    .faq-answer {
        padding: 0 20px 20px;
        font-size: 1rem;
        line-height: 1.6;
    }

    /* CTA Section */
    .cta-section {
        padding: 48px 0;
    }

    .cta-content {
        padding: 0 16px;
        text-align: center;
    }

    .cta-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .cta-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 32px;
        padding: 0 8px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0 16px;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 320px;
        min-height: 52px;
    }

    /* Footer Improvements - Ultra Compact for Mobile */
    .footer-social-bar {
        padding: 10px 0 !important;
    }

    .social-content {
        flex-direction: column;
        gap: 10px !important;
        text-align: center;
        padding: 0 20px;
    }

    .social-text {
        font-size: 0.9375rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0;
    }

    .social-icons {
        gap: 12px !important;
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-icon {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.125rem !important;
        border-radius: 10px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .social-icon:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .footer-main {
        padding: 20px 0 !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px !important;
        text-align: center;
        padding: 0 20px;
    }

    .footer-column {
        max-width: none;
        margin: 0 auto;
    }

    .footer-column:first-child {
        max-width: 400px;
    }

    .footer-heading {
        font-size: 1.125rem !important;
        margin-bottom: 12px !important;
        color: white;
        position: relative;
    }

    .footer-heading::after {
        content: '';
        display: block;
        width: 50px;
        height: 2px;
        background: var(--primary-color);
        margin: 8px auto 0 !important;
        border-radius: 2px;
    }

    .footer-description {
        font-size: 0.9375rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0;
        color: #b0bec5;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-list {
        max-width: 280px;
        margin: 0 auto;
    }

    .footer-list li {
        margin-bottom: 8px !important;
    }

    .footer-list a {
        font-size: 0.9375rem !important;
        padding: 8px 14px !important;
        display: inline-block;
        min-height: 44px;
        line-height: 1.3 !important;
        border-radius: 6px;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
    }

    .footer-list a:hover {
        background: rgba(255,255,255,0.1);
        border-color: var(--primary-color);
        transform: translateY(-1px);
        color: white;
    }

    .footer-bottom {
        padding: 14px 0 !important;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .footer-copyright {
        font-size: 0.9375rem !important;
        line-height: 1.4 !important;
        padding: 0 20px;
        color: #90a4ae;
    }

    .footer-copyright a {
        color: var(--primary-color);
        font-weight: 500;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-copyright a:hover {
        color: white;
        text-decoration: underline;
    }
}

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card,
    .step-card,
    .pricing-card {
        padding: 30px 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }

    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    /* Footer Mobile Optimizations for Small Screens */
    .footer-social-bar {
        padding: 8px 0 !important;
    }

    .social-content {
        padding: 0 15px;
        gap: 8px !important;
    }

    .social-text {
        font-size: 0.875rem !important;
        line-height: 1.2 !important;
    }

    .social-icons {
        gap: 10px !important;
    }

    .social-icon {
        width: 44px !important;
        height: 44px !important;
        font-size: 1rem !important;
        border-radius: 8px;
    }

    .footer-main {
        padding: 16px 0 !important;
    }

    .footer-content {
        gap: 16px !important;
        padding: 0 15px;
    }

    .footer-heading {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .footer-heading::after {
        width: 40px;
        height: 2px;
        margin-top: 6px;
    }

    .footer-description {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .footer-list {
        margin-top: 0;
    }

    .footer-list li {
        margin-bottom: 6px;
    }

    .footer-list a {
        font-size: 0.875rem;
        padding: 6px 10px;
        min-height: 44px;
        line-height: 1.3;
    }

    .footer-bottom {
        padding: 12px 0;
    }

    .footer-copyright {
        font-size: 0.8125rem;
        padding: 0 15px;
        line-height: 1.3;
    }
}

/* Extra Small Mobile Devices - Maximum Compact Footer */
@media (max-width: 400px) {
    .footer-social-bar {
        padding: 6px 0;
    }

    .social-content {
        gap: 6px;
        padding: 0 12px;
    }

    .social-text {
        font-size: 0.8125rem;
        line-height: 1.2;
    }

    .social-icons {
        gap: 8px;
    }

    .footer-main {
        padding: 12px 0;
    }

    .footer-content {
        gap: 12px;
        padding: 0 12px;
    }

    .footer-heading {
        font-size: 0.9375rem;
        margin-bottom: 6px;
    }

    .footer-heading::after {
        width: 35px;
        margin-top: 4px;
    }

    .footer-description {
        font-size: 0.8125rem;
        line-height: 1.3;
    }

    .footer-list li {
        margin-bottom: 4px;
    }

    .footer-list a {
        font-size: 0.8125rem;
        padding: 6px 8px;
        min-height: 44px;
        line-height: 1.2;
    }

    .footer-bottom {
        padding: 10px 0;
    }

    .footer-copyright {
        font-size: 0.75rem;
        padding: 0 12px;
        line-height: 1.2;
    }
}

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

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(60, 141, 188, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(60, 141, 188, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(60, 141, 188, 0);
    }
}

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

@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--primary-color);
    }
    50% {
        box-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
    }
    100% {
        box-shadow: 0 0 5px var(--primary-color);
    }
}



.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Interactive Element Styles */
.feature-hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}

.icon-bounce {
    animation: bounce 0.6s ease-in-out;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

.btn-pulse:hover {
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.pricing-hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2) !important;
    border-color: var(--accent-color) !important;
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Hero Title - No Animation */
.hero-title {
    overflow: visible;
    white-space: normal;
}

/* Enhanced Statistics */
.stat-number {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: var(--primary-hover);
    /* Additional Mobile Enhancements */

    /* Testimonials */
    .testimonials-section {
        padding: 48px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }

    .testimonial-card {
        padding: 24px;
        border-radius: 12px;
        text-align: center;
    }

    .testimonial-avatar {
        width: 48px;
        height: 48px;
        margin: 0 auto 16px;
        border-radius: 50%;
    }

    /* Trust Indicators */
    .trust-indicators {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 0 16px;
    }

    .trust-item {
        font-size: 0.9375rem;
        padding: 10px 16px;
        min-height: 44px;
        display: flex;
        align-items: center;
        border-radius: 20px;
    }

    /* User Count Badge */
    .user-count-badge {
        padding: 20px;
        margin: 0 16px;
        border-radius: 12px;
        text-align: center;
    }

    .user-count {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    /* Performance Optimizations */
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }

    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Reduce motion for accessibility */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        html {
            scroll-behavior: auto;
        }
    }

    /* Touch-friendly interactive elements */
    button,
    .btn,
    .nav-link,
    .faq-question,
    .social-icon {
        touch-action: manipulation;
        -webkit-user-select: none;
        user-select: none;
    }

    /* Prevent zoom on input focus */
    input,
    select,
    textarea {
        font-size: 16px;
    }
}

/* Additional Mobile Breakpoints */
@media (max-width: 480px) {
    .hero-section {
        padding: 100px 0 70px;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        padding: 0 4px;
        margin-bottom: 40px;
    }

    .hero-stats {
        gap: 16px;
        margin-bottom: 48px;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-actions {
        gap: 16px;
        margin-bottom: 48px;
    }

    .hero-actions .btn {
        max-width: 100%;
        min-height: 52px;
        font-size: 1.0625rem;
    }

    .hero-screenshot {
        max-width: 320px;
    }

    .screenshot-img {
        max-height: 300px;
        border-radius: 12px;
    }
}

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

    .hero-content {
        padding: 0 12px;
        gap: 48px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
        margin-bottom: 36px;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.9375rem;
    }

    .hero-actions {
        gap: 16px;
        margin-bottom: 40px;
    }

    .hero-actions .btn {
        min-height: 48px;
        font-size: 1rem;
        padding: 14px 20px;
    }
}

@media (max-width: 320px) {
    .hero-section {
        padding: 70px 0 40px;
    }

    .hero-title {
        font-size: 1.875rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .stat-item {
        padding: 16px 8px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-screenshot {
        max-width: 280px;
    }

    .screenshot-img {
        max-height: 250px;
    }
}

/* Accessibility Improvements */
.btn:focus,
.nav-link:focus,
.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

/* Animation Classes */
.animate-counter {
    animation: countUp 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

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

/* Print Styles */
@media print {
    .landing-nav,
    .nav-toggle,
    .hero-actions,
    .cta-section,
    .landing-footer {
        display: none;
    }

    .hero-section {
        padding: 20px 0;
        background: white;
    }

    .section-title,
    .hero-title {
        color: black;
    }
}

/* ULTRA COMPACT FOOTER - HIGHEST PRIORITY */
@media screen and (max-width: 768px) {
    .landing-footer .footer-social-bar {
        padding: 6px 0 !important;
        background: var(--primary-color) !important;
    }

    .landing-footer .social-content {
        gap: 6px !important;
        padding: 0 16px !important;
    }

    .landing-footer .footer-main {
        padding: 12px 0 !important;
    }

    .landing-footer .footer-content {
        gap: 12px !important;
        padding: 0 16px !important;
    }

    .landing-footer .footer-heading {
        margin-bottom: 6px !important;
        font-size: 0.9375rem !important;
    }

    .landing-footer .footer-list li {
        margin-bottom: 4px !important;
    }

    .landing-footer .footer-list a {
        padding: 4px 10px !important;
        font-size: 0.8125rem !important;
        line-height: 1.2 !important;
    }

    .landing-footer .footer-bottom {
        padding: 8px 0 !important;
    }

    .landing-footer .footer-copyright {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
    }
}
