:root {
  --bg: #050505;
  --bg-2: #090900;
  --surface: rgba(14, 14, 12, 0.92);
  --surface-strong: rgba(22, 21, 16, 0.96);
  --surface-soft: rgba(255, 204, 0, 0.08);
  --text: #fff6c2;
  --text-strong: #ffffff;
  --muted: #cdbc64;
  --accent: #ffcc00;
  --accent-2: #ffe066;
  --accent-dark: #0c0c0c;
  --border: rgba(255, 204, 0, 0.24);
  --border-strong: rgba(255, 204, 0, 0.48);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  --glow: 0 0 42px rgba(255, 204, 0, 0.18);
  --radius: 28px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 204, 0, 0.25), transparent 29rem),
    radial-gradient(circle at 0% 22%, rgba(255, 204, 0, 0.13), transparent 25rem),
    radial-gradient(circle at 100% 22%, rgba(255, 204, 0, 0.13), transparent 25rem),
    radial-gradient(circle at 50% 100%, rgba(255, 204, 0, 0.09), transparent 32rem),
    linear-gradient(180deg, #050505 0%, #090900 46%, #050505 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 204, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 204, 0, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,0.62), transparent 22%, transparent 78%, rgba(0,0,0,0.62));
}

body.menu-open { overflow: hidden; }

img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-200%);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: #050505;
  background: var(--accent);
  box-shadow: var(--glow);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 2rem);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  color: #050505;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  font-weight: 1000;
  letter-spacing: -0.08em;
  box-shadow: 0 10px 35px rgba(255, 204, 0, 0.16);
}

.brand-copy { display: block; }
.brand strong {
  display: block;
  line-height: 1;
  font-size: 1.08rem;
  color: var(--text-strong);
  letter-spacing: 0.01em;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.6vw, 1.4rem);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 0.42rem 0;
  transition: color 0.25s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--accent);
  transition: transform 0.25s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--accent); }
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.lang-switcher {
  display: inline-flex;
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 204, 0, 0.05);
}
.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.42rem 0.62rem;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 950;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-btn.active {
  color: #050505;
  background: var(--accent);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text-strong);
  background: rgba(255, 204, 0, 0.08);
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.phone-link:hover,
.phone-link:focus-visible {
  transform: translateY(-2px);
  color: #050505;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 204, 0, 0.08);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--accent);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-header.open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.section { padding: clamp(4rem, 7vw, 7rem) 0; }
.section-dark { color: var(--text); background: transparent; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72vw, 880px);
  height: min(72vw, 880px);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 204, 0, 0.12);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,204,0,0.13), transparent 63%);
  pointer-events: none;
}
.hero-bg span {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.48;
  pointer-events: none;
}
.hero-bg span:nth-child(1) {
  width: 28rem;
  height: 28rem;
  right: 6vw;
  top: 9%;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.36), transparent 68%);
}
.hero-bg span:nth-child(2) {
  width: 28rem;
  height: 28rem;
  left: 6vw;
  bottom: 5%;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.22), transparent 68%);
}
.hero-bg span:nth-child(3) {
  width: 1px;
  height: 72%;
  right: 50%;
  top: 14%;
  background: linear-gradient(transparent, rgba(255, 204, 0, 0.28), transparent);
  transform: rotate(18deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero-content { max-width: 760px; }
.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { line-height: 1.08; color: var(--text-strong); }
h1 { margin: 0; font-size: clamp(2.45rem, 6vw, 5.25rem); letter-spacing: -0.055em; }
h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -0.04em; }
h3 { margin: 0; font-size: 1.25rem; letter-spacing: -0.02em; }
.hero-text {
  max-width: 680px;
  margin: 1.2rem 0 0;
  color: rgba(255, 246, 194, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions, .contact-actions, .about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 950;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button.primary {
  color: #050505;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 42px rgba(255, 204, 0, 0.18);
}
.button.primary:hover { box-shadow: 0 24px 55px rgba(255, 204, 0, 0.27); }
.button.secondary, .button.ghost {
  color: var(--text-strong);
  background: rgba(255, 204, 0, 0.06);
  border-color: var(--border);
}
.button.dark {
  color: #050505;
  background: var(--accent);
}
.contact-card .button.primary { color: #050505; background: var(--accent); }
.contact-card .button.secondary { color: var(--text-strong); background: transparent; border-color: var(--border); }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2.1rem;
}
.hero-meta div,
.hero-card,
.service-card,
.process-step,
.trust-card,
.contact-card,
.map-card,
details,
.price-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero-meta div {
  padding: 1rem;
  border-color: rgba(255, 204, 0, 0.18);
  border-radius: 20px;
  background: rgba(255, 204, 0, 0.06);
  backdrop-filter: blur(12px);
}
.hero-meta strong, .hero-meta span { display: block; }
.hero-meta strong { margin-bottom: 0.2rem; color: var(--text-strong); font-size: 0.92rem; }
.hero-meta span { color: var(--muted); font-size: 0.88rem; }

.hero-card {
  position: relative;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 204, 0, 0.13), rgba(255, 204, 0, 0.045)), rgba(255,255,255,0.035);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 32px 90px rgba(0,0,0,0.58), var(--glow); }
.hero-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: -1;
  border-radius: calc(var(--radius) - 8px);
  border: 1px dashed rgba(255, 204, 0, 0.22);
}
.hero-card-label {
  margin: 0 0 1rem;
  color: var(--accent);
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}
.quick-services { display: grid; gap: 0.8rem; margin: 0; padding: 0; list-style: none; }
.quick-services li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem;
  border-radius: 18px;
  background: rgba(255, 204, 0, 0.07);
}
.quick-services span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #050505;
  background: var(--accent);
  font-weight: 1000;
}
.quick-services strong { line-height: 1.25; color: var(--text-strong); }
.text-link { display: inline-flex; margin-top: 1.2rem; color: var(--accent); font-weight: 1000; }

