/* ============================================
 MOZHAYSK PAGE STYLES
 ============================================ */

/* Hero Mozhaysk Section */
.hero-mozhaysk {
 position: relative;
 background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
 padding: 120px 0 80px;
 overflow: hidden;
}

.hero-mozhaysk::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background-image: 
 radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
 radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
 pointer-events: none;
}

.hero-mozhaysk__overlay {
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
 opacity: 0.3;
}

.hero-mozhaysk__content {
 position: relative;
 z-index: 2;
 color: white;
}

.hero-badge {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 10px 20px;
 background: rgba(255, 107, 53, 0.2);
 border: 1px solid rgba(255, 107, 53, 0.3);
 border-radius: 50px;
 margin-bottom: 24px;
 backdrop-filter: blur(10px);
}

.hero-badge__icon {
 font-size: 20px;
}

.hero-badge__text {
 font-size: 14px;
 font-weight: 600;
}

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

.hero-mozhaysk__title .highlight {
 color: var(--primary-color);
 position: relative;
 display: inline-block;
}

.hero-mozhaysk__subtitle {
 font-size: 20px;
 opacity: 0.9;
 margin-bottom: 40px;
}

.hero-mozhaysk__stats {
 display: flex;
 gap: 48px;
 margin-bottom: 40px;
}

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

.stat-item__number {
 font-size: 48px;
 font-weight: 800;
 color: var(--primary-color);
 margin-bottom: 8px;
 line-height: 1;
}

.stat-item__label {
 font-size: 14px;
 opacity: 0.8;
}

.hero-mozhaysk__cta {
 display: flex;
 gap: 16px;
 flex-wrap: wrap;
}

