@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary-blue: #2563eb;
    --primary-blue-light: #3b82f6;
    --primary-blue-dark: #1d4ed8;
    --secondary-blue: #1e40af;
    --accent-green: #059669;
    --accent-orange: #ea580c;
    --success-green: #10b981;
    --warning-yellow: #f59e0b;
    --error-red: #dc2626;
    
    --light-bg: #ffffff;
    --light-bg-secondary: #f8fafc;
    --light-bg-tertiary: #f1f5f9;
    --card-bg: #ffffff;
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --border-dark: #94a3b8;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    --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);
    
    --gradient-primary: linear-gradient(135deg, var(--accent-green) 0%, var(--success-green) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    --gradient-hero: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    --gradient-green-soft: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--light-bg);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--primary-blue);
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    font-family: 'DM Sans', sans-serif;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-blue);
    font-weight: 700;
}

.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 1px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 140px;
    padding-bottom: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

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

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(5, 150, 105, 0.05) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

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

/* Hero Badge */
.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-badge span {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

.highlight {
    color: var(--primary-blue);
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 95%;
    font-family: 'DM Sans', sans-serif;
}

/* Modern Hero Stats */
.hero-stats-modern {
    margin: 3rem 0;
}

.stats-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
}

.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.stats-header h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-green);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: 50%;
    animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}

.stats-grid {
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

.stat-block {
    flex: 1;
    text-align: center;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    height: 60px;
}

.stat-value .counter {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
    min-width: 120px;
    width: 120px;
    display: inline-block;
    text-align: center;
}

.stat-unit {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success-green);
    opacity: 0.8;
}

.stat-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, 
        transparent,
        rgba(16, 185, 129, 0.3),
        transparent
    );
}

/* Enhanced counter animation */
.counter {
    transition: all 0.3s ease;
    display: inline-block;
}

.counter.counting {
    animation: count-pulse 0.1s ease-in-out;
}

@keyframes count-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Responsive design for stats */
@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .stat-block {
        margin-bottom: 1rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, 
            transparent,
            rgba(16, 185, 129, 0.3),
            transparent
        );
    }
    
    .stat-value .counter {
        font-size: 2rem;
    }
    
    .stats-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Modern Features Section */
.features-modern {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

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

.header-content h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
}

.header-stats {
    display: flex;
    gap: 2rem;
}

