* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00D9A0;
    --secondary-color: #1A1D2E;
    --dark-bg: #0A0E1A;
    --text-dark: #1A1D2E;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --yellow: #FFB800;
    --orange: #FF6B35;
    --blue: #3B82F6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    background-color: var(--dark-bg);
    line-height: 1.6;
    cursor: none;
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.2s ease;
}

.custom-cursor.hover {
    transform: scale(1.5);
    background: rgba(0, 217, 160, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--dark-bg);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn-login {
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-register {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-register:hover {
    background-color: #00C791;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 217, 160, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0F1729 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 160, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: gradientMove 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: gradientMove 10s ease-in-out infinite reverse;
}

@keyframes gradientMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-color);
}

.hero-left p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 10;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary:hover {
    background-color: #00C791;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 160, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    position: relative;
    z-index: 10;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--dark-bg);
    margin-left: -10px;
    object-fit: cover;
}

.avatars img:first-child {
    margin-left: 0;
}

.rating .stars {
    color: var(--yellow);
    margin-bottom: 5px;
}

.rating .stars i {
    font-size: 14px;
}

.rating .stars span {
    color: var(--white);
    font-weight: 600;
    margin-left: 5px;
}

.rating p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.hero-right {
    position: relative;
}

.phone-mockup-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    padding: 40px 20px;
}

.social-icons-float {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.social-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 217, 160, 0.2), rgba(0, 217, 160, 0.1));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 160, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    animation: floatIcon 3s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-icon:nth-child(1) { 
    top: 10%; 
    left: 5%;
    background: linear-gradient(135deg, #0088cc, #006699); 
    border-color: #0088cc; 
}

.social-icon:nth-child(2) { 
    top: 5%; 
    right: 15%;
    background: linear-gradient(135deg, #25D366, #128C7E); 
    border-color: #25D366; 
}

.social-icon:nth-child(3) { 
    top: 25%; 
    left: 0%;
    background: linear-gradient(135deg, #1877f2, #0e5cb8); 
    border-color: #1877f2; 
}

.social-icon:nth-child(4) { 
    top: 30%; 
    right: 5%;
    background: linear-gradient(135deg, #E4405F, #C13584); 
    border-color: #E4405F; 
}

.social-icon:nth-child(5) { 
    bottom: 35%; 
    left: 2%;
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9); 
    border-color: #1DA1F2; 
}

.social-icon:nth-child(6) { 
    bottom: 30%; 
    right: 0%;
    background: linear-gradient(135deg, #E60023, #bd001c); 
    border-color: #E60023; 
}

.social-icon:nth-child(7) { 
    bottom: 12%; 
    left: 8%;
    background: linear-gradient(135deg, #FFFC00, #d4d100); 
    border-color: #FFFC00; 
    color: #000; 
}

.social-icon:nth-child(8) { 
    bottom: 8%; 
    right: 12%;
    background: linear-gradient(135deg, #4285F4, #3367D6); 
    border-color: #4285F4; 
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.phone-mockup {
    position: relative;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.phone-mockup img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 30px 80px rgba(0, 217, 160, 0.5));
    transform: scale(1.15);
    transition: all 0.4s ease;
}

.phone-mockup:hover img {
    transform: scale(1.2);
    filter: drop-shadow(0 40px 100px rgba(0, 217, 160, 0.6));
}

/* Why Choose Section */
.why-choose {
    background-color: var(--dark-bg);
    padding: 80px 0;
    position: relative;
}

/* Live Activity Feed */
.live-activity-feed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    max-width: 350px;
}

.activity-item {
    background: linear-gradient(145deg, rgba(0, 217, 160, 0.95), rgba(0, 180, 130, 0.95));
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 217, 160, 0.4);
    animation: slideInLeft 0.5s ease, fadeOut 0.5s ease 4.5s;
    color: var(--dark-bg);
    font-size: 14px;
    font-weight: 600;
}

.activity-item i {
    font-size: 20px;
}

.activity-time {
    margin-left: auto;
    font-size: 12px;
    opacity: 0.8;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(-20px);
    }
}

/* Real-time User Counter */
.live-users-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(145deg, rgba(30, 40, 55, 0.6), rgba(20, 28, 40, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 160, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin: 20px auto;
    color: var(--white);
    font-size: 14px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.live-users-counter strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: linear-gradient(145deg, rgba(30, 40, 55, 0.4), rgba(20, 28, 40, 0.6));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 160, 0.15);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 160, 0.3);
    box-shadow: 0 15px 40px rgba(0, 217, 160, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00FFB3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

/* Trust Badges Section */
.trust-badges {
    background: linear-gradient(135deg, #0F1729 0%, var(--dark-bg) 100%);
    padding: 60px 0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.badge-item {
    background: linear-gradient(145deg, rgba(30, 40, 55, 0.4), rgba(20, 28, 40, 0.6));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 160, 0.1);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 160, 0.3);
}

.badge-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.badge-item h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.badge-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* Client Logos Section */
.client-logos {
    background-color: var(--dark-bg);
    padding: 60px 0;
    overflow: hidden;
}

.client-logos h3 {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logos-slider {
    display: flex;
    gap: 40px;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.logo-item i {
    font-size: 24px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 40px));
    }
}

/* Achievements Section */
.achievements {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0F1729 100%);
    padding: 80px 0;
}

.achievements h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 50px;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-badge {
    background: linear-gradient(145deg, rgba(30, 40, 55, 0.4), rgba(20, 28, 40, 0.6));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 160, 0.15);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-badge:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 217, 160, 0.4);
}

