/* proizvodstvo.css — AKKULA Производство */

/* ============ HERO METRICS ============ */
.hero-production {
    padding: 60px var(--hero-pad, clamp(40px, 6vw, 140px)) 80px;
    max-width: 1920px;
    margin: 0 auto;
    text-align: center;
}

.hero-production h1 {
    font-family: 'El Messiri', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--brand-dark);
    margin-bottom: 20px;
}

.hero-production > p {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.2vw, 18px);
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.metric-box {
    background: var(--card-bg);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.metric-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(75, 28, 79, 0.06);
}

.metric-val {
    font-family: 'El Messiri', sans-serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}
.metric-val small {
    font-size: 0.55em;
    font-weight: 500;
}
.metric-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* ============ LOAD INDICATOR (WOW) ============ */
.load-section {
    padding: 80px var(--hero-pad, clamp(40px, 6vw, 140px));
    background: var(--brand-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.load-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(75, 28, 79, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.load-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.load-bar-wrapper {
    width: 100%;
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    margin: 30px 0 24px;
    overflow: hidden;
}
.load-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--brand-purple), #9b59b6);
    border-radius: 6px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.load-number {
    font-family: 'El Messiri', sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}
.load-number small {
    font-size: 0.45em;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}

.load-label {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.load-slot {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}
.load-slot strong {
    color: #fff;
}

.load-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: var(--brand-dark);
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.load-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,255,255,0.15);
}

/* ============ WORKSHOPS (FACTORY STRUCTURE) ============ */
.workshops-section {
    padding: 80px var(--hero-pad, clamp(40px, 6vw, 140px));
    background: var(--card-bg);
    max-width: 1920px;
    margin: 0 auto;
}

.workshops-section .section-heading {
    font-family: 'El Messiri', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--brand-dark);
    text-align: center;
    margin-bottom: 60px;
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.workshop-card {
    background: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 12px;
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.4s, box-shadow 0.4s;
}
.workshop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(75, 28, 79, 0.08);
}

.workshop-icon {
    width: 64px;
    height: 64px;
    background: var(--brand-purple);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
}
.workshop-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.workshop-card h3 {
    font-family: 'El Messiri', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 14px;
}
.workshop-card p {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============ ASSORTMENT (WHAT WE SEW) ============ */
.assortment-section {
    padding: 80px var(--hero-pad, clamp(40px, 6vw, 140px));
    background: var(--bg-light);
    max-width: 1920px;
    margin: 0 auto;
}

.assortment-section .section-heading {
    font-family: 'El Messiri', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--brand-dark);
    text-align: center;
    margin-bottom: 12px;
}
.assortment-section .section-subheading {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
    max-width: 550px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.assortment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.assortment-tile {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.assortment-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.assortment-tile:hover img {
    transform: scale(1.06);
}
.assortment-tile .tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(35, 35, 35, 0.8) 0%, rgba(35, 35, 35, 0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: background 0.4s;
}
.assortment-tile:hover .tile-overlay {
    background: linear-gradient(to top, rgba(75, 28, 79, 0.85) 0%, rgba(75, 28, 79, 0.2) 50%, transparent 100%);
}
.tile-overlay h4 {
    font-family: 'El Messiri', sans-serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 4px;
}
.tile-overlay span {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* ============ GEO (GEOGRAPHY) ============ */
.geo-section {
    padding: 80px var(--hero-pad, clamp(40px, 6vw, 140px));
    background: var(--card-bg);
    max-width: 1920px;
    margin: 0 auto;
}

.geo-section .section-heading {
    font-family: 'El Messiri', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--brand-dark);
    text-align: center;
    margin-bottom: 50px;
}

.geo-chain {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.geo-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 28px;
    transition: transform 0.3s;
}
.geo-point:hover {
    transform: translateY(-4px);
}

.geo-flag {
    font-size: 36px;
    line-height: 1;
}

.geo-name {
    font-family: 'El Messiri', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-dark);
}
.geo-detail {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.geo-arrow {
    font-size: 28px;
    color: var(--brand-purple);
    font-weight: 300;
    line-height: 1;
    padding: 0 8px;
}

/* ============ PRODUCTION LEAD ============ */
.production-lead-section {
    padding: 90px var(--hero-pad, clamp(40px, 6vw, 140px));
    background: var(--card-bg);
    max-width: 1920px;
    margin: 0 auto;
}

.production-lead-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.production-lead-label {
    display: inline-block;
    margin-bottom: 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-purple);
}

.production-lead-copy h2 {
    margin: 0 0 18px;
    font-family: 'El Messiri', sans-serif;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.08;
    color: var(--brand-dark);
}

.production-lead-copy p,
.production-lead-copy li {
    font-family: 'Manrope', sans-serif;
    color: var(--text-muted);
    line-height: 1.7;
}

.production-lead-copy p {
    max-width: 620px;
    margin: 0 0 20px;
    font-size: 16px;
}

.production-lead-copy ul {
    margin: 0;
    padding-left: 20px;
}

.production-lead-form {
    padding: 34px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 20px 50px rgba(35,35,35,0.06);
}

.production-lead-form input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 12px;
    padding: 13px 14px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 6px;
    background: #fff;
    color: var(--brand-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
}

.production-lead-form input:focus {
    outline: none;
    border-color: var(--brand-purple);
}

.production-contact-choice {
    margin: 0 0 14px;
}

.production-contact-choice .contact-choice-title {
    color: var(--text-muted);
}

.production-contact-choice label span {
    border-color: rgba(0,0,0,0.1);
    background: #fff;
    color: rgba(35,35,35,0.72);
}

.production-contact-choice input:checked + span {
    border-color: var(--brand-dark);
    background: var(--brand-dark);
    color: #fff;
}

.production-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 4px 0 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    line-height: 1.45;
    color: var(--text-muted);
}

.production-consent input {
    width: auto;
    margin: 2px 0 0;
    accent-color: var(--brand-purple);
}

.production-form-error {
    min-height: 18px;
    margin: -4px 0 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    color: #c0392b;
}

.production-lead-form button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 6px;
    background: var(--brand-dark);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.production-lead-form button:hover {
    background: var(--brand-purple);
    transform: translateY(-1px);
}

.production-lead-form button:disabled {
    background: #d8d8d8;
    color: rgba(35,35,35,0.45);
    cursor: not-allowed;
    transform: none;
}

.production-form-note {
    margin: 12px 0 0;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    line-height: 1.45;
    color: var(--text-muted);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .workshops-grid {
        grid-template-columns: 1fr 1fr;
    }
    .assortment-grid {
        grid-template-columns: 1fr 1fr;
    }
    .production-lead-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-production {
        padding: 30px 20px 60px;
    }
    .metrics-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .metric-box {
        padding: 20px 14px;
    }
    .workshops-section,
    .assortment-section,
    .geo-section,
    .production-lead-section {
        padding: 60px 20px;
    }
    .load-section {
        padding: 60px 20px;
    }
    .workshops-grid {
        grid-template-columns: 1fr;
    }
    .assortment-grid {
        grid-template-columns: 1fr;
    }
    .geo-chain {
        flex-direction: column;
    }
    .geo-arrow {
        transform: rotate(90deg);
    }
    .production-lead-form {
        padding: 24px;
    }
}
