/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-logo:hover {
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.logo-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-icon {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

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

.nav-menu a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.08), transparent);
    transition: left 0.5s ease;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nav-menu a:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.08);
}

/* Telegram brand colors */
.nav-menu a[href*="t.me"] {
    color: #0088cc;
}

.nav-menu a[href*="t.me"]:hover {
    color: #006bb3;
    background: rgba(0, 136, 204, 0.08);
}

.nav-menu a[href*="t.me"] i {
    color: #0088cc;
}

.nav-menu a[href*="t.me"]:hover i {
    color: #006bb3;
}

.nav-download-btn {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.nav-download-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.6s ease;
}

.nav-download-btn:hover::before {
    left: 100%;
}

.nav-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
    background: linear-gradient(45deg, #1d4ed8, #1e40af);
}

.nav-download-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-download-btn:hover i {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.anchor-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3b82f6;
    transition: all 0.3s ease;
}

.anchor-link:hover {
    color: #60a5fa;
    border-bottom-color: #60a5fa;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    background: linear-gradient(45deg, #1d4ed8, #1e40af);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}



/* Hero Media */
.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    background: #000;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.video-container:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
}

.play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 4px;
}

/* Floating background elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.card-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.card-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

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

/* Features Main Section */
.features-main {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.features-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.features-main-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4rem;
    position: relative;
}

.features-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

