@font-face {
  font-family: 'Inter';
  src: url('Inter.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Science Gothic';
  src: url('ScienceGothic.ttf') format('truetype');
  font-display: swap;
}

:root {
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-heading: 'Science Gothic', 'Inter', system-ui, sans-serif;
  --font-logo: var(--font-heading);
  --page-max: 1120px;
  --deep-teal-black: #0A0F14;
  --accent: #e00012;
  --accent-strong: #ff2636;
  --surface: rgba(10, 10, 12, 0.72);
  --surface-strong: rgba(10, 10, 12, 0.88);
  --surface-soft: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.22);
  --text: #fff;
  --text-muted: rgba(255, 255, 255, 0.8);
  --text-soft: rgba(255, 255, 255, 0.68);
  --shadow-card: 0 18px 55px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.24);
}

html[lang="uk"] {
  --font-heading: 'Inter', system-ui, sans-serif;
}

html[lang="uk"] .font-heading,
html[lang="uk"] h1,
html[lang="uk"] h2,
html[lang="uk"] h3,
html[lang="uk"] h4,
html[lang="uk"] .site-nav a,
html[lang="uk"] .lang-switch button,
html[lang="uk"] .cta-primary,
html[lang="uk"] .cta-secondary,
html[lang="uk"] .buttons a,
html[lang="uk"] .back-link,
html[lang="uk"] .pricing-table th {
  font-family: var(--font-heading);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--deep-teal-black);
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  min-height: 100%;
}

body {
  color: var(--text);
  background: var(--deep-teal-black);
  position: relative;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.static-page {
  background: var(--deep-teal-black);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: var(--deep-teal-black);
  opacity: 1;
  visibility: visible;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: min(220px, 72vw);
}

.page-loader__brand {
  display: block;
  width: auto;
  max-width: min(180px, 70vw);
  height: 42px;
  color: var(--text);
}

.page-loader__brand img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-loader img,
.page-loader svg {
  width: auto;
  max-width: 140px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.page-loader__spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: page-loader-spin 0.85s linear infinite;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes page-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.global-bg-video,
.global-bg-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.global-bg-video {
  object-fit: cover;
  z-index: 0;
  background: var(--deep-teal-black);
}

.global-bg-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 16%, rgba(224, 0, 18, 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.62) 44%, rgba(0, 0, 0, 0.93));
}

.page-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

video.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.86));
  z-index: -1;
}

a {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-4xl {
  max-width: 56rem;
}

.hidden {
  display: none !important;
}

.whitespace-nowrap {
  white-space: nowrap;
}

@media (min-width: 640px) {
  .sm\:block {
    display: block !important;
  }

  .sm\:table-cell {
    display: table-cell !important;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  align-items: center;
  width: 100%;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  background: rgba(3, 3, 4, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: min(230px, 48vw);
  height: clamp(42px, 7vw, 64px);
  text-decoration: none;
}

.brand img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand .laser {
  color: #f2f2f2;
}

.brand .lab {
  color: #e00012;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.site-nav a,
.lang-switch button,
.cta-secondary,
.back-link {
  min-height: 42px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

h1,
h2,
h3,
h4,
.eyebrow,
.site-nav a,
.lang-switch button,
.cta-primary,
.cta-secondary,
.buttons a,
.back-link,
.price-card strong,
.pricing-table th {
  font-family: var(--font-heading);
}

.site-nav a,
.back-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
}

.site-nav a:hover,
.lang-switch button:hover,
.cta-secondary:hover,
.back-link:hover {
  border-color: rgba(224, 0, 18, 0.76);
  background: rgba(224, 0, 18, 0.18);
  transform: translateY(-1px);
}

.lang-switch {
  display: flex;
  gap: 0.4rem;
}

.lang-switch button {
  padding: 0.45rem 0.75rem;
}

main {
  width: 100%;
}

.hero,
.section {
  width: min(var(--page-max), calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: min(760px, 76vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(4.75rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.phone-label {
  position: absolute;
  top: clamp(0.9rem, 2vw, 1.25rem);
  left: 0;
  max-width: min(310px, 58vw);
  background: rgba(0, 0, 0, 0.68);
  color: var(--text);
  font-size: 0.95rem;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  font-weight: 600;
  line-height: 1.15;
  text-align: left;
  pointer-events: auto;
}

.phone-label a {
  color: inherit;
  text-decoration: none;
}

.phone-label a:hover,
.phone-label a:focus-visible {
  text-decoration: underline;
}

.phone-label small {
  font-size: 0.58rem;
  color: var(--text-soft);
  opacity: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #ff4a55;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 880px;
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 7vw, 5.15rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
  line-height: 1.65;
}

.text-container {
  width: 100%;
  max-height: 220px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.text-container.expanded {
  max-height: 2500px;
}

.text-container p,
.section-copy,
.split-content p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-muted);
}

.homepage-description {
  max-width: 56rem;
  margin: 0 auto;
}

.homepage-description p {
  max-width: none;
}

.homepage-description p + p {
  margin-top: 0.8rem;
}

.more-btn {
  display: none;
  margin: 0.7rem 0 0;
  border: 0;
  background: transparent;
  color: #d8d8d8;
  font-size: 0.95rem;
  text-decoration: underline;
  cursor: pointer;
}

.hero-actions,
.buttons {
  display: flex;
  gap: 0.8rem;
  width: 100%;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.cta-primary,
.cta-secondary,
.buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.cta-primary:hover,
.cta-secondary:hover,
.buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.cta-secondary {
  border-color: var(--border-strong);
  background: rgba(0, 0, 0, 0.38);
}

.section {
  padding: clamp(3.75rem, 8vw, 6rem) 0;
}

.band {
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100% - var(--page-max)) / 2));
  padding-right: max(1rem, calc((100% - var(--page-max)) / 2));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.045));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 2rem;
}

.feature-grid,
.pricing-grid,
.payment-grid,
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.payment-grid,
.equipment-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.price-card,
.work-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--surface), rgba(0, 0, 0, 0.58));
  box-shadow: var(--shadow-card);
}

