:root {
  --ink: #071421;
  --ink-soft: #102536;
  --blue: #168ee6;
  --blue-deep: #0871bf;
  --sky: #dcefff;
  --white: #ffffff;
  --paper: #f4f7f9;
  --line: #d9e2e8;
  --muted: #667480;
  --success: #23c483;
  --shadow: 0 24px 60px rgba(6, 25, 40, 0.14);
  --radius-lg: 24px;
  --radius-md: 16px;
  --header-height: 76px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section-pad {
  padding: 84px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 max(20px, calc((100vw - var(--shell)) / 2));
  border-bottom: 1px solid rgba(8, 30, 46, 0.09);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px 2px 8px 2px;
  color: var(--white);
  background: var(--blue);
  font: 700 18px/1 "Barlow Condensed", sans-serif;
  letter-spacing: -0.6px;
  transform: skewX(-7deg);
}

.brand-mark::after {
  position: absolute;
  right: -15px;
  bottom: -15px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  content: "";
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font: 700 22px/1 "Barlow Condensed", sans-serif;
  letter-spacing: 1.6px;
}

.brand-copy small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.nav-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  border: 0;
  border-radius: 10px;
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 10px;
  background: var(--ink);
  transition: 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  z-index: 10;
  top: 100%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  visibility: hidden;
  width: 100%;
  height: calc(100svh - var(--header-height));
  flex-direction: column;
  gap: 2px;
  padding: 30px 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(4, 20, 33, 0.16);
  pointer-events: none;
  transform: translateY(-16px);
  transition: 0.25s ease;
}

.site-nav.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
  font: 600 24px/1 "Barlow Condensed", sans-serif;
}

.site-nav .nav-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 17px 20px;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  max-height: 860px;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 60% 52%;
  transform: scale(1.02);
  animation: heroZoom 9s ease-out both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 15, 25, 0.96) 0%, rgba(5, 19, 31, 0.83) 52%, rgba(5, 19, 31, 0.25) 100%),
    linear-gradient(0deg, rgba(5, 16, 25, 0.86) 0%, transparent 50%);
}

.hero-grid {
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255,255,255,0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto 150px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #83c9ff;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--blue);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font: 600 46px/0.95 "Barlow Condensed", sans-serif;
  letter-spacing: -1.2px;
  text-wrap: balance;
}

.hero h1 em {
  color: #4db2ff;
  font-style: normal;
}

.hero-lead {
  max-width: 570px;
  margin: 20px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(18, 142, 230, 0.28);
}

.button-primary:hover {
  background: var(--blue-deep);
}

.button-ghost {
  border-color: rgba(255,255,255,0.34);
  color: var(--white);
  background: rgba(3, 17, 28, 0.32);
  backdrop-filter: blur(6px);
}

.hero-proof {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 86px;
  left: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  background: rgba(6, 22, 35, 0.72);
  backdrop-filter: blur(12px);
}

.proof-item {
  display: grid;
  min-width: 0;
  gap: 3px;
  padding: 13px 8px;
  border-right: 1px solid rgba(255,255,255,0.14);
  text-align: center;
}

.proof-item:last-child {
  border: 0;
}

.proof-item strong {
  overflow: hidden;
  font: 600 15px/1 "Barlow Condensed", sans-serif;
  text-overflow: ellipsis;
}

.proof-item span {
  overflow: hidden;
  color: rgba(255,255,255,0.56);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
}

h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.8px;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  gap: 28px;
}

.about-copy {
  padding-top: 2px;
}

.about-copy p,
.section-top > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  border-bottom: 1px solid var(--blue);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.text-link i {
  color: var(--blue);
}

