/* Красивый современный дизайн с богатым контентом */

/* Основные настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --bg-dark: #0f0f1e;
    --bg-card: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #d0d0e8;
    --text-muted: #a0a0b8;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Анимированный фон */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #0f0f1e;
}

/* Летающие геометрические фигуры */
.gradient-circle {
    position: absolute;
    opacity: 0.6;
    animation: floatShapes 25s infinite ease-in-out;
}

.circle-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-radius: 50%;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.4);
}

.circle-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.25), rgba(245, 87, 108, 0.25));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 60%;
    right: 10%;
    animation-delay: 7s;
    animation-duration: 30s;
    box-shadow: 0 0 50px rgba(240, 147, 251, 0.3);
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.3), rgba(56, 249, 215, 0.3));
    border-radius: 20%;
    bottom: 15%;
    left: 20%;
    animation-delay: 14s;
    animation-duration: 28s;
    box-shadow: 0 0 45px rgba(67, 233, 123, 0.4);
    transform: rotate(45deg);
}

/* Дополнительные летающие фигуры */
.floating-shape {
    position: absolute;
    opacity: 0.4;
    filter: blur(2px);
}

.shape-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), transparent);
    border-radius: 50%;
    top: 25%;
    left: 70%;
    animation: drift1 20s infinite ease-in-out;
}

.shape-2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.3), transparent);
    border-radius: 5px;
    top: 45%;
    left: 5%;
    animation: drift2 18s infinite ease-in-out;
}

.shape-3 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.3), transparent);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 70%;
    right: 25%;
    animation: drift3 22s infinite ease-in-out;
}

.shape-4 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.35), transparent);
    border-radius: 50%;
    top: 15%;
    right: 40%;
    animation: drift1 25s infinite ease-in-out reverse;
}

.shape-5 {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(250, 112, 154, 0.4), transparent);
    border-radius: 3px;
    bottom: 25%;
    left: 45%;
    animation: drift2 16s infinite ease-in-out;
}

.shape-6 {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(168, 237, 234, 0.3), transparent);
    border-radius: 50% 0 50% 0;
    bottom: 40%;
    right: 15%;
    animation: drift3 19s infinite ease-in-out reverse;
}

/* Светящиеся линии */
.glow-line {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(102, 126, 234, 0.5), transparent);
    opacity: 0.3;
    animation: lineFlow 15s infinite ease-in-out;
}

.line-1 {
    top: 0;
    left: 30%;
    animation-delay: 0s;
}

.line-2 {
    top: 0;
    left: 60%;
    animation-delay: 5s;
    background: linear-gradient(to bottom, transparent, rgba(240, 147, 251, 0.4), transparent);
}

.line-3 {
    top: 0;
    left: 85%;
    animation-delay: 10s;
    background: linear-gradient(to bottom, transparent, rgba(67, 233, 123, 0.4), transparent);
}

/* Анимации */
@keyframes floatShapes {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(100px, -80px) rotate(90deg) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(200px, 50px) rotate(180deg) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(-50px, 120px) rotate(270deg) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes drift1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translate(-80px, 100px) rotate(180deg);
        opacity: 0.7;
    }
}

@keyframes drift2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(120px, -60px) rotate(-180deg);
        opacity: 0.6;
    }
}

@keyframes drift3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.35;
    }
    33% {
        transform: translate(60px, -80px) rotate(120deg) scale(1.3);
        opacity: 0.6;
    }
    66% {
        transform: translate(-40px, 60px) rotate(240deg) scale(0.8);
        opacity: 0.5;
    }
}

@keyframes lineFlow {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(calc(100vh + 100%));
        opacity: 0;
    }
}

/* Шапка */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 30, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.logo-name {
    font-weight: 600;
    font-size: 18px;
}

.logo-tagline {
    font-size: 12px;
    color: var(--text-muted);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Кнопка личного кабинета в хедере */
.header-cabinet-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    white-space: nowrap;
}

.header-cabinet-btn svg {
    width: 18px;
    height: 18px;
    stroke: white;
    flex-shrink: 0;
}

.header-cabinet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.header-cabinet-btn:active {
    transform: translateY(0);
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Главная секция */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.gradient-text {
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: translateY(-3px);
}

/* Изображение героя */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    width: 450px;
    height: 450px;
}

.image-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--primary);
    border-radius: 30px;
    filter: blur(40px);
    opacity: 0.3;
    animation: pulse-bg 3s infinite;
}

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

.profile-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.image-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: var(--accent);
    opacity: 0.1;
}

.decoration-1 {
    top: -30px;
    right: -30px;
    animation: float 6s infinite ease-in-out;
}

.decoration-2 {
    bottom: -30px;
    left: -30px;
    animation: float 6s infinite ease-in-out reverse;
}

