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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.8;
    color: #333333;
    background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255,255,255,0.1) 0%, transparent 20%);
    z-index: -1;
    pointer-events: none;
}

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

header {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 25px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
    position: relative;
}

.logo::after {
    content: "©";
    position: absolute;
    top: -5px;
    right: -20px;
    font-size: 14px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-links a:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.hero {
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.8) 0%, rgba(167, 119, 227, 0.8) 100%);
    color: white;
    padding: 200px 0 160px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid rgba(255,255,255,0.2);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 30%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    background: linear-gradient(to right, #ffffff, #e0e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffa500 0%, #ff6b6b 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
}

.btn:hover::before {
    opacity: 1;
}

.section {
    padding: 140px 0;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section:first-of-type {
    margin-top: -80px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.section:last-of-type {
    margin-bottom: 0;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 90px;
    color: #6e8efb;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(110, 142, 251, 0.2);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #6e8efb, #a777e3);
    border-radius: 2px;
}

.content-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-subtitle {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #a777e3;
    position: relative;
    padding-left: 40px;
    font-weight: 600;
}

.section-subtitle::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #6e8efb;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(110, 142, 251, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #6e8efb, #a777e3);
}

.benefit-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 25px 50px rgba(110, 142, 251, 0.2);
}

.benefit-card h3 {
    color: #6e8efb;
    margin-bottom: 25px;
    font-size: 1.7rem;
    font-weight: 600;
}

.benefit-card p {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.7;
}

.benefits-list {
    margin: 40px 0;
    padding-left: 40px;
}

.benefits-list li {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #555555;
    position: relative;
    padding-left: 30px;
    line-height: 1.8;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6e8efb;
    font-weight: bold;
    font-size: 1.3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 50px 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.comparison-table th, .comparison-table td {
    padding: 25px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: #fafbff;
}

.comparison-table tr:hover {
    background: #f0f4ff;
    transition: background 0.3s ease;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.example-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.4s ease;
    border: 1px solid rgba(110, 142, 251, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.example-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(110, 142, 251, 0.15);
}

.example-card h4 {
    color: #a777e3;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s ease;
    border: 1px solid rgba(167, 119, 227, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #a777e3, #6e8efb);
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(167, 119, 227, 0.2);
}

.service-card h3 {
    color: #a777e3;
    margin-bottom: 25px;
    font-size: 1.7rem;
    font-weight: 600;
}

.service-card p {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.7;
}

.services-list {
    margin: 40px 0;
    padding-left: 40px;
}

.services-list li {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #555555;
    position: relative;
    padding-left: 30px;
    line-height: 1.8;
}

.services-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #a777e3;
    font-size: 1.8rem;
    line-height: 1;
}

.cta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    color: white;
    padding: 180px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin: 60px 0;
    box-shadow: 0 30px 60px rgba(255, 107, 107, 0.3);
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 30%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta h2 {
    font-size: 3.2rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.cta p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

footer {
    background: rgba(25, 25, 35, 0.95);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
}

.highlight {
    background: linear-gradient(120deg, #6e8efb 0%, #a777e3 100%);
    padding: 5px 12px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(110, 142, 251, 0.3);
}

/* Стили для контактной формы */
.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 50px 0;
    border: 1px solid rgba(110, 142, 251, 0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #6e8efb;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px;
    border: 2px solid #e0e0ff;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', Arial, sans-serif;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #6e8efb;
    box-shadow: 0 0 0 4px rgba(110, 142, 251, 0.2);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.map-placeholder {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin: 50px 0;
    border: 2px dashed #6e8efb;
    box-shadow: inset 0 0 20px rgba(110, 142, 251, 0.1);
}

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

/* Адаптация под мобильные устройства */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 150px 0 100px;
    }
    
    .section {
        padding: 80px 0;
        margin: 20px 0;
        border-radius: 15px;
    }
    
    .section:first-of-type {
        margin-top: -50px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }
    
    .content-container {
        padding: 0 20px;
    }
    
    .benefits-grid,
    .services-grid,
    .examples-grid {
        grid-template-columns: 1fr; /* Одна колонка на мобильных */
        gap: 35px;
    }
    
    .benefit-card,
    .service-card,
    .example-card {
        padding: 35px 25px;
        border-radius: 15px;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 18px 12px;
    }
    
    .btn {
        padding: 16px 35px;
        font-size: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .cta {
        padding: 120px 0;
        border-radius: 20px;
    }
    
    .cta h2 {
        font-size: 2.5rem;
    }
    
    .cta p {
        font-size: 1.2rem;
    }
    
    nav {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .contact-form {
        padding: 30px;
        border-radius: 15px;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .benefit-card,
    .service-card,
    .example-card {
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 8px;
    }
    
    .btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .cta {
        padding: 100px 0;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
}

/* Улучшенная адаптация для планшетов */
@media (max-width: 1024px) and (min-width: 769px) {
    .benefits-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Две колонки на планшетах */
    }
    
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.7rem;
    }
    
    .section {
        padding: 100px 0;
    }
}