/* ========================================
   Салон красоты "Нежность" - Казань
   Нежный женственный дизайн
   ======================================== */

/* Подключение шрифтов */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

/* Переменные цветов */
:root {
    --pink-light: #FDF2F8;
    --pink-soft: #FCE7F3;
    --pink-main: #F9A8D4;
    --pink-accent: #EC4899;
    --rose-gold: #B76E79;
    --cream: #FFF9F5;
    --beige: #F5E6D3;
    --text-dark: #4A3728;
    --text-medium: #6B5B4F;
    --text-light: #8B7B6F;
    --white: #FFFFFF;
    --shadow: rgba(183, 110, 121, 0.1);
}

/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    font-size: 16px;
}

/* Типографика */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--rose-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--pink-accent);
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ШАПКА САЙТА
   ======================================== */
header {
    background: linear-gradient(135deg, var(--white) 0%, var(--pink-light) 100%);
    box-shadow: 0 2px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--rose-gold);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.875rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-top a {
    color: var(--white);
}

.header-top a:hover {
    color: var(--pink-soft);
}

.header-main {
    padding: 20px 0;
}

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

/* Логотип */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pink-main) 0%, var(--rose-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
}

.logo-text h1 {
    font-size: 1.75rem;
    margin-bottom: 0;
    color: var(--rose-gold);
}

.logo-text span {
    font-size: 0.875rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Навигация */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 0;
    position: relative;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-main), var(--rose-gold));
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--rose-gold);
}

/* Контакты в шапке */
.header-contacts {
    text-align: right;
}

.header-phone {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

.header-phone:hover {
    color: var(--rose-gold);
}

/* Мобильное меню */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--rose-gold);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* ========================================
   HERO СЕКЦИЯ
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-soft) 50%, var(--beige) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--pink-main) 0%, transparent 70%);
    opacity: 0.2;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--rose-gold) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero h1 span {
    color: var(--rose-gold);
    display: block;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-medium);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-feature {
    text-align: center;
}

.hero-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 30px var(--shadow);
    font-size: 1.75rem;
}

.hero-feature span {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* ========================================
   КНОПКИ
   ======================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-main) 0%, var(--rose-gold) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--rose-gold);
    border: 2px solid var(--rose-gold);
}

.btn-secondary:hover {
    background: var(--rose-gold);
    color: var(--white);
}

/* ========================================
   СЕКЦИИ
   ======================================== */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-main), var(--rose-gold));
    border-radius: 2px;
}

.section-header p {
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   УСЛУГИ
   ======================================== */
.services {
    background: var(--white);
}

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

.service-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow);
    border-color: var(--pink-soft);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-soft) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rose-gold);
}

/* ========================================
   ПРЕИМУЩЕСТВА
   ======================================== */
.advantages {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--cream) 100%);
}

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

.advantage-item {
    text-align: center;
    padding: 30px;
}

.advantage-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--pink-main);
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.5;
}

.advantage-item h3 {
    margin-bottom: 15px;
}

/* ========================================
   О НАС
   ======================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    background: linear-gradient(135deg, var(--pink-soft) 0%, var(--beige) 100%);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--pink-main);
    border-radius: 50%;
    opacity: 0.3;
    top: 20%;
    left: 20%;
}

.about-image::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--rose-gold);
    border-radius: 50%;
    opacity: 0.2;
    bottom: 20%;
    right: 20%;
}

.about-image-placeholder {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
}

.about-image-placeholder span {
    font-size: 4rem;
    display: block;
    margin-bottom: 10px;
}

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

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-list {
    list-style: none;
    margin-top: 30px;
}

.about-list li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-medium);
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rose-gold);
    font-weight: bold;
}

/* ========================================
   ПРАЙС-ЛИСТ
   ======================================== */
.price-list {
    background: var(--white);
}

.price-category {
    margin-bottom: 50px;
}

.price-category h3 {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--pink-soft);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table tr {
    border-bottom: 1px solid var(--pink-light);
    transition: background 0.3s ease;
}

.price-table tr:hover {
    background: var(--pink-light);
}

.price-table td {
    padding: 20px 15px;
}

