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

html {
    scroll-behavior: smooth;
}

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a5490;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Navigation Menu */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(26, 84, 144, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo i {
    font-size: 1.8rem;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.nav-logo span {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

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

.nav-menu li a:hover {
    color: #FFD700;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #FFD700;
    color: #1a5490;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

.nav-phone:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,215,0,0.5);
}

.nav-phone i {
    animation: ring-phone 2s ease-in-out infinite;
}

@keyframes ring-phone {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 215, 0, 0.6);
    }
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Professional & Clean */
.hero {
    position: relative;
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(26, 84, 144, 0.6) 0%, rgba(44, 108, 168, 0.5) 100%),
        url('https://page.gensparksite.com/v1/base64_upload/b6cfb50d77918be9f132f17d4173a4b4') center/cover no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
    max-width: 1100px;
}

/* Hero Content Wrapper - Professional Layout */
.hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 2.5rem;
}

/* Hero Logo - Clean & Professional */
.hero-logo {
    flex-shrink: 0;
}

.hero-logo-img {
    width: 180px;
    height: auto;
    border-radius: 50%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 215, 0, 0.5);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.hero-logo-img:hover {
    transform: scale(1.08) rotate(2deg);
    border-color: rgba(255, 215, 0, 0.9);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 215, 0, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Hero Text - Official Style */
.hero-text {
    text-align: left;
    flex-grow: 1;
}

.hero-main-title {
    font-family: 'Rounded Mplus 1c', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-slogan {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255,215,0,0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
}

/* Divider Line */
.hero-divider {
    width: 80px;
    height: 3px;
    background: #FFD700;
    margin-bottom: 2rem;
}

/* Stats - Professional Numbers */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-separator {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.3);
}

/* Удалены старые стили логотипа - используем компактный badge */

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255,215,0,0.8);
}

.p-1 {
    top: 10%;
    left: 50%;
    animation: particle-float-1 4s ease-in-out infinite;
}

.p-2 {
    top: 30%;
    right: 20%;
    animation: particle-float-2 5s ease-in-out infinite;
}

.p-3 {
    top: 50%;
    right: 10%;
    animation: particle-float-3 4.5s ease-in-out infinite;
}

.p-4 {
    bottom: 30%;
    right: 20%;
    animation: particle-float-4 5.5s ease-in-out infinite;
}

.p-5 {
    bottom: 10%;
    left: 50%;
    animation: particle-float-1 4s ease-in-out infinite 0.5s;
}

.p-6 {
    bottom: 30%;
    left: 20%;
    animation: particle-float-2 5s ease-in-out infinite 0.5s;
}

.p-7 {
    top: 50%;
    left: 10%;
    animation: particle-float-3 4.5s ease-in-out infinite 0.5s;
}

.p-8 {
    top: 30%;
    left: 20%;
    animation: particle-float-4 5.5s ease-in-out infinite 0.5s;
}

.logo-circle {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse-circle 3s ease-in-out infinite;
    z-index: 1;
    box-shadow: 0 0 40px rgba(255,215,0,0.3),
                inset 0 0 30px rgba(255,255,255,0.1);
}

/* Вращающиеся кольца */
.logo-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-ring {
    position: absolute;
    border-radius: 50%;
    border-style: solid;
    border-color: transparent;
    top: 50%;
    left: 50%;
}

.ring-1 {
    width: 220px;
    height: 220px;
    transform: translate(-50%, -50%);
    border-width: 2px;
    border-top-color: rgba(255,215,0,0.7);
    border-right-color: rgba(255,215,0,0.3);
    animation: rotate-ring 8s linear infinite;
    filter: drop-shadow(0 0 8px rgba(255,215,0,0.5));
}

.ring-2 {
    width: 260px;
    height: 260px;
    transform: translate(-50%, -50%);
    border-width: 2px;
    border-bottom-color: rgba(184,230,255,0.7);
    border-left-color: rgba(184,230,255,0.3);
    animation: rotate-ring 6s linear infinite reverse;
    filter: drop-shadow(0 0 8px rgba(184,230,255,0.5));
}