.services {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.services::before {
  position: absolute;
  top: -110px;
  right: -110px;
  width: 330px;
  height: 330px;
  border: 70px solid rgba(22, 142, 230, 0.05);
  border-radius: 50%;
  content: "";
}

.section-top {
  position: relative;
  display: grid;
  gap: 22px;
  margin-bottom: 35px;
}

.section-top > p {
  margin: 0;
}

.service-grid {
  display: grid;
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 272px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid #dce4e9;
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #afbbc4;
  font: 600 13px/1 "Barlow Condensed", sans-serif;
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 50px;
  place-items: center;
  border: 1px solid #b8dcf7;
  border-radius: 10px;
  color: var(--blue);
  background: #eef8ff;
  font-size: 19px;
}

.service-card h3 {
  margin: 0 0 9px;
  font-size: 27px;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  transition: color 0.25s ease;
}

.service-card:hover p {
  color: rgba(255,255,255,0.64);
}

.card-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.service-card:hover .card-line {
  transform: scaleX(1);
}

.video-stage {
  position: relative;
  display: grid;
  min-height: 700px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.stage-video,
.stage-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stage-video {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.76) contrast(1.08);
}

.stage-overlay {
  background:
    linear-gradient(90deg, rgba(3, 15, 25, 0.94), rgba(3, 15, 25, 0.5) 66%, rgba(3,15,25,0.18)),
    linear-gradient(0deg, rgba(3,15,25,0.68), transparent 55%);
}

.stage-content {
  position: relative;
  z-index: 2;
}

.stage-content h2 {
  max-width: 600px;
  font-size: 49px;
}

.stage-content p:not(.section-kicker) {
  max-width: 570px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.75;
}

.section-kicker-light {
  color: #65bdff;
}

.video-control {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 26px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.video-control i {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  transition: 0.2s ease;
}

.video-control:hover i {
  color: var(--ink);
  background: var(--white);
}

.stage-label {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 26px;
  color: rgba(255,255,255,0.42);
  font: 600 11px/1 "Barlow Condensed", sans-serif;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
}

.machine-catalog {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 8%, rgba(22, 142, 230, 0.18), transparent 24%),
    linear-gradient(145deg, #071421 0%, #0a1b2a 62%, #06111b 100%);
}

.machine-catalog-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.machine-catalog .section-shell {
  position: relative;
  z-index: 1;
}

.machine-catalog-head {
  display: grid;
  gap: 26px;
  margin-bottom: 42px;
}

.machine-catalog-head h2 {
  color: var(--white);
  font-size: 46px;
}

.machine-catalog-intro p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.8;
}

.machine-catalog-intro span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #78c8ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.machine-video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(13, 34, 52, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.machine-video-card:hover {
  border-color: rgba(91, 184, 250, 0.55);
  transform: translateY(-5px);
}

.machine-video-media {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #02080d;
}

.machine-video-media video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.machine-video-card-wide .machine-video-media::before {
  position: absolute;
  inset: -25px;
  opacity: 0.34;
  background: url("assets/machines-new/machine-01-poster.jpg") center / cover;
  filter: blur(18px) saturate(0.7);
  content: "";
}

.machine-video-card-wide .machine-video-media video {
  object-fit: contain;
}

.machine-video-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  color: var(--white);
  background: rgba(4, 16, 25, 0.7);
  backdrop-filter: blur(8px);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  pointer-events: none;
}

.machine-video-copy {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 92px;
  padding: 17px 18px;
}

.machine-video-copy > span {
  color: #5bb8fa;
  font: 600 18px/1 "Barlow Condensed", sans-serif;
}

.machine-video-copy div {
  display: grid;
  gap: 3px;
}

.machine-video-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.machine-video-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
}

.machine-video-copy > i {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
}

.machine-catalog-cta {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.machine-catalog-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.sale {
  background: var(--white);
}

.sale-top {
  align-items: end;
}

.availability {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #cfeee2;
  border-radius: 30px;
  color: #147452;
  background: #effaf6;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.availability i {
  color: var(--success);
  font-size: 7px;
  animation: pulse 1.8s ease infinite;
}

.sale-layout {
  display: grid;
  gap: 30px;
}

.media-gallery {
  display: grid;
  gap: 10px;
}

.media-gallery figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--paper);
}

.media-gallery img,
.media-gallery video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main img {
  object-position: center 58%;
}

.media-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(5,18,29,0.68);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  pointer-events: none;
}

.gallery-video figcaption {
  bottom: 48px;
}

.sale-info {
  align-self: center;
}

.sale-label {
  margin: 0 0 13px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sale-info h3 {
  margin: 0 0 18px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}

.sale-info > p:not(.sale-label) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.check-list i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--sky);
  font-size: 9px;
}

.button-wide {
  width: 100%;
}

.contact {
  padding-top: 20px;
  background: var(--white);
}

.contact-panel {
  position: relative;
  display: grid;
  gap: 40px;
  overflow: hidden;
  padding: 42px 26px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(22,142,230,0.28), transparent 35%),
    var(--ink);
}

.contact-panel::after {
  position: absolute;
  top: -125px;
  right: -125px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(255,255,255,0.025), 0 0 0 116px rgba(255,255,255,0.02);
  content: "";
}

.contact-intro,
.contact-actions {
  position: relative;
  z-index: 2;
}

.contact-intro h2 {
  font-size: 39px;
}

.contact-intro > p:not(.section-kicker) {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.7;
}

.contact-actions {
  display: grid;
}

.contact-row {
  display: grid;
  grid-template-columns: 43px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  transition: color 0.2s ease;
}

a.contact-row:hover {
  color: #68c1ff;
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 10px;
  color: #65bdff;
}

