:root {
  --orange: #ff9800;
  --orange-dark: #e08700;
  --gold: #ffb300;
  --dark: #1a1a1a;
  --dark-2: #2a2a2a;
  --text: #222;
  --muted: #666;
  --bg: #f4f5f7;
  --white: #fff;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 50px rgba(255, 152, 0, 0.18);
  --radius: 20px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

body.nav-open { overflow: hidden; }

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

button { -webkit-tap-highlight-color: transparent; }

img { display: block; max-width: 100%; }

.container { width: 92%; max-width: 1280px; margin: auto; }

/* ── Header ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

header.scrolled {
  padding: 12px 0;
  background: rgba(26, 26, 26, 0.96);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease);
}

.logo:hover { transform: scale(1.03); }

nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 10px;
  transition: color 0.25s, background 0.25s, transform 0.25s;
  position: relative;
}

nav a:hover {
  color: var(--gold);
  background: rgba(255, 179, 0, 0.1);
}

nav a.active {
  color: var(--gold);
  background: rgba(255, 179, 0, 0.15);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.phone-btn {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--white);
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  white-space: nowrap;
}

.phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 152, 0, 0.45);
}

.phone-short { display: none; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding-top: calc(var(--header-h) + 28px);
  padding-bottom: 24px;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -4%;
  background-image: image-set(url('images/hero.webp') type('image/webp'), url('images/hero.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  transform: scale(1.06);
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(255, 152, 0, 0.15) 100%);
  z-index: -1;
}

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

.hero-content {
  max-width: 760px;
  padding-top: 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 152, 0, 0.2);
  border: 1px solid rgba(255, 179, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 24px;
  color: var(--gold);
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 22px;
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.hero-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-scroll { display: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
  cursor: pointer;
  border: none;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(255, 152, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255, 152, 0, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ── Sections ── */
section { padding: 100px 0; position: relative; }

.section-label {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px;
  text-align: center;
  color: #111;
  font-weight: 800;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  color: var(--muted);
  font-size: 17px;
}

.section-title--light { color: var(--white); }
.section-title--left { text-align: left; }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.8s var(--ease) forwards;
}

.hero .reveal.reveal-delay-1 { animation-delay: 0.12s; }
.hero .reveal.reveal-delay-2 { animation-delay: 0.24s; }
.hero .reveal.reveal-delay-3 { animation-delay: 0.36s; }
.hero .reveal.reveal-delay-4 { animation-delay: 0.48s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Service cards ── */
#services { background: var(--bg); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-card picture { overflow: hidden; display: block; }

.service-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover img { transform: scale(1.07); }

.service-content { padding: 26px; }

.service-content h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.service-content p { color: var(--muted); font-size: 15px; }

.service-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

/* ── Advantages ── */
.advantages {
  background: linear-gradient(160deg, #1a1a1a 0%, #2d2d2d 60%, #1f1f1f 100%);
  color: var(--white);
  overflow: hidden;
}

.advantages::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.adv-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.35s var(--ease), background 0.35s, border-color 0.35s;
}

.adv-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 179, 0, 0.3);
}

.adv-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.4s var(--ease);
}

.adv-card:hover .adv-icon { transform: scale(1.15) rotate(-5deg); }

.adv-card h3 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 800;
}

.adv-card p { color: rgba(255, 255, 255, 0.7); font-size: 15px; }

/* ── Pricing ── */
.pricing-table { overflow-x: auto; border-radius: var(--radius); }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

th, td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

th {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--white);
  font-weight: 700;
}

tbody tr {
  transition: background 0.2s;
}

