:root {
  --bg: #07090d;
  --bg-soft: #0d1118;
  --panel: #121722;
  --panel-soft: #171d29;
  --text: #f7f8fa;
  --muted: #adb5c2;
  --line: rgba(255, 255, 255, 0.1);
  --red: #ef2637;
  --red-dark: #b4101e;
  --green: #25d366;
  --blue: #168aff;
  --yellow: #ffc928;
  --max: 1180px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 3%, rgba(239, 38, 55, 0.16), transparent 29rem),
    radial-gradient(circle at 5% 36%, rgba(35, 83, 170, 0.12), transparent 31rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: -100px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  font-weight: 800;
}

.skip-link:focus {
  top: 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;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.94);
  color: #dfe3ea;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(239, 38, 55, 0.85);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid transparent;
  background: rgba(7, 9, 13, 0.78);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(7, 9, 13, 0.96);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  position: relative;
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #171c25, #090b0f);
  box-shadow: inset 0 0 0 5px #080a0e, 0 8px 24px rgba(239, 38, 55, 0.2);
  font-size: 1.04rem;
  font-weight: 950;
  font-style: italic;
  letter-spacing: -0.13em;
  padding-right: 3px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: 5px;
  width: 9px;
  height: 9px;
  border: 3px solid var(--bg);
  border-radius: 50%;
  background: var(--red);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 1.02rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.brand-city {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
  color: #e1e5eb;
  font-size: 0.9rem;
  font-weight: 750;
}

.nav-links > a:not(.button) {
  position: relative;
  padding-block: 10px;
}

.nav-links > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links > a:not(.button):hover::after,
.nav-links > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  background: #11151d;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  border-radius: 3px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before { top: -6px; }
.menu-lines::after { top: 6px; }

.menu-toggle[aria-expanded="true"] .menu-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-lines::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-lines::after { top: 0; transform: rotate(-45deg); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #fff;
  background: #171c25;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, filter 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  filter: brightness(1.07);
}

.button-primary {
  border-color: rgba(255, 77, 88, 0.35);
  background: linear-gradient(135deg, #ff4a57, var(--red-dark));
  box-shadow: 0 12px 34px rgba(239, 38, 55, 0.28);
}

.button-whatsapp {
  border-color: rgba(37, 211, 102, 0.34);
  background: linear-gradient(135deg, #2de477, #128c4e);
}

.button-messenger {
  border-color: rgba(22, 138, 255, 0.35);
  background: linear-gradient(135deg, #2997ff, #7148f5);
}

.button svg,
.contact-action svg,
.inline-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  border-bottom: 1px solid var(--line);
  background: #05070a;
}

.hero-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 55, 66, 0.78);
  background: #030405;
}

.hero-media picture,
.hero-media img {
  width: 100%;
}

.hero-media img {
  height: auto;
  object-fit: cover;
}

.hero-strip {
  background:
    radial-gradient(circle at 78% 10%, rgba(239, 38, 55, 0.18), transparent 24rem),
    linear-gradient(180deg, #10141b, #0a0d12);
}

.hero-strip-inner {
  min-height: 215px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding-block: 35px;
}

.eyebrow,
.section-label,
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ff6974;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before,
.page-kicker::before {
  content: "";
  width: 31px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 12px rgba(239, 38, 55, 0.6);
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 12px 0 8px;
  font-size: clamp(2rem, 4.1vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero-copy p,
.page-lead {
  max-width: 760px;
  margin: 0;
  color: #c0c6d0;
  font-size: clamp(1rem, 1.6vw, 1.13rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-actions {
  justify-content: flex-end;
}

.trust-strip {
  border-top: 1px solid var(--line);
  background: #090c11;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 70px;
  padding: 15px 22px;
  color: #dfe3e9;
  text-align: center;
  font-size: 0.89rem;
  font-weight: 750;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: rgba(239, 38, 55, 0.18);
  font-size: 0.82rem;
  font-weight: 950;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 66px 0;
}

.section-muted {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(125deg, rgba(239, 38, 55, 0.055), transparent 34%),
    rgba(13, 17, 24, 0.76);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 37px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .section-label {
  justify-content: center;
}

.section-heading h2,
.content-block h2,
.location-copy h2,
.cta-banner h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.8rem, 3.3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-heading p,
.content-block > p,
.location-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.offer-card,
.process-card,
.content-block,
.faq-list details,
.contact-card,
.info-panel,
.related-card,
.symptom-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(24, 30, 42, 0.94), rgba(12, 15, 21, 0.94));
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  min-height: 265px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 38, 55, 0.18), transparent 66%);
}

.service-card:hover,
.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 38, 55, 0.38);
}