.section-heading { max-width: 760px; margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.section-heading p:not(.eyebrow) { max-width: 670px; margin: 1rem 0 0; color: var(--muted); font-size: 1.03rem; }

.services-grid,
.process-grid,
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.service-card,
.process-step,
.trust-card,
.contact-card,
.map-card,
details,
.price-card {
  background: linear-gradient(145deg, rgba(255, 204, 0, 0.095), rgba(255, 204, 0, 0.035)), rgba(255,255,255,0.028);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}
.service-card:hover,
.process-step:hover,
.trust-card:hover,
details:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), var(--glow);
}
.service-card { min-height: 100%; padding: 1.35rem; }
.service-card.featured {
  background: linear-gradient(145deg, rgba(255, 204, 0, 0.18), rgba(255, 204, 0, 0.055)), rgba(255,255,255,0.03);
  border-color: var(--border-strong);
}
.service-icon,
.price-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 18px;
  color: #050505;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  font-size: 1.55rem;
  box-shadow: 0 16px 38px rgba(255, 204, 0, 0.13);
}
.badge {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: #050505;
  background: var(--accent);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-card ul { margin: 1rem 0 0; padding: 0; list-style: none; color: var(--muted); }
.service-card li { position: relative; padding-left: 1.1rem; }
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}
.service-card li + li { margin-top: 0.42rem; }

.prices-section,
.process-section,
.about-section,
.faq-section,
.contact-section { position: relative; }
.prices-section::before,
.process-section::before,
.about-section::before,
.faq-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(86vw, 980px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.42), transparent);
}

.price-card { padding: 1.25rem; }
.price-card-head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 204, 0, 0.22); }
.price-card-head .price-icon { margin: 0; width: 48px; height: 48px; border-radius: 16px; font-size: 1.35rem; }
.price-card h3 { color: var(--accent); }
.price-list { display: grid; gap: 0.55rem; margin: 0; padding: 0; list-style: none; }
.price-list li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1rem; align-items: baseline; padding-bottom: 0.52rem; border-bottom: 1px dashed rgba(255, 204, 0, 0.2); }
.price-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.price-list span { color: rgba(255, 246, 194, 0.9); }
.price-list strong { color: var(--accent); font-size: 1.08rem; white-space: nowrap; }
.price-note { margin: 1rem 0 0; color: var(--muted); font-size: 0.92rem; }

.process-step { padding: 1.35rem; }
.process-step span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 15px;
  color: #050505;
  background: var(--accent);
  font-weight: 1000;
}
.process-step p, .trust-card p { margin: 0.8rem 0 0; color: var(--muted); }

.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.04rem; }
.trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.trust-card { padding: 1.2rem; border-radius: 24px; }
.trust-card strong { display: block; color: var(--text-strong); font-size: 1.06rem; line-height: 1.25; }

.faq-section { padding-top: 0; }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(1.5rem, 5vw, 4rem); }
.faq-list { display: grid; gap: 0.8rem; }
details { overflow: hidden; }
summary { cursor: pointer; padding: 1.1rem 1.2rem; color: var(--text-strong); font-weight: 1000; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--accent); font-size: 1.3rem; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 1.2rem 1.15rem; color: var(--muted); }

.contact-section { padding-top: 0; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 1rem; align-items: stretch; }
.contact-card, .map-card { overflow: hidden; }
.contact-card { padding: clamp(1.3rem, 3vw, 2rem); }
.contact-list { display: grid; gap: 0.9rem; margin: 1.3rem 0 0; padding: 0; list-style: none; }
.contact-list li { padding: 1rem; border: 1px solid rgba(255, 204, 0, 0.14); border-radius: 20px; background: rgba(255, 204, 0, 0.05); }
.contact-list span, .contact-list strong { display: block; }
.contact-list span { margin-bottom: 0.2rem; color: var(--accent); font-size: 0.82rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-list strong { color: var(--text-strong); }
.map-card { min-height: 420px; }
iframe { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; filter: saturate(0.9) contrast(1.02); }

.site-footer { padding: 1.5rem 0 2rem; border-top: 1px solid var(--border); color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.site-footer p { margin: 0; }
.site-footer a { color: var(--accent); font-weight: 1000; }

/* Fail-safe: content is visible even if JavaScript fails. */
.reveal,
.js .reveal,
.js .reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes softGlow {
  0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.025); }
}
.hero::before { animation: softGlow 9s ease-in-out infinite; }