tbody tr:hover { background: #fff8f0; }

tbody tr:last-child td { border-bottom: none; }

td:last-child {
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

/* ── Workers ── */
.workers { background: var(--white); }

.workers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.worker-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.worker-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.worker-card picture { overflow: hidden; display: block; }

.worker-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.worker-card:hover img { transform: scale(1.06); }

.worker-card div { padding: 26px; }

.worker-card h3 { font-size: 22px; margin-bottom: 10px; }

/* ── SEO text ── */
.seo-text {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.seo-text h3 { margin: 28px 0 12px; font-size: 20px; color: #111; }
.seo-text ul, .seo-text ol { margin: 12px 0 20px 24px; }
.seo-text li { margin-bottom: 8px; color: var(--muted); }

/* ── FAQ accordion ── */
.faq-grid { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }

.faq-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s;
}

.faq-item.open { box-shadow: 0 8px 28px rgba(255, 152, 0, 0.12); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: #111;
  font-family: inherit;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--orange); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff3e0;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.35s var(--ease), background 0.35s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 26px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 152, 0, 0.12);
  font-family: Georgia, serif;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.review-card p { margin-bottom: 16px; color: #444; font-size: 15px; font-style: italic; }
.review-rating { color: var(--orange); font-weight: 700; margin-bottom: 8px; }
.review-author { font-weight: 700; color: #111; }

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 50%, #ffc107 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  color: var(--white);
  text-align: center;
  border-radius: 28px;
  padding: 72px 40px;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta > * { position: relative; z-index: 1; }

.cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px;
  font-weight: 800;
}

.cta-note { font-size: 16px; margin-bottom: 28px; opacity: 0.92; }

.cta .btn-secondary {
  background: var(--white);
  color: var(--orange);
  font-size: 16px;
  padding: 16px 36px;
}

/* ── Footer ── */
footer {
  background: var(--dark);
  color: #aaa;
  padding: 60px 0 40px;
  margin-top: 0;
  position: relative;
  z-index: 1000;
}

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

.footer-title { color: var(--white); margin-bottom: 16px; font-size: 20px; font-weight: 700; }

.footer-grid p { margin-bottom: 8px; font-size: 15px; }

.footer-link {
  color: #aaa;
  transition: color 0.2s;
  display: inline-block;
  padding: 4px 0;
  min-height: 32px;
  line-height: 1.5;
}

.footer-link:hover,
.footer-link:active { color: var(--gold); }

.copyright { margin-top: 48px; text-align: center; color: #555; font-size: 14px; }
.footer-legal { margin-top: 12px; }
.footer-legal a { color: var(--gold); transition: opacity 0.2s; }
.footer-legal a:hover { opacity: 0.8; }

/* ── Floating call ── */
.floating-call {
  position: fixed;
  bottom: 24px; right: 24px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, opacity 0.3s;
  animation: floatPulse 3s ease infinite;
}

body.footer-visible .floating-call {
  opacity: 0;
  pointer-events: none;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

.floating-call:hover { transform: scale(1.1); }

/* ── Breadcrumbs (hidden on main page hero) ── */
.breadcrumbs { display: none; }

/* ── Misc ── */
.article-meta { margin-bottom: 20px; color: var(--muted); font-size: 14px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ── Tablet & mobile ── */
@media (max-width: 900px) {
  :root { --header-h: 64px; }

  .container { width: 94%; }

  header {
    padding: 12px 0;
    padding-top: calc(12px + env(safe-area-inset-top, 0px));
  }

  .header-wrapper {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-areas: "logo phone burger";
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .logo {
    grid-area: logo;
    font-size: 17px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .phone-btn {
    grid-area: phone;
    font-size: 13px;
    padding: 10px 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .burger {
    grid-area: burger;
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 88vw);
    height: 100dvh;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: calc(80px + env(safe-area-inset-top, 0px)) 20px calc(32px + env(safe-area-inset-bottom, 0px));
    gap: 4px;
    transition: right 0.4s var(--ease);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1001;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
  }

  body.nav-open nav {
    right: 0;
    overflow-y: auto;
    visibility: visible;
    pointer-events: auto;
  }

  nav a {
    font-size: 17px;
    padding: 14px 16px;
    border-radius: 12px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 998;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  body.nav-open .nav-overlay { display: block; }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: 32px;
    overflow: hidden;
  }

  .hero h1 { font-size: clamp(1.65rem, 7vw, 2.25rem); }

  .hero p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-content { padding-top: 16px; }

  .hero-badge {
    font-size: 12px;
    padding: 9px 14px;
    margin-top: 12px;
    margin-bottom: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    margin-bottom: 32px;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    font-size: 16px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 24px;
  }

  .hero-stat {
    text-align: center;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
  }

  .hero-stat strong { font-size: 1.15rem; }
  .hero-stat span { font-size: 11px; }

  section { padding: 64px 0; }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .services-grid,
  .workers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
  }

  .adv-card { padding: 24px 16px; }
  .adv-icon { font-size: 2rem; margin-bottom: 10px; }
  .adv-card h3 { font-size: 18px; }

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

  .cta {
    padding: 48px 24px;
    border-radius: 20px;
  }

  .seo-text { padding: 28px 20px; }
  .seo-text h3 { font-size: 18px; }

  .section-title--left { text-align: center; }

  .faq-question {
    font-size: 15px;
    padding: 18px 18px;
    gap: 12px;
  }

  .faq-answer p { padding: 0 18px 18px; }

  .floating-call {
    width: 56px;
    height: 56px;
    font-size: 22px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
  }

  main { padding-bottom: 80px; }

  footer { padding: 48px 0 calc(32px + env(safe-area-inset-bottom, 0px)); }

  .footer-grid { gap: 28px; }

  .service-card:hover,
  .worker-card:hover,
  .review-card:hover,
  .adv-card:hover {
    transform: none;
  }

  .service-card:hover img,
  .worker-card:hover img {
    transform: none;
  }
}

/* ── Small phones ── */
@media (max-width: 600px) {
  :root { --header-h: 60px; }

  .phone-full { display: none; }
  .phone-short { display: inline; }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 14px 16px;
  }

  .hero-stat strong { font-size: 1.25rem; }

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

  .pricing-table {
    overflow: visible;
    border-radius: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .pricing-table::-webkit-scrollbar { display: none; }

  table,
  thead,
  tbody,
  th,
  td,
  tr { display: block; }

  thead { display: none; }

  table {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  tbody tr {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
  }

  tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    white-space: normal;
  }

  tbody td:last-child {
    border-bottom: none;
    background: #fffaf5;
    font-size: 16px;
  }

  tbody td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
  }

  .article-meta {
    font-size: 13px;
    line-height: 1.7;
  }

  .review-card { padding: 22px 20px; }
  .review-card::before { font-size: 3rem; top: 10px; right: 16px; }
}

/* ── Very small screens ── */
@media (max-width: 380px) {
  .logo { font-size: 15px; }
  .phone-btn { padding: 10px 12px; font-size: 12px; }
  .hero h1 { font-size: 1.5rem; }
  .section-title { font-size: 1.5rem; }
  .btn { padding: 14px 20px; }
}

/* ── Privacy page breadcrumbs ── */
.page-inner .breadcrumbs {
  display: block;
  padding-top: calc(var(--header-h) + 16px);
  margin-bottom: 20px;
}

.page-inner .seo-text h1,
.page-inner .section-title--left { text-align: left; }