.card-number {
  color: #ff6974;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.service-card h3,
.offer-card h3,
.process-card h3,
.related-card h3,
.symptom-card h3 {
  margin: 14px 0 8px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.service-card p,
.offer-card p,
.process-card p,
.related-card p,
.symptom-card p {
  margin: 0;
  color: var(--muted);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
  color: #ff7680;
  font-weight: 850;
  position: relative;
  z-index: 1;
}

.inline-link svg {
  width: 17px;
  height: 17px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.offer-card {
  padding: 26px;
}

.merch-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: stretch;
  gap: 24px;
  margin-top: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(24, 30, 42, 0.96), rgba(12, 15, 21, 0.96));
  box-shadow: var(--shadow);
}

.merch-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 10px 8px 10px 4px;
}

.merch-copy h3 {
  margin: 12px 0 13px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.merch-copy > p {
  margin: 0;
  color: var(--muted);
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 21px 0 18px;
}

.brand-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(239, 38, 55, 0.22);
  border-radius: 999px;
  color: #f0f2f6;
  background: rgba(239, 38, 55, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
}

.merch-copy .stock-note {
  color: #c6cbd4;
  font-size: 0.88rem;
}

.merch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 23px;
}

.merch-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.merch-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: #080a0e;
  aspect-ratio: 4 / 3;
}

.merch-photo-main {
  grid-column: 1 / -1;
  aspect-ratio: 1200 / 593;
}

.merch-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.merch-photo:hover img {
  transform: scale(1.025);
}

.merch-photo figcaption {
  position: absolute;
  right: 9px;
  bottom: 9px;
  left: 9px;
  width: fit-content;
  max-width: calc(100% - 18px);
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: rgba(5, 7, 10, 0.8);
  font-size: 0.7rem;
  font-weight: 800;
  backdrop-filter: blur(7px);
}

.card-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 38, 55, 0.22);
  border-radius: 13px;
  color: #ff6874;
  background: rgba(239, 38, 55, 0.1);
}

.card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: steps;
}

.process-card {
  position: relative;
  padding: 28px 27px;
  counter-increment: steps;
}

.process-card::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 22px;
  color: #ff6874;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  align-items: stretch;
  gap: 28px;
}

.location-copy {
  padding: 24px 0;
}

.benefit-list,
.check-list,
.plain-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.benefit-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: #dde1e8;
}

.benefit-list li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 0.69rem;
  font-weight: 950;
}

.location-card {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(239, 38, 55, 0.28);
  border-radius: 27px;
  background:
    linear-gradient(135deg, rgba(9, 12, 17, 0.18), rgba(9, 12, 17, 0.83)),
    repeating-linear-gradient(32deg, transparent 0 34px, rgba(255, 255, 255, 0.035) 35px 36px),
    repeating-linear-gradient(122deg, transparent 0 52px, rgba(255, 255, 255, 0.025) 53px 54px),
    radial-gradient(circle at 55% 36%, rgba(239, 38, 55, 0.44), transparent 10%),
    #121722;
  box-shadow: var(--shadow);
}

.map-pin {
  position: absolute;
  left: 55%;
  top: 32%;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  border-radius: 50% 50% 50% 5px;
  color: #fff;
  background: linear-gradient(145deg, #ff4c59, var(--red-dark));
  box-shadow: 0 18px 42px rgba(239, 38, 55, 0.46);
}

.map-pin span {
  transform: rotate(-45deg);
  font-size: 0.85rem;
  font-weight: 950;
}

.location-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 9, 13, 0.84);
  backdrop-filter: blur(12px);
}

.location-content small {
  color: #ff747f;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.location-content h3 {
  margin: 8px 0 2px;
  font-size: 1.4rem;
}

