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

body {
    font-family: 'Inter', sans-serif;
    background-color: #FAF7F5;
    color: #2C2C2C;
    line-height: 1.6;
}

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

/* Навигация */
.navbar {
    background: white;
    padding: 16px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #E07A5F;
    letter-spacing: -0.5px;
}

.logo span {
    color: #2C2C2C;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    color: #4A4A4A;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 40px;
    transition: all 0.3s;
}

.nav-links a:hover {
    background: #E07A5F;
    color: white;
}

.nav-links a.active {
    background: #E07A5F;
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: #E07A5F;
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(224,122,95,0.3);
}

/* ===== HERO С 3D-АБСТРАКЦИЕЙ ===== */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f4ff 0%, #eef3ff 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: rgba(224, 122, 95, 0.2);
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -150px;
    background: rgba(100, 150, 255, 0.15);
    animation: float 18s ease-in-out infinite reverse;
}

.shape-3 {
    width: 400px;
    height: 400px;
    top: 20%;
    left: 10%;
    background: rgba(255, 215, 0, 0.1);
    animation: float 12s ease-in-out infinite;
}

.shape-4 {
    width: 350px;
    height: 350px;
    bottom: 10%;
    right: 15%;
    background: rgba(147, 112, 219, 0.1);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -40px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.95); }
    75% { transform: translate(40px, 50px) scale(1.05); }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.8);
}

.hero h1 {
    font-size: clamp(48px, 8vw, 64px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero h1 span {
    color: #E07A5F;
}

.hero-tagline {
    font-size: clamp(18px, 4vw, 24px);
    color: #E07A5F;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
    color: white;
    padding: 16px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 15px 30px rgba(225, 48, 108, 0.2);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 16px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.2);
}

.btn-instagram:hover,
.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Заголовки секций */
.section-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #E07A5F;
    border-radius: 3px;
}

.section-sub {
    text-align: center;
    color: #777;
    font-size: 18px;
    margin-bottom: 60px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
    margin-bottom: 40px;
}

