:root {
  --ink: #101722;
  --muted: #637185;
  --line: #d7e0eb;
  --paper: #f4f7fb;
  --white: #ffffff;
  --forest: #06213a;
  --teal: #00a8ff;
  --gold: #d9e2ee;
  --coral: #0072d6;
  --shadow: 0 24px 70px rgba(6, 17, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 32px rgba(6, 17, 32, 0.08);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(6, 17, 32, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
}

.brand-logo {
  width: clamp(210px, 18vw, 270px);
  height: 52px;
  border-radius: 4px;
  object-fit: contain;
  object-position: center;
  background: #06111f;
  border: 1px solid rgba(0, 168, 255, 0.22);
  box-shadow: 0 8px 22px rgba(6, 17, 32, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-item {
  position: relative;
}

.nav-item::before {
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 18px;
  content: "";
}

.nav-link,
.site-nav a {
  position: relative;
  padding-bottom: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  opacity: 0.86;
}

.nav-link::after,
.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00a8ff, #c7d3e0);
  content: "";
  transform: scaleX(0.28);
  transform-origin: left;
  opacity: 0.45;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-link:hover,
.site-nav a:hover {
  opacity: 1;
}

.nav-item:hover .nav-link::after,
.nav-item.open .nav-link::after,
.site-nav a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 210px;
  padding: 10px;
  border: 1px solid rgba(0, 168, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(6, 17, 32, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown-menu a,
.dropdown-subitem > .dropdown-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  white-space: nowrap;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover,
.dropdown-subitem > .dropdown-link:hover {
  background: #eef7ff;
  color: #006eda;
}

.dropdown-subitem {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 160px;
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 168, 255, 0.16);
  box-shadow: 0 16px 40px rgba(6, 17, 32, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 20;
}

.dropdown-subitem:hover .nav-submenu,
.dropdown-subitem:focus-within .nav-submenu,
.dropdown-subitem.open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.nav-submenu-item {
  padding: 10px 12px;
  border-radius: 8px;
  background: #f8fbff;
  border: 1px solid rgba(0, 168, 255, 0.14);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.nav-submenu-item:hover {
  background: rgba(0, 168, 255, 0.12);
  color: var(--teal);
}

.nav-item:hover .dropdown-menu,
.nav-item.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.language-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.language-select select {
  min-width: 138px;
  height: 38px;
  border: 1px solid rgba(0, 168, 255, 0.28);
  border-radius: 8px;
  background: #f8fbff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  outline: none;
}

.language-select select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 168, 255, 0.13);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(20px, 5vw, 72px) 96px;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 70% 55%, rgba(0, 168, 255, 0.32), transparent 30%),
    linear-gradient(90deg, rgba(3, 9, 18, 0.94), rgba(5, 16, 30, 0.78) 55%, rgba(3, 9, 18, 0.48));
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.hero-machine-slider {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 70px;
  z-index: 2;
  width: min(360px, 30vw);
  min-width: 280px;
  overflow: hidden;
  border: 1px solid rgba(0, 168, 255, 0.24);
  border-radius: 8px;
  background: rgba(248, 251, 255, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.hero-machine-slide {
  display: none;
  margin: 0;
  padding: 14px;
  position: relative;
}

.hero-machine-slide.active {
  display: block;
  animation: sliderFade 520ms ease both;
}

.slide-logo {
  position: absolute;
  top: 16px;
  left: 16px;
  width: clamp(72px, 16vw, 120px);
  z-index: 2;
  opacity: 0.55;
  pointer-events: none;
}

.slide-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-machine-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.machine-detail {
  position: fixed;
  top: 88px;
  right: clamp(18px, 4vw, 60px);
  bottom: 32px;
  width: min(320px, 26vw);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 168, 255, 0.18);
  box-shadow: 0 20px 50px rgba(6, 17, 32, 0.16);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.machine-detail.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
}

.detail-body {
  display: grid;
  gap: 14px;
}

.detail-image-link {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(17, 57, 105, 0.06);
}

.detail-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.detail-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #000;
}

.detail-copy .eyebrow {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--teal);
}

.detail-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2vw, 1.75rem);
}

.detail-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-machine-slide figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 900;
}

.hero-machine-slide figcaption::after {
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00a8ff, #c7d3e0);
  content: "";
}

@keyframes sliderFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.25rem, 9vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, #00b7ff, #006eda);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 126, 231, 0.34);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.54);
  color: var(--white);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #0a1829;
  border-bottom: 1px solid var(--line);
}

.metrics div {
  padding: 30px clamp(20px, 4vw, 48px);
  background: #101b2b;
}