.badge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.badge-icon.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.badge-icon.silver {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: #000;
}

.badge-icon.bronze {
    background: linear-gradient(135deg, #CD7F32, #B8860B);
    color: #000;
}

.badge-icon.platinum {
    background: linear-gradient(135deg, #E5E4E2, #BCC6CC);
    color: #000;
}

.achievement-badge h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.achievement-badge p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.why-choose h2 {
    text-align: center;
    font-size: 40px;
    color: var(--white);
    margin-bottom: 10px;
}

.brand-highlight {
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 217, 160, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-wrapper i {
    font-size: 28px;
    color: var(--primary-color);
}

.feature-card h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

/* Services Section */
.services {
    background-color: #0F1729;
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 40px;
    color: var(--white);
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 217, 160, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.service-icon.yellow {
    background-color: rgba(255, 184, 0, 0.1);
}

.service-icon.yellow i {
    color: var(--yellow);
}

.service-icon.orange {
    background-color: rgba(255, 107, 53, 0.1);
}

.service-icon.orange i {
    color: var(--orange);
}

.service-icon.blue {
    background-color: rgba(59, 130, 246, 0.1);
}

.service-icon.blue i {
    color: var(--blue);
}

.service-card h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-card ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-card ul li i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 12px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.service-link:hover {
    gap: 12px;
}

.more-services {
    text-align: center;
    padding-top: 20px;
}

.more-services p {
    color: rgba(255, 255, 255, 0.6);
}

.more-services a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 5px;
    font-weight: 600;
}

.more-services a:hover {
    text-decoration: underline;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 40px;
    color: var(--white);
    margin-bottom: 10px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00C791 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-bg);
    margin: 0 auto 20px;
}

.step-card h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 12px;
}

.step-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.cta-center {
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    background-color: #0F1729;
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 40px;
    color: var(--white);
    margin-bottom: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-header .stars {
    color: var(--yellow);
}

.testimonial-header .stars i {
    font-size: 12px;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #004D40 0%, #00695C 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-secondary-white {
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--white);
    transition: all 0.3s;
}

.btn-secondary-white:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 30px 0 50px;
    }
    
    .hero-left h1 {
        font-size: 36px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .phone-mockup-container {
        padding: 20px 10px;
        max-width: 100%;
    }
    
    .phone-mockup img {
        max-width: 100%;
        transform: scale(1);
    }
    
    .phone-mockup:hover img {
        transform: scale(1.05);
    }
    
    .social-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 30px 0;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .custom-cursor,
    .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    .live-activity-feed {
        left: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
    }
    
    .activity-item {
        font-size: 12px;
        padding: 12px 15px;
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