.feature-card,
.price-card {
  padding: clamp(1.15rem, 2.2vw, 1.55rem);
  text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.feature-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.feature-card:hover,
.price-card:hover,
.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.24);
}

.feature-card p,
.price-card p,
.price-card li {
  color: var(--text-muted);
}

.material-card p {
  min-height: 5rem;
}

.equipment-card h4 {
  margin: 1rem 0 0.7rem;
  font-size: 1rem;
}

.equipment-subtitle {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.equipment-benefits {
  color: rgba(255, 255, 255, 0.78);
}

.carousel {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 0.75rem;
  align-items: center;
}

.carousel-track {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
}

.work-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(340px, 58%) minmax(0, 42%);
  gap: clamp(1.35rem, 2.8vw, 2.25rem);
  align-items: center;
  width: min(900px, 66%);
  min-height: 400px;
  padding: clamp(1.1rem, 2vw, 1.55rem);
  overflow: hidden;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.76);
  transition: transform 420ms ease, opacity 420ms ease, filter 420ms ease;
  will-change: transform, opacity;
}

.work-card.is-active {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.work-card.is-prev,
.work-card.is-next {
  z-index: 2;
  grid-template-columns: 1fr;
  width: clamp(190px, 19vw, 260px);
  min-height: 300px;
  padding: 0.65rem;
  opacity: 0.58;
  pointer-events: auto;
  cursor: pointer;
  filter: saturate(0.78) brightness(0.86);
}

.work-card-content {
  width: 100%;
  min-width: 0;
}

.work-card.is-active .work-card-content {
  width: min(100%, 800px);
  margin: auto;
}

.work-card.is-active .work-card-content::after {
  content: '';
  display: table;
  clear: both;
}

.work-card > div:not(.carousel-progress) {
  align-self: center;
  min-width: 0;
}

.work-card.is-active > div:not(.carousel-progress) {
  display: block;
}

.work-card h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.work-card.is-prev {
  left: clamp(76px, 7.5%, 120px);
  transform: translate(-50%, -50%) scale(0.96);
}

.work-card.is-next {
  left: calc(100% - clamp(76px, 7.5%, 120px));
  transform: translate(-50%, -50%) scale(0.96);
}

.work-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  background: #111;
}

.work-card.is-active img {
  float: left;
  width: min(58%, 500px);
  margin: 0 clamp(1.25rem, 2.8vw, 2.25rem) 1.05rem 0;
}

.work-card p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.96rem, 1.1vw, 1.05rem);
  line-height: 1.68;
}

.work-card.is-active p {
  max-width: none;
}

.work-card.is-prev img,
.work-card.is-next img {
  aspect-ratio: 4 / 5;
  height: auto;
}