.price-item {
    background: white;
    padding: 18px 22px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.price-item:hover {
    border-color: #E07A5F;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(224,122,95,0.1);
}

.price-item-name {
    font-weight: 500;
    color: #2C2C2C;
}

.price-item-value {
    font-weight: 700;
    color: #E07A5F;
    background: rgba(224,122,95,0.1);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 15px;
}

.category-title {
    font-size: 26px;
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(224,122,95,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-title i {
    color: #E07A5F;
    font-size: 26px;
}

.calculator-section {
    background: linear-gradient(135deg, #F8F9FA, #FFFFFF);
    padding: 80px 0;
}

.calculator-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    overflow: hidden;
}

.calculator-header {
    background: linear-gradient(135deg, #E07A5F, #C44536);
    padding: 35px 40px;
    color: white;
}

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

.calculator-header p {
    font-size: 16px;
    opacity: 0.9;
}

.calculator-body {
    padding: 40px;
}

.calculator-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.calculator-field {
    flex: 1;
    min-width: 250px;
}

.calculator-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calculator-select,
.calculator-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #EDEDED;
    border-radius: 20px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: #F8F9FA;
    transition: all 0.3s;
}

.calculator-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E07A5F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.calculator-select:focus,
.calculator-input:focus {
    outline: none;
    border-color: #E07A5F;
    background: white;
    box-shadow: 0 5px 15px rgba(224,122,95,0.1);
}

.calculator-price-box {
    background: linear-gradient(135deg, #F8F9FA, #FFFFFF);
    padding: 25px;
    border-radius: 25px;
    margin: 30px 0;
    border: 2px dashed #E07A5F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.calculator-price-label {
    font-size: 18px;
    color: #4A4A4A;
    font-weight: 500;
}

.calculator-price-value {
    font-size: 36px;
    font-weight: 700;
    color: #E07A5F;
}

.btn-whatsapp-green {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 20px 32px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.calculator-hint {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-top: 15px;
}

.footer {
    background: #1A1A1A;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #E07A5F;
}

.footer-logo span {
    color: white;
}

.footer-info p {
    color: #999;
}

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

.footer-link {
    color: #999;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 40px;
    border: 1px solid #333;
    transition: all 0.3s;
}

.footer-link:hover {
    color: #E07A5F;
    border-color: #E07A5F;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #777;
}

/* ===== СТРАНИЦА ОТЗЫВОВ ===== */
.reviews-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px 0 40px;
    border-bottom: 1px solid #e0e0e0;
}

.reviews-hero h1 {
    font-size: 28px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.reviews-hero p {
    font-size: 15px;
    color: #8e8e8e;
    margin-bottom: 15px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0095f6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-back:hover {
    color: #00376b;
}

.reviews-page-content {
    padding: 40px 0 80px;
    background: #fafafa;
    min-height: 70vh;
}

.review-form-container {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid #dbdbdb;
}

.review-form-container h3 {
    font-size: 20px;
    font-weight: 600;
    color: #262626;
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: #8e8e8e;
    font-size: 14px;
    margin-bottom: 30px;
}

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

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    transition: all 0.2s;
    background: #fafafa;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #a8a8a8;
    background: white;
    box-shadow: 0 0 0 1px #a8a8a8;
}

.rating-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #262626;
    margin-bottom: 8px;
}

.rating-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.2s;
}

.rating-select:hover {
    border-color: #a8a8a8;
    background: white;
}

.rating-select:focus {
    outline: none;
    border-color: #0095f6;
    background: white;
    box-shadow: 0 0 0 1px #0095f6;
}

.photo-upload-section {
    margin-bottom: 24px;
}

.photo-upload-label {
    display: block;
    cursor: pointer;
}

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

.upload-icon {
    font-size: 18px;
    color: #262626;
}

.upload-icon.after {
    color: #0095f6;
}

.upload-title {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
}

.upload-area {
    position: relative;
    border: 2px dashed #dbdbdb;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    background: #fafafa;
    transition: all 0.3s;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-area:hover {
    border-color: #a8a8a8;
    background: #f0f0f0;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.upload-placeholder i {
    font-size: 42px;
    color: #8e8e8e;
}

.upload-placeholder span {
    font-size: 14px;
    color: #8e8e8e;
    font-weight: 500;
}

.upload-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
}

.remove-photo-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ed4956;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.2s;
}

.remove-photo-btn:hover {
    background: #c13540;
    transform: translateY(-1px);
}

.btn-submit-review {
    background: linear-gradient(135deg, #0095f6, #00376b);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    margin-top: 10px;
}

.btn-submit-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,149,246,0.3);
}

/* ===== КАРТОЧКИ ОТЗЫВОВ ===== */
.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E07A5F, #C44536);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(224, 122, 95, 0.3);
}

