:root {
    --primary: #1a365d;
    --secondary: #2b6cb0;
    --accent: #38b2ac;
    --light: #f7fafc;
    --success: #48bb78;
    --warning: #ed8936;
    --danger: #f56565;
    --dark: #2d3748;
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-400: #cbd5e0;
    --gray-500: #a0aec0;
    --gray-600: #718096;
    --gray-700: #4a5568;
    --gray-800: #2d3748;
    --gray-900: #1a202c;
    --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    --gradient-success: linear-gradient(135deg, #48bb78 0%, #38b2ac 100%);
    --gradient-warning: linear-gradient(135deg, #ed8936 0%, #f56565 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 12px;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--gray-100);
}

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

/* Навигация */
.main-nav {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.nav-brand i {
    color: var(--accent);
    font-size: 1.3rem;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 3px 3px 0 0;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Герой-секция */
.hero {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    font-weight: 300;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge.highlight {
    background: var(--gradient-warning);
    box-shadow: 0 5px 15px rgba(237, 137, 54, 0.4);
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-success);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(72, 187, 120, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Секции */
.section {
    padding: 60px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* Карточки */
.card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    background: var(--gradient-primary);
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-icon {
    font-size: 1.8rem;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
}

.card-content {
    padding: 30px;
}

.value-formula {
    background: var(--gray-100);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin: 25px 0;
    border-left: 4px solid var(--accent);
}

.value-formula span {
    color: var(--accent);
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    padding: 25px;
    background: var(--gray-100);
    border-radius: var(--radius);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.feature h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Преимущества */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    padding-top: 60px;
}

.advantage-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
}

.advantage h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Стратегия */
.strategy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.strategy-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent);
}

.strategy-card:nth-child(2) {
    border-top-color: var(--warning);
}

.strategy-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strategy-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stat {
    text-align: center;
    padding: 15px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* CTA секция */
.cta-section {
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    margin: 40px 0;
}

.cta-section .section-title {
    color: white;
}

.cta-section .section-title::after {
    background: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Футер */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 30px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

.footer-brand i {
    color: var(--accent);
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-info {
    font-size: 0.9rem;
    line-height: 1.5;
}

.roi-badge {
    display: inline-block;
    background: var(--gradient-warning);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Адаптивность */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .strategy-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}
/* Дополнительные стили для страницы стратегии */
.mini-hero { padding: 60px 0; }

.slogan-box {
    background: linear-gradient(90deg, #ebf8ff 0%, #e6fffa 100%);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
    border-left: 5px solid var(--accent);
}

.brief-box {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-800);
    padding: 20px;
    background-color: #f0fff4;
    border-radius: var(--radius);
    border-left: 5px solid var(--success);
}

.note {
    font-style: italic;
    color: var(--gray-600);
    margin-top: 15px;
    font-size: 0.9rem;
}

.expanded-content {
    padding: 25px;
    background-color: #fefcbf;
    border-radius: var(--radius);
    font-size: 1.1rem;
    line-height: 1.7;
    border-left: 5px solid var(--warning);
}

.subsection-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 30px 0 15px;
    padding-left: 20px;
    border-left: 4px solid var(--accent);
}

.idea-core {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-300);
    font-weight: 600;
    color: var(--primary);
}

.key-elements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.element {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.element i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 5px;
}

.element h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.usp-box {
    background: linear-gradient(90deg, #fff5f5 0%, #fed7d7 100%);
    padding: 25px;
    border-radius: var(--radius);
    font-size: 1.1rem;
    margin: 30px 0;
    border: 2px dashed #fc8181;
}

.usp-box h4 {
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.tech-item {
    text-align: center;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.tech-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}
/* Дополнительные стили для маркетинговой страницы */
.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* Стили для карточек стратегии */
.strategy-phase-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent);
    height: 100%;
}

/* Анимации для маркетинговой страницы */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.audience-card, .channel-card, .kpi-card {
    animation: slideIn 0.5s ease forwards;
}

.audience-card:nth-child(1) { animation-delay: 0.1s; }
.audience-card:nth-child(2) { animation-delay: 0.2s; }
.audience-card:nth-child(3) { animation-delay: 0.3s; }
.audience-card:nth-child(4) { animation-delay: 0.4s; }

.channel-card:nth-child(1) { animation-delay: 0.1s; }
.channel-card:nth-child(2) { animation-delay: 0.2s; }
.channel-card:nth-child(3) { animation-delay: 0.3s; }
.channel-card:nth-child(4) { animation-delay: 0.4s; }

.kpi-card:nth-child(1) { animation-delay: 0.1s; }
.kpi-card:nth-child(2) { animation-delay: 0.2s; }
.kpi-card:nth-child(3) { animation-delay: 0.3s; }
.kpi-card:nth-child(4) { animation-delay: 0.4s; }
.kpi-card:nth-child(5) { animation-delay: 0.5s; }
.kpi-card:nth-child(6) { animation-delay: 0.6s; }

/* Стили для адаптивности маркетинговой страницы */
@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .budget-breakdown {
        grid-template-columns: 1fr;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-event {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
    }
    
    .timeline-event:nth-child(even) {
        margin-left: 0;
        padding-left: 60px;
    }
    
    .timeline-content::before {
        left: -45px !important;
        right: auto !important;
    }
}

@media (max-width: 480px) {
    .kpi-grid {
        grid-template-columns: 1fr;
    }
    
    .funnel-stages {
        flex-direction: column;
        gap: 20px;
    }
    
    .stage-circle {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}
/* Анимации для презентации */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Применение анимаций к слайдам */
.slide-content.active .presentation-card {
    animation: slideInFromLeft 0.6s ease forwards;
}

.slide-content.active .smart-goal {
    animation: slideInFromRight 0.6s ease forwards;
}

.slide-content.active .advantage-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Задержки для анимаций */
.slide-content.active .presentation-card:nth-child(1) { animation-delay: 0.1s; }
.slide-content.active .presentation-card:nth-child(2) { animation-delay: 0.2s; }
.slide-content.active .presentation-card:nth-child(3) { animation-delay: 0.3s; }

.slide-content.active .smart-goal:nth-child(1) { animation-delay: 0.1s; }
.slide-content.active .smart-goal:nth-child(2) { animation-delay: 0.2s; }
.slide-content.active .smart-goal:nth-child(3) { animation-delay: 0.3s; }
.slide-content.active .smart-goal:nth-child(4) { animation-delay: 0.4s; }
.slide-content.active .smart-goal:nth-child(5) { animation-delay: 0.5s; }

.slide-content.active .advantage-card:nth-child(1) { animation-delay: 0.1s; }
.slide-content.active .advantage-card:nth-child(2) { animation-delay: 0.2s; }
.slide-content.active .advantage-card:nth-child(3) { animation-delay: 0.3s; }
.slide-content.active .advantage-card:nth-child(4) { animation-delay: 0.4s; }

/* Стили для бизнес-модели */
.model-path {
    animation: fadeInUp 0.8s ease forwards;
}

.model-path:nth-child(1) { animation-delay: 0.2s; }
.model-path:nth-child(2) { animation-delay: 0.4s; }

/* Стили для иконок */
.model-icon {
    animation: bounceIn 1s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Адаптивность для презентации */
@media (max-width: 768px) {
    .presentation-header h1 {
        font-size: 2.2rem;
    }
    
    .presentation-header .tagline {
        font-size: 1.1rem;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .quote {
        font-size: 1.2rem;
    }
    
    .goal-details {
        grid-template-columns: 1fr;
    }
    
    .business-model {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .presentation-header {
        padding: 40px 20px;
    }
    
    .presentation-header h1 {
        font-size: 1.8rem;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}
/* Анимации для страницы контактов */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInDelayed {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Применение анимаций */
.contact-info-card {
    animation: slideInLeft 0.8s ease forwards;
}

.contact-form-card {
    animation: slideInRight 0.8s ease forwards;
}

.office-card:nth-child(1) {
    animation: fadeInDelayed 0.8s ease forwards;
    animation-delay: 0.1s;
}

.office-card:nth-child(2) {
    animation: fadeInDelayed 0.8s ease forwards;
    animation-delay: 0.2s;
}

.office-card:nth-child(3) {
    animation: fadeInDelayed 0.8s ease forwards;
    animation-delay: 0.3s;
}

.faq-item {
    animation: fadeInDelayed 0.6s ease forwards;
    opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

/* Стили для иконок соцсетей */
.fa-vk:hover { color: #4C75A3 !important; }
.fa-telegram:hover { color: #2AABEE !important; }
.fa-youtube:hover { color: #FF0000 !important; }
.fa-instagram:hover { 
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Стили для выпадающих списков */
.form-select option {
    padding: 10px;
    background: white;
    color: var(--dark);
}

/* Стили для ползунка textarea */
textarea::-webkit-resizer {
    border: 2px solid var(--accent);
    border-radius: 4px;
}

/* Адаптивность для контактной страницы */
@media (max-width: 992px) {
    .contacts-grid {
        gap: 30px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 30px;
    }
}