.contact-row span:nth-child(2) {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.contact-row small {
  color: rgba(255,255,255,0.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-row strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-row > i {
  color: rgba(255,255,255,0.44);
  font-size: 12px;
}

.site-footer {
  padding: 38px 0 90px;
  background: var(--white);
}

.footer-inner {
  display: grid;
  gap: 18px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.brand-footer .brand-mark {
  width: 35px;
  height: 35px;
  font-size: 15px;
}

.brand-footer .brand-copy strong {
  font-size: 18px;
}

.site-footer p,
.zigodev-credit {
  margin: 0;
  color: #87929a;
  font-size: 10px;
}

.zigodev-credit {
  width: max-content;
  border-bottom: 1px solid #ccd4d9;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 16px;
  bottom: 16px;
  display: flex;
  min-width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border-radius: 30px;
  color: var(--white);
  background: #21b86f;
  box-shadow: 0 14px 35px rgba(11, 102, 61, 0.28);
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  background: #159b5a;
  transform: translateY(-3px);
}

.whatsapp-float i {
  font-size: 23px;
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@media (min-width: 480px) {
  .section-shell {
    width: min(calc(100% - 56px), var(--shell));
  }

  .hero-content {
    width: min(calc(100% - 56px), var(--shell));
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-proof {
    right: 28px;
    left: 28px;
  }

  .proof-item {
    padding: 17px 12px;
  }

  .proof-item strong {
    font-size: 18px;
  }

  .proof-item span {
    font-size: 9px;
  }

  .media-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-main {
    grid-column: 1 / -1;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 82px;
  }

  .section-pad {
    padding: 110px 0;
  }

  .site-header {
    padding-inline: max(28px, calc((100vw - var(--shell)) / 2));
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    visibility: visible;
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    gap: 26px;
    padding: 0;
    overflow: visible;
    opacity: 1;
    background: transparent;
    box-shadow: none;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 6px 0;
    border: 0;
    font: 700 11px/1 "Manrope", sans-serif;
  }

  .site-nav .nav-cta {
    gap: 16px;
    margin: 0 0 0 8px;
    padding: 14px 17px;
    border-radius: 8px;
  }

  .hero {
    min-height: min(calc(100svh - var(--header-height)), 760px);
  }

  .hero-image {
    object-position: 68% 52%;
  }

  .hero-content {
    margin-bottom: 150px;
  }

  .hero h1 {
    font-size: 65px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-proof {
    right: auto;
    bottom: 30px;
    left: 50%;
    width: min(calc(100% - 56px), var(--shell));
    transform: translateX(-50%);
  }

  .hero-proof.fade-in {
    transform: translate(-50%, 28px);
  }

  .hero-proof.fade-in.is-visible {
    transform: translate(-50%, 0);
  }

  .proof-item {
    grid-template-columns: 1fr;
    padding: 17px 20px;
    text-align: left;
  }

  .proof-item strong {
    font-size: 21px;
  }

  .proof-item span {
    font-size: 10px;
  }

  h2 {
    font-size: 49px;
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
  }

  .section-top {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 48px;
  }

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

  .video-stage {
    min-height: 620px;
  }

  .stage-video {
    object-position: center 44%;
  }

  .stage-content h2 {
    font-size: 59px;
  }

  .stage-label {
    right: 28px;
  }

  .machine-catalog-head {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 54px;
  }

  .machine-catalog-head h2 {
    font-size: 59px;
  }

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

  .machine-video-card-wide {
    grid-column: 1 / -1;
  }

  .machine-video-media {
    height: 520px;
  }

  .machine-video-card-wide .machine-video-media {
    height: 560px;
  }

  .machine-catalog-cta {
    grid-template-columns: 1fr auto;
    margin-top: 48px;
  }

  .media-gallery {
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: repeat(2, 280px);
  }

  .media-gallery figure {
    min-height: 0;
  }

  .gallery-main {
    grid-row: 1 / 3;
    grid-column: 1;
  }

  .gallery-video {
    grid-column: 2;
  }

  .contact-panel {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    padding: 64px;
  }

  .contact-intro h2 {
    font-size: 48px;
  }

  .footer-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 28px;
  }

  .site-footer {
    padding-bottom: 42px;
  }
}

@media (min-width: 1024px) {
  .site-nav {
    gap: 34px;
  }

  .hero-content {
    margin-bottom: 155px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: 72px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 15, 25, 0.96) 0%, rgba(5, 19, 31, 0.82) 42%, rgba(5, 19, 31, 0.12) 75%),
      linear-gradient(0deg, rgba(5, 16, 25, 0.82) 0%, transparent 45%);
  }

  .machine-video-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .machine-video-card {
    grid-column: span 4;
  }

  .machine-video-card-wide {
    grid-column: span 8;
  }

  .machine-video-card:nth-child(2) {
    grid-column: span 4;
  }

  .machine-video-media,
  .machine-video-card-wide .machine-video-media {
    height: 500px;
  }

  .sale-layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.65fr);
    gap: 58px;
  }

  .media-gallery {
    grid-template-rows: repeat(2, 320px);
  }

  .sale-info {
    padding-right: 14px;
  }
}

@media (max-height: 720px) and (min-width: 768px) {
  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-content {
    margin-bottom: 125px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-lead {
    margin-top: 14px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-proof {
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}