.review-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.review-stars {
    color: #FFD700;
    font-size: 14px;
    letter-spacing: 2px;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.review-photos {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.review-photo-item {
    flex: 1 1 200px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
    transition: transform 0.3s;
    cursor: pointer;
    aspect-ratio: 1;
}

.review-photo-item:hover {
    transform: scale(1.02);
}

.review-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-photo-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.review-date {
    color: #999;
    font-size: 13px;
}

.delete-review-btn {
    background: none;
    border: 1px solid #ff6b6b;
    color: #ff6b6b;
    padding: 6px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.delete-review-btn:hover {
    background: #ff6b6b;
    color: white;
}

.no-reviews {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 12px;
    color: #8e8e8e;
    font-size: 15px;
    border: 1px solid #dbdbdb;
}

/* Превью фото при загрузке */
.photo-preview-item {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.photo-preview-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.remove-photo {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ff4444;
    color: white;
    border: none;
    cursor: pointer;
}

/* Полноэкранный просмотр фото */
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    line-height: 1;
}

.close-modal:hover {
    color: #ff4444;
}

.modal-label {
    position: absolute;
    bottom: -30px;
    left: 0;
    color: white;
    font-size: 14px;
    background: rgba(0,0,0,0.7);
    padding: 5px 15px;
    border-radius: 20px;
}

/* ===== СТРАНИЦА РАБОТ ===== */
.works-page-content {
    padding: 40px 0 80px;
    background: #f8f9fa;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.work-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    aspect-ratio: 1;
    cursor: pointer;
}

.work-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.work-item-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.work-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.work-item:hover .work-item-image img {
    transform: scale(1.05);
}

.work-item-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.work-item-badge.before {
    background: #e74c3c;
}

.work-item-badge.after {
    background: #27ae60;
}

.work-item-badge.result {
    background: #9b59b6;
}

/* ===== МОДАЛЬНОЕ ОКНО ДЛЯ ПРОСМОТРА ФОТО ===== */
.work-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
}

.work-view-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.work-view-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.work-view-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10001;
}

.work-view-close:hover {
    color: #ff6b6b;
}

/* ===== ЕДИНАЯ МОБИЛЬНАЯ АДАПТАЦИЯ ===== */
@media (max-width: 992px) {
    .works-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Навигация */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 9999;
        border-radius: 0 0 20px 20px;
    }
    
    .nav-links.show {
        display: flex !important;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .nav-links a:hover {
        background: #E07A5F;
        color: white;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .navbar .logo {
        display: none;
    }
    
    /* Hero секция */
    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }
    
    .hero-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-instagram,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    /* 3D-шары */
    .shape-1 { width: 300px; height: 300px; }
    .shape-2 { width: 350px; height: 350px; }
    .shape-3 { width: 250px; height: 250px; }
    .shape-4 { width: 200px; height: 200px; }
    
    /* Цены */
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    /* Калькулятор */
    .calculator-body {
        padding: 25px;
    }
    
    .calculator-price-value {
        font-size: 28px;
    }
    
    /* Отзывы */
    .reviews-grid {
        padding: 0 10px;
        gap: 16px;
    }
    
    .review-card {
        padding: 16px;
    }
    
    .review-photos {
        flex-direction: column;
    }
    
    .review-photo-item {
        width: 100%;
    }
    
    .review-photo-item img {
        height: 200px;
    }
    
    .review-form-container {
        padding: 24px 16px;
        margin: 0 10px 30px;
    }
    
    .upload-area {
        padding: 30px 15px;
        min-height: 160px;
    }
    
    .upload-placeholder i {
        font-size: 36px;
    }
    
    /* Работы */
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .work-item-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    /* Модальные окна */
    .close-modal {
        top: 10px;
        right: 10px;
        font-size: 50px;
    }
    
    .modal-label {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .work-view-close {
        top: -50px;
        right: 10px;
        font-size: 50px;
    }
    
    /* Футер */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

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

/* ЭКСТРЕННОЕ ИСПРАВЛЕНИЕ ДЛЯ МОБИЛЬНЫХ */
@media (max-width: 768px) {
    /* Принудительно показываем hero-блок */
    .hero {
        display: flex !important;
        min-height: auto !important;
        padding-top: 20px !important;
        margin-top: 0 !important;
    }
    
    .hero-content {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin-top: 0 !important;
        padding-top: 30px !important;
    }
    
    .hero h1 {
        display: block !important;
        font-size: 42px !important;
        margin-top: 0 !important;
    }
    
    .hero-tagline {
        display: block !important;
    }
    
    .hero-description {
        display: block !important;
    }
    
    .hero-actions {
        display: flex !important;
    }
    
    /* Навигация */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 9999;
    }
    
    .nav-links.show {
        display: flex !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
}

/* ===== УЛУЧШЕНИЯ ДЛЯ МОБИЛЬНЫХ ===== */
@media (max-width: 768px) {
    /* Делаем hero-блок первым и заметным */
    .hero {
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
        padding-top: 20px !important;
    }
    
    /* Затемняем услуги, чтобы было понятно, что это не главное */
    #services {
        opacity: 0.9;
    }
    
    /* Добавляем подсказку для бургера */
    .mobile-menu-btn::after {
        content: 'Меню';
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        color: #E07A5F;
        background: white;
        padding: 5px 12px;
        border-radius: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        white-space: nowrap;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { opacity: 0.7; transform: translateY(-50%) scale(1); }
        50% { opacity: 1; transform: translateY(-50%) scale(1.05); }
        100% { opacity: 0.7; transform: translateY(-50%) scale(1); }
    }
    
    /* Убираем подсказку после первого клика */
    .mobile-menu-btn.clicked::after {
        display: none;
    }
}