.work-card.is-prev .work-card-text,
.work-card.is-next .work-card-text,
.work-card:not(.is-active) .carousel-progress {
  display: none;
}

.work-card.is-prev:hover,
.work-card.is-next:hover {
  opacity: 0.78;
  filter: saturate(0.95) brightness(0.96);
}

.carousel-control,
.carousel-dots button {
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: rgba(0, 0, 0, 0.68);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.carousel-control {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.carousel-control:hover {
  border-color: rgba(224, 0, 18, 0.76);
  background: rgba(224, 0, 18, 0.18);
  transform: translateY(-1px);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dots button {
  width: 34px;
  height: 8px;
  padding: 0;
  border-radius: 8px;
}

.carousel-dots button.is-active {
  background: var(--accent);
}

.carousel-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  height: 3px;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  background: rgba(255, 255, 255, 0.14);
}

.carousel-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transform: scaleX(0);
  transform-origin: left center;
}

@keyframes carousel-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
  text-align: left;
}

.check-list,
.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.price-list li {
  position: relative;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
}

.check-list li::before,
.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-section {
  padding-bottom: 4rem;
}

.social-section {
  text-align: center;
}

.social-buttons {
  flex-wrap: wrap;
  justify-content: center;
  max-width: 560px;
  margin: 1.4rem auto 0;
}

.social-buttons a {
  flex: 1 1 180px;
  min-width: 180px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.contact-buttons {
  flex-wrap: wrap;
  justify-content: center;
  max-width: 860px;
  margin: 1.4rem auto 0;
}

.contact-buttons a {
  min-width: 156px;
}

.tiktok {
  background: linear-gradient(to right, #010101, #2f2f2f);
}

.instagram {
  background: linear-gradient(to right, #feda75, #d62976, #962fbf);
}

.whatsapp {
  background: linear-gradient(to right, #25d366, #128c7e);
}

.telegram {
  background: linear-gradient(to right, #0088cc, #229ed9);
}

.site-footer {
  width: 100%;
  background: #000;
  padding: 1.15rem;
  font-size: 0.75rem;
  color: var(--text-soft);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__brand {
  display: inline-flex;
  width: auto;
  max-width: min(190px, 62vw);
  height: 38px;
  margin-bottom: 0.6rem;
}

.site-footer__brand img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.pricing-hero {
  width: min(960px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.25rem;
}

.error-page {
  min-height: calc(100vh - 150px);
  text-align: center;
}

.error-code {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.14);
  font-family: var(--font-heading);
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 700;
  line-height: 0.85;
}

.error-actions {
  max-width: 720px;
}

.pricing-note {
  max-width: 760px;
  margin: 1rem auto 0;
  color: var(--text-muted);
}

.pricing-detail-note {
  margin-top: 1.4rem;
  text-align: center;
}

.price-card strong {
  display: block;
  margin: 0.7rem 0 1rem;
  color: var(--text);
  font-size: 1.45rem;
}

.price-card.featured {
  border-color: rgba(224, 0, 18, 0.72);
}

.pricing-cta {
  margin-top: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--surface), rgba(0, 0, 0, 0.58));
  box-shadow: var(--shadow-card);
  text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.product-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--surface), rgba(0, 0, 0, 0.58));
  box-shadow: var(--shadow-card);
  text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.24);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #111;
}

.product-card__body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  gap: 0.8rem;
  padding: clamp(1rem, 2vw, 1.25rem);
}

.product-card h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.25;
}

.product-card p {
  margin: 0;
  color: var(--text-muted);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
}

.product-card__footer strong {
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.product-card__buy {
  min-width: 118px;
  min-height: 44px;
  padding: 0.72rem 0.95rem;
  white-space: nowrap;
}

.blog-card img,
.article-hero-image {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  background: #111;
}

.blog-card img {
  height: 150px;
}

.blog-card h2 {
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
}

.blog-card p,
.article-body p {
  color: var(--text-muted);
}

.article-layout {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: left;
}

.article-layout .eyebrow,
.article-layout h1,
.article-layout .pricing-note {
  text-align: center;
}

.article-hero-image {
  height: min(360px, 52vw);
  margin: 2rem 0;
  box-shadow: var(--shadow-card);
}

.article-body h2 {
  margin-top: 2rem;
}

.article-body {
  font-size: 1.03rem;
  line-height: 1.75;
}

.article-body ul {
  margin: 1rem 0 1.4rem;
  padding-left: 1.3rem;
  color: var(--text-muted);
}

.article-body li {
  margin-bottom: 0.55rem;
}

.article-table-wrap {
  width: 100%;
  margin: 1.5rem 0 1.8rem;
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.article-body table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: rgba(9, 10, 14, 0.82);
}

.article-body th,
.article-body td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.article-body th {
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
}

.article-body td {
  color: var(--text-muted);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.62);
  text-align: left;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: top;
}

