
.production-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
    padding-top: 80px;
    margin-top: 40px;
}

.production-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.04;
    background-image:
            radial-gradient(circle at 30% 20%, var(--accent) 1px, transparent 1px),
            radial-gradient(circle at 70% 80%, #4fc3f7 1px, transparent 1px);
    background-size: 55px 55px, 45px 45px;
}

.production-glow {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.1;
    background: var(--accent);
    bottom: -10%; right: -5%;
    animation: glowPulse 5s ease-in-out infinite;

}

.production-title {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: "Roboto Condensed", sans-serif;
}

.production-title .accent-text { color: var(--accent); }
.production-title .ice-text { color: #4fc3f7; }

.production-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.production-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.prod-stat h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.prod-stat p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
}

/* Ice cube visual */
.ice-cube-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ice-cube-icon {
    font-size: 18rem;
    color: #4fc3f7;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.floating-badge-blue {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 40px rgba(79, 195, 247, 0.1);
    animation: floatBadge 5s ease-in-out infinite;
}

.floating-badge-blue:nth-child(2) { animation-delay: -1.5s; }
.floating-badge-blue:nth-child(3) { animation-delay: -3s; }

.floating-badge-blue .badge-icon {
    width: 44px; height: 44px;
    background: #4fc3f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.1rem;
}

.floating-badge-blue .badge-text { font-weight: 700; font-size: 0.85rem; }
.floating-badge-blue .badge-sub { font-size: 0.75rem; color: var(--text-secondary); }

.badge-pos-1 { top: 15%; right: 5%; }
.badge-pos-2 { bottom: 30%; right: 0; }
.badge-pos-3 { bottom: 10%; left: 10%; }

/* Production process steps */
.prod-step {
    position: relative;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all var(--transition);
    height: 100%;
    text-align: center;
}

.prod-step:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 50px var(--shadow-color);
}

.prod-step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.prod-step-icon {
    width: 64px; height: 64px;
    margin: 0 auto 1.2rem;
    background: rgba(255, 237, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    transition: all var(--transition);
}

.prod-step:hover .prod-step-icon {
    background: var(--accent);
    color: #000;
    transform: scale(1.1);
}

.prod-step h5 {
    font-weight: 700;
    font-size: 1.55rem;
    margin-bottom: 0.5rem;
}

.prod-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Product cards */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px var(--shadow-color);
}

.product-img {
    aspect-ratio: 16/10;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-img i {
    font-size: 4rem;
    color: #4fc3f7;
    opacity: 0.3;
}

.product-body {
    padding: 1.8rem;
}

.product-body h4 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.product-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
}

.product-specs li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
}

.product-specs li:last-child { border-bottom: none; }
.product-specs li span:first-child { color: var(--text-secondary); }
.product-specs li span:last-child { font-weight: 700; color: var(--accent); }

/* Applications grid */
.app-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all var(--transition);
    height: 100%;
}

.app-item:hover {
    border-color: #4fc3f7;
    transform: translateX(5px);
}

.app-item-icon {
    flex-shrink: 0;
    width: 50px; height: 50px;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4fc3f7;
    font-size: 1.2rem;
    transition: all var(--transition);
}

.app-item:hover .app-item-icon {
    background: #4fc3f7;
    color: #000;
}

.app-item h6 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.app-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Cryoblasting integration section */
.cryo-integration {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.05) 0%, rgba(255, 237, 0, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.cryo-integration::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: #4fc3f7;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.05;
}

/* Advantages for production */
.prod-advantage {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all var(--transition);
    height: 100%;
}

.prod-advantage:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 50px var(--shadow-color);
}

.prod-adv-icon {
    width: 72px; height: 72px;
    margin: 0 auto 1.2rem;
    background: rgba(255, 237, 0, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    transition: all var(--transition);
}

.prod-advantage:hover .prod-adv-icon {
    background: var(--accent);
    color: #000;
    transform: scale(1.1) rotate(5deg);
}

.prod-advantage h5 {
    font-weight: 700;
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
}

.prod-advantage p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Delivery map section */
.delivery-info {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
}

.delivery-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delivery-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.delivery-list li:last-child { border-bottom: none; }

.delivery-list li i {
    color: var(--accent);
    font-size: 1rem;
    width: 24px;
    text-align: center;
}

/* Pricing table */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent);
}

.pricing-card.featured::before {
    content: 'Популярный';
    position: absolute;
    top: 20px; right: -35px;
    background: var(--accent);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px var(--shadow-color);
}

.pricing-card h4 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    margin: 1rem 0;
}

.pricing-card .price small {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* FAQ */
.faq-item-prod {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item-prod:hover { border-color: var(--accent); }

.faq-question-prod {
    padding: 1.3rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.4rem;
    user-select: none;
    transition: color var(--transition);
}

.faq-question-prod:hover { color: var(--accent); }
.faq-question-prod i { transition: transform var(--transition); color: var(--accent); }
.faq-item-prod.active .faq-question-prod i { transform: rotate(180deg); }

.faq-answer-prod {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item-prod.active .faq-answer-prod {
    max-height: 400px;
    padding: 0 1.5rem 1.3rem;
}

.faq-answer-prod p {
    color: var(--text-secondary);
    font-size: 1.3rem;
    line-height: 1.7;
    margin: 0;
}

/* CTA */
.cta-production {
    background: var(--accent);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-production::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: ctaGlow 5s ease-in-out infinite;
}

.cta-production h2 { color: #000; font-weight: 900; position: relative; z-index: 1; }
.cta-production p { color: rgba(0,0,0,0.7); position: relative; z-index: 1; }

/* Snow particles */
.snow-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.snow-particle {
    position: absolute;
    width: 5px; height: 5px;
    background: #4fc3f7;
    border-radius: 50%;
    opacity: 0;
    animation: snowFloat linear infinite;
}

@keyframes snowFloat {
    0% { opacity: 0; transform: translateY(-10vh) scale(0); }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(100vh) scale(1); }
}

@media (max-width: 991px) {
    .ice-cube-visual { display: none; }
    .floating-badge-blue { display: none; }
    .production-stats { flex-wrap: wrap; gap: 1.5rem; }
}

@media (max-width: 767px) {
    .cryo-integration { padding: 2rem 1.5rem; }
    .cta-production { padding: 3rem 1.5rem; }
    .prod-stat h3 { font-size: 1.8rem; }
}



.section-label {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6f42c1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.section-title {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
    text-align: left;
    font-family: "Roboto", sans-serif;
    padding-top: 20px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.justify-content-center {
    justify-content: center;
}
.col-lg-8 {
    flex: 0 0 auto;
    width: 66.666667%;
}
@media (min-width: 992px) {
    .col-lg-8 {
        max-width: 66.666667%;
    }
}
/* Стили для аккордеона */
.faq-container {
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

.faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 1rem 1.5rem;
    background: #fff;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .2s;
    font-size: 1.4rem;

}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    transition: transform .3s ease;
    color: #6f42c1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height .3s ease, padding .3s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 1.5rem 1rem;
    color: #495057;
    line-height: 1.6;
}

/* При открытии */
.faq-item.active .faq-question {
    background: #f8f9fa;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Подберите по содержимому */
    padding: 0 1.5rem 1rem;
}
section {
    padding: 10px 0 !important;
}

#about-production {
    background-color: #f5f5f5;
}