.ring-3 {
    width: 290px;
    height: 290px;
    transform: translate(-50%, -50%);
    border-width: 1px;
    border-top-color: rgba(255,255,255,0.5);
    border-right-color: rgba(255,255,255,0.2);
    animation: rotate-ring 10s linear infinite;
}

.logo-glow {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.glow-1 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, transparent 70%);
    animation: glow-pulse 2s ease-in-out infinite;
}

.glow-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(184,230,255,0.2) 0%, transparent 70%);
    animation: glow-pulse 2s ease-in-out infinite reverse;
}

.logo-image {
    width: 200px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
    animation: float 3s ease-in-out infinite;
}

.logo-decoration {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.9;
}

.logo-decoration.left {
    animation: slide-in-left 1s ease-out;
}

.logo-decoration.right {
    animation: slide-in-right 1s ease-out;
}

/* Линии декораций */
.deco-line {
    height: 2px;
    position: relative;
    overflow: hidden;
}

.deco-line-outer {
    width: 100px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
    animation: line-pulse 2s ease-in-out infinite;
}

.deco-line-inner {
    width: 60px;
    background: linear-gradient(to right, transparent, rgba(255,215,0,0.8), transparent);
    animation: line-pulse 2s ease-in-out infinite reverse;
}

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

.logo-decoration.right .deco-line {
    background: linear-gradient(to left, transparent, rgba(255,255,255,0.6), transparent);
}

.logo-decoration.right .deco-line::before {
    animation: line-shimmer-reverse 2s ease-in-out infinite;
}

/* Круги в декорациях */
.deco-circle {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255,215,0,0.9);
    border-radius: 50%;
    background: rgba(255,215,0,0.2);
    animation: deco-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255,215,0,0.6);
}

/* Иконки в декорациях */
.deco-icon {
    font-size: 1.8rem;
    position: relative;
}

.icon-1 {
    color: #FFD700;
    animation: icon-spin 8s linear infinite;
    filter: drop-shadow(0 0 12px rgba(255,215,0,0.8));
}

.icon-2 {
    color: rgba(255,255,255,0.9);
    animation: icon-twinkle 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.6));
}

.icon-3 {
    color: #B8E6FF;
    animation: icon-spin 6s linear infinite reverse;
    filter: drop-shadow(0 0 10px rgba(184,230,255,0.8));
}

.deco-icon.small {
    font-size: 1.2rem;
}

.logo i {
    font-size: 4rem;
    color: #FFD700;
    animation: bounce 2s infinite;
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    color: rgba(255,255,255,0.95);
}

/* Hero Features Badges */
.hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255,215,0,0.2);
    border-color: rgba(255,215,0,0.6);
    transform: translateY(-3px);
}

.feature-badge i {
    font-size: 1.2rem;
    color: #FFD700;
}

.feature-badge span {
    font-weight: 600;
    font-size: 0.95rem;
}

.phone-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 1.5rem auto;
    padding: 20px 35px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.2);
    max-width: 550px;
    transition: all 0.3s ease;
}

.phone-block:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,215,0,0.4);
}

.phone-block i {
    font-size: 2rem;
    color: #FFD700;
}

.phone-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: #FFD700;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a5490;
    background: #FFD700;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 0 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.app-buttons-hero {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.app-btn i {
    font-size: 2rem;
}

.app-btn div {
    text-align: left;
}

.app-btn span {
    display: block;
    font-size: 0.7rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-btn strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: url('../images/main-bg-pattern.jpg') center/cover;
    background-attachment: scroll;
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(26,84,144,0.2);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1a5490, #2196F3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a5490;
}

.advantage-card p {
    color: #666;
    line-height: 1.8;
}