.metrics strong {
  display: block;
  color: var(--teal);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.metrics span {
  color: #c7d3e0;
  font-weight: 700;
}

.section {
  padding: clamp(76px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: 44px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

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

.service-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  box-shadow: 0 12px 42px rgba(7, 21, 38, 0.08);
}

.service-card p {
  color: var(--muted);
}

.support {
  background: linear-gradient(180deg, #eef4fb, #ffffff);
}

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

.support-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(0, 168, 255, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 42px rgba(7, 21, 38, 0.08);
}

.support-card p {
  color: var(--muted);
}

.support-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #00b7ff, #006eda);
  color: var(--white);
  font-weight: 900;
}

.icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 38px;
  border-radius: 8px;
  background: rgba(0, 168, 255, 0.12);
  color: var(--teal);
  font-weight: 800;
}

.approach {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(280px, 0.78fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  background: #08111f;
  color: var(--white);
}

.approach-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.approach-image video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #050a12;
}

.approach-content p:not(.eyebrow) {
  color: #c7d3e0;
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  content: "+";
  font-size: 0.82rem;
  line-height: 20px;
  text-align: center;
}

.references {
  background: #050b14;
  color: var(--white);
}

.references h2 {
  max-width: 820px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 36px 0;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.logo-row span {
  display: grid;
  min-height: 86px;
  place-items: center;
  background: #0d1929;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 800;
}

.reference-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  margin: 44px 0;
}

.reference-grid,
.video-grid {
  display: grid;
  gap: 14px;
}

.reference-grid article,
.video-grid article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #0d1929;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.reference-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.reference-grid strong,
.video-grid span {
  color: var(--white);
  font-weight: 900;
}

.reference-grid span {
  color: rgba(255, 255, 255, 0.68);
}

.video-grid video,
.video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px 8px 0 0;
  background: #050b14;
  object-fit: cover;
  border: 0;
}

.video-grid span {
  display: block;
  padding: 14px 16px 16px;
}

blockquote {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
}

cite {
  display: block;
  margin-top: 20px;
  color: var(--teal);
  font-size: 1rem;
  font-style: normal;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(300px, 0.8fr);
  gap: clamp(32px, 7vw, 100px);
  align-items: start;
}

.contact p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  outline: none;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 168, 255, 0.13);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--coral);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
}

.site-footer span {
  color: var(--ink);
  font-weight: 900;
}

.site-footer p {
  margin: 0;
}

.social-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  display: grid;
  gap: 10px;
  z-index: 40;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.35rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  position: relative;
}

.social-link:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.2);
}

.social-link.whatsapp {
  background: #25d366;
}

.social-link.instagram {
  background: radial-gradient(circle at 30% 30%, #feda75 0%, #fa7e1e 30%, #d62976 60%, #962fbf 85%, #4f5bd5 100%);
}

.social-link.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #4b6cb7 100%);
}

.social-link.youtube {
  background: #ff0000;
}

.social-link::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.92);
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  transition: opacity 160ms ease, transform 160ms ease;
}

.social-link:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

@media (max-width: 560px) {
  .social-float {
    right: 16px;
    bottom: 16px;
  }
}

.social-link {
  position: relative;
}

.social-link.whatsapp {
  background: #25d366;
}

.social-link.instagram {
  background: #e1306c;
}

.social-link.facebook {
  background: #1877f2;
}

.social-icon {
  font-size: 1rem;
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 100;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item::before {
    display: none;
  }

  .nav-link,
  .site-nav a {
    display: block;
    width: 100%;
    padding: 13px 12px;
    text-align: left;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .language-select {
    padding: 8px 12px;
  }

  .language-select select {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    margin: 0 0 8px 0;
    padding: 4px 0 4px 6px;
    border-color: var(--line);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-item.open .dropdown-menu,
  .nav-item:hover .dropdown-menu {
    transform: none;
  }

  .nav-item.open .dropdown-menu {
    display: grid;
  }

  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    margin: 4px 0 8px 0;
    padding: 6px 0 6px 8px;
    border-color: var(--line);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown-menu a,
  .dropdown-subitem > .dropdown-link,
  .nav-submenu-item {
    white-space: normal;
    line-height: 1.35;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .dropdown-subitem.open .nav-submenu {
    display: grid;
  }

  .machine-detail {
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    bottom: 24px;
    width: auto;
    max-height: calc(100vh - 104px);
    z-index: 105;
    border-radius: 16px;
  }

  .metrics,
  .service-grid,
  .support-grid,
  .logo-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading,
  .approach,
  .reference-showcase,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: end;
  }

  .hero-machine-slider {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(420px, 100%);
    margin-top: 34px;
  }
}

@media (max-width: 600px) {
  .social-float {
    right: 12px;
    bottom: 14px;
    gap: 8px;
  }

  .social-link {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}

@media (max-width: 640px) {
  table, tbody, tr, th, td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  tr {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  th {
    padding: 4px 0 2px !important;
    border-bottom: none !important;
    color: #5fc9ff;
    font-size: 0.88rem;
  }

  td {
    padding: 2px 0 6px !important;
    border-bottom: none !important;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  main[style*="padding"] {
    padding: 100px 16px 36px !important;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 150px;
    height: auto;
    max-height: 38px;
  }

  h1 {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .hero {
    min-height: 80vh;
    padding: 104px 16px 48px;
  }

  .hero-machine-slider {
    min-width: 0;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(4, 12, 24, 0.68), rgba(4, 12, 24, 0.94));
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .metrics,
  .service-grid,
  .support-grid,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 16px;
  }

  .service-card {
    min-height: auto;
  }

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