/* Базовые стили и сброс */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #4facfe;
    --text-dark: #ffffff;
    --text-light: #b0b0b0;
    --bg-white: #0a0a0a;
    --bg-light: #1a1a1a;
    --bg-dark: #000000;
    --bg-card: #141414;
    --border-color: #2a2a2a;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 15px 50px rgba(102, 126, 234, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* Animated Blob Background */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #000000;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
    animation: blob-animation 20s infinite ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    top: 50%;
    right: -100px;
    animation-delay: 5s;
}

.blob-3 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    bottom: -150px;
    left: 50%;
    animation-delay: 10s;
}

@keyframes blob-animation {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, 50px) scale(1.1);
    }
    50% {
        transform: translate(50px, 100px) scale(0.9);
    }
    75% {
        transform: translate(-50px, 50px) scale(1.05);
    }
}

/* Хедер */
.header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

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

.logo h1 {
    font-size: 28px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

/* Гамбургер меню */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-gradient);
    transition: all 0.3s ease;
    border-radius: 3px;
}

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

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

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

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
    transition: right 0.3s ease;
    z-index: 999;
    padding-top: 80px;
    border-left: 1px solid rgba(102, 126, 234, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.nav-list {
    list-style: none;
    padding: 20px;
}

.nav-list li {
    margin-bottom: 10px;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: var(--primary-gradient);
    color: var(--bg-white);
    transform: translateX(10px);
}

/* Герой секция */
.hero {
    margin-top: 70px;
    padding: 150px 0 120px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    opacity: 0.4;
}

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

.hero-title {
    font-size: 52px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 35px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Кнопки з ефектом чорнила (sprite animation) */
.btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    color: #ffffff;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.btn::after {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: #000000;
}

.btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: var(--primary-gradient);
    -webkit-mask: url(bg.png);
    mask: url(bg.png);
    -webkit-mask-size: 7100% 100%;
    mask-size: 7100% 100%;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    transition: mask-position 0s;
}

.btn:hover::before {
    animation: inkSpread 0.7s steps(70) forwards;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

@keyframes inkSpread {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
}

/* Всі типи кнопок мають однакову базу */
.btn-primary {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn-secondary {
    /* Такі ж як primary */
}

/* Секции */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 60px;
}

/* Секция Преимущества */
.advantages {
    background-color: var(--bg-white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.advantage-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.advantage-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Секция Результаты/Производительность */
.performance {
    background-color: var(--bg-white);
    padding: 100px 0;
}

.performance-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin: -30px auto 50px;
    max-width: 700px;
    line-height: 1.6;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .performance-grid {
        grid-template-columns: 1fr;
    }
}

.performance-card {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.4s ease;
}

.performance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

/* Donut charts */
.donut-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.donut-chart {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 20px;
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    height: 160px;
    pointer-events: none;
    z-index: 5;
}

.donut-chart svg {
    position: relative;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    z-index: 2;
}

.donut-bg {
    fill: none;
    stroke: var(--bg-light);
    stroke-width: 20;
}

.donut-fill {
    fill: none;
    stroke: url(#gradient-purple);
    stroke-width: 20;
    stroke-linecap: round;
    stroke-dasharray: 502.65;
    stroke-dashoffset: 502.65;
    transition: stroke-dashoffset 2s ease-out;
}

.donut-fill.donut-orange {
    stroke: url(#gradient-orange);
}

.donut-fill.donut-blue {
    stroke: url(#gradient-blue);
}

.donut-fill.donut-green {
    stroke: url(#gradient-green);
}

.donut-card.visible .donut-fill {
    animation: donutFill 2s ease-out forwards;
}

@keyframes donutFill {
    to {
        stroke-dashoffset: 0;
    }
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.donut-percent {
    font-size: 36px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}

.donut-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.donut-info h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.donut-info p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Секция Цены */
.pricing {
    background: var(--bg-light);
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--bg-card);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gradient);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--bg-light);
}

.pricing-header h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--text-dark);
    font-size: 15px;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 10px;
}

/* Про нас */
.about {
    background-color: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 32px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.7;
}

.about-list {
    list-style: none;
}

.about-list li {
    padding: 14px 0 14px 40px;
    position: relative;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.5;
}

.about-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-gradient);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.team-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    object-fit: cover;
    max-height: 500px;
}