.price-table td:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.price-table td:last-child {
    text-align: right;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rose-gold);
    white-space: nowrap;
}

.price-note {
    font-size: 0.875rem;
    color: var(--text-light);
    display: block;
    margin-top: 5px;
    font-weight: 400;
}

/* ========================================
   КОМАНДА
   ======================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-soft) 0%, var(--beige) 100%);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 4px solid var(--white);
    box-shadow: 0 10px 30px var(--shadow);
}

.team-card h3 {
    margin-bottom: 5px;
}

.team-position {
    color: var(--rose-gold);
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.team-experience {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ========================================
   ОТЗЫВЫ
   ======================================== */
.reviews {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--cream) 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    position: relative;
}

.review-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: var(--pink-soft);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.review-text {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-main) 0%, var(--rose-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.review-author-info span {
    display: block;
}

.review-author-info span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.review-author-info span:last-child {
    font-size: 0.875rem;
    color: var(--text-light);
}

.review-rating {
    color: #FFD700;
    margin-top: 10px;
    letter-spacing: 3px;
}

/* ========================================
   CTA СЕКЦИЯ
   ======================================== */
.cta {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--pink-accent) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto 30px;
}

.cta .btn {
    background: var(--white);
    color: var(--rose-gold);
}

.cta .btn:hover {
    background: var(--cream);
    transform: translateY(-3px);
}

/* ========================================
   КОНТАКТЫ
   ======================================== */
.contacts {
    background: var(--white);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-soft) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item-content p {
    margin-bottom: 0;
}

.contact-item-content a {
    color: var(--text-medium);
}

.contact-item-content a:hover {
    color: var(--rose-gold);
}

/* Форма */
.contact-form {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
}

.contact-form h3 {
    margin-bottom: 25px;
    text-align: center;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--pink-light);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--pink-main);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 5px;
}

.form-checkbox label {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.form-checkbox a {
    text-decoration: underline;
}

.contact-form .btn {
    width: 100%;
}

/* Карта-плейсхолдер */
.map-placeholder {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--beige) 100%);
    height: 300px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    text-align: center;
}

.map-placeholder span {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

/* ========================================
   ФУТЕР
   ======================================== */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 0;
}

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

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about .logo-icon {
    background: var(--rose-gold);
}

.footer-about .logo-text h1 {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-about .logo-text span {
    color: rgba(255, 255, 255, 0.6);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-column h4 {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--pink-main);
}

.footer-contacts p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contacts a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contacts a:hover {
    color: var(--pink-main);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--rose-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--pink-main);
}

/* ========================================
   СТРАНИЦА - О НАС
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-soft) 50%, var(--beige) 100%);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 15px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--text-light);
}

.breadcrumbs span {
    color: var(--text-light);
}

.breadcrumbs .current {
    color: var(--rose-gold);
}

/* История салона */
.history {
    background: var(--white);
}

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

.history-content p {
    font-size: 1.1rem;
    line-height: 1.9;
}

/* Миссия */
.mission {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--cream) 100%);
}

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

.mission-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Сертификаты */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.certificate-item {
    background: var(--pink-light);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
}

.certificate-item span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

/* ========================================
   СТРАНИЦА - ПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ
   ======================================== */
.privacy-content {
    background: var(--white);
    padding: 60px 0;
}

.privacy-text {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-text h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy-text h2:first-child {
    margin-top: 0;
}

.privacy-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-text ul li {
    margin-bottom: 10px;
    color: var(--text-medium);
}

.privacy-text p {
    text-align: justify;
}

/* ========================================
   РЕКВИЗИТЫ
   ======================================== */
.requisites {
    background: var(--pink-light);
}

.requisites-content {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
}

.requisites-content p {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--pink-light);
    margin-bottom: 0;
}

.requisites-content p:last-child {
    border-bottom: none;
}

.requisites-content strong {
    color: var(--text-dark);
}

/* ========================================
   АДАПТИВНОСТЬ
   ======================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .header-main .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .header-contacts {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about .logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-features {
        gap: 25px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.85rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .price-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    .price-table td:last-child {
        font-size: 1.1rem;
    }
}

/* ========================================
   ДОПОЛНИТЕЛЬНЫЕ УТИЛИТЫ
   ======================================== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}