.floating-badge {
    position: absolute;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 4s infinite ease-in-out;
}

.badge-1 {
    top: 50px;
    left: -50px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 50px;
    right: -50px;
    animation-delay: 2s;
}

.badge-icon {
    font-size: 24px;
}

.badge-title {
    font-size: 20px;
    font-weight: 700;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-text {
    font-size: 12px;
    color: var(--text-muted);
}

/* Секции */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #667eea;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* О себе */
.about {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.5);
}

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

.about-intro h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.intro-subtitle {
    font-size: 18px;
    color: #667eea;
    margin-bottom: 30px;
}

.about-paragraph {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.highlight-icon {
    width: 30px;
    height: 30px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.highlight-text p {
    font-size: 14px;
    color: var(--text-muted);
}

.about-skills h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.skills-category {
    margin-bottom: 30px;
}

.skills-category h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Услуги */
.services {
    padding: 100px 0;
}

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

.service-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 126, 234, 0.5);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-color: #667eea;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.service-icon {
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
}

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

/* Контакты */
.contact {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.5);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-side h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.contact-info-item[data-copy] {
    cursor: pointer;
}

.contact-info-item[data-copy]:hover {
    background: rgba(102, 126, 234, 0.1);
}

.contact-info-item[data-copy]::after {
    content: '📋';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 16px;
}

.contact-info-item[data-copy]:hover::after {
    opacity: 0.6;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-company {
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 15px;
}

.contact-company h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-company p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-side {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    margin-bottom: 25px;
}

.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

/* Капча */
.captcha-field {
    margin-bottom: 25px;
}

.captcha-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.captcha-image {
    height: 70px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(26, 26, 46, 0.5);
}

.captcha-refresh {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.captcha-refresh:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    color: #667eea;
    transform: rotate(180deg);
}

.captcha-refresh:active {
    transform: rotate(180deg) scale(0.9);
}

/* Сообщения формы */
.form-message {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-message.error {
    display: block;
    background: rgba(245, 87, 108, 0.1);
    border: 1px solid rgba(245, 87, 108, 0.3);
    color: #f5576c;
}

.form-message.success {
    display: block;
    background: rgba(67, 233, 123, 0.1);
    border: 1px solid rgba(67, 233, 123, 0.3);
    color: #43e97b;
}

.form-message.info {
    display: block;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: #667eea;
}

/* Кнопка отправки */
#submitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#submitBtn.loading span {
    opacity: 0;
}

#submitBtn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

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

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    margin: 0 auto 25px;
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.form-success .btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin: 0 auto 25px;
}

.form-success h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-success p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Футер */
.footer {
    background: rgba(15, 15, 30, 0.5);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--text-primary);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Упрощенная карта сайта в футере */