/* How to Order Section */
.how-to-order {
    padding: 80px 0;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%),
        url('https://page.gensparksite.com/v1/base64_upload/0ab5180071ea99891cffcc1c22bfde99') center/cover no-repeat;
    background-position: center center;
    background-size: cover;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.step:hover {
    background: linear-gradient(135deg, #1a5490, #2196F3);
    color: white;
    transform: scale(1.05);
}

.step:hover h3,
.step:hover p {
    color: white;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #FFD700;
    color: #1a5490;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
}

.step-icon {
    font-size: 3rem;
    color: #2196F3;
    margin-bottom: 20px;
}

.step:hover .step-icon {
    color: #FFD700;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1a5490;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: #2196F3;
}

.step-arrow i {
    animation: slide-right 1.5s infinite;
}

/* Mobile Apps Section */
.mobile-apps {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a5490 0%, #2196F3 100%);
    color: white;
}

.mobile-apps .section-title {
    color: white;
}

.mobile-apps .section-subtitle {
    color: rgba(255,255,255,0.9);
}

.apps-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 3rem;
}

.apps-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #FFD700;
}

.feature-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

.apps-download {
    text-align: center;
}

.qr-codes {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.qr-item {
    text-align: center;
}

.qr-item a {
    display: inline-block;
    padding: 10px;
    background: white;
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.qr-item a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.qr-code-img {
    width: 150px;
    height: 150px;
    display: block;
    border-radius: 8px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: white;
    color: #333;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.app-download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.app-download-btn i {
    font-size: 2.5rem;
}

.app-download-btn.apple i {
    color: #000;
}

.app-download-btn.android i {
    color: #3DDC84;
}

.app-download-btn div {
    text-align: left;
}

.app-download-btn span {
    display: block;
    font-size: 0.75rem;
    color: #666;
}

.app-download-btn strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: linear-gradient(135deg, #1a5490, #2196F3);
    color: white;
    transform: translateY(-10px);
}

.contact-item:hover h3,
.contact-item:hover p {
    color: white;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1a5490, #2196F3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.contact-item:hover .contact-icon {
    background: white;
    color: #1a5490;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a5490;
}

.contact-link {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2196F3;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-link {
    color: #FFD700;
}

.contact-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
}

.emergency-call {
    text-align: center;
    margin-top: 50px;
}

.emergency-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #1a5490, #2196F3);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(26,84,144,0.3);
}

.emergency-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26,84,144,0.5);
    background: linear-gradient(135deg, #2196F3, #64B5F6);
}

.emergency-button i {
    font-size: 1.5rem;
    animation: ring 2s infinite;
}

/* Brand CTA Section */
.brand-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a5490 0%, #2196F3 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></svg>');
    opacity: 0.5;
}

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

.brand-cta-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.cta-decoration-circle {
    display: none;
}

.cta-sparkle {
    display: none;
}

.sparkle-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.sparkle-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.sparkle-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.sparkle-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.brand-cta-logo {
    width: 180px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.brand-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.brand-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.brand-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a5490;
    background: #FFD700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

.brand-cta-button:hover {
    background: #FFC107;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,215,0,0.6);
}

.brand-cta-button i {
    font-size: 1.5rem;
    animation: ring 2s infinite;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 150px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-logo i {
    font-size: 2rem;
    color: #FFD700;
}

.footer-column p {
    color: #ddd;
    line-height: 1.8;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: #FFD700;
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2196F3;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: #ccc;
    margin-bottom: 10px;
}

/* Убраны анимации появления - элементы видны сразу */
.advantage-card,
.step,
.feature-item,
.contact-item {
    opacity: 1;
    transform: translateY(0);
}

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

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce-vertical {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

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

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

@keyframes slide-right {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

@keyframes shimmer-text {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes taxi-drive {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(10px) rotate(5deg);
    }
    75% {
        transform: translateX(-10px) rotate(-5deg);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes ring-small {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Новые анимации для логотипа */
@keyframes rotate-ring {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes particle-float-1 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        transform: translate(10px, -15px);
        opacity: 1;
    }
}

@keyframes particle-float-2 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        transform: translate(-15px, 10px);
        opacity: 1;
    }
}

@keyframes particle-float-3 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        transform: translate(12px, 12px);
        opacity: 1;
    }
}

@keyframes particle-float-4 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        transform: translate(-10px, -12px);
        opacity: 1;
    }
}

@keyframes line-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

