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

:root {
    --primary-blue: #4a90e2;
    --blue-light: #5ba3f5;
    --blue-dark: #3a7bc8;
    --gray-900: #0a0e27;
    --gray-800: #141b2d;
    --gray-700: #1e2740;
    --gray-600: #2a3651;
    --gray-500: #4a5568;
    --gray-400: #718096;
    --gray-300: #a0aec0;
    --gray-200: #e2e8f0;
    --gray-100: #f7fafc;
    --white: #ffffff;
    --accent-blue: #5ba3f5;
    --dark-overlay: rgba(10, 14, 39, 0.95);
    --text-navy: #0d1b3e;
    --text-purple: #6b7280;
    --text-heading: #1a1f3a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-attachment: fixed;
    color: #1a1a1a;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.scroll-container {
    scroll-behavior: smooth;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    position: relative;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #ff6b9d 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-out;
}

.logo-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(59, 130, 246, 0.3));
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #ffe5ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
}

.title-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.8em;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

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

.tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #fbbf24;
    font-weight: 500;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 1rem;
}

.hero-description {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-description h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #e5e7eb;
    line-height: 1.8;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #f5576c;
    box-shadow: 0 20px 40px rgba(245, 87, 108, 0.4);
    background: rgba(255, 255, 255, 1);
}

.feature-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #0d1b3e;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-section {
    margin-top: 4rem;
}

.cta-text {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.king-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
}

.cta-button:hover {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 30px rgba(79, 172, 254, 0.6);
}

.by-text {
    margin-top: 2rem;
    color: var(--gray-500);
    font-size: 0.95rem;
}

.devices-section {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #0d1b3e 0%, #1e3a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}

.device-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.device-card:hover {
    transform: translateY(-5px);
    border-color: #00f2fe;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.3);
}

.device-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.device-card p {
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 500;
}

.service-section {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    border-color: #38f9d7;
    transform: translateX(5px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(56, 249, 215, 0.3);
}

.service-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.service-content h3 {
    color: #0d1b3e;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-content p {
    color: #6b7280;
    font-size: 0.9rem;
}


.pricing-section {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

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

.price-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: #fee140;
    box-shadow: 0 20px 40px rgba(254, 225, 64, 0.4);
    background: rgba(255, 255, 255, 1);
}

.price-card.featured {
    border-color: #fa709a;
    background: linear-gradient(135deg, rgba(250, 112, 154, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.price-card.best {
    border-color: #fee140;
    background: linear-gradient(135deg, rgba(254, 225, 64, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.package-duration {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.price-card h3 {
    font-size: 1.3rem;
    color: #0d1b3e;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-top: 2rem;
}

.price-features li {
    color: #6b7280;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.price-features i {
    color: #fa709a;
    font-size: 0.9rem;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.4);
}

.package-btn {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(250, 112, 154, 0.4);
}

.package-btn:hover {
    background: linear-gradient(135deg, #fee140 0%, #fa709a 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(250, 112, 154, 0.6);
}

.contact-section {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.contact-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.contact-method {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-method:hover {
    border-color: #30cfd0;
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 15px 35px rgba(48, 207, 208, 0.3);
}

.contact-method i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.contact-method h3 {
    font-size: 1.5rem;
    color: #0d1b3e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-method p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.telegram-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(48, 207, 208, 0.4);
}

.contact-btn:hover {
    background: linear-gradient(135deg, #330867 0%, #30cfd0 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(48, 207, 208, 0.6);
}

.final-cta {
    text-align: center;
    margin-top: 3rem;
}

.final-cta p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: #6b7280;
    line-height: 1.8;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .section {
        padding: 3rem 1.5rem;
    }
    
    .features-grid,
    .devices-grid,
    .service-grid,
    .pricing-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .telegram-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        font-size: 3rem;
    }
    
    .feature-card,
    .device-card,
    .service-item,
    .price-card {
        padding: 1.5rem;
    }
}