.footer-sitemap-simple {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.sitemap-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.sitemap-link svg:first-child {
    color: #667eea;
    opacity: 0.9;
}

.sitemap-link svg:last-child {
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.sitemap-link:hover {
    color: var(--text-primary);
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.sitemap-link:hover svg:last-child {
    transform: translate(3px, -3px);
    opacity: 1;
}

/* Адаптивность для упрощенной карты сайта */
@media (max-width: 768px) {
    .footer-sitemap-simple {
        margin-top: 30px;
        padding-top: 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    border-color: transparent;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .hero-wrapper,
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .header-cabinet-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .header-cabinet-btn span {
        display: none;
    }
    
    .header-cabinet-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(15, 15, 30, 0.98);
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s ease;
    }
    
    .nav.active {
        left: 0;
    }
    
    /* Улучшенная контрастность для мобильных */
    .section-description,
    .about-paragraph,
    .hero-subtitle,
    body {
        color: #e8e8f0;
    }
    
    .logo-tagline {
        color: #d0d0e8;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .image-frame {
        width: 320px;
        height: 320px;
    }
    
    .floating-badge {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-stats-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .image-frame {
        width: 280px;
        height: 280px;
    }
}

/* Страницы хостинга и портфолио */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.hero-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 35px;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Тарифы хостинга */
.hosting-plans,
.vps-configurator,
.hosting-benefits {
    padding: 100px 0;
}

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

.pricing-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 126, 234, 0.5);
}

.featured-plan {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-color: #667eea;
    transform: scale(1.05);
}

.featured-plan:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-desc {
    font-size: 14px;
    color: var(--text-muted);
}

.plan-price {
    text-align: center;
    margin-bottom: 35px;
}

.price-value {
    font-size: 56px;
    font-weight: 800;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.price-period {
    font-size: 16px;
    color: var(--text-muted);
}

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

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

/* Конфигуратор VPS */
.vps-configurator {
    background: rgba(26, 26, 46, 0.3);
}

.configurator-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.configurator-controls {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.control-group {
    margin-bottom: 40px;
}

.control-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.control-header h4 {
    font-size: 18px;
    font-weight: 600;
}

.control-price {
    font-size: 13px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 15px;
}

.slider-container {
    margin-bottom: 15px;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.5);
    transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.5);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.slider-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.slider-value span {
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preset-configs {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.preset-configs h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.preset-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.preset-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.preset-btn:hover,
.preset-btn.active {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    transform: translateY(-3px);
}

.preset-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.preset-specs {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

/* Выбор ОС */
.os-selection {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.os-selection h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

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

.os-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.os-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-3px);
}

.os-card.selected {
    background: rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.os-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: white;
    padding: 3px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.os-logo svg {
    width: 40px;
    height: 40px;
}

.os-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    /* Показываем оригинальный белый фон изображений */
    mix-blend-mode: normal;
    filter: none;
}

.os-card:hover .os-logo img {
    filter: brightness(1.2) contrast(1.3);
    transform: scale(1.05);
}

.os-card.selected .os-logo {
    background: white;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5), 0 0 0 2px #667eea;
}

.os-card.selected .os-logo img {
    filter: none;
}

.os-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.os-version {
    width: 100%;
    background: rgba(15, 15, 30, 0.8);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 10px;
    color: var(--text-primary);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.os-version option {
    background: #1a1a2e;
    color: var(--text-primary);
}

.os-version:hover {
    border-color: #667eea;
}

.os-version:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.configurator-summary {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px;
}

.summary-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
}

.summary-items {
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 15px;
}

.summary-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.summary-details {
    flex: 1;
}

.summary-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.summary-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.summary-price {
    font-size: 16px;
    font-weight: 700;
    color: #667eea;
}

.summary-total {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border: 2px solid rgba(102, 126, 234, 0.4);
    border-radius: 20px;
    margin-bottom: 25px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: rgba(15, 15, 30, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    gap: 15px;
}

.total-row:hover {
    background: rgba(15, 15, 30, 0.7);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.total-row span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.total-price {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    text-align: right;
    line-height: 1.2;
    word-break: keep-all;
    white-space: nowrap;
}

.total-row:first-child .total-price {
    font-size: 28px;
}

.summary-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(67, 174, 123, 0.1);
    border: 1px solid rgba(67, 174, 123, 0.3);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

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

.benefit-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 126, 234, 0.5);
}

.benefit-icon {
    margin: 0 auto 25px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

/* Адаптивность для хостинга */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-plan {
        transform: scale(1);
    }
    
    .featured-plan:hover {
        transform: scale(1) translateY(-10px);
    }
    
    .configurator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .configurator-summary {
        position: static;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .preset-buttons {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
}

/* Портфолио */
.portfolio-filters {
    padding: 60px 0 40px;
    background: rgba(26, 26, 46, 0.3);
}

.filters-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 25px;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.portfolio-grid-section {
    padding: 80px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.portfolio-item {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 126, 234, 0.5);
}

.project-image {
    position: relative;
    height: 250px;
    background: rgba(15, 15, 30, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .project-overlay {
    opacity: 1;
}

.project-actions {
    display: flex;
    gap: 15px;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.5);
}

.project-content {
    padding: 30px;
}

.project-category {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.project-tags span {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.project-meta {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.meta-item svg {
    stroke: var(--text-muted);
}

/* Статистика портфолио */
.portfolio-stats {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.3);
}

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

.stat-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 126, 234, 0.5);
}

.stat-icon {
    margin: 0 auto 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA портфолио */
.portfolio-cta {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
}

.cta-box h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Адаптивность портфолио */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .filters-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 40px 30px;
    }
    
    .cta-box h2 {
        font-size: 28px;
    }
}

/* Страница О компании - Новый дизайн */
.info-hero {
    position: relative;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Showcase секция */
.company-showcase {
    padding: 80px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.section-header-inline {
    margin-bottom: 30px;
}

.section-header-inline .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 15px;
}

.section-header-inline h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
}

/* Карта */
.map-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(26, 26, 46, 0.5);
    margin-bottom: 25px;
}

.yandex-map {
    width: 100%;
    height: 450px;
}

.map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 10;
}

.map-info-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-tile {
    position: relative;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.info-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-tile:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.info-tile:hover::before {
    opacity: 0.08;
}

.tile-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
}

.info-tile:hover .tile-bg {
    opacity: 1;
    transform: scale(1.2) rotate(45deg);
}

.tile-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.tile-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tile-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-tile:hover .tile-icon::before {
    opacity: 1;
}

.tile-icon.clock {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    color: #667eea;
}

.tile-icon.email {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.15), rgba(56, 249, 215, 0.15));
    color: #43e97b;
}

.tile-icon.phone {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.15), rgba(245, 87, 108, 0.15));
    color: #f093fb;
}