.mini-stat {
    text-align: center;
    padding: 1rem 1.5rem;
    background: var(--gradient-green-soft);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.mini-number {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 0.25rem;
    min-height: 32px;
    min-width: 60px;
}

.mini-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.feature-visual {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.speed-indicator {
    position: relative;
    width: 150px;
    height: 150px;
}

.speed-ring {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speed-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.speed-ring .progress-bg {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 8;
}

.speed-ring .progress-bar {
    fill: none;
    stroke: var(--accent-green);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339; /* Circumference of circle with radius 54 */
    stroke-dashoffset: 339;
    animation: progressRing 2.5s ease-out forwards;
    animation-play-state: paused;
}

.speed-ring.animate-progress .progress-bar {
    animation-play-state: running;
}


@keyframes progressRing {
    0% {
        stroke-dashoffset: 339;
    }
    100% {
        stroke-dashoffset: 85; /* 75% of 339 = 254, so 339 - 254 = 85 */
    }
}


.speed-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.speed-number {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
}

.speed-unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-benefits {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--gradient-green-soft);
    border-radius: 25px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.benefit-icon {
    font-size: 1.2rem;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card-modern {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-icon-modern {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card-modern h4 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card-modern p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlight-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    display: inline-block;
}

/* Responsive design for features */
@media (max-width: 768px) {
    .section-header-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .header-content h2 {
        font-size: 2.25rem;
    }
    
    .feature-highlight {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }
    
    .feature-content h3 {
        font-size: 2rem;
    }
    
    .feature-benefits {
        justify-content: center;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Payments Section */
.payments-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.payment-service {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.payment-service:hover::before {
    transform: scaleX(1);
}

.payment-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.payment-service h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.payment-service p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-check {
    color: var(--accent-green);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

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

.payment-stat {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--gradient-green-soft);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.stat-content {
    flex: 1;
}

.stat-number-large {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-large {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive payments section */
@media (max-width: 768px) {
    .payments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-service {
        padding: 2rem;
    }
    
    .payment-stats {
        grid-template-columns: 1fr;
    }
    
    .payment-stat {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-medium);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn svg {
    margin-left: 0.5rem;
}

/* Hero Social Proof */
.hero-social-proof {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.hero-social-proof p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.company-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.logo-item {
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: 'DM Sans', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Hero Graphic */
.hero-graphic {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -50px;
    right: -50px;
    animation: float-slow 8s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: #10b981;
    bottom: -30px;
    left: -30px;
    animation: float-slow 8s ease-in-out infinite reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: #f59e0b;
    top: 50%;
    left: 20%;
    animation: float-slow 10s ease-in-out infinite;
}

.graphic-content {
    position: relative;
    z-index: 2;
}

.main-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.fastag-device {
    background: linear-gradient(135deg, #1e40af, var(--primary));
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

.fastag-device::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s ease-in-out infinite;
}

.device-screen {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    min-width: 200px;
    position: relative;
    z-index: 2;
}

.screen-header {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.screen-amount {
    font-family: 'Work Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.screen-status {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.device-base {
    width: 40px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin: 1rem auto 0;
}

.payment-flow {
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-line {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #10b981);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.flow-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: flow 2s ease-in-out infinite;
}

.flow-dots {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse-dot 2s ease-in-out infinite;
}

.dot-2 {
    animation-delay: 0.5s;
}

.dot-3 {
    animation-delay: 1s;
}

.success-indicator {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.success-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

.success-text {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.metrics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.header-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.header-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.metric-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.9));
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.metric-card.primary {
    border-left: 4px solid var(--primary);
}

.metric-card.secondary {
    border-left: 4px solid #10b981;
}

.metric-card.tertiary {
    border-left: 4px solid #f59e0b;
}

.metric-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.metric-trend {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    display: inline-block;
}

.metric-trend.up {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.metric-trend.down {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.chart-container {
    background: rgba(248, 250, 252, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.chart-header {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 80px;
    margin-bottom: 0.5rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary), #3b82f6);
    border-radius: 4px 4px 0 0;
    animation: growBar 2s ease-out;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.api-status {
    background: rgba(248, 250, 252, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
}

.api-header {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

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

.service-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.service-status.operational {
    font-size: 0.75rem;
    font-weight: 600;
    color: #059669;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
}

@keyframes growBar {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

.dashboard-header {
    background: var(--light-bg-secondary);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item.active {
    color: var(--primary-blue);
    font-weight: 700;
}

.user-profile {
    display: flex;
    align-items: center;
}

.profile-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Dashboard Content */
.dashboard-content {
    padding: 2rem;
}

.balance-card {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.balance-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.balance-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.balance-amount {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 1.5rem;
}

.balance-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.quick-action-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-action-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue-light);
}

.action-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.action-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: 'DM Sans', sans-serif;
}

/* Recent Transactions */
.recent-transactions {
    background: var(--light-bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
}

.transaction-header {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Work Sans', sans-serif;
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.transaction-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid var(--border-light);
}

.transaction-details {
    flex: 1;
}

.transaction-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    font-family: 'DM Sans', sans-serif;
}

.transaction-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
}

.transaction-amount {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--error-red);
    font-family: 'Work Sans', sans-serif;
}

/* Visual Elements */
.visual-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.trust-badge {
    position: absolute;
    top: 15%;
    left: -10%;
    background: var(--gradient-primary);
    color: white;
    border-radius: 16px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.25);
    animation: slideInLeft 2s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge .badge-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.trust-badge .badge-text {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.trust-badge .badge-subtext {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 500;
}

.security-badge {
    position: absolute;
    top: 65%;
    right: -8%;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    border-radius: 16px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.25);
    animation: slideInRight 2s ease-out 0.5s both;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.security-badge .badge-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.security-badge .badge-text {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.security-badge .badge-subtext {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 500;
}

.status-indicator {
    position: absolute;
    bottom: 15%;
    left: 5%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 2s ease-out 1s both;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.indicator-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

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

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes flow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

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

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

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(0);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

/* Features Section */
.about {
    padding: 6rem 0;
    background: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.about-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue-light);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    display: block;
}

.about-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--light-bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 16px 16px 0 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-family: 'Work Sans', sans-serif;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

.contact-form {
    background: var(--light-bg-secondary);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: white;
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: 'Work Sans', sans-serif;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 1.5rem;
}

.footer-contact-info {
    margin-top: 1.5rem;
}

.footer-contact-info p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-family: 'Work Sans', sans-serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #10b981;
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #10b981;
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.4);
}

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

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

/* Utility Classes */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
    opacity: 0;
    animation: slideInLeft 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Mobile-First Design - Hide desktop elements on mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

/* Desktop Design - Hide mobile elements on desktop */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    /* Mobile Navigation */
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid var(--border-light);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    /* Hero Section */
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .hero-content {
        max-width: none;
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-graphic {
        height: 400px;
    }
    
    .hero-badge span {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-social-proof p {
        font-size: 0.85rem;
    }
    
    .company-logos {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo-item {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    /* Visual Elements Mobile */
    .visual-elements {
        display: none;
    }
    
    .fastag-device {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .screen-amount {
        font-size: 1.5rem;
    }
    
    .flow-line {
        width: 100px;
    }
    
    /* Sections */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* About/Features Grid */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .about-card h3 {
        font-size: 1.2rem;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card ul {
        margin-top: 1rem;
    }
    
    /* Contact Section */
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-item {
        text-align: center;
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablet styles */
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ==========================================
   MOBILE-FIRST RESPONSIVE DESIGN
   ========================================== */

/* Reset and Mobile Base Styles */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 1rem;
    }
    
    /* Mobile Hero Section - Card Stack Design */
    .mobile-hero {
        padding: 80px 0 0;
        background: #ffffff;
        color: #1f2937;
        min-height: 100vh;
        display: flex !important;
        flex-direction: column;
        width: 100%;
        box-sizing: border-box;
        position: relative;
        overflow: hidden;
    }
    
    /* Mobile Header Card */
    .mobile-header-card {
        background: linear-gradient(135deg, #10b981, #059669);
        margin: 0 1rem;
        border-radius: 24px;
        padding: 2rem 1.5rem;
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
        margin-bottom: 1.5rem;
    }
    
    .card-shimmer {
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: shimmer 3s ease-in-out infinite;
    }
    
    .header-card-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        display: block;
    }
    
    .mobile-header-card h1 {
        font-size: 1.75rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .mobile-header-card p {
        font-size: 1rem;
        opacity: 0.9;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .header-card-stats {
        display: flex;
        justify-content: center;
        gap: 2rem;
    }
    
    .header-stat {
        text-align: center;
    }
    
    .header-stat-number {
        display: block;
        font-size: 1.5rem;
        font-weight: 800;
        color: white;
    }
    
    .header-stat-label {
        font-size: 0.8rem;
        opacity: 0.8;
        color: white;
    }
    
    .mobile-header-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: shimmer 3s ease-in-out infinite;
    }
    
    @keyframes shimmer {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        50% { transform: translate(20px, -20px) rotate(45deg); }
    }
    
    .mobile-header-content {
        position: relative;
        z-index: 2;
    }
    
    .mobile-header-title {
        font-size: 1.75rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .mobile-header-subtitle {
        font-size: 1rem;
        opacity: 0.9;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .mobile-cta-button {
        background: white;
        color: #059669;
        padding: 1rem 2rem;
        border-radius: 16px;
        font-weight: 600;
        font-size: 1rem;
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .mobile-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    /* Mobile Quick Stats */
    .mobile-quick-stats {
        display: flex;
        justify-content: space-between;
        margin: 0 1rem 2rem;
        gap: 0.75rem;
    }
    
    .quick-stat-item {
        flex: 1;
        background: white;
        padding: 1rem 0.75rem;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        border: 1px solid #f3f4f6;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .quick-stat-icon {
        font-size: 1.5rem;
    }
    
    .quick-stat-text {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .quick-stat-number {
        font-size: 1rem;
        font-weight: 800;
        color: #10b981;
    }
    
    .quick-stat-label {
        font-size: 0.7rem;
        color: #6b7280;
        font-weight: 500;
    }
    
    /* Mobile Action Cards */
    .mobile-action-cards {
        padding: 0 1rem;
        margin-bottom: 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .action-card {
        background: white;
        border-radius: 20px;
        padding: 1.25rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        border: 1px solid #f3f4f6;
        transition: all 0.3s ease;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .action-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        border-color: #10b981;
    }
    
    .action-card-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #10b981, #059669);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        font-size: 20px;
        color: white;
    }
    
    .action-card-content {
        flex: 1;
    }
    
    .action-card-content h3 {
        font-size: 1rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 0.25rem;
        line-height: 1.3;
    }
    
    .action-card-content p {
        font-size: 0.8rem;
        color: #6b7280;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .action-card-arrow {
        font-size: 1.2rem;
        color: #10b981;
        font-weight: bold;
        align-self: flex-end;
        margin-top: auto;
    }
    
    /* Mobile Primary Action */
    .mobile-primary-action {
        margin: 0 1rem 2rem;
    }
    
    .primary-action-card {
        background: linear-gradient(135deg, #1f2937, #374151);
        border-radius: 24px;
        padding: 2rem 1.5rem;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .slide-shine {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        animation: slideShine 3s infinite;
    }
    
    @keyframes slideShine {
        0% { left: -100%; }
        100% { left: 100%; }
    }
    
    .primary-action-content {
        position: relative;
        z-index: 2;
    }
    
    .primary-action-content h2 {
        font-size: 1.25rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .primary-action-content p {
        font-size: 0.9rem;
        opacity: 0.9;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .primary-action-btn {
        background: white;
        color: #1f2937;
        padding: 1rem 2rem;
        border-radius: 16px;
        font-weight: 700;
        font-size: 1rem;
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .primary-action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }
    
    .btn-arrow {
        font-size: 1.2rem;
        font-weight: bold;
        transition: transform 0.3s ease;
    }
    
    .primary-action-btn:hover .btn-arrow {
        transform: translateX(4px);
    }
    
    /* Mobile Contact Section */
    .mobile-contact-section {
        padding: 2rem 1rem;
        background: #f8fafc;
    }
    
    .mobile-contact-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .mobile-contact-header h2 {
        font-size: 1.5rem;
        font-weight: 800;
        color: #1f2937;
        margin-bottom: 0.5rem;
    }
    
    .mobile-contact-header p {
        font-size: 1rem;
        color: #6b7280;
    }
    
    .mobile-contact-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .mobile-contact-card {
        background: white;
        border-radius: 16px;
        padding: 1.25rem;
        text-align: center;
        box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        border: 1px solid #f3f4f6;
        transition: all 0.3s ease;
    }
    
    .mobile-contact-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .contact-card-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        display: block;
    }
    
    .contact-card-content h4 {
        font-size: 0.9rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 0.25rem;
    }
    
    .contact-card-content p {
        font-size: 0.8rem;
        color: #10b981;
        font-weight: 600;
    }
    
    .mobile-contact-form {
        background: white;
        border-radius: 20px;
        padding: 1.5rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        border: 1px solid #f3f4f6;
    }
    
    .mobile-contact-form h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .mobile-form-group {
        margin-bottom: 1rem;
    }
    
    .mobile-form-group input,
    .mobile-form-group textarea {
        width: 100%;
        padding: 1rem;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        font-size: 1rem;
        font-family: inherit;
        transition: all 0.3s ease;
        background: #f9fafb;
    }
    
    .mobile-form-group input:focus,
    .mobile-form-group textarea:focus {
        outline: none;
        border-color: #10b981;
        background: white;
        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    }
    
    .mobile-form-group textarea {
        resize: vertical;
        min-height: 100px;
    }
    
    .mobile-form-btn {
        width: 100%;
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        padding: 1rem;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1rem;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    
    .mobile-form-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    }
    
    .mobile-form-btn .btn-arrow {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }
    
    .mobile-form-btn:hover .btn-arrow {
        transform: translateX(4px);
    }
    
    /* Mobile Footer */
    .mobile-footer {
        background: #1f2937;
        color: white;
        padding: 2rem 1rem 1rem;
    }
    
    .mobile-footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .mobile-footer-brand h3 {
        font-size: 1.5rem;
        font-weight: 800;
        color: white;
        margin-bottom: 0.5rem;
    }
    
    .mobile-footer-brand p {
        font-size: 0.9rem;
        color: #9ca3af;
    }
    
    .mobile-footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-link-group h4 {
        font-size: 1rem;
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
    }
    
    .footer-link-group ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-link-group li {
        margin-bottom: 0.75rem;
    }
    
    .footer-link-group a {
        color: #d1d5db;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }
    
    .footer-link-group a:hover {
        color: #10b981;
    }
    
    .mobile-footer-bottom {
        border-top: 1px solid #374151;
        padding-top: 1rem;
        text-align: center;
    }
    
    .mobile-footer-bottom p {
        font-size: 0.8rem;
        color: #9ca3af;
        margin-bottom: 0.25rem;
    }
    
    .footer-location {
        color: #6b7280 !important;
    }
    
    @keyframes mobilePatternMove {
        0% {
            transform: translate(0, 0);
        }
        100% {
            transform: translate(60px, 60px);
        }
    }
    
    .mobile-hero-content {
        position: relative;
        z-index: 2;
        max-width: 90%;
    }
    
    .mobile-hero-badge {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        border: none;
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 2rem;
        display: inline-block;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    
    .mobile-floating-cards {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        z-index: 1;
    }
    
    .mobile-floating-card {
        position: absolute;
        background: rgba(255,255,255,0.9);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(16, 185, 129, 0.2);
        border-radius: 12px;
        padding: 0.8rem;
        opacity: 0.9;
        animation: mobileFloat 6s ease-in-out infinite;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .mobile-floating-card.card-1 {
        top: 15%;
        left: 8%;
        animation-delay: 0s;
    }
    
    .mobile-floating-card.card-2 {
        top: 55%;
        right: 10%;
        animation-delay: 2s;
    }
    
    .mobile-floating-card.card-3 {
        bottom: 25%;
        left: 15%;
        animation-delay: 4s;
    }
    
    .mobile-floating-card.card-4 {
        top: 35%;
        right: 20%;
        animation-delay: 6s;
    }
    
    .floating-card-icon {
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, #10b981, #059669);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
        font-weight: 600;
        color: white;
    }
    
    .floating-card-text {
        font-size: 0.7rem;
        font-weight: 600;
        color: #374151;
        line-height: 1.2;
    }
    
    .mobile-hero h1 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 1rem;
        line-height: 1.2;
        max-width: 90%;
        word-wrap: break-word;
    }
    
    .mobile-hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        max-width: 90%;
        line-height: 1.5;
    }
    
    .mobile-hero .btn {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
        border: none;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        min-width: 150px;
        transition: all 0.3s ease;
    }
    
    .mobile-hero .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
    }
    
    /* Mobile Stats Cards */
    .mobile-stats {
        padding: 2rem 1rem;
        background: #f8fafc;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-stats h2 {
        text-align: center;
        font-size: 1.5rem;
        color: #1f2937;
        margin: 0 0 1.5rem 0;
        padding: 0;
    }
    
    .mobile-stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1.5rem auto 0;
        max-width: 400px;
        width: 100%;
    }
    
    .mobile-stat-card {
        background: white;
        padding: 1.5rem 1rem;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        border: 1px solid rgba(16, 185, 129, 0.1);
        min-height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .mobile-stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .mobile-stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #10b981, #059669);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    
    .mobile-stat-card:hover::before {
        transform: scaleX(1);
    }
    
    .mobile-stat-number {
        font-size: 1.8rem;
        font-weight: 800;
        color: #059669;
        margin-bottom: 0.5rem;
    }
    
    .mobile-stat-label {
        font-size: 0.9rem;
        color: #6b7280;
        font-weight: 500;
    }
    
    /* Mobile Features */
    .mobile-features {
        padding: 3rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-features h2 {
        text-align: center;
        font-size: 1.8rem;
        color: #1f2937;
        margin: 0 0 2rem 0;
        padding: 0;
    }
    
    .mobile-feature-card {
        background: white;
        margin-bottom: 1.5rem;
        border-radius: 20px;
        padding: 2rem 1.5rem;
        box-shadow: 0 6px 25px rgba(0,0,0,0.12);
        border: 1px solid rgba(16, 185, 129, 0.08);
        text-align: center;
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    
    .mobile-feature-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #10b981, #059669);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        position: relative;
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    }
    
    .mobile-feature-icon::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 32px;
        height: 32px;
        background: white;
        border-radius: 8px;
    }
    
    .mobile-feature-icon.icon-speed::after {
        content: '⚡';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 18px;
        z-index: 1;
    }
    
    .mobile-feature-icon.icon-security::after {
        content: '🔒';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 18px;
        z-index: 1;
    }
    
    .mobile-feature-icon.icon-mobile::after {
        content: '📱';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 18px;
        z-index: 1;
    }
    
    .mobile-feature-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 1rem;
    }
    
    .mobile-feature-card p {
        color: #6b7280;
        line-height: 1.6;
    }
    
    /* Mobile Services */
    .mobile-services {
        background: #f8fafc;
        padding: 3rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-services h2 {
        text-align: center;
        font-size: 1.8rem;
        color: #1f2937;
        margin: 0 0 2rem 0;
        padding: 0;
    }
    
    .mobile-service-card {
        background: white;
        border-radius: 20px;
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 6px 25px rgba(0,0,0,0.12);
        border: 1px solid rgba(16, 185, 129, 0.08);
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    
    .mobile-service-header {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    
    .mobile-service-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #f8fafc, #e2e8f0);
        border: 2px solid #10b981;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        position: relative;
        flex-shrink: 0;
    }
    
    .mobile-service-icon::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
        background: #10b981;
        border-radius: 6px;
    }
    
    .mobile-service-icon.service-recharge::after {
        content: '⚡';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 14px;
        z-index: 1;
    }
    
    .mobile-service-icon.service-auto::after {
        content: '🔄';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 14px;
        z-index: 1;
    }
    
    .mobile-service-icon.service-history::after {
        content: '📊';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 14px;
        z-index: 1;
    }
    
    .mobile-service-card h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #1f2937;
        margin: 0;
    }
    
    .mobile-service-features {
        margin-bottom: 1.5rem;
    }
    
    .mobile-feature-item {
        display: flex;
        align-items: center;
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
        color: #6b7280;
    }
    
    .mobile-feature-item::before {
        content: "✓";
        color: #10b981;
        font-weight: bold;
        margin-right: 0.8rem;
    }
    
    .mobile-service-btn {
        width: 100%;
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        padding: 1rem;
        border: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }
    
    .mobile-service-btn::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;
    }
    
    .mobile-service-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    }
    
    .mobile-service-btn:hover::before {
        left: 100%;
    }
    
    .mobile-service-btn:active {
        transform: translateY(0);
    }
    
    /* Mobile Contact - Light Theme */
    .mobile-contact {
        background: linear-gradient(135deg, #f0fdf4, #dcfce7);
        color: #1f2937;
        padding: 3rem 1rem;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        border-top: 1px solid rgba(16, 185, 129, 0.2);
    }
    
    .mobile-contact h2 {
        font-size: 1.8rem;
        margin: 0 0 1rem 0;
        padding: 0;
        color: #1f2937;
    }
    
    .mobile-contact > p {
        margin: 0 0 2rem 0;
        padding: 0;
        color: #6b7280;
    }
    
    .mobile-contact-info {
        margin: 2rem auto;
        max-width: 400px;
        width: 100%;
    }
    
    .mobile-contact-item {
        background: white;
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 1rem;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        border: 1px solid rgba(16, 185, 129, 0.1);
    }
    
    .mobile-contact-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #f0fdf4, #dcfce7);
        border: 2px solid #10b981;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        position: relative;
    }
    
    .mobile-contact-icon::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        background: #059669;
        border-radius: 4px;
    }
    
    .mobile-contact-icon.icon-email::after {
        content: '@';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 16px;
        font-weight: 700;
        color: white;
        z-index: 1;
    }
    
    .mobile-contact-icon.icon-phone::after {
        content: '📞';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 12px;
        z-index: 1;
    }
    
    .mobile-contact-icon.icon-location::after {
        content: '📍';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 12px;
        z-index: 1;
    }
    
    .mobile-contact-content h4 {
        margin: 0 0 0.25rem 0;
        font-weight: 600;
        color: #1f2937;
        font-size: 1rem;
    }
    
    .mobile-contact-content p {
        margin: 0;
        color: #6b7280;
        font-size: 0.9rem;
    }
    
    .mobile-contact-item h4 {
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    
    /* Mobile Navigation Override */
    .header {
        background: rgba(255,255,255,0.95) !important;
        padding: 0.8rem 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .nav-container {
        padding: 0 1rem !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .logo h2 {
        font-size: 1.3rem !important;
        color: #059669 !important;
        margin: 0 !important;
    }
    
    /* Hide navigation menu on mobile */
    .nav-menu {
        display: none !important;
    }
    
    .hamburger {
        display: none !important;
    }
    
    /* Professional Mobile Animations */
    .mobile-fade-in {
        opacity: 0;
        animation: mobileFadeIn 0.8s ease-out forwards;
    }
    
    .mobile-slide-up {
        opacity: 0;
        transform: translateY(30px);
        animation: mobileSlideUp 0.8s ease-out forwards;
    }
    
    .mobile-scale-in {
        opacity: 0;
        transform: scale(0.8);
        animation: mobileScaleIn 0.6s ease-out forwards;
    }
    
    .mobile-float {
        animation: mobileFloat 3s ease-in-out infinite;
    }
    
    @keyframes mobileFadeIn {
        to {
            opacity: 1;
        }
    }
    
    @keyframes mobileSlideUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes mobileScaleIn {
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    @keyframes mobileFloat {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
    }
    
    @keyframes mobilePulse {
        0%, 100% {
            transform: scale(1);
            opacity: 0.8;
        }
        50% {
            transform: scale(1.05);
            opacity: 1;
        }
    }
    
    /* Staggered animation delays */
    .mobile-delay-1 { animation-delay: 0.1s; }
    .mobile-delay-2 { animation-delay: 0.2s; }
    .mobile-delay-3 { animation-delay: 0.3s; }
    .mobile-delay-4 { animation-delay: 0.4s; }
    
    /* Mobile Progress Indicator */
    .mobile-progress-indicator {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: rgba(16, 185, 129, 0.1);
        z-index: 9999;
    }
    
    .mobile-progress-bar {
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, #10b981, #059669);
        transition: width 0.1s ease;
    }
    
    /* Enhanced feature cards with hover effects */
    .mobile-feature-card,
    .mobile-service-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .mobile-feature-card:hover,
    .mobile-service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .mobile-contact-item {
        transition: transform 0.3s ease;
    }
    
    .mobile-contact-item:hover {
        transform: translateY(-3px);
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .mobile-hero {
        padding: 90px 0.5rem 2rem !important;
        min-height: 90vh !important;
    }
    
    .mobile-hero h1 {
        font-size: 1.7rem !important;
        max-width: 95% !important;
    }
    
    .mobile-hero p {
        font-size: 1rem !important;
        max-width: 95% !important;
    }
    
    .mobile-stats {
        padding: 1.5rem 0.5rem !important;
    }
    
    .mobile-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        max-width: 300px !important;
    }
    
    .mobile-stat-card {
        padding: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .mobile-features {
        padding: 2rem 0.5rem !important;
    }
    
    .mobile-feature-card {
        padding: 1.5rem 1rem !important;
        margin-bottom: 1rem !important;
        max-width: 95% !important;
    }
    
    .mobile-services {
        padding: 2rem 0.5rem !important;
    }
    
    .mobile-service-card {
        padding: 1.5rem 1rem !important;
        margin-bottom: 1rem !important;
        max-width: 95% !important;
    }
    
    .mobile-contact {
        padding: 2rem 0.5rem !important;
    }
    
    .mobile-contact-info {
        max-width: 95% !important;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .mobile-hero h1 {
        font-size: 1.5rem !important;
    }
    
    .mobile-hero p {
        font-size: 0.95rem !important;
    }
    
    .mobile-hero .btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    .mobile-stat-number {
        font-size: 1.5rem !important;
    }
    
    .mobile-feature-icon {
        font-size: 2.5rem !important;
    }
}
    
    .hero-graphic {
        height: 350px;
    }
    
    .fastag-device {
        padding: 1rem;
    }
    
    .device-screen {
        padding: 1rem;
        min-width: 160px;
    }
    
    .screen-amount {
        font-size: 1.25rem;
    }
    
    .about-card, .service-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
}