.features-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature-card-main {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-main:hover::before {
    transform: scaleX(1);
}

.feature-card-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon-main {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card-main:hover .feature-icon-main {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.feature-icon-main i {
    font-size: 2rem;
    color: white;
}

.feature-card-main h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card-main p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* Why Fastest Section */
.why-fastest {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.why-fastest h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Restrictions Block */
.restrictions-block h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

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

.restriction-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

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

.restriction-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.restriction-icon i {
    font-size: 1.2rem;
    color: white;
}

.restriction-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.restriction-content p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Problem Explanation */
.problem-explanation {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.problem-explanation h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.problem-text p {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.problem-text strong {
    color: #ef4444;
    font-weight: 600;
}

.problem-text em {
    color: #64748b;
    font-style: italic;
}

/* New Comparison Table */
.comparison-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-table-new {
    width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-collapse: collapse;
}

.comparison-table-new thead th {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table-new tbody td {
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.row-cloud {
    background: #fef2f2;
}

.row-desktop {
    background: #f0fdf4;
    border-left: 4px solid #10b981;
}

.bot-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1e293b;
}

.bot-info i {
    font-size: 1.3rem;
}

.speed-bad {
    color: #dc2626;
    font-weight: 600;
}

.speed-good {
    color: #059669;
    font-weight: 600;
}

.badge-bad {
    background: #fef2f2;
    color: #dc2626;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-good {
    background: #dcfce7;
    color: #166534;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.result-bad {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.1rem;
}

.result-good {
    color: #059669;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Conclusion */
.conclusion {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.conclusion-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.conclusion-icon i {
    font-size: 1.8rem;
    color: white;
}

.conclusion-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.conclusion-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.conclusion-content strong {
    color: #059669;
    font-weight: 600;
}

.final-note {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    border-left: 4px solid #10b981;
}

.final-note p {
    margin-bottom: 0.5rem;
}

.highlight-text {
    color: #10b981;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Step-by-step Features Main */
.steps-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.step-main {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(59,130,246,0.07), 0 1.5px 6px rgba(59,130,246,0.04);
    padding: 2rem 2.5rem;
    margin: 0.5rem 0;
    min-width: 320px;
    max-width: 480px;
    width: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}

.step-main:hover {
    box-shadow: 0 12px 32px rgba(59,130,246,0.13), 0 3px 12px rgba(59,130,246,0.08);
    transform: translateY(-2px) scale(1.02);
}

.step-number {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    box-shadow: 0 2px 8px rgba(59,130,246,0.12);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.step-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

.step-arrow {
    margin: 0.5rem 0;
    color: #3b82f6;
    font-size: 2rem;
    animation: arrow-bounce 1.2s infinite alternate;
}

@keyframes arrow-bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(8px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    

    
    .nav-menu {
        display: flex;
        gap: 1rem;
    }
    
    .nav-menu li:not(:nth-child(3)) {
        display: none;
    }
    
    .nav-menu li:nth-child(3) a {
        padding: 0.5rem;
        font-size: 1.2rem;
    }
    
    .nav-menu li:nth-child(3) a span {
        display: none;
    }
    
    .nav-download-btn {
        display: none;
    }
    
    .features-main-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .features-grid-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card-main {
        padding: 2rem;
    }
    
    .restrictions-list {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-new {
        font-size: 0.9rem;
    }
    
    .comparison-table-new thead th {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .comparison-table-new tbody td {
        padding: 1rem 0.5rem;
    }
    
    .bot-info {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .bot-info i {
        font-size: 1.1rem;
    }
    
    .conclusion {
        flex-direction: column;
        text-align: center;
    }
    
    .why-fastest h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    

} 

@media (max-width: 600px) {
    .step-main {
        padding: 1.2rem 1rem;
        min-width: 0;
        max-width: 100%;
    }
    .step-number {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        margin-right: 1rem;
    }
    .step-content h3 {
        font-size: 1rem;
    }
    .step-content p {
        font-size: 0.95rem;
    }
    .features-main-title {
        font-size: 2rem;
    }
} 

/* Kids Comparison Table */
.kids-comparison-table {
    width: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(59,130,246,0.08);
    border-collapse: collapse;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
}
.kids-comparison-table th {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: #fff;
    padding: 1.1rem 0.5rem;
    font-size: 1.15rem;
    text-align: center;
}
.kids-comparison-table td {
    padding: 1.1rem 0.5rem;
    text-align: center;
    font-size: 1.1rem;
    border-bottom: 1px solid #e2e8f0;
}
.kids-comparison-table tr:last-child td {
    border-bottom: none;
}
.kids-comparison-table .good {
    color: #059669;
    font-weight: 700;
    font-size: 1.25em;
}
.kids-comparison-table .bad {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.25em;
}
.kids-comparison-table .winner-row td {
    background: linear-gradient(90deg, #f0fdf4 60%, #bbf7d0 100%);
    font-size: 1.15em;
    font-weight: 700;
    border-bottom: none;
}
.kids-comparison-table .winner-row .good {
    color: #059669;
    font-size: 1.3em;
}
.kids-comparison-table .winner-row .bad {
    color: #dc2626;
    font-size: 1.15em;
}
@media (max-width: 700px) {
    .kids-comparison-table th, .kids-comparison-table td {
        font-size: 1em;
        padding: 0.7rem 0.2rem;
    }
    .kids-comparison-table {
        font-size: 0.98rem;
    }
} 

/* Tariffs Section */
.tariffs-section {
    padding: 6rem 0 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
}

.tariffs-title {
    text-align: center;
    font-size: 2.7rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3.5rem;
}

.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
}

.tariff-card-main {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(59,130,246,0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}

.tariff-card-main:hover {
    box-shadow: 0 16px 40px rgba(59,130,246,0.13);
    transform: translateY(-6px) scale(1.03);
}

.tariff-card-main.popular {
    border: 2.5px solid #3b82f6;
    box-shadow: 0 12px 40px rgba(59,130,246,0.13);
}

.tariff-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.4rem 1.1rem;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(59,130,246,0.10);
}

.tariff-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.tariff-card-main h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.1rem;
}

.tariff-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 1.2rem;
}

.tariff-price .amount {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1d4ed8;
}

.tariff-price .currency {
    font-size: 1.2rem;
    margin-left: 0.2rem;
}

.tariff-price .period {
    font-size: 1rem;
    color: #64748b;
    margin-left: 0.4rem;
}

.tariff-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.tariff-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 0.7rem;
}

.tariff-features .feature-icon {
    font-size: 1.2rem;
}

@media (max-width: 700px) {
    .tariffs-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .tariffs-section {
        padding: 3rem 0 2rem 0;
    }
    .tariffs-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .tariff-card-main {
        padding: 1.5rem 1rem 1rem 1rem;
    }
    .tariff-card-main h3 {
        font-size: 1.1rem;
    }
    .tariff-price .amount {
        font-size: 1.4rem;
    }
} 

/* Download for Windows Button */
.tariffs-download-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-download-windows {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 1.1rem 2.2rem;
    border-radius: 32px;
    box-shadow: 0 6px 24px rgba(59,130,246,0.13);
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-download-windows i {
    font-size: 1.4rem;
}
.btn-download-windows:hover {
    background: linear-gradient(45deg, #1d4ed8, #3b82f6);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 32px rgba(59,130,246,0.18);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 3rem 0 2rem 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.site-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-copy {
    color: #cbd5e1;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-tg {
    background: linear-gradient(45deg, #0088cc, #006bb3);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.footer-tg i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.footer-tg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
    background: linear-gradient(45deg, #006bb3, #0088cc);
}

.footer-tg:hover i {
    transform: scale(1.1);
}

/* Footer Contacts */
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    text-align: center;
}

.footer-contacts p {
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-email {
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(220, 38, 38, 0.3);
}

.footer-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
    background: linear-gradient(45deg, #b91c1c, #dc2626);
}

.footer-email i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.footer-email:hover i {
    transform: scale(1.1);
}

.footer-tg-dev {
    background: linear-gradient(45deg, #0088cc, #006bb3);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 136, 204, 0.3);
}

.footer-tg-dev:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
    background: linear-gradient(45deg, #006bb3, #0088cc);
}

.footer-tg-dev i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.footer-tg-dev:hover i {
    transform: scale(1.1);
}
@media (max-width: 700px) {
    .tariffs-download-btn-wrap {
        margin-top: 1.2rem;
    }
    .btn-download-windows {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
    .site-footer {
        padding: 2rem 0 1.5rem 0;
    }
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
        text-align: center;
    }
    .footer-copy {
        font-size: 1rem;
    }
    .footer-tg {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .footer-contacts {
        gap: 0.6rem;
    }
    
    .footer-contacts p {
        font-size: 0.9rem;
    }
    
    .footer-email,
    .footer-tg-dev {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
} 

/* Help Page Styles */
.help-section {
    padding: calc(8rem + 80px) 0 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    position: relative;
}

.help-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.help-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.help-video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.help-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #000;
}

/* Help Instructions Styles */
.help-instructions {
    max-width: 1000px;
    margin: 6rem auto 0 auto;
    position: relative;
    z-index: 1;
}

.instructions-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instruction-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

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

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.step-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.instruction-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.instruction-img:hover {
    transform: scale(1.02);
}

.instruction-img.small-image {
    max-width: 50%;
    margin: 0 auto;
}

/* Developer Contacts */
.developer-contacts {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.contacts-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 0;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.email-card .contact-icon {
    background: linear-gradient(45deg, #dc2626, #b91c1c);
}

.telegram-card .contact-icon {
    background: linear-gradient(45deg, #0088cc, #006bb3);
}

.contact-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.contact-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.3rem 0;
}

.contact-info p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
    word-break: break-all;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .developer-contacts {
        margin: 2rem 0;
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .contacts-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .contact-card {
        padding: 1.2rem;
        min-width: 0;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    .contact-info {
        flex: 1;
        min-width: 0;
    }
    
    .contact-info h3 {
        font-size: 1.1rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        word-break: break-all;
        overflow-wrap: break-word;
    }
}

@media (max-width: 768px) {
    .help-section {
        padding: calc(6rem + 80px) 0 4rem 0;
    }
    
    .help-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .help-video-container {
        margin: 0 1rem;
    }
    
    .video-wrapper {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .help-video {
        border-radius: 8px;
    }
    
    .help-instructions {
        margin: 4rem 1rem 0 1rem;
    }
    
    .instructions-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .instruction-step {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 3rem;
        padding: 2rem;
    }
    
    .step-number {
        align-self: flex-start;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .instruction-img.small-image {
        max-width: 80%;
    }
} 

/* Download Page Styles */
.download-section {
    padding: calc(8rem + 80px) 0 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    position: relative;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.download-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.download-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.download-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.download-icon i {
    font-size: 2.5rem;
    color: white;
}

.download-card h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.download-card p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.download-button {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(45deg, #1d4ed8, #3b82f6);
}

.download-button i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .download-section {
        padding: calc(6rem + 80px) 0 4rem 0;
    }
    
    .download-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .download-content {
        margin: 0 1rem;
    }
    
    .download-card {
        padding: 2rem;
        border-radius: 15px;
    }
    
    .download-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .download-icon i {
        font-size: 2rem;
    }
    
    .download-card h2 {
        font-size: 1.5rem;
    }
    
    .download-card p {
        font-size: 1rem;
    }
    
    .download-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
} 

/* Legal Section Styles */
.legal-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.legal-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.legal-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content {
    text-align: center;
}

.legal-answer {
    font-size: 1.5rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(5, 150, 105, 0.2);
}

.legal-explanation {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 4rem 0;
    }
    
    .legal-card {
        margin: 0 1rem;
        padding: 2rem;
        border-radius: 15px;
    }
    
    .legal-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .legal-answer {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }
    
    .legal-explanation {
        font-size: 1rem;
    }
} 