@keyframes line-shimmer-reverse {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

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

@keyframes icon-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes icon-twinkle {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes pulse-circle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

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

@keyframes line-shimmer {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 0.9;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 0.9;
        transform: translateX(0);
    }
}

@keyframes pulse-circle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes glow-pulse {
    from {
        transform: scale(1);
        opacity: 0.4;
    }
    to {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

@keyframes slide-in-left {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 0.9;
    }
}

@keyframes slide-in-right {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 0.9;
    }
}

@keyframes line-shimmer {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@keyframes rotate-slow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    20% {
        opacity: 1;
        transform: translateY(-10px) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateY(-40px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        padding-top: 110px;
    }
    
    .nav-container {
        position: relative;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        flex-direction: column;
        background: rgba(26, 84, 144, 0.98);
        width: 100%;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-phone {
        display: none;
    }
    
    .apps-content {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .phone-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }
    
    .nav-container {
        padding: 12px 20px;
    }
    
    .nav-logo i {
        font-size: 1.5rem;
    }
    
    .nav-logo span {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-logo-img {
        width: 140px;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .hero-slogan {
        font-size: 1.1rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-divider {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .logo {
        gap: 20px;
    }
    
    .logo {
        gap: 20px;
    }
    
    .logo-wrapper {
        width: 220px;
        height: 220px;
    }
    
    .logo-image {
        width: 150px;
    }
    
    .logo-circle {
        width: 180px;
        height: 180px;
    }
    
    .glow-1 {
        width: 200px;
        height: 200px;
    }
    
    .glow-2 {
        width: 220px;
        height: 220px;
    }
    
    .ring-1 {
        width: 160px;
        height: 160px;
    }
    
    .ring-2 {
        width: 190px;
        height: 190px;
    }
    
    .ring-3 {
        width: 210px;
        height: 210px;
    }
    
    .deco-line-outer {
        width: 60px;
    }
    
    .deco-line-inner {
        width: 40px;
    }
    
    .deco-icon {
        font-size: 1.3rem;
    }
    
    .logo-circle {
        width: 180px;
        height: 180px;
    }
    
    .logo-glow {
        width: 220px;
        height: 220px;
    }
    
    .deco-line {
        width: 50px;
    }
    
    .deco-icon {
        font-size: 1.2rem;
    }
    
    .deco-icon.small {
        font-size: 0.8rem;
    }
    
    .brand-cta-logo {
        width: 120px;
    }
    
    .cta-decoration-circle {
        width: 160px;
        height: 160px;
    }
    
    .cta-sparkle {
        font-size: 1rem;
    }
    
    .brand-cta h2 {
        font-size: 2rem;
    }
    
    .brand-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .brand-cta-button {
        font-size: 1.3rem;
        padding: 15px 35px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo i {
        font-size: 3rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
    
    .app-buttons-hero {
        flex-direction: column;
        align-items: center;
    }
    
    .app-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .qr-codes {
        flex-direction: column;
        align-items: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-download-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .nav-logo span {
        display: none;
    }
    
    .hero-logo-img {
        width: 100px;
    }
    
    .hero-main-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .hero-slogan {
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-separator {
        display: none;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .glow-1,
    .glow-2 {
        width: 160px;
        height: 160px;
    }
    
    .logo-particles {
        width: 200px;
        height: 200px;
    }
    
    .ring-1 {
        width: 130px;
        height: 130px;
    }
    
    .ring-2 {
        width: 150px;
        height: 150px;
    }
    
    .ring-3 {
        width: 170px;
        height: 170px;
    }
    
    .logo-decoration {
        flex-direction: row;
        gap: 10px;
    }
    
    .deco-line-outer {
        width: 40px;
    }
    
    .deco-line-inner {
        width: 25px;
    }
    
    .deco-icon {
        font-size: 1rem;
    }
    
    .deco-circle {
        width: 6px;
        height: 6px;
    }
    
    .logo-circle {
        width: 150px;
        height: 150px;
    }
    
    .logo-glow {
        width: 180px;
        height: 180px;
    }
    
    .deco-line {
        width: 30px;
    }
    
    .footer-logo-img {
        width: 100px;
    }
    
    .brand-cta-logo {
        width: 100px;
    }
    
    .cta-decoration-circle {
        width: 130px;
        height: 130px;
    }
    
    .phone-block {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .emergency-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}