.info-tile:hover .tile-icon {
    transform: scale(1.1) rotateY(360deg);
}

.tile-icon svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px currentColor);
}

.tile-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.info-tile:hover .tile-label {
    color: #667eea;
}

.tile-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    transition: all 0.3s ease;
}

.info-tile:hover .tile-value {
    transform: scale(1.05);
    color: #667eea;
}

/* Табы */
.info-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.tab-btn.active {
    background: var(--primary);
    border-color: transparent;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Карточка информации */
.info-card-modern {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.info-icon-large {
    flex-shrink: 0;
}

.info-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.info-header p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.info-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.row-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    min-width: 180px;
    flex-shrink: 0;
}

.row-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
    flex: 1;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.info-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding: 15px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Контактные ссылки */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateX(5px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.email {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-icon.phone {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.contact-icon.telegram {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.contact-icon svg {
    color: white;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Гарантии */
.guarantees-section {
    padding: 100px 0;
}

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

.guarantee-card {
    position: relative;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 126, 234, 0.5);
}

.guarantee-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.guarantee-card:hover .guarantee-number {
    opacity: 0.3;
    transform: scale(1.1);
}

.guarantee-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

.guarantee-card:hover .guarantee-icon {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

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

.guarantee-icon svg {
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.3));
    transition: all 0.4s ease;
}

.guarantee-card:hover .guarantee-icon svg {
    filter: drop-shadow(0 8px 20px rgba(102, 126, 234, 0.5));
    transform: scale(1.05);
}

.guarantee-card:nth-child(1) .guarantee-icon {
    animation-delay: 0s;
}

.guarantee-card:nth-child(2) .guarantee-icon {
    animation-delay: 0.2s;
}

.guarantee-card:nth-child(3) .guarantee-icon {
    animation-delay: 0.4s;
}

.guarantee-card:nth-child(4) .guarantee-icon {
    animation-delay: 0.6s;
}

.guarantee-card:nth-child(5) .guarantee-icon {
    animation-delay: 0.8s;
}

.guarantee-card:nth-child(6) .guarantee-icon {
    animation-delay: 1s;
}

.guarantee-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.guarantee-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .info-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .yandex-map {
        height: 350px;
    }
    
    .info-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .row-value {
        text-align: left;
    }
}

/* ========================================
   СТРАНИЦА ОФЕРТЫ
   ======================================== */

.offer-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.offer-hero {
    text-align: center;
    margin-bottom: 60px;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}

.offer-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.offer-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px;
    background: rgba(26, 26, 46, 0.3);
    border: 1px solid var(--border);
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.offer-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.offer-info-item .label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-info-item .value {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 600;
}

.offer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.offer-intro {
    background: rgba(26, 26, 46, 0.3);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.offer-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Аккордеон */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: rgba(26, 26, 46, 0.3);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.accordion-item.active {
    border-color: var(--primary);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.accordion-header:hover {
    background: rgba(102, 126, 234, 0.05);
}

.accordion-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    min-width: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(240, 147, 251, 0.15));
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.accordion-header:hover .accordion-number {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25), rgba(240, 147, 251, 0.25));
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    transform: scale(1.05);
}

.accordion-item.active .accordion-number {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.6);
}

.accordion-title {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.accordion-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
    min-width: 24px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content > div {
    padding: 0 30px 30px 90px;
}

.accordion-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.accordion-content ul {
    list-style: none;
    margin: 15px 0;
}

.accordion-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.accordion-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.accordion-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Реквизиты */
.requisites {
    margin-top: 20px;
}

.requisites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.requisite-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 12px;
}

.requisite-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.requisite-value {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.offer-footer-note {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    margin-top: 40px;
    background: rgba(67, 233, 123, 0.05);
    border: 1px solid rgba(67, 233, 123, 0.2);
    border-radius: 15px;
}

.offer-footer-note svg {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-footer-note p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Обновленный футер с 5 колонками */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-about {
    padding-right: 20px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-col span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Адаптивность для страницы оферты */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .requisites-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .offer-title {
        font-size: 36px;
    }
    
    .offer-subtitle {
        font-size: 16px;
    }
    
    .offer-info {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    
    .accordion-number {
        font-size: 18px;
        min-width: 30px;
    }
    
    .accordion-title {
        font-size: 16px;
    }
    
    .accordion-header {
        padding: 20px;
    }
    
    .accordion-content > div {
        padding: 0 20px 20px 60px;
    }
    
    .requisites-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col-about {
        padding-right: 0;
    }
    
    .offer-footer-note {
        flex-direction: column;
        gap: 15px;
    }
}