.pricing-table th {
  color: var(--text);
  background: rgba(224, 0, 18, 0.26);
}

.pricing-table td {
  color: rgba(255, 255, 255, 0.84);
}

.pricing-service {
  width: 32%;
}

.pricing-description {
  width: 50%;
}

.pricing-price {
  width: 18%;
  text-align: right;
}

.pricing-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.045);
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.dog-tag-pricing {
  padding-top: clamp(3.25rem, 7vw, 5rem);
}

.dog-tag-pricing-table {
  table-layout: fixed;
}

.dog-tag-pricing-table .pricing-service {
  width: 38%;
}

.dog-tag-pricing-table .pricing-description {
  width: 30%;
}

.dog-tag-pricing-table .pricing-price {
  width: 32%;
}

.pricing-price--multiline {
  line-height: 1.55;
}

@media (min-width: 801px) {
  .dog-tag-pricing-table .pricing-description {
    min-width: 16rem;
    white-space: nowrap;
  }

  .dog-tag-pricing-table .pricing-price--multiline {
    white-space: nowrap;
  }
}

@media (max-width: 800px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .more-btn {
    display: inline;
  }

  .feature-grid,
  .pricing-grid,
  .payment-grid,
  .equipment-grid,
  .blog-grid,
  .split-content {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card img {
    height: 210px;
  }

  .carousel {
    grid-template-columns: 40px 1fr 40px;
  }

  .carousel-track {
    min-height: 480px;
  }

  .work-card.is-active {
    width: min(620px, 100%);
    min-height: 500px;
  }

  .work-card.is-active img {
    float: none;
    width: 100%;
    margin: 0 0 1rem;
  }

  .work-card.is-active .work-card-content {
    width: 100%;
  }

  .work-card h3 {
    margin-top: 0.15rem;
  }

  .work-card img {
    height: auto;
  }

  .work-card.is-prev,
  .work-card.is-next {
    display: none;
  }

  .pricing-table {
    min-width: 0;
  }

  .dog-tag-pricing-table,
  .dog-tag-pricing-table thead,
  .dog-tag-pricing-table tbody,
  .dog-tag-pricing-table tr,
  .dog-tag-pricing-table th,
  .dog-tag-pricing-table td {
    display: block;
  }

  .dog-tag-pricing-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .dog-tag-pricing-table tr {
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .dog-tag-pricing-table td {
    display: grid;
    grid-template-columns: minmax(8rem, 34%) minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.45rem 0.85rem;
    border-bottom: 0;
  }

  .dog-tag-pricing-table td::before {
    content: attr(data-label);
    color: var(--text-soft);
    font-family: var(--font-heading);
    font-weight: 700;
  }

  .dog-tag-pricing-table .pricing-price {
    width: auto;
    text-align: left;
    white-space: normal;
  }

  .dog-tag-pricing-table .pricing-description {
    width: auto;
    min-width: 0;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .site-nav a {
    flex: 1 0 auto;
    justify-content: center;
    padding: 0.55rem 0.45rem;
  }

  .phone-label {
    position: absolute;
    top: 0.75rem;
    left: 0;
    max-width: calc(100vw - 2rem);
    font-size: 0.86rem;
    padding: 0.6rem 0.7rem;
  }

  .hero {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3.25rem);
  }

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

  .hero-actions,
  .buttons {
    flex-direction: column;
  }

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

  .product-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .product-card__buy {
    width: 100%;
  }

  .social-buttons a {
    width: 100%;
    min-width: 0;
  }

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

  .carousel-track {
    grid-column: 1 / -1;
    order: -1;
    min-height: 540px;
  }

  .carousel-control {
    width: 100%;
  }

  .work-card.is-active {
    width: 100%;
    min-height: 510px;
  }

  .feature-card,
  .price-card,
  .work-card,
  .blog-card,
  .product-card {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.9rem 0.75rem;
  }

  .pricing-service {
    width: 60%;
  }

  .pricing-price {
    width: 40%;
  }

  .dog-tag-pricing-table td {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
