* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00d4ff;
    --primary-dark: #00a8cc;
    --secondary: #7c3aed;
    --accent: #f59e0b;
    --dark: #0a0e27;
    --dark-light: #151b3d;
    --dark-card: #1a1f3a;
    --gray: #8b92b0;
    --light: #f1f5f9;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --whatsapp: #25d366;
    --instagram: #e4405f;
    --telegram: #0088cc;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(26, 31, 58, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 0.7rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    top: -400px;
    right: -200px;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    bottom: -300px;
    left: -200px;
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary);
}

.hero-badge i {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.hero-stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.phone-input-container {
    display: flex;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(20px);
    padding: 0.8rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.phone-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s;
    font-weight: 500;
}

.phone-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.phone-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 1rem 2rem;
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.features {
    padding: 8rem 0;
    background: var(--dark-light);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.4s;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
}

.feature-card i {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

.pricing {
    padding: 8rem 0;
    background: var(--dark);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.4s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border: 2px solid var(--primary);
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #f97316);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2.5rem;
    line-height: 1;
}

.price span {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 500;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.pricing-card li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.pricing-card li i {
    color: var(--success);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dashboard-preview {
    padding: 8rem 0;
    background: var(--dark-light);
    position: relative;
}

.dashboard-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    background: var(--dark);
    border-radius: 12px;
    overflow: hidden;
    min-height: 500px;
}

.sidebar {
    background: var(--dark-light);
    padding: 1.5rem;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--primary);
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-menu li:hover {
    background: rgba(99, 102, 241, 0.1);
}

.sidebar-menu li.active {
    background: var(--primary);
}

.sidebar-menu li.menu-section {
    color: var(--gray);
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 1rem;
    cursor: default;
}

.sidebar-menu li.menu-section:hover {
    background: transparent;
}

.dashboard-main {
    padding: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: var(--dark-light);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer {
    background: var(--dark);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.disclaimer {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .phone-input-container {
        flex-direction: column;
    }
    
    .dashboard-container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: none;
    }
    
    .nav-links {
        gap: 1rem;
    }
}

.dashboard-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    min-height: 600px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.sidebar {
    background: rgba(10, 14, 39, 0.8);
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.sidebar-header i {
    color: var(--primary);
    font-size: 1.6rem;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    padding: 1rem 1.2rem;
    margin-bottom: 0.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-menu li i {
    font-size: 1.1rem;
    width: 20px;
}

.sidebar-menu li:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #fff;
    transform: translateX(5px);
}

.sidebar-menu li.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.sidebar-menu li.menu-section {
    color: var(--gray);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2rem;
    padding: 0.5rem 1.2rem;
    cursor: default;
}

.sidebar-menu li.menu-section:hover {
    background: transparent;
    transform: none;
}

.dashboard-main {
    padding: 2.5rem;
}

.dashboard-header {
    margin-bottom: 2.5rem;
}

.dashboard-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: var(--gray);
    font-size: 1.05rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.stat-card i {
    font-size: 3rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.activity-feed {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-feed h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
}

.activity-item:hover {
    background: rgba(0, 212, 255, 0.05);
}

.activity-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.activity-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp);
}

.activity-icon.instagram {
    background: rgba(228, 64, 95, 0.1);
    color: var(--instagram);
}

.activity-icon.telegram {
    background: rgba(0, 136, 204, 0.1);
    color: var(--telegram);
}

.activity-details {
    flex: 1;
}

.activity-details strong {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.activity-details span {
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonials {
    padding: 8rem 0;
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-info h4 {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.testimonial-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--warning);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-style: italic;
}

.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer {
    background: var(--dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .phone-input-container {
        flex-direction: column;
    }
    
    .dashboard-container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: none;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}


/* Connection Modal */
.connection-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.connection-modal.active {
    display: flex;
}

.connection-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d4ff;
    opacity: 0.6;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation: float-particle 8s ease-in-out infinite;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation: float-particle 10s ease-in-out infinite 2s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation: float-particle 12s ease-in-out infinite 4s;
}

.particle:nth-child(4) {
    top: 40%;
    left: 70%;
    animation: float-particle 9s ease-in-out infinite 1s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 50%;
    animation: float-particle 11s ease-in-out infinite 3s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(100px, -100px);
    }
    50% {
        transform: translate(-50px, -200px);
    }
    75% {
        transform: translate(-100px, -100px);
    }
}

.connection-content {
    background: linear-gradient(135deg, #1a1d29 0%, #252938 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px;
    padding: 3rem;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease;
}

.connection-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

.connection-icon i {
    font-size: 3rem;
    color: #fff;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(0, 212, 255, 0);
    }
}

.connection-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.connection-content p {
    color: #8b92a7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.connection-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.progress-text {
    color: #00d4ff;
    font-weight: 700;
    font-size: 1.2rem;
}

.connection-steps {
    text-align: left;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step i {
    color: #8b92a7;
    font-size: 1rem;
}

.step span {
    color: #8b92a7;
    font-size: 0.9rem;
}

.step.active {
    background: rgba(0, 212, 255, 0.1);
    border-left-color: #00d4ff;
}

.step.active i {
    color: #00d4ff;
}

.step.active span {
    color: #fff;
    font-weight: 600;
}

.step.completed {
    background: rgba(16, 185, 129, 0.1);
    border-left-color: #10b981;
}

.step.completed i {
    color: #10b981;
}

.step.completed span {
    color: #10b981;
}

.connection-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: #00d4ff;
    font-size: 0.875rem;
}

.connection-info i {
    font-size: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Key Verification Styles */
.key-input-container {
    margin: 2rem 0;
}

.single-key-input {
    position: relative;
    margin-bottom: 1rem;
}

.key-input-box {
    width: 100%;
    padding: 1.2rem 3rem 1.2rem 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

.key-input-box::placeholder {
    color: rgba(139, 146, 167, 0.5);
    letter-spacing: 0.2rem;
}

.key-input-box:focus {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.key-input-box:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.key-icon {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #00d4ff;
    font-size: 1.2rem;
    pointer-events: none;
}

.key-hint {
    color: #8b92a7;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.key-hint i {
    color: #00d4ff;
}

.btn-verify {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.btn-verify:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
}

.btn-verify:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.key-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-resend,
.btn-cancel-key {
    flex: 1;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #8b92a7;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-resend:hover,
.btn-cancel-key:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-resend:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.success-pulse {
    animation: success-pulse 1.5s ease-in-out infinite;
}

@keyframes success-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
    }
}

.success-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 3px solid #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scale-in 0.5s ease;
}

@keyframes scale-in {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.checkmark {
    width: 30px;
    height: 50px;
    border: solid #10b981;
    border-width: 0 5px 5px 0;
    transform: rotate(45deg);
    animation: checkmark-draw 0.5s ease 0.3s forwards;
    opacity: 0;
}

@keyframes checkmark-draw {
    to {
        opacity: 1;
    }
}


/* Shake animation for invalid key */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}


/* App Footer */
.app-footer {
    background: linear-gradient(135deg, #0a0d14 0%, #1a1d29 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content-app {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-app-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-app-info .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-app-info .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.footer-app-info .logo span {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-app-info p {
    color: #8b92a7;
    font-size: 1rem;
    line-height: 1.6;
}

.app-download-section {
    text-align: right;
}

.app-download-section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

.app-store-btn i {
    font-size: 2rem;
    color: #00d4ff;
}

.app-store-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.app-store-btn span {
    font-size: 0.75rem;
    color: #8b92a7;
    display: block;
}

.app-store-btn strong {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
}

.app-store-btn:hover:not(.disabled) {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.app-store-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.app-store-btn.disabled i {
    color: #8b92a7;
}

.footer-bottom-app {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-app p {
    color: #8b92a7;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content-app {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-download-section {
        text-align: center;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .app-store-btn {
        min-width: 160px;
    }
}


/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo span {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .phone-input-container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .phone-input {
        width: 100%;
        font-size: 1rem;
        padding: 1rem;
    }
    
    .btn-primary {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .hero-stat {
        width: 100%;
        text-align: center;
    }
    
    /* Features Section */
    .features {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Connection Modal */
    .connection-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }
    
    .connection-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .connection-icon i {
        font-size: 2.5rem;
    }
    
    .connection-content h2 {
        font-size: 1.4rem;
    }
    
    .connection-content p {
        font-size: 0.9rem;
    }
    
    .connection-steps {
        margin-bottom: 1.5rem;
    }
    
    .step {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .step span {
        font-size: 0.85rem;
    }
    
    /* Key Input */
    .key-input-box {
        padding: 1rem;
        font-size: 1.1rem;
        letter-spacing: 0.2rem;
    }
    
    .key-icon {
        right: 1rem;
        font-size: 1rem;
    }
    
    .btn-verify {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .key-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-cancel-key {
        width: 100%;
    }
    
    /* Footer */
    .app-footer {
        padding: 2rem 0 1rem;
        margin-top: 3rem;
    }
    
    .footer-content-app {
        gap: 2rem;
    }
    
    .footer-app-info .logo span {
        font-size: 1.3rem;
    }
    
    .footer-app-info p {
        font-size: 0.9rem;
    }
    
    .app-download-section h3 {
        font-size: 1.1rem;
    }
    
    .app-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .app-store-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-label {
        font-size: 0.7rem;
    }
    
    .connection-content {
        padding: 1.5rem 1rem;
    }
    
    .connection-content h2 {
        font-size: 1.2rem;
    }
    
    .key-input-box {
        font-size: 1rem;
        letter-spacing: 0.15rem;
        padding: 0.875rem;
    }
    
    .progress-bar {
        height: 6px;
    }
    
    .progress-text {
        font-size: 1rem;
    }
    
    .app-store-btn {
        min-width: 100%;
        padding: 0.75rem 1rem;
    }
    
    .app-store-btn i {
        font-size: 1.75rem;
    }
    
    .app-store-btn strong {
        font-size: 0.9rem;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .connection-modal {
        overflow-y: auto;
        padding: 2rem 0;
    }
    
    .connection-content {
        margin: auto;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .btn-secondary,
    .btn-verify,
    .app-store-btn {
        min-height: 48px;
    }
    
    .phone-input,
    .key-input-box {
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .nav-item,
    .feature-card,
    .testimonial-card {
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.1);
    }
}


/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, #0a0d14 0%, #1a1d29 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(0, 212, 255, 0.2);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        text-align: center;
        border-radius: 10px;
        transition: all 0.3s;
    }
    
    .nav-links a:hover {
        background: rgba(0, 212, 255, 0.1);
    }
    
    .btn-nav {
        width: 100%;
        padding: 1rem !important;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}


/* Prevent horizontal scroll on mobile */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Better text rendering on mobile */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Prevent text size adjustment on orientation change */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Better tap targets for mobile */
a, button, input, select, textarea {
    -webkit-tap-highlight-color: rgba(0, 212, 255, 0.2);
}

/* Fix for iOS input zoom */
@media (max-width: 768px) {
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="password"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Improve button touch targets */
@media (max-width: 768px) {
    button,
    .btn-primary,
    .btn-secondary,
    .btn-nav {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Fix for mobile Safari bottom bar */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* Optimize images for mobile */
img {
    max-width: 100%;
    height: auto;
}

/* Better spacing on mobile */
@media (max-width: 768px) {
    section {
        scroll-margin-top: 70px;
    }
}