/* Форма заявки */
.contact-form-section {
    background: var(--primary-gradient);
    color: var(--bg-white);
    padding: 100px 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-wrapper h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.form-description {
    margin-bottom: 40px;
    font-size: 17px;
    opacity: 0.95;
    line-height: 1.6;
}

.contact-form {
    background-color: var(--bg-card);
    padding: 45px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

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

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--bg-dark);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.form-group input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.btn-submit {
    width: 100%;
    background: var(--primary-gradient);
    color: var(--bg-white);
    padding: 16px 40px;
    font-size: 18px;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Контакты */
.contacts {
    background-color: var(--bg-white);
}

.contacts-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.contact-item {
    padding: 30px;
    background: var(--bg-card);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.contact-item h3 {
    font-size: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
}

.contact-person {
    text-align: left;
}

.contact-phone, .contact-messenger {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 15px;
}

.contact-phone svg, .contact-messenger svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.contact-phone a, .contact-messenger a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone a:hover, .contact-messenger a:hover {
    color: var(--primary-color);
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
    opacity: 0.8;
}

/* Футер */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--bg-white);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin: 0;
    opacity: 0.8;
}

/* Плавающая кнопка телефона */
.phone-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--primary-gradient);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    z-index: 998;
    color: var(--bg-white);
    cursor: pointer;
    animation: pulse 2s infinite;
}

.phone-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4), 0 0 0 15px rgba(102, 126, 234, 0.1);
    }
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: var(--bg-card);
    padding: 45px 40px;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 1;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--bg-light);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 28px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: 700;
}

.modal-description {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

.callback-form {
    margin-top: 20px;
}

.callback-form .form-group {
    margin-bottom: 20px;
}

.callback-form input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.callback-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--bg-dark);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.callback-form input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

/* Toast уведомления */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
}

.toast {
    background-color: var(--bg-card);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    animation: toastSlideIn 0.4s ease-out;
    border-left: 4px solid var(--primary-color);
    min-width: 320px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.toast.success {
    border-left-color: #10b981;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.warning {
    border-left-color: #f59e0b;
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.toast.success .toast-icon {
    color: #10b981;
}

.toast.error .toast-icon {
    color: #ef4444;
}

.toast.warning .toast-icon {
    color: #f59e0b;
}

.toast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.toast-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
}

.toast-message {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    font-size: 20px;
    border-radius: 50%;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}

.toast-close:hover {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

.toast.removing {
    animation: toastSlideOut 0.3s ease-out forwards;
}

/* Анимации появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность для планшетов */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        min-height: 500px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-image {
        max-height: 350px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form {
        padding: 35px 30px;
    }

    section {
        padding: 70px 0;
    }

    .blob {
        filter: blur(80px);
    }
}

/* Адаптивность для мобильных */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 450px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .logo h1 {
        font-size: 24px;
    }

    .advantage-card {
        padding: 30px 25px;
    }

    .advantage-icon {
        width: 60px;
        height: 60px;
    }

    .advantage-card h3 {
        font-size: 18px;
    }

    .about-text h3 {
        font-size: 26px;
    }

    .form-wrapper h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .phone-button {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .phone-button svg {
        width: 20px;
        height: 20px;
    }

    .mobile-menu {
        width: 100%;
    }

    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .toast {
        min-width: auto;
        width: 100%;
    }

    .modal-content {
        padding: 35px 25px;
    }

    .blob {
        filter: blur(100px);
    }

    .blob-1, .blob-2, .blob-3 {
        width: 300px;
        height: 300px;
    }

    section {
        padding: 60px 0;
    }

    .btn {
        padding: 14px 35px;
        font-size: 15px;
    }

    .price-amount {
        font-size: 40px;
    }

    .pricing-card {
        padding: 35px 25px;
    }
}