.location-content p {
  margin: 0;
  color: var(--muted);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 35px 38px;
  border: 1px solid rgba(239, 38, 55, 0.32);
  border-radius: 25px;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 90, 101, 0.22), transparent 21rem),
    linear-gradient(135deg, #80121d, #2c0c12 55%, #11151c);
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  margin-top: 0;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.cta-banner p {
  max-width: 700px;
  margin: 0;
  color: #e3cdd0;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.65fr) minmax(0, 1.35fr);
  gap: 44px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  box-shadow: none;
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 850;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6874;
  font-size: 1.45rem;
  font-weight: 700;
}

.faq-list details[open] summary::after { content: "–"; }

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.contact-card {
  padding: 27px;
}

.contact-card h3 {
  margin: 0 0 19px;
  font-size: 1.25rem;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-action {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-action:hover {
  transform: translateX(3px);
  border-color: rgba(239, 38, 55, 0.34);
}

.contact-action > svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 12px;
  color: #ff6874;
  background: rgba(239, 38, 55, 0.1);
}

.contact-action span {
  display: grid;
}

.contact-action small {
  color: var(--muted);
}

.contact-arrow {
  color: #ff6874;
  font-size: 1.5rem;
}

.hours {
  display: grid;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.hours-row span:last-child {
  color: #fff;
  font-weight: 850;
}

.hours-note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.page-hero {
  position: relative;
  padding: 72px 0 75px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.94), rgba(7, 9, 13, 0.68)),
    radial-gradient(circle at 76% 45%, rgba(239, 38, 55, 0.33), transparent 20rem),
    #10141c;
}

.page-hero::after {
  content: "MG";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(10rem, 25vw, 23rem);
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.15em;
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumbs a:hover { color: #fff; }

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 48px;
}

.page-hero h1 {
  max-width: 850px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 27px;
}

.info-panel {
  position: relative;
  z-index: 2;
  padding: 25px;
  border-color: rgba(239, 38, 55, 0.25);
}

.info-panel h2,
.info-panel h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.info-panel p {
  margin: 0;
  color: var(--muted);
}

.info-panel .plain-list {
  margin-top: 16px;
}

.plain-list li {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  color: #dfe3e9;
}

.plain-list li:last-child { border-bottom: 0; }

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.5fr);
  align-items: start;
  gap: 30px;
}

.content-main {
  display: grid;
  gap: 22px;
}

.content-block {
  padding: 31px;
  box-shadow: none;
}

.content-block h2 {
  margin-top: 0;
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
}

.content-block h3 {
  margin: 25px 0 7px;
  font-size: 1.16rem;
}

.content-block p {
  color: var(--muted);
}

.content-block p:last-child { margin-bottom: 0; }

.content-aside {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 16px;
}

.aside-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #10151d;
}

.aside-card h2,
.aside-card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.aside-card p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 0.92rem;
}

.aside-card .button {
  width: 100%;
  margin-top: 9px;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.symptom-card {
  padding: 20px;
  box-shadow: none;
}

.symptom-card h3 {
  margin-top: 0;
  font-size: 1.02rem;
}

.symptom-card p {
  font-size: 0.92rem;
}

.note-box {
  margin-top: 22px;
  padding: 17px 19px;
  border-left: 3px solid var(--yellow);
  border-radius: 0 12px 12px 0;
  color: #ddd5b9;
  background: rgba(255, 201, 40, 0.075);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.related-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.related-card h3 {
  margin-top: 0;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: #05070a;
}

.footer-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.footer-copy {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social-link {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #dce1e8;
  font-size: 0.82rem;
  font-weight: 750;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.35);
  transition: transform 160ms ease;
}

.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }

.floating-whatsapp svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(12, 15, 21, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: grid; }

  .nav-links > a:not(.button) {
    padding: 12px 13px;
    border-radius: 9px;
  }

  .nav-links > a:not(.button)::after { display: none; }

  .nav-links .button { margin-top: 5px; }

  .hero-strip-inner,
  .page-hero-grid,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .hero-actions { justify-content: flex-start; }

  .service-cards,
  .offer-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-grid,
  .faq-grid,
  .merch-feature {
    grid-template-columns: 1fr;
  }

  .location-copy { padding-top: 0; }

  .content-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }

  .topbar-inner {
    min-height: 42px;
    justify-content: center;
  }

  .topbar-group:first-child { display: none; }
  .topbar-group { gap: 13px; }

  .nav { min-height: 70px; }
  .brand-mark { width: 43px; }
  .brand-name { font-size: 0.94rem; }

  .hero-media { aspect-ratio: 4 / 5; }
  .hero-media img { height: 100%; }

  .hero-strip-inner {
    min-height: 0;
    gap: 24px;
    padding-block: 29px 33px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions .button,
  .page-actions .button {
    flex: 1 1 145px;
  }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { justify-content: flex-start; min-height: 58px; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }

  .section { padding: 68px 0; }
  .section-tight { padding: 50px 0; }

  .service-cards,
  .offer-grid,
  .process-grid,
  .related-grid,
  .contact-grid,
  .content-aside,
  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .service-card { min-height: 230px; }

  .merch-feature {
    padding: 17px;
  }

  .merch-copy {
    padding: 8px 4px 10px;
  }

  .merch-actions .button {
    flex: 1 1 160px;
  }

  .benefit-list { grid-template-columns: 1fr; }
  .location-card { min-height: 360px; padding: 18px; }
  .map-pin { left: 62%; top: 25%; }

  .cta-banner {
    display: grid;
    padding: 27px 22px;
  }

  .cta-actions .button { flex: 1 1 150px; }

  .page-hero { padding: 48px 0 54px; }
  .breadcrumbs { margin-bottom: 27px; }
  .page-hero-grid { gap: 28px; }
  .info-panel { padding: 22px; }
  .content-block { padding: 24px 21px; }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .socials { justify-content: flex-start; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