@media (prefers-reduced-motion: no-preference) {
  .button,
  .service-card,
  .process-step,
  .trust-card,
  .price-card,
  .hero-card,
  .phone-link { will-change: transform; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}


.hero-card,
.service-card,
.process-step,
.trust-card,
.price-card,
.contact-card,
.map-card,
details {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  body::before {
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at center, black 0%, transparent 86%);
  }

  body::after {
    background: linear-gradient(90deg, rgba(0,0,0,0.35), transparent 18%, transparent 82%, rgba(0,0,0,0.35));
  }

  .site-header {
    gap: 0.75rem;
    align-items: center;
  }

  .brand {
    gap: 0.62rem;
    min-width: 0;
  }

  .brand strong {
    font-size: 1rem;
  }

  .hero {
    padding-top: 0.6rem;
  }

  .hero::before {
    width: min(96vw, 560px);
    height: min(96vw, 560px);
  }

  .hero-bg span:nth-child(1) {
    width: 18rem;
    height: 18rem;
    right: -4rem;
    top: 8%;
  }

  .hero-bg span:nth-child(2) {
    width: 18rem;
    height: 18rem;
    left: -4rem;
    bottom: 6%;
  }

  .hero-bg span:nth-child(3) {
    display: none;
  }

  .hero-content,
  .section-heading {
    text-align: left;
  }

  .hero-text,
  .section-heading p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .hero-meta div,
  .quick-services li,
  .service-card,
  .process-step,
  .trust-card,
  .price-card,
  .contact-card,
  details {
    border-radius: 20px;
  }

  .hero-meta div {
    padding: 0.92rem;
  }

  .hero-card {
    max-width: none;
    padding: 1rem;
  }

  .quick-services li {
    grid-template-columns: 42px 1fr;
    gap: 0.72rem;
    padding: 0.75rem;
  }

  .quick-services span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .site-nav {
    margin-top: 0.2rem;
  }

  .site-nav a {
    font-size: 0.96rem;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .price-card-head {
    align-items: center;
  }

  .price-list strong {
    font-size: 1rem;
  }

  .contact-list li {
    padding: 0.9rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1rem, var(--container));
  }

  .site-header {
    padding: 0.65rem 0.55rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  h1 {
    font-size: clamp(2rem, 11.5vw, 2.7rem);
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  h3 {
    font-size: 1.08rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-actions,
  .contact-actions,
  .about-actions {
    gap: 0.7rem;
    margin-top: 1.35rem;
  }

  .button {
    min-height: 46px;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }

  .service-card,
  .process-step,
  .trust-card,
  .price-card,
  .contact-card,
  details {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .price-card-head {
    gap: 0.7rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .service-icon,
  .price-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 1.3rem;
  }

  summary {
    padding: 1rem;
  }

  details p {
    padding: 0 1rem 1rem;
  }

  .map-card,
  iframe {
    min-height: 300px;
  }

  .site-footer {
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 1020px) {
  .site-header { grid-template-columns: auto auto; }
  .nav-toggle { display: block; }
  .site-nav, .header-actions { grid-column: 1 / -1; }
  .site-nav {
    display: none;
    justify-self: stretch;
    align-items: stretch;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(5,5,5,0.94);
  }
  .site-nav a { padding: 0.75rem 0.85rem; border-radius: 14px; }
  .site-nav a:hover, .site-nav a:focus-visible { background: rgba(255, 204, 0, 0.1); }
  .site-nav a::after { display: none; }
  .site-header.open .site-nav { display: flex; }
  .header-actions { display: none; justify-content: space-between; }
  .site-header.open .header-actions { display: flex; }
  .hero-grid, .about-grid, .faq-grid, .contact-grid, .price-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { max-width: 620px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 1.25rem, var(--container)); }
  .site-header { padding: 0.72rem 0.7rem; }
  .brand-mark { width: 40px; height: 40px; }
  .section { padding: 3.6rem 0; }
  h1 { font-size: clamp(2.35rem, 13vw, 3.3rem); }
  .hero-meta, .services-grid, .process-grid, .trust-grid { grid-template-columns: 1fr; }
  .hero-actions, .contact-actions, .about-actions { display: grid; }
  .button, .phone-link { width: 100%; }
  .header-actions { gap: 0.55rem; }
  .lang-switcher { width: 100%; justify-content: center; }
  .phone-link { font-size: 0.97rem; }
  .map-card, iframe { min-height: 340px; }
  .price-list li { grid-template-columns: 1fr; gap: 0.15rem; }
  .footer-grid { display: grid; }
}
