:root {
  --bg: #eef2f5;
  --paper: #ffffff;
  --ink: #121820;
  --muted: #536170;
  --accent: #f59e0b;
  --accent-dark: #b45309;
  --teal: #0f766e;
  --telegram: #0ea5e9;
  --line: #d7e0e8;
  --shadow: 0 18px 38px rgba(18, 24, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 20%, #ffffff 0%, transparent 36%),
    radial-gradient(circle at 85% 0%, #dbeafe 0%, transparent 45%),
    var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section {
  padding: 68px 0;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}

.bg-shape-1 {
  width: 360px;
  height: 360px;
  background: #fde68a;
  top: -120px;
  left: -90px;
}

.bg-shape-2 {
  width: 430px;
  height: 430px;
  background: #bfdbfe;
  right: -120px;
  top: 180px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(238, 242, 245, 0.84);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #1f2937;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-nav {
  display: none;
}

.mobile-nav-inner {
  display: grid;
  gap: 8px;
  padding-bottom: 12px;
}

.mobile-nav-link {
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  font-weight: 700;
}

.mobile-nav-phones {
  margin-top: 6px;
  display: grid;
  gap: 6px;
}

.mobile-nav-phones a {
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff7e6;
  border: 1px solid #fcd9a0;
  color: var(--accent-dark);
  font-weight: 800;
}

.header-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.mobile-header-phones {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  border-radius: 999px;
  padding: 8px 10px;
}

.logo-text {
  font-family: "Archivo Black", sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(15px, 2.2vw, 22px);
}

.header-call {
  font-weight: 800;
  color: var(--accent-dark);
  font-size: clamp(14px, 2vw, 18px);
  white-space: nowrap;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--accent-dark);
}

h1 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
}

.hero-text {
  margin: 22px 0;
  color: var(--muted);
  font-size: clamp(16px, 2.1vw, 20px);
  line-height: 1.6;
  max-width: 60ch;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.btn {
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.13);
}

.btn-primary {
  background: linear-gradient(135deg, #121820 0%, #1b2430 100%);
  color: #fff;
  border-color: #121820;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1f2937 0%, #263344 100%);
}

.btn-viber {
  background: #ffffff;
  color: #1f2937;
  border-color: #cbd5e1;
}

.btn-viber:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.btn-telegram {
  background: #f3f4f6;
  color: #111827;
  border-color: #d1d5db;
}

.btn-telegram:hover {
  background: #e5e7eb;
  border-color: #9ca3af;
}

.trust-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.hero-media {
  position: relative;
  animation: fade-up 0.9s ease both;
}

.hero-media img {
  width: 100%;
  border-radius: 24px;
  border: 2px solid #fff;
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 350px;
}

.hero-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-weight: 800;
  text-align: center;
  background: rgba(31, 36, 40, 0.88);
  color: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  line-height: 1.15;
}

.stats {
  padding-top: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 22px rgba(80, 53, 29, 0.08);
}

.stat-card h2 {
  margin: 0 0 8px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(28px, 4vw, 38px);
}

.stat-card p {
  margin: 0;
  color: var(--muted);
}

.section-title {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.1;
}

.section-subtitle {
  margin: 12px 0 0;
  color: var(--muted);
}

.services-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

.service-card h3 {
  margin: 0 0 8px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.gallery-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid img {
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(80, 53, 29, 0.1);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  animation: fade-up 0.7s ease both;
}

.contact-box {
  background: linear-gradient(140deg, #fff7e6 0%, #f1f8ff 100%);
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 34px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.contact-box h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4.4vw, 48px);
  font-family: "Archivo Black", sans-serif;
  line-height: 1.08;
}

.contact-box p {
  margin: 0;
  color: var(--muted);
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.phone-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  display: grid;
  gap: 10px;
}

.messenger-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.messenger-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.messenger-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.18);
}

.messenger-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.messenger-viber {
  color: #7c3aed;
  background: #f5f3ff;
  border-color: #ddd6fe;
}

.messenger-whatsapp {
  color: #15803d;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.messenger-telegram {
  color: #0369a1;
  background: #f0f9ff;
  border-color: #bae6fd;
}

.mail-link {
  margin-top: 2px;
  font-weight: 700;
  color: var(--accent-dark);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
}

.footer-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-phones {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.floating-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 14px 20px;
  box-shadow: 0 14px 32px rgba(180, 83, 9, 0.35);
  font-weight: 800;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 48px 0;
  }

  .header-inner {
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
  }

  .header-phones {
    display: none;
  }

  .mobile-header-phones {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    padding-bottom: 10px;
  }

  .mobile-header-phones .header-call {
    flex: 1;
    min-width: 0;
    text-align: center;
    border: 1px solid #fcd9a0;
    background: #fff7e6;
    color: var(--accent-dark);
    border-radius: 10px;
    padding: 8px 6px;
    font-size: 13px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: grid;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  .site-header.menu-open .mobile-nav {
    max-height: 320px;
    border-top: 1px solid var(--line);
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header-call {
    font-size: 13px;
  }

  .logo-text {
    font-size: 14px;
  }

  .contact-box {
    padding: 22px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .phone-card {
    padding: 10px;
  }

  .messenger-row {
    justify-content: center;
  }

  .stats-grid,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 14px 0;
  }

  .footer-phones {
    flex-direction: column;
    gap: 6px;
    justify-content: flex-start;
  }

  .hero-media img {
    min-height: 280px;
  }

  .floating-call {
    right: 12px;
    bottom: 12px;
    padding: 11px 16px;
    font-size: 14px;
    text-align: center;
  }

  .site-footer {
    padding-bottom: 64px;
  }
}