.btn--hero {
 padding: 18px 36px;
 font-size: 18px;
 box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.hero-mozhaysk__features {
 background: rgba(255, 255, 255, 0.05);
 backdrop-filter: blur(10px);
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 padding: 32px 0;
 margin-top: 60px;
}

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

.feature-card {
 display: flex;
 align-items: center;
 gap: 16px;
 padding: 20px;
 background: rgba(255, 255, 255, 0.05);
 border-radius: 12px;
 border: 1px solid rgba(255, 255, 255, 0.1);
 transition: all 0.3s ease;
}

.feature-card:hover {
 background: rgba(255, 255, 255, 0.1);
 transform: translateY(-4px);
}

.feature-card__icon {
 font-size: 32px;
 flex-shrink: 0;
}

.feature-card__content h3 {
 font-size: 16px;
 font-weight: 700;
 margin-bottom: 4px;
 color: white;
}

.feature-card__content p {
 font-size: 13px;
 opacity: 0.8;
 color: white;
}

/* Coal Types Section */
.coal-types-section {
 padding: 80px 0;
 background: var(--bg-light);
}

.coal-types-grid {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
 gap: 32px;
}

.coal-card {
 background: white;
 border-radius: 16px;
 overflow: hidden;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 transition: all 0.3s ease;
 position: relative;
}

.coal-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.coal-card__badge {
 position: absolute;
 top: 16px;
 right: 16px;
 padding: 6px 16px;
 border-radius: 50px;
 font-size: 11px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 z-index: 10;
 color: white;
}

.coal-card__badge--red {
 background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.coal-card__badge--green {
 background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.coal-card__badge--gold {
 background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.coal-card__badge--blue {
 background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.coal-card__header {
 padding: 24px;
 background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
 color: white;
 text-align: center;
}

.coal-card__name {
 font-size: 24px;
 font-weight: 700;
 margin-bottom: 8px;
}

.coal-card__price {
 margin-top: 16px;
}

.price-value {
 font-size: 36px;
 font-weight: 800;
 color: var(--primary-color);
}

.price-currency {
 font-size: 18px;
 opacity: 0.8;
}

.coal-card__description {
 padding: 20px 24px;
 color: var(--text-dark);
 line-height: 1.6;
 border-bottom: 1px solid var(--border-color);
}

.coal-card__specs {
 padding: 20px 24px;
 background: var(--bg-light);
}

.spec-item {
 display: flex;
 align-items: center;
 gap: 12px;
 padding: 10px 0;
 border-bottom: 1px solid var(--border-color);
}

.spec-item:last-child {
 border-bottom: none;
}

.spec-icon {
 font-size: 20px;
 flex-shrink: 0;
}

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

.spec-label {
 font-size: 14px;
 color: var(--text-light);
}

.spec-value {
 font-size: 14px;
 font-weight: 600;
 color: var(--text-dark);
}

.coal-card__footer {
 padding: 20px 24px;
}

.coal-card__best-for {
 font-size: 13px;
 color: var(--text-light);
 margin-bottom: 16px;
 padding: 12px;
 background: var(--bg-light);
 border-radius: 8px;
}

.coal-card__best-for strong {
 color: var(--text-dark);
}

.btn--small {
 padding: 10px 20px;
 font-size: 14px;
}

.coal-card__discount {
 margin-top: 16px;
 padding-top: 16px;
 border-top: 1px solid var(--border-color);
}

.discount-item {
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 8px 0;
}

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

.discount-price {
 font-size: 16px;
 font-weight: 700;
 color: var(--success-color);
}

.discount-badge {
 display: inline-block;
 padding: 4px 8px;
 background: var(--success-color);
 color: white;
 border-radius: 4px;
 font-size: 11px;
 font-weight: 700;
 margin-left: 8px;
}

/* Calculator Section */
.calculator-section {
 padding: 80px 0;
 background: white;
}

.calculator-wrapper {
 display: grid;
 grid-template-columns: 1fr 1.5fr;
 gap: 60px;
 align-items: start;
}

.calculator-info h2 {
 font-size: 36px;
 font-weight: 800;
 margin-bottom: 16px;
 color: var(--text-dark);
}

.calculator-subtitle {
 font-size: 16px;
 color: var(--text-light);
 margin-bottom: 32px;
}

.calculator-benefits {
 display: flex;
 flex-direction: column;
 gap: 16px;
 margin-bottom: 32px;
}

.benefit-item {
 display: flex;
 align-items: center;
 gap: 12px;
 padding: 12px;
 background: var(--bg-light);
 border-radius: 8px;
}

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

.benefit-text {
 font-size: 15px;
 font-weight: 600;
 color: var(--text-dark);
}

.calculator-example {
 padding: 24px;
 background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
 border-radius: 12px;
 border-left: 4px solid var(--primary-color);
}

.calculator-example h4 {
 font-size: 16px;
 font-weight: 700;
 margin-bottom: 12px;
 color: var(--text-dark);
}

.calculator-example p {
 font-size: 14px;
 line-height: 1.8;
 color: var(--text-dark);
}

.highlight-result {
 display: block;
 margin-top: 12px;
 font-size: 18px;
 font-weight: 700;
 color: var(--primary-color);
}

.calculator-form {
 background: white;
 padding: 40px;
 border-radius: 16px;
 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
 display: block;
 font-size: 14px;
 font-weight: 600;
 color: var(--text-dark);
 margin-bottom: 8px;
}

.form-group input[type="number"],
.form-group select {
 width: 100%;
 padding: 12px 16px;
 border: 2px solid var(--border-color);
 border-radius: 8px;
 font-size: 16px;
 transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.range-slider {
 margin-top: 12px;
}

.range-slider input[type="range"] {
 width: 100%;
 height: 6px;
 border-radius: 3px;
 background: var(--border-color);
 outline: none;
 -webkit-appearance: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
 -webkit-appearance: none;
 appearance: none;
 width: 20px;
 height: 20px;
 border-radius: 50%;
 background: var(--primary-color);
 cursor: pointer;
 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.range-slider input[type="range"]::-moz-range-thumb {
 width: 20px;
 height: 20px;
 border-border-radius: 50%;
 background: var(--primary-color);
 cursor: pointer;
 border: none;
 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.radio-group {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 12px;
}

.radio-option {
 position: relative;
 cursor: pointer;
}

.radio-option input[type="radio"] {
 position: absolute;
 opacity: 0;
 width: 0;
 height: 0;
}

.radio-label {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 padding: 16px 12px;
 background: var(--bg-light);
 border: 2px solid transparent;
 border-radius: 12px;
 transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-label {
 background: rgba(255, 107, 53, 0.1);
 border-color: var(--primary-color);
}

.radio-icon {
 font-size: 32px;
 margin-bottom: 8px;
}

.radio-text {
 font-size: 13px;
 font-weight: 600;
 color: var(--text-dark);
}

.radio-text small {
 display: block;
 font-size: 11px;
 font-weight: 400;
 color: var(--text-light);
 margin-top: 4px;
}

.calculator-result {
 margin-top: 32px;
 padding: 32px;
 background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
 border-radius: 16px;
 color: white;
}

.result-header {
 display: flex;
 align-items: center;
 gap: 12px;
 margin-bottom: 24px;
}

.result-icon {
 font-size: 32px;
}

.result-header h3 {
 font-size: 24px;
 font-weight: 700;
 margin: 0;
}

.result-content {
 display: flex;
 flex-direction: column;
 gap: 24px;
}

.result-main {
 text-align: center;
 padding: 24px;
 background: rgba(255, 255, 255, 0.1);
 border-radius: 12px;
}

.result-label {
 display: block;
 font-size: 14px;
 opacity: 0.9;
 margin-bottom: 8px;
}

.result-value {
 display: block;
 font-size: 64px;
 font-weight: 800;
 line-height: 1;
 margin-bottom: 8px;
}

.result-unit {
 font-size: 18px;
 opacity: 0.9;
}

.result-details {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 16px;
}

.result-detail-item {
 text-align: center;
 padding: 16px;
 background: rgba(255, 255, 255, 0.1);
 border-radius: 8px;
}

.detail-label {
 display: block;
 font-size: 12px;
 opacity: 0.8;
 margin-bottom: 8px;
}

.detail-value {
 display: block;
 font-size: 24px;
 font-weight: 700;
}

.detail-value.highlight {
 color: #ffd700;
}

.detail-value.success {
 color: #90EE90;
}

/* Why Choose Section */
.why-choose-section {
 padding: 80px 0;
 background: white;
}

.why-choose-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
 gap: 32px;
 margin-bottom: 60px;
}

.why-card {
 padding: 32px;
 background: var(--bg-light);
 border-radius: 16px;
 transition: all 0.3s ease;
}

.why-card:hover {
 background: white;
 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
 transform: translateY(-4px);
}

.why-card__icon {
 font-size: 56px;
 margin-bottom: 20px;
}

.why-card h3 {
 font-size: 22px;
 font-weight: 700;
 margin-bottom: 16px;
 color: var(--text-dark);
}

.why-card p {
 color: var(--text-light);
 line-height: 1.8;
 margin-bottom: 20px;
}

.why-card__stat {
 display: flex;
 flex-direction: column;
 gap: 4px;
 padding: 16px;
 background: white;
 border-radius: 8px;
 text-align: center;
}

.stat-number {
 font-size: 48px;
 font-weight: 800;
 color: var(--primary-color);
 line-height: 1;
}

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

.why-card__guarantee {
 text-align: center;
}

.guarantee-badge {
 display: inline-block;
 padding: 8px 20px;
 background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
 color: white;
 border-radius: 50px;
 font-size: 14px;
 font-weight: 700;
}

.why-card__docs {
 display: flex;
 flex-direction: column;
 gap: 8px;
}

.doc-item {
 font-size: 14px;
 color: var(--success-color);
 font-weight: 600;
}

.why-card__fleet {
 display: flex;
 gap: 8px;
 flex-wrap: wrap;
}

.fleet-item {
 padding: 6px 12px;
 background: white;
 border-radius: 6px;
 font-size: 12px;
 font-weight: 600;
 color: var(--text-dark);
}

.why-card__pricing {
 text-align: center;
}

.price-item {
 display: inline-block;
 padding: 8px 16px;
 background: white;
 border-radius: 6px;
 font-size: 14px;
 font-weight: 600;
 color: var(--success-color);
}

.why-card__weather {
 text-align: center;
}

.weather-badge {
 display: inline-block;
 padding: 8px 20px;
 background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
 color: white;
 border-radius: 50px;
 font-size: 16px;
 font-weight: 700;
}

.trust-indicators {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 24px;
 padding: 40px;
 background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
 border-radius: 16px;
 color: white;
}

.trust-item {
 display: flex;
 align-items: center;
 gap: 16px;
}

.trust-icon {
 font-size: 40px;
 flex-shrink: 0;
}

.trust-content strong {
 display: block;
 font-size: 16px;
 margin-bottom: 4px;
}

.trust-content p {
 font-size: 14px;
 opacity: 0.9;
 margin: 0;
}

/* Delivery Section */
.delivery-section {
 padding: 80px 0;
 background: var(--bg-light);
}

.delivery-content {
 display: flex;
 flex-direction: column;
 gap: 40px;
}

.delivery-map-placeholder {
 position: relative;
 height: 400px;
 background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
 border-radius: 16px;
 overflow: hidden;
 display: flex;
 align-items: center;
 justify-content: center;
}

.map-overlay {
 position: relative;
 width: 100%;
 height: 100%;
}

.map-marker {
 position: absolute;
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 8px;
}

.map-marker--center {
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
}

.marker-icon {
 font-size: 48px;
 animation: bounce 2s infinite;
}

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

.marker-label {
 padding: 6px 12px;
 background: var(--primary-color);
 color: white;
 border-radius: 6px;
 font-size: 14px;
 font-weight: 700;
 white-space: nowrap;
}

.map-zone {
 position: absolute;
 border: 2px dashed;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 opacity: 0.3;
}

.map-zone--1 {
 width: 200px;
 height: 200px;
 border-color: #27ae60;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
}

.map-zone--2 {
 width: 300px;
 height: 300px;
 border-color: #f39c12;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
}

.map-zone--3 {
 width: 400px;
 height: 400px;
 border-color: #3498db;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
}

.zone-label {
 font-size: 12px;
 font-weight: 700;
 text-align: center;
 color: var(--text-dark);
}

.delivery-zones {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
 gap: 32px;
}

.zone-card {
 background: white;
 border-radius: 16px;
 overflow: hidden;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 transition: all 0.3s ease;
}

.zone-card:hover {
 transform: translateY(-4px);
 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.zone-card--free {
 border: 2px solid #27ae60;
}

.zone-card__header {
 padding: 24px;
 background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
 border-bottom: 1px solid var(--border-color);
}

.zone-icon {
 font-size: 40px;
 margin-bottom: 12px;
}

.zone-card__header h3 {
 font-size: 20px;
 font-weight: 700;
 margin-bottom: 12px;
 color: var(--text-dark);
}

.zone-badge {
 display: inline-block;
 padding: 6px 16px;
 background: var(--primary-color);
 color: white;
 border-radius: 50px;
 font-size: 12px;
 font-weight: 700;
}

.zone-badge--free {
 background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.zone-card__content {
 padding: 24px;
}

.zone-distance {
 font-size: 14px;
 color: var(--text-light);
 margin-bottom: 16px;
}

.zone-settlements {
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
 margin-bottom: 20px;
}

.settlement-tag {
 padding: 6px 12px;
 background: var(--bg-light);
 border-radius: 6px;
 font-size: 12px;
 color: var(--text-dark);
}

.zone-delivery-time {
 display: flex;
 align-items: center;
 gap: 8px;
 padding: 12px;
 background: var(--bg-light);
 border-radius: 8px;
 font-size: 14px;
 font-weight: 600;
 color: var(--text-dark);
}

.time-icon {
 font-size: 20px;
}

.delivery-info-box {
 padding: 40px;
 background: white;
 border-radius: 16px;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.delivery-info-box h3 {
 font-size: 28px;
 font-weight: 700;
 margin-bottom: 24px;
 color: var(--text-dark);
}

.delivery-conditions {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 24px;
}

.condition-item {
 display: flex;
 align-items: flex-start;
 gap: 12px;
}

.condition-icon {
 font-size: 24px;
 color: var(--success-color);
 flex-shrink: 0;
}

.condition-text strong {
 display: block;
 font-size: 16px;
 font-weight: 700;
 margin-bottom: 4px;
 color: var(--text-dark);
}

.condition-text p {
 font-size: 14px;
 color: var(--text-light);
 margin: 0;
}

/* Reviews Section */
.reviews-section {
 padding: 80px 0;
 background: white;
}

.reviews-rating {
 display: flexdisplay: flex;
 align-items: center;
 gap: 16px;
 justify-content: center;
 margin-top: 16px;
}

.rating-stars {
 font-size: 32px;
 color: #ffc107;
}

.rating-value {
 font-size: 24px;
 font-weight: 700;
 color: var(--text-dark);
}

.rating-count {
 font-size: 14px;
 color: var(--text-light);
}

.reviews-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
 gap: 32px;
 margin-bottom: 60px;
}

.review-card {
 background: white;
 border-radius: 16px;
 padding: 32px;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 transition: all 0.3s ease;
}

.review-card:hover {
 transform: translateY(-4px);
 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.review-card__header {
 display: flex;
 align-items: flex-start;
 justify-content: space-between;
 margin-bottom: 20px;
}

.reviewer-info {
 display: flex;
 align-items: center;
 gap: 16px;
}

.reviewer-avatar {
 width: 56px;
 height: 56px;
 border-radius: 50%;
 background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 24px;
 font-weight: 700;
 color: white;
 flex-shrink: 0;
}

.reviewer-details {
 display: flex;
 flex-direction: column;
 gap: 4px;
}

.reviewer-name {
 font-size: 16px;
 font-weight: 700;
 color: var(--text-dark);
}

.reviewer-location {
 font-size: 13px;
 color: var(--text-light);
}

.review-rating {
 font-size: 18px;
 color: #ffc107;
}

.review-card__content {
 margin-bottom: 20px;
}

.review-text {
 font-size: 15px;
 line-height: 1.8;
 color: var(--text-dark);
 margin-bottom: 16px;
}

.review-meta {
 display: flex;
 align-items: center;
 gap: 16px;
 flex-wrap: wrap;
}

.review-date {
 font-size: 13px;
 color: var(--text-light);
}

.review-verified {
 font-size: 12px;
 color: var(--success-color);
 font-weight: 600;
}

.review-card__footer {
 padding-top: 16px;
 border-top: 1px solid var(--border-color);
}

.review-product {
 font-size: 13px;
 color: var(--text-light);
 font-style: italic;
}

.reviews-cta {
 text-align: center;
 padding: 40px;
 background: var(--bg-light);
 border-radius: 16px;
}

.reviews-cta p {
 font-size: 20px;
 font-weight: 600;
 margin-bottom: 24px;
 color: var(--text-dark);
}

/* How to Order Section */
.how-to-order-section {
 padding: 80px 0;
 background: var(--bg-light);
}

.steps-timeline {
 position: relative;
 display: flex;
 flex-direction: column;
 gap: 40px;
 max-width: 900px;
 margin: 0 auto;
}

.step-item {
 display: flex;
 gap: 32px;
 align-items: flex-start;
 position: relative;
}

.step-item::before {
 content: '';
 position: absolute;
 left: 35px;
 top: 70px;
 width: 2px;
 height: calc(100% + 40px);
 background: linear-gradient(to bottom, var(--primary-color) 0%, transparent 100%);
}

.step-item:last-child::before {
 display: none;
}

.step-number {
 width: 70px;
 height: 70px;
 border-radius: 50%;
 background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
 color: white;
 font-size: 32px;
 font-weight: 800;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
 box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
 position: relative;
 z-index: 2;
}

.step-content {
 flex: 1;
 background: white;
 padding: 32px;
 border-radius: 16px;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-content h3 {
 font-size: 24px;
 font-weight: 700;
 margin-bottom: 12px;
 color: var(--text-dark);
}

.step-content p {
 font-size: 16px;
 line-height: 1.8;
 color: var(--text-light);
 margin-bottom: 16px;
}

.step-content a {
 color: var(--primary-color);
 font-weight: 600;
}

.step-options {
 display: flex;
 gap: 12px;
 flex-wrap: wrap;
}

.option-badge {
 padding: 8px 16px;
 background: var(--bg-light);
 border-radius: 50px;
 font-size: 13px;
 font-weight: 600;
 color: var(--text-dark);
}

.step-help {
 display: flex;
 align-items: center;
 gap: 8px;
 padding: 12px;
 background: rgba(255, 107, 53, 0.1);
 border-radius: 8px;
 font-size: 14px;
 color: var(--text-dark);
}

.help-icon {
 font-size: 20px;
}

.step-timing {
 display: flex;
 gap: 12px;
 flex-wrap: wrap;
}

.timing-badge {
 padding: 8px 16px;
 background: var(--bg-light);
 border-radius: 50px;
 font-size: 13px;
 font-weight: 600;
 color: var(--text-dark);
}

.step-payment {
 display: flex;
 gap: 12px;
 font-size: 32px;
}

.payment-icon {
 opacity: 0.7;
 transition: all 0.3s ease;
}

.payment-icon:hover {
 opacity: 1;
 transform: scale(1.2);
}

.order-guarantee {
 display: flex;
 align-items: center;
 gap: 24px;
 padding: 40px;
 background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
 border-radius: 16px;
 color: white;
 margin-top: 60px;
}

.guarantee-icon {
 font-size: 64px;
 flex-shrink: 0;
}

.guarantee-content h3 {
 font-size: 24px;
 font-weight: 700;
 margin-bottom: 8px;
}

.guarantee-content p {
 font-size: 16px;
 line-height: 1.8;
 opacity: 0.95;
 margin: 0;
}

/* FAQ Section */
.faq-section {
 padding: 80px 0;
 background: white;
}

.faq-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 32px;
 margin-bottom: 60px;
}

.faq-column {
 display: flex;
 flex-direction: column;
 gap: 16px;
}

.faq-item {
 background: white;
 border-radius: 12px;
 overflow: hidden;
 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
 transition: all 0.3s ease;
}

.faq-item:hover {
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
 width: 100%;
 padding: 24px;
 background: white;
 border: none;
 text-align: left;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 16px;
 transition: all 0.3s ease;
}

.faq-question:hover {
 background: var(--bg-light);
}

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

.faq-toggle {
 font-size: 28px;
 font-weight: 300;
 color: var(--primary-color);
 flex-shrink: 0;
 transition: transform 0.3s ease;
}

.faq-item--active .faq-toggle {
 transform: rotate(45deg);
}

.faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.3s ease;
}

.faq-item--active .faq-answer {
 max-height: 1000px;
}

.faq-answer {
 padding: 0 24px;
}

.faq-item--active .faq-answer {
 padding: 0 24px 24px;
}

.faq-answer p {
 font-size: 15px;
 line-height: 1.8;
 color: var(--text-dark);
 margin-bottom: 12px;
}

.faq-answer ul {
 list-style: none;
 padding: 0;
 margin: 16px 0;
}

.faq-answer li {
 padding: 8px 0 8px 24px;
 position: relative;
 font-size: 15px;
 line-height: 1.6;
 color: var(--text-dark);
}

.faq-answer li::before {
 content: '•';
 position: absolute;
 left: 0;
 color: var(--primary-color);
 font-weight: 700;
 font-size: 20px;
}

.faq-answer strong {
 font-weight: 700;
 color: var(--text-dark);
}

.faq-answer em {
 font-style: italic;
 color: var(--text-light);
}

.faq-answer a {
 color: var(--primary-color);
 text-decoration: underline;
}

.faq-cta {
 text-align: center;
 padding: 40px;
 background: var(--bg-light);
 border-radius: 16px;
}

.faq-cta p {
 font-size: 20px;
 font-weight: 600;
 margin-bottom: 24px;
 color: var(--text-dark);
}

/* Order Form Section */
.order-form-section {
 padding: 80px 0;
 background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
 color: white;
}

.order-form-wrapper {
 display: grid;
 grid-template-columns: 1fr 1.2fr;
 gap: 60px;
 align-items: start;
}

.order-form-info h2 {
 font-size: 36px;
 font-weight: 800;
 margin-bottom: 16px;
}

.form-subtitle {
 font-size: 18px;
 opacity: 0.9;
 margin-bottom: 32px;
}

.form-benefits {
 display: flex;
 flex-direction: column;
 gap: 16px;
 margin-bottom: 32px;
}

.form-benefit {
 display: flex;
 align-items: center;
 gap: 12px;
 font-size: 16px;
}

.benefit-check {
 width: 24px;
 height: 24px;
 border-radius: 50%;
 background: var(--success-color);
 color: white;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 14px;
 font-weight: 700;
 flex-shrink: 0;
}

.form-guarantee-badge {
 display: flex;
 align-items: center;
 gap: 16px;
 padding: 24px;
 background: rgba(255, 255, 255, 0.1);
 border-radius: 12px;
 margin-bottom: 32px;
 backdrop-filter: blur(10px);
}

.guarantee-badge-icon {
 font-size: 48px;
 flex-shrink: 0;
}

.guarantee-badge-text strong {
 display: block;
 font-size: 18px;
 margin-bottom: 4px;
}

.guarantee-badge-text p {
 font-size: 14px;
 opacity: 0.9;
 margin: 0;
}

.form-contacts {
 padding: 24px;
 background: rgba(255, 255, 255, 0.05);
 border-radius: 12px;
}

.form-contacts p {
 font-size: 14px;
 margin-bottom: 12px;
}

.phone-large {
 display: block;
 font-size: 32px;
 font-weight: 700;
 color: var(--primary-color);
 margin-bottom: 8px;
 transition: all 0.3s ease;
}

.phone-large:hover {
 color: white;
 transform: scale(1.05);
}

.work-time {
 font-size: 14px;
 opacity: 0.8;
 margin: 0;
}

.order-form-container {
 background: white;
 border-radius: 16px;
 padding: 40px;
 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.form-header {margin-bottom: 32px;
 text-align: center;
}

.form-header h3 {
 font-size: 28px;
 font-weight: 700;
 color: var(--text-dark);
 margin-bottom: 8px;
}

.form-header p {
 font-size: 14px;
 color: var(--text-light);
 margin: 0;
}

.order-form {
 display: flex;
 flex-direction: column;
 gap: 20px;
}

.form-group {
 display: flex;
 flex-direction: column;
}

.form-group label {
 font-size: 14px;
 font-weight: 600;
 color: var(--text-dark);
 margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
 width: 100%;
 padding: 14px 16px;
 border: 2px solid var(--border-color);
 border-radius: 8px;
 font-size: 16px;
 font-family: inherit;
 transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
 resize: vertical;
 min-height: 80px;
}

.form-checkbox {
 display: flex;
 align-items: flex-start;
 gap: 12px;
 margin: 8px 0;
}

.form-checkbox input[type="checkbox"] {
 width: 20px;
 height: 20px;
 margin-top: 2px;
 cursor: pointer;
 accent-color: var(--primary-color);
}

.form-checkbox label {
 font-size: 13px;
 color: var(--text-light);
 cursor: pointer;
 line-height: 1.6;
}

.form-checkbox label a {
 color: var(--primary-color);
 text-decoration: underline;
}

.btn--full {
 width: 100%;
}

.btn--large {
 padding: 16px 32px;
 font-size: 18px;
}

.form-note {
 font-size: 12px;
 color: var(--text-light);
 text-align: center;
 margin-top: 16px;
}

/* Trust Section */
.trust-section {
 padding: 80px 0;
 background: var(--bg-light);
}

.trust-content {
 max-width: 1200px;
 margin: 0 auto;
}

.trust-header {
 text-align: center;
 margin-bottom: 60px;
}

.trust-header h2 {
 font-size: 36px;
 font-weight: 800;
 margin-bottom: 8px;
 color: var(--text-dark);
}

.trust-header p {
 font-size: 16px;
 color: var(--text-light);
}

.trust-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 32px;
 margin-bottom: 60px;
}

.trust-card {
 background: white;
 padding: 32px;
 border-radius: 16px;
 text-align: center;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 transition: all 0.3s ease;
}

.trust-card:hover {
 transform: translateY(-4px);
 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.trust-card-icon {
 font-size: 56px;
 margin-bottom: 20px;
}

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

.trust-card p {
 font-size: 15px;
 line-height: 1.8;
 color: var(--text-light);
 margin: 0;
}

.trust-stats {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 32px;
 padding: 40px;
 background: white;
 border-radius: 16px;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.trust-stat-item {
 text-align: center;
}

.stat-number-large {
 font-size: 56px;
 font-weight: 800;
 color: var(--primary-color);
 line-height: 1;
 margin-bottom: 8px;
}

.stat-label-large {
 font-size: 14px;
 color: var(--text-light);
}

/* Contact Section */
.contact-section {
 padding: 80px 0;
 background: white;
}

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

.contact-info h2 {
 font-size: 36px;
 font-weight: 800;
 margin-bottom: 16px;
 color: var(--text-dark);
}

.contact-subtitle {
 font-size: 16px;
 color: var(--text-light);
 margin-bottom: 40px;
}

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

.contact-item {
 display: flex;
 align-items: flex-start;
 gap: 16px;
 padding: 20px;
 background: var(--bg-light);
 border-radius: 12px;
 transition: all 0.3s ease;
}

.contact-item:hover {
 background: white;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-icon {
 font-size: 32px;
 flex-shrink: 0;
}

.contact-details {
 flex: 1;
}

.contact-details strong {
 display: block;
 font-size: 14px;
 font-weight: 700;
 margin-bottom: 8px;
 color: var(--text-dark);
}

.contact-details a {
 display: block;
 font-size: 20px;
 font-weight: 700;
 color: var(--primary-color);
 margin-bottom: 4px;
 transition: all 0.3s ease;
}

.contact-details a:hover {
 color: var(--primary-dark);
}

.contact-details p {
 font-size: 14px;
 color: var(--text-dark);
 line-height: 1.6;
 margin: 0;
}

.contact-note {
 display: block;
 font-size: 12px;
 color: var(--text-light);
 margin-top: 4px;
}

.contact-social {
 padding: 24px;
 background: var(--bg-light);
 border-radius: 12px;
}

.contact-social p {
 font-size: 14px;
 font-weight: 600;
 margin-bottom: 16px;
 color: var(--text-dark);
}

.social-links {
 display: flex;
 gap: 12px;
}

.social-link {
 width: 48px;
 height: 48px;
 border-radius: 50%;
 background: white;
 display: flex;
 align-items: center;
 justify-content: center;
 font-weight: 700;
 font-size: 14px;
 color: var(--text-dark);
 transition: all 0.3s ease;
 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
 background: var(--primary-color);
 color: white;
 transform: translateY(-4px);
 box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.social-icon {
 font-size: 14px;
 font-weight: 700;
}

.contact-map {
 border-radius: 16px;
 overflow: hidden;
 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
 height: 600px;
}

.map-placeholder {
 width: 100%;
 height: 100%;
 background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
 display: flex;
 align-items: center;
 justify-content: center;
 position: relative;
}

.map-overlay-content {
 text-align: center;
 z-index: 2;
}

.map-pin {
 font-size: 64px;
 margin-bottom: 16px;
 animation: bounce 2s infinite;
}

.map-overlay-content h3 {
 font-size: 28px;
 font-weight: 700;
 margin-bottom: 8px;
 color: var(--text-dark);
}

.map-overlay-content p {
 font-size: 16px;
 color: var(--text-light);
 margin-bottom: 24px;
}

/* Modal Styles */
.modal {
 display: none;
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 9999;
 align-items: center;
 justify-content: center;
}

.modal--active {
 display: flex;
}

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

.modal-content {
 position: relative;
 background: white;
 border-radius: 16px;
 padding: 40px;
 max-width: 500px;
 width: 90%;
 max-height: 90vh;
 overflow-y: auto;
 box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
 animation: modalSlideIn 0.3s ease;
 z-index: 10000;
}

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

.modal-content--success {
 text-align: center;
 max-width: 400px;
}

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

.modal-close:hover {
 background: var(--primary-color);
 color: white;
 transform: rotate(90deg);
}

.modal-header {
 margin-bottom: 24px;
}

.modal-header h3 {
 font-size: 28px;
 font-weight: 700;
 color: var(--text-dark);
 margin-bottom: 8px;
}

.modal-header p {
 font-size: 16px;
 color: var(--text-light);
}

#modal-coal-name {
 color: var(--primary-color);
 font-weight: 600;
}

.modal-form {
 display: flex;
 flex-direction: column;
 gap: 20px;
}

.success-icon {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
 color: white;
 font-size: 48px;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 24px;
 box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.modal-content--success h3 {
 font-size: 28px;
 font-weight: 700;
 color: var(--text-dark);
 margin-bottom: 16px;
}

.modal-content--success p {
 font-size: 16px;
 color: var(--text-light);
 line-height: 1.8;
 margin-bottom: 24px;
}

.success-bonus {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 12px 20px;
 background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
 color: white;
 border-radius: 50px;
 font-weight: 600;
 margin-bottom: 24px;
}

.bonus-icon {
 font-size: 20px;
}

/* Fixed Call Button */
.fixed-call-btn {
 position: fixed;
 bottom: 30px;
 right: 30px;
 display: flex;
 align-items: center;
 gap: 12px;
 padding: 16px 24px;
 background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
 color: white;
 border-radius: 50px;
 font-weight: 700;
 box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
 z-index: 999;
 transition: all 0.3s ease;
 animation: pulse 2s infinite;
}

.fixed-call-btn:hover {
 transform: translateY(-4px);
 box-shadow: 0 12px 24px rgba(255, 107, 53, 0.5);
}

.call-btn-icon {
 font-size: 24px;
}

.call-btn-text {
 font-size: 16px;
}

/* Scroll to Top Button */
.scroll-to-top {
 position: fixed;
 bottom: 100px;
 right: 30px;
 width: 50px;
 heightheight: 50px;
 border-radius: 50%;
 background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
 color: white;
 font-size: 24px;
 font-weight: 700;
 border: none;
 cursor: pointer;
 display: none;
 align-items: center;
 justify-content: center;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
 z-index: 998;
 transition: all 0.3s ease;
}

.scroll-to-top:hover {
 background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
 transform: translateY(-4px);
 box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.scroll-to-top--visible {
 display: flex;
}

/* Section Header Styles */
.section-header {
 text-align: center;
 margin-bottom: 60px;
}

.section-label {
 display: inline-block;
 padding: 8px 20px;
 background: rgba(255, 107, 53, 0.1);
 color: var(--primary-color);
 border-radius: 50px;
 font-size: 14px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 1px;
 margin-bottom: 16px;
}

.section-title {
 font-size: 42px;
 font-weight: 800;
 color: var(--text-dark);
 margin-bottom: 16px;
 line-height: 1.2;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
 .coal-types-grid {
 grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
 }
 
 .calculator-wrapper {
 grid-template-columns: 1fr;
 gap: 40px;
 }
}

@media (max-width: 992px) {
 .hero-mozhaysk__title {
 font-size: 42px;
 }
 
 .hero-mozhaysk__stats {
 flex-wrap: wrap;
 gap: 32px;
 }
 
 .features-grid {
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 }
 
 .why-choose-grid {
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 }
 
 .delivery-zones {
 grid-template-columns: 1fr;
 }
 
 .faq-grid {
 grid-template-columns: 1fr;
 }
 
 .order-form-wrapper {
 grid-template-columns: 1fr;
 gap: 40px;
 }
 
 .trust-stats {
 grid-template-columns: repeat(2, 1fr);
 }
 
 .contact-wrapper {
 grid-template-columns: 1fr;
 }
 
 .contact-map {
 height: 400px;
 }
}

@media (max-width: 768px) {
 .hero-mozhaysk {
 padding: 80px 0 60px;
 }
 
 .hero-mozhaysk__title {
 font-size: 32px;
 }
 
 .hero-mozhaysk__subtitle {
 font-size: 16px;
 }
 
 .hero-mozhaysk__stats {
 flex-direction: column;
 gap: 24px;
 }
 
 .stat-item__number {
 font-size: 36px;
 }
 
 .hero-mozhaysk__cta {
 flex-direction: column;
 }
 
 .btn--hero {
 width: 100%;
 justify-content: center;
 }
 
 .features-grid {
 grid-template-columns: 1fr;
 }
 
 .coal-types-grid {
 grid-template-columns: 1fr;
 }
 
 .coal-card__header {
 padding: 20px;
 }
 
 .coal-card__name {
 font-size: 20px;
 }
 
 .price-value {
 font-size: 28px;
 }
 
 .section-title {
 font-size: 32px;
 }
 
 .section-subtitle {
 font-size: 16px;
 }
 
 .radio-group {
 grid-template-columns: 1fr;
 }
 
 .result-details {
 grid-template-columns: 1fr;
 }
 
 .why-choose-grid {
 grid-template-columns: 1fr;
 }
 
 .trust-indicators {
 grid-template-columns: 1fr;
 }
 
 .delivery-conditions {
 grid-template-columns: 1fr;
 }
 
 .reviews-grid {
 grid-template-columns: 1fr;
 }
 
 .steps-timeline {
 gap: 32px;
 }
 
 .step-item {
 flex-direction: column;
 gap: 20px;
 }
 
 .step-item::before {
 display: none;
 }
 
 .step-number {
 width: 60px;
 height: 60px;
 font-size: 28px;
 }
 
 .step-content {
 padding: 24px;
 }
 
 .step-content h3 {
 font-size: 20px;
 }
 
 .order-guarantee {
 flex-direction: column;
 text-align: center;
 padding: 32px 24px;
 }
 
 .guarantee-icon {
 font-size: 48px;
 }
 
 .guarantee-content h3 {
 font-size: 20px;
 }
 
 .trust-grid {
 grid-template-columns: 1fr;
 }
 
 .trust-stats {
 grid-template-columns: 1fr;
 gap: 24px;
 }
 
 .contact-items {
 gap: 16px;
 }
 
 .contact-item {
 padding: 16px;
 }
 
 .contact-details a {
 font-size: 18px;
 }
 
 .fixed-call-btn {
 bottom: 20px;
 right: 20px;
 padding: 14px 20px;
 }
 
 .call-btn-text {
 display: none;
 }
 
 .scroll-to-top {
 bottom: 80px;
 right: 20px;
 width: 45px;
 height: 45px;
 font-size: 20px;
 }
 
 .modal-content {
 padding: 32px 24px;
 width: 95%;
 }
 
 .modal-header h3 {
 font-size: 24px;
 }
 
 .order-form-container {
 padding: 32px 24px;
 }
 
 .form-header h3 {
 font-size: 24px;
 }
}

@media (max-width: 480px) {
 .hero-mozhaysk__title {
 font-size: 28px;
 }
 
 .hero-mozhaysk__subtitle {
 font-size: 14px;
 }
 
 .hero-badge {
 padding: 8px 16px;
 }
 
 .hero-badge__text {
 font-size: 12px;
 }
 
 .stat-item__number {
 font-size: 32px;
 }
 
 .stat-item__label {
 font-size: 12px;
 }
 
 .feature-card {
 padding: 16px;
 }
 
 .feature-card__icon {
 font-size: 28px;
 }
 
 .section-title {
 font-size: 28px;
 }
 
 .section-subtitle {
 font-size: 14px;
 }
 
 .coal-card__badge {
 font-size: 10px;
 padding: 4px 12px;
 }
 
 .coal-card__name {
 font-size: 18px;
 }
 
 .price-value {
 font-size: 24px;
 }
 
 .calculator-form {
 padding: 24px;
 }
 
 .result-value {
 font-size: 48px;
 }
 
 .why-card {
 padding: 24px;
 }
 
 .why-card__icon {
 font-size: 48px;
 }
 
 .why-card h3 {
 font-size: 20px;
 }
 
 .trust-indicators {
 padding: 24px;
 }
 
 .trust-icon {
 font-size: 32px;
 }
 
 .delivery-map-placeholder {
 height: 300px;
 }
 
 .zone-card__header {
 padding: 20px;
 }
 
 .zone-card__content {
 padding: 20px;
 }
 
 .review-card {
 padding: 24px;
 }
 
 .reviewer-avatar {
 width: 48px;
 height: 48px;
 font-size: 20px;
 }
 
 .reviewer-name {
 font-size: 14px;
 }
 
 .review-text {
 font-size: 14px;
 }
 
 .step-number {
 width: 50px;
 height: 50px;
 font-size: 24px;
 }
 
 .step-content {
 padding: 20px;
 }
 
 .step-content h3 {
 font-size: 18px;
 }
 
 .step-content p {
 font-size: 14px;
 }
 
 .order-guarantee {
 padding: 24px;
 }
 
 .guarantee-icon {
 font-size: 40px;
 }
 
 .guarantee-content h3 {
 font-size: 18px;
 }
 
 .guarantee-content p {
 font-size: 14px;
 }
 
 .faq-question {
 padding: 20px;
 }
 
 .faq-question h3 {
 font-size: 14px;
 }
 
 .faq-answer {
 padding: 0 20px;
 }
 
 .faq-item--active .faq-answer {
 padding: 0 20px 20px;
 }
 
 .faq-answer p,
 .faq-answer li {
 font-size: 14px;
 }
 
 .order-form-info h2 {
 font-size: 28px;
 }
 
 .form-subtitle {
 font-size: 16px;
 }
 
 .form-benefit {
 font-size: 14px;
 }
 
 .phone-large {
 font-size: 24px;
 }
 
 .trust-card {
 padding: 24px;
 }
 
 .trust-card-icon {
 font-size: 48px;
 }
 
 .trust-card h3 {
 font-size: 18px;
 }
 
 .stat-number-large {
 font-size: 42px;
 }
 
 .contact-info h2 {
 font-size: 28px;
 }
 
 .contact-icon {
 font-size: 28px;
 }
 
 .contact-details a {
 font-size: 16px;
 }
 
 .modal-content {
 padding: 24px;
 }
 
 .modal-header h3 {
 font-size: 20px;
 }
 
 .success-icon {
 width: 64px;
 height: 64px;
 font-size: 36px;
 }
 
 .modal-content--success h3 {
 font-size: 24px;
 }
}

/* Print Styles */
@media print {
 .hero-mozhaysk,
 .calculator-section,
 .order-form-section,
 .fixed-call-btn,
 .scroll-to-top,
 .modal {
 display: none !important;
 }
 
 body {
 font-size: 12pt;
 color: #000;
 }
 
 .coal-card,
 .why-card,
 .review-card {
 page-break-inside: avoid;
 box-shadow: none;
 border: 1px solid #ddd;
 }
}

/* Animations */
@keyframes pulse {
 0%, 100% {
 transform: scale(1);
 }
 50% {
 transform: scale(1.05);
 }
}

@keyframes fadeIn {
 from {
 opacity: 0;
 }
 to {
 opacity: 1;
 }
}

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

/* Smooth Scrolling */
html {
 scroll-behavior: smooth;
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
 width: 8px;
}

.modal-content::-webkit-scrollbar-track {
 background: var(--bg-light);
 border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
 background: var(--primary-color);
 border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
 background: var(--primary-dark);
}

/* Accessibility */
.btn:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
 outline: 3px solid var(--primary-color);
 outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
 .coal-card,
 .why-card,
 .review-card,
 .zone-card,
 .trust-card {
 border: 2px solid #000;
 }
 
 .btn--primary {
 border: 2px solid #000;
 }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
 *,
 *::before*::before,
 *::after {
 animation-duration: 0.01ms !important;
 animation-iteration-count: 1 !important;
 transition-duration: 0.01ms !important;
 scroll-behavior: auto !important;
 }
 
 .marker-icon {
 animation: none;
 }
 
 .fixed-call-btn {
 animation: none;
 }
}

/* Dark Mode Support (optional) */
@media (prefers-color-scheme: dark) {
 :root {
 --bg-light: #1a1a1a;
 --text-dark: #ffffff;
 --text-light: #b0b0b0;
 --border-color: #333333;
 }
 
 body {
 background: #0a0a0a;
 color: #ffffff;
 }
 
 .coal-card,
 .why-card,
 .review-card,
 .zone-card,
 .trust-card,
 .calculator-form,
 .order-form-container,
 .delivery-info-box,
 .contact-item {
 background: #1a1a1a;
 color: #ffffff;
 }
 
 .feature-card,
 .form-group input,
 .form-group select,
 .form-group textarea {
 background: #1a1a1a;
 color: #ffffff;
 border-color: #333333;
 }
 
 .modal-content {
 background: #1a1a1a;
 color: #ffffff;
 }
}

/* Loading Animation */
.loading {
 display: inline-block;
 width: 20px;
 height: 20px;
 border: 3px solid rgba(255, 255, 255, 0.3);
 border-radius: 50%;
 border-top-color: #fff;
 animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
 to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message {
 padding: 16px 20px;
 border-radius: 8px;
 margin-bottom: 20px;
 display: flex;
 align-items: center;
 gap: 12px;
 font-size: 14px;
 font-weight: 600;
}

.message--success {
 background: rgba(39, 174, 96, 0.1);
 color: var(--success-color);
 border: 1px solid var(--success-color);
}

.message--error {
 background: rgba(231, 76, 60, 0.1);
 color: #e74c3c;
 border: 1px solid #e74c3c;
}

.message--warning {
 background: rgba(243, 156, 18, 0.1);
 color: #f39c12;
 border: 1px solid #f39c12;
}

.message--info {
 background: rgba(52, 152, 219, 0.1);
 color: #3498db;
 border: 1px solid #3498db;
}

/* Tooltip */
.tooltip {
 position: relative;
 display: inline-block;
}

.tooltip::before {
 content: attr(data-tooltip);
 position: absolute;
 bottom: 100%;
 left: 50%;
 transform: translateX(-50%) translateY(-8px);
 padding: 8px 12px;
 background: rgba(0, 0, 0, 0.9);
 color: white;
 font-size: 12px;
 white-space: nowrap;
 border-radius: 6px;
 opacity: 0;
 pointer-events: none;
 transition: opacity 0.3s ease;
 z-index: 1000;
}

.tooltip::after {
 content: '';
 position: absolute;
 bottom: 100%;
 left: 50%;
 transform: translateX(-50%);
 border: 6px solid transparent;
 border-top-color: rgba(0, 0, 0, 0.9);
 opacity: 0;
 pointer-events: none;
 transition: opacity 0.3s ease;
}

.tooltip:hover::before,
.tooltip:hover::after {
 opacity: 1;
}

/* Badge Styles */
.badge {
 display: inline-block;
 padding: 4px 12px;
 border-radius: 50px;
 font-size: 12px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}

.badge--new {
 background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
 color: white;
}

.badge--popular {
 background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
 color: white;
}

.badge--sale {
 background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
 color: white;
}

/* Skeleton Loading */
.skeleton {
 background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
 background-size: 200% 100%;
 animation: loading 1.5s infinite;
 border-radius: 4px;
}

@keyframes loading {
 0% {
 background-position: 200% 0;
 }
 100% {
 background-position: -200% 0;
 }
}

.skeleton-text {
 height: 16px;
 margin-bottom: 8px;
}

.skeleton-title {
 height: 24px;
 width: 60%;
 margin-bottom: 16px;
}

.skeleton-card {
 height: 200px;
 border-radius: 12px;
}

/* Empty State */
.empty-state {
 text-align: center;
 padding: 60px 20px;
}

.empty-state-icon {
 font-size: 64px;
 margin-bottom: 20px;
 opacity: 0.5;
}

.empty-state h3 {
 font-size: 24px;
 font-weight: 700;
 margin-bottom: 12px;
 color: var(--text-dark);
}

.empty-state p {
 font-size: 16px;
 color: var(--text-light);
 margin-bottom: 24px;
}

/* Breadcrumbs */
.breadcrumbs {
 display: flex;
 align-items: center;
 gap: 8px;
 padding: 16px 0;
 font-size: 14px;
 color: var(--text-light);
}

.breadcrumbs a {
 color: var(--text-light);
 transition: color 0.3s ease;
}

.breadcrumbs a:hover {
 color: var(--primary-color);
}

.breadcrumbs-separator {
 color: var(--text-light);
 opacity: 0.5;
}

.breadcrumbs-current {
 color: var(--text-dark);
 font-weight: 600;
}

/* Progress Bar */
.progress-bar {
 width: 100%;
 height: 8px;
 background: var(--bg-light);
 border-radius: 4px;
 overflow: hidden;
}

.progress-bar-fill {
 height: 100%;
 background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
 border-radius: 4px;
 transition: width 0.3s ease;
}

/* Tabs */
.tabs {
 display: flex;
 gap: 8px;
 border-bottom: 2px solid var(--border-color);
 margin-bottom: 32px;
}

.tab {
 padding: 12px 24px;
 background: transparent;
 border: none;
 font-size: 16px;
 font-weight: 600;
 color: var(--text-light);
 cursor: pointer;
 transition: all 0.3s ease;
 border-bottom: 2px solid transparent;
 margin-bottom: -2px;
}

.tab:hover {
 color: var(--primary-color);
}

.tab--active {
 color: var(--primary-color);
 border-bottom-color: var(--primary-color);
}

.tab-content {
 display: none;
}

.tab-content--active {
 display: block;
 animation: fadeIn 0.3s ease;
}

/* Accordion */
.accordion-item {
 border: 1px solid var(--border-color);
 border-radius: 8px;
 margin-bottom: 12px;
 overflow: hidden;
}

.accordion-header {
 width: 100%;
 padding: 20px;
 background: white;
 border: none;
 text-align: left;
 font-size: 16px;
 font-weight: 600;
 color: var(--text-dark);
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: space-between;
 transition: background 0.3s ease;
}

.accordion-header:hover {
 background: var(--bg-light);
}

.accordion-icon {
 font-size: 20px;
 transition: transform 0.3s ease;
}

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

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

.accordion-item--active .accordion-content {
 max-height: 1000px;
}

.accordion-body {
 padding: 20px;
 border-top: 1px solid var(--border-color);
}

/* Utility Classes */
.text-center {
 text-align: center;
}

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

.text-right {
 text-align: right;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 8px; }
.pt-2 { padding-top: 16px; }
.pt-3 { padding-top: 24px; }
.pt-4 { padding-top: 32px; }
.pt-5 { padding-top: 40px; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 8px; }
.pb-2 { padding-bottom: 16px; }
.pb-3 { padding-bottom: 24px; }
.pb-4 { padding-bottom: 32px; }
.pb-5 { padding-bottom: 40px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.text-primary { color: var(--primary-color); }
.text-success { color: var(--success-color); }
.text-dark { color: var(--text-dark); }
.text-light { color: var(--text-light); }

.bg-primary { background-color: var(--primary-color); }
.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: white; }

.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 16px; }
.rounded-full { border-radius: 50%; }

.shadow-sm { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
.shadow-lg { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); }

/* End of Mozhaysk Page Styles */



/* ===== Header messengers (mobile only) ===== */
.header__messengers--mobile{
  display:none;
  align-items:center;
  gap:8px;
  margin-left:auto;
  margin-right:10px;
}

.header__msg--icon{
  width:42px;
  height:42px;
  padding:0;
  border-radius:999px;
  justify-content:center;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.header__msg--icon .header__msg-ic{
  width:20px;
  height:20px;
  display:block;
  color:#fff;
}

.header__msg--wa{ background:#25D366; color:#fff; }
.header__msg--tg{ background:#229ED9; color:#fff; }

@media (max-width: 920px){
  .header__messengers--mobile{ display:flex; }
}

/* ===== Mobile menu: different button colors ===== */
.mobile-menu__call--wa{ background:#25D366; }
.mobile-menu__call--tg{ background:#229ED9; }

.mobile-menu__call--wa:hover,
.mobile-menu__call--tg:hover{
  filter: brightness(.95);
}