:root {
  --teal: #1a6b6b;
  --teal-light: #2a9090;
  --teal-pale: #e8f5f5;
  --gold: #c9a84c;
  --dark: #0e1f1f;
  --text: #2c3e3e;
  --light: #f7fbfb;
  --white: #ffffff;
  --radius: 12px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

nav { position: fixed; top: 0; width: 100%; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(26,107,107,0.1); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1rem; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--teal); letter-spacing: -0.5px; text-decoration: none; }
.logo span { color: var(--gold); }
nav ul { list-style: none; display: flex; gap: 1.5rem; }
nav ul a { text-decoration: none; color: var(--text); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
nav ul a:hover, nav ul a.active { color: var(--teal); }
.nav-cta { background: var(--teal) !important; color: white !important; padding: 0.5rem 1.2rem !important; border-radius: 50px; }
.nav-cta:hover { background: var(--teal-light) !important; }
.nav-phone { color: var(--teal); font-weight: 700; text-decoration: none; font-size: 0.9rem; white-space: nowrap; }
.burger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: white; border-bottom: 1px solid #eee; z-index: 99; flex-direction: column; padding: 1rem 5%; gap: 0; }
.mobile-menu a { text-decoration: none; color: var(--text); font-weight: 500; padding: 0.8rem 0; border-bottom: 1px solid #f0f0f0; }
.mobile-menu.open { display: flex; }

.hero { min-height: 100vh; background: linear-gradient(135deg, var(--dark) 0%, #0d3535 50%, #1a5050 100%); display: flex; align-items: center; padding: 100px 5% 60px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(42,144,144,0.25) 0%, transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4); color: var(--gold); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; color: white; margin-bottom: 1.5rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(10px); border-radius: 20px; padding: 2.5rem; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat { text-align: center; padding: 1.5rem; background: rgba(255,255,255,0.05); border-radius: var(--radius); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--gold); }
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 0.3rem; }
.hero-phone { margin-top: 1.5rem; text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-phone a { font-size: 1.6rem; font-weight: 700; color: white; text-decoration: none; }
.hero-phone a:hover { color: var(--gold); }
.hero-phone p { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 0.3rem; }

.btn-primary { background: var(--gold); color: var(--dark); padding: 0.9rem 2rem; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; display: inline-block; font-family: 'DM Sans', sans-serif; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-outline { border: 2px solid rgba(255,255,255,0.4); color: white; padding: 0.9rem 2rem; border-radius: 50px; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; transition: all 0.2s; display: inline-block; background: transparent; }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-outline-dark { border: 2px solid var(--teal); color: var(--teal); padding: 0.9rem 2rem; border-radius: 50px; font-weight: 600; font-size: 1rem; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-outline-dark:hover { background: var(--teal); color: white; }

.trust-bar { background: var(--teal); padding: 1.2rem 5%; display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { color: white; font-size: 0.9rem; font-weight: 500; display: flex; align-items: center; gap: 0.5rem; }
.trust-item::before { content: '✓'; color: var(--gold); font-weight: 700; }

section { padding: 90px 5%; }
.section-label { color: var(--teal); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.8rem; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--dark); line-height: 1.15; margin-bottom: 1rem; }
.section-sub { color: #6b8080; font-size: 1.1rem; line-height: 1.7; max-width: 600px; margin-bottom: 3rem; }
.container { max-width: 1200px; margin: 0 auto; }

.page-hero { background: linear-gradient(135deg, var(--dark) 0%, #0d3535 100%); padding: 140px 5% 80px; text-align: center; }
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: white; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }

.services-bg { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card { background: white; border-radius: 16px; padding: 2rem; border: 1px solid rgba(26,107,107,0.08); transition: transform 0.25s, box-shadow 0.25s; position: relative; overflow: hidden; text-decoration: none; color: inherit; display: block; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,107,107,0.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; background: var(--teal-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; }
.service-card p { color: #6b8080; font-size: 0.9rem; line-height: 1.6; }

/* PRICE CARDS on homepage */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.price-card { background: white; border-radius: 20px; padding: 2rem; border: 1px solid rgba(26,107,107,0.1); position: relative; }
.price-card.featured { background: var(--dark); color: white; }
.price-card.featured h3 { color: white; }
.featured-badge { background: var(--gold); color: var(--dark); font-size: 0.75rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 50px; display: inline-block; margin-bottom: 0.8rem; }
.price-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.price-list { display: flex; flex-direction: column; gap: 0.5rem; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid rgba(26,107,107,0.08); font-size: 0.9rem; }
.price-card.featured .price-row { border-bottom-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.price-row strong { color: var(--teal); font-weight: 700; }
.price-card.featured .price-row strong { color: var(--gold); }

/* PRICE SECTIONS on prices page */
.price-section { margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid #e8f0f0; }
.price-section-header { display: flex; gap: 1.5rem; align-items: flex-start; margin-bottom: 2rem; }
.price-section-icon { width: 64px; height: 64px; background: var(--teal-pale); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; }
.price-section h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.price-section p { color: #6b8080; font-size: 0.95rem; line-height: 1.6; }
.price-table { background: white; border: 1px solid rgba(26,107,107,0.1); border-radius: var(--radius); overflow: hidden; }
.price-table-row { display: flex; justify-content: space-between; padding: 0.9rem 1.2rem; border-bottom: 1px solid #f0f7f7; font-size: 0.95rem; }
.price-table-row:last-child { border-bottom: none; }
.price-table-row.header { background: var(--teal); color: white; font-weight: 700; font-size: 0.85rem; }
.price-table-row strong { color: var(--teal); font-weight: 700; font-size: 1rem; }
.price-note { margin-top: 0.8rem; font-size: 0.85rem; color: #6b8080; }

/* AREAS GRID */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.area-item { background: white; border: 1px solid rgba(26,107,107,0.15); border-radius: var(--radius); padding: 1rem 1.2rem; font-weight: 600; color: var(--dark); text-align: center; transition: background 0.2s; }
.area-item:hover { background: var(--teal-pale); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem; border-radius: var(--radius); background: var(--teal-pale); }
.why-item:hover { background: #d0ecec; }
.why-check { width: 28px; height: 28px; border-radius: 50%; background: var(--teal); color: white; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }
.why-item h4 { font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
.why-item p { color: #6b8080; font-size: 0.88rem; line-height: 1.5; }
.why-visual { background: linear-gradient(135deg, var(--teal), #0d3535); border-radius: 24px; padding: 3rem; color: white; text-align: center; }
.why-visual .big-num { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.why-visual p { opacity: 0.8; margin-top: 0.5rem; }
.divider { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 1.5rem 0; }
.rating-stars { font-size: 1.5rem; margin-bottom: 0.5rem; }

.process-bg { background: var(--dark); }
.process-bg h2 { color: white; }
.process-bg .section-label { color: var(--gold); }
.process-bg .section-sub { color: rgba(255,255,255,0.6); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; }
.step { padding: 2.5rem 2rem; background: rgba(255,255,255,0.03); }
.step:hover { background: rgba(255,255,255,0.07); }
.step-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: rgba(201,168,76,0.3); line-height: 1; margin-bottom: 1rem; }
.step h3 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.6; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.about-stat { background: var(--teal-pale); border-radius: 16px; padding: 2rem; text-align: center; }
.about-stat .stat-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--teal); }
.about-stat .stat-label { color: #6b8080; font-size: 0.85rem; margin-top: 0.3rem; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.value-card { background: white; border-radius: 16px; padding: 2rem; border: 1px solid rgba(26,107,107,0.08); transition: transform 0.2s; }
.value-card:hover { transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.value-card p { color: #6b8080; font-size: 0.88rem; line-height: 1.6; }

.service-detail { display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: start; padding: 3rem 0; border-bottom: 1px solid #e8f0f0; }
.service-detail-icon { width: 80px; height: 80px; background: var(--teal-pale); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; flex-shrink: 0; }
.service-detail h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.service-detail p { color: #6b8080; line-height: 1.8; margin-bottom: 1rem; }
.service-features { list-style: none; margin-bottom: 1rem; }
.service-features li { padding: 0.45rem 0; color: #4a6060; font-size: 0.92rem; border-bottom: 1px solid #f0f7f7; }

.cta-section { background: linear-gradient(135deg, var(--teal), #0d3535); padding: 80px 5%; }

.form-section { background: var(--light); }
.form-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--teal); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-item p { font-size: 0.85rem; color: #8a9b9b; }
.contact-item a, .contact-item strong { color: var(--dark); font-weight: 600; text-decoration: none; }
.contact-item a:hover { color: var(--teal); }
form { background: white; border-radius: 20px; padding: 2.5rem; box-shadow: 0 4px 40px rgba(26,107,107,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
label { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
input, select, textarea { padding: 0.75rem 1rem; border: 1.5px solid #d8e8e8; border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text); background: white; transition: border-color 0.2s; outline: none; width: 100%; }
input:focus, select:focus, textarea:focus { border-color: var(--teal); }
textarea { resize: vertical; min-height: 100px; }
.submit-btn { width: 100%; padding: 1rem; background: var(--teal); color: white; border: none; border-radius: 50px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.2s; font-family: 'DM Sans', sans-serif; }
.submit-btn:hover { background: var(--teal-light); transform: translateY(-1px); }
.form-note { text-align: center; font-size: 0.8rem; color: #8a9b9b; margin-top: 0.8rem; }

footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: white; margin-bottom: 1rem; }
.footer-logo span { color: var(--gold); }
footer p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; font-size: 0.82rem; flex-wrap: wrap; gap: 0.5rem; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.55s; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-cards { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero-grid, .why-grid, .form-wrapper, .about-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  nav ul { display: none; }
  .nav-phone { display: none; }
  .burger { display: block; }
  .service-detail { grid-template-columns: 1fr; }
  
  /* Исправляем фиксированную кнопку здесь */
  .btn-row, .btn-next, .btn-submit {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    margin-top: 20px;
    box-shadow: none !important;
  }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .trust-bar { gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .price-cards { grid-template-columns: 1fr; }
}

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }
.gallery-grid img { width: 100%; height: 250px; object-fit: cover; border-radius: var(--radius); transition: transform 0.3s; cursor: pointer; }
.gallery-grid img:hover { transform: scale(1.03); }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.8rem; }
.photo-grid img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius); transition: transform 0.3s; }
.photo-grid img:hover { transform: scale(1.05); }