﻿:root {
  --bg: #050505;
  --card: #0c0c0c;
  --border: rgba(255, 255, 255, .08);
  --soft: rgba(255, 255, 255, .04);

  --text: #f5f5f5;
  --muted: #8f8f8f;

  --accent: #ff7a00;

  --heading: 'Space Grotesk', 'Noto Sans Thai', sans-serif;
  --body: 'Inter', 'Noto Sans Thai', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);

  background:
    radial-gradient(circle at top right,
      rgba(255, 122, 0, .06),
      transparent 30%),

    radial-gradient(circle at bottom left,
      rgba(255, 122, 0, .04),
      transparent 30%),

    var(--bg);

  color: var(--text);

  overflow-x: hidden;
}

body::before {
  content: "";

  position: fixed;
  inset: 0;

  background-image:
    url("https://www.transparenttextures.com/patterns/asfalt-dark.png");

  opacity: .13;

  pointer-events: none;

  z-index: -2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 0 28px;
}

section {
  padding: 140px 0;
  position: relative;
}

/* CURSOR */

.cursor-glow {
  position: fixed;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  pointer-events: none;

  background:
    radial-gradient(circle,
      rgba(255, 122, 0, .04),
      transparent 70%);

  filter: blur(70px);

  opacity: .55;

  z-index: -1;

  transform: translate(-50%, -50%);
}

/* NAV */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 999;

  backdrop-filter: blur(18px);

  background:
    rgba(5, 5, 5, .45);

  border-bottom:
    1px solid rgba(255, 255, 255, .04);

  transition: .35s ease;
}

.nav.scrolled {
  background:
    rgba(5, 5, 5, .82);

  border-color:
    rgba(255, 255, 255, .08);
}

.nav-inner {
  height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  width: clamp(68px, 5vw, 76px);
}

.nav-links {
  display: flex;
  gap: 34px;

  font-size: 14px;
  color: #aaa;
}

.nav-links a {
  transition: .25s;
}

.nav-links a:hover {
  color: white;
}

.nav-btn {
  padding: 15px 24px;

  border: 0;

  color: white;

  font-size: 15px;

  white-space: nowrap;

  box-shadow:
    0 16px 34px rgba(255, 122, 0, .16);
}

.nav-btn:hover {
  background: #ff8b24;
}

/* HERO */

.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;

  padding: 118px 0 80px;

  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);

  gap: clamp(28px, 4vw, 72px);
  align-items: center;
}

.hero-grid > div:first-child {
  position: relative;
  z-index: 5;
}

.section-label {
  font-size: 12px;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: var(--accent);

  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--heading);

  font-size: clamp(58px, 7vw, 108px);

  line-height: .9;

  letter-spacing: -3px;

  font-weight: 700;

  margin-bottom: 28px;
}

.hero-title span {
  color: var(--accent);
}

.hero-desc {
  max-width: 560px;

  color: rgba(255, 255, 255, .62);

  line-height: 1.95;

  margin-bottom: 42px;

  font-size: 15px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 24px;

  border-radius: 16px;

  font-size: 15px;

  font-weight: 500;

  transition:
    transform .4s cubic-bezier(.16, 1, .3, 1),
    background .4s cubic-bezier(.16, 1, .3, 1);

  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform:
    translateY(-3px) scale(1.02);
}

.btn-primary {
  background: var(--accent);
}

.btn-primary::before {
  content: "";

  position: absolute;
  top: 0;
  left: -120%;

  width: 60%;
  height: 100%;

  background:
    linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, .25),
      transparent);

  transform: skewX(-20deg);
}

.btn-primary:hover::before {
  animation: shine 1s ease;
}

@keyframes shine {
  100% {
    left: 160%;
  }
}

.btn-secondary {
  border: 1px solid var(--border);
  background: var(--soft);
}

/* HERO VISUAL */

.hero-visual {
  position: relative;
  height: clamp(620px, min(64vw, calc(100vh - 70px)), 820px);

  --hero-machine-x: 0px;
  --hero-machine-y: 0px;
  --hero-pack-x: 0px;
  --hero-pack-y: 0px;

  isolation: isolate;
}

.hero-circle {
  position: absolute;

  width: clamp(520px, 42vw, 680px);
  height: clamp(520px, 42vw, 680px);

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(255, 122, 0, .12),
      transparent 70%);

  right: clamp(-110px, -7vw, -48px);
  top: 52%;

  animation: pulse 6s infinite ease-in-out;

  transform: translateY(-50%);
  z-index: 0;
}

@keyframes pulse {
  0% {
    transform: translateY(-50%) scale(1);
    opacity: .7;
  }

  50% {
    transform: translateY(-50%) scale(1.08);
    opacity: 1;
  }

  100% {
    transform: translateY(-50%) scale(1);
    opacity: .7;
  }
}

.hero-pack-main {
  position: absolute;

  width: auto;
  height: clamp(650px, 94vh, 860px);
  max-height: calc(100vh - 56px);
  max-width: min(58vw, 720px);

  right: clamp(-46px, -3vw, 10px);
  top: 52%;

  z-index: 3;

  object-fit: contain;

  filter:
    drop-shadow(0 24px 52px rgba(0, 0, 0, .62))
    drop-shadow(0 0 8px rgba(255, 122, 0, .07))
    drop-shadow(0 0 22px rgba(255, 122, 0, .04))
    drop-shadow(0 0 42px rgba(255, 122, 0, .02));

  transform:
    translate3d(var(--hero-machine-x), calc(-50% + var(--hero-machine-y)), 0);

  transition:
    transform .16s ease-out;
}

.hero-pack-blur {
  display: none;
}

/* HERO PACK LOOPS */

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-16px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero-pack-loops {
  position: absolute;
  inset: 0 clamp(-78px, -5vw, -36px) 0 clamp(-170px, -12vw, -96px);

  overflow: hidden;

  mask-image:
    linear-gradient(90deg,
      transparent 0%,
      transparent 13%,
      #000 31%,
      #000 94%,
      transparent 100%);

  pointer-events: none;

  z-index: 1;

  transform:
    translate3d(var(--hero-pack-x), var(--hero-pack-y), 0);

  transition:
    transform .16s ease-out;
}

.hero-pack-row {
  position: absolute;
  left: 0;

  width: 100%;

  overflow: visible;

  opacity: .82;

  filter:
    drop-shadow(0 14px 26px rgba(0, 0, 0, .48));
}

.hero-pack-row-top {
  top: 17%;

  transform: rotate(-.7deg);
}

.hero-pack-row-bottom {
  bottom: 15%;

  transform: rotate(.7deg);
}

.hero-pack-track {
  display: flex;
  align-items: center;
  gap: clamp(2px, .45vw, 8px);

  width: max-content;

  animation:
    hero-pack-marquee-right 42s linear infinite;
}

.hero-pack-row-bottom .hero-pack-track {
  animation-name: hero-pack-marquee-left;
  animation-duration: 48s;
}

.hero-pack-track img {
  flex: 0 0 auto;

  width: clamp(150px, 11.3vw, 200px);
  height: clamp(150px, 11.3vw, 200px);

  object-fit: contain;
  object-position: center;
}

@keyframes hero-pack-marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes hero-pack-marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* SECTION */

.section-header {
  margin-bottom: 70px;
}

.section-title {
  font-family: var(--heading);

  font-size: clamp(36px, 5vw, 68px);

  line-height: .95;

  letter-spacing: -2px;

  margin-bottom: 24px;
}

.section-desc {
  max-width: 680px;

  color: rgba(255, 255, 255, .62);

  line-height: 1.95;

  font-size: 15px;
}

/* STATS */

.stats-section {
  padding-bottom: clamp(90px, 9vw, 125px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  position: relative;

  padding: 38px 24px 40px;

  border-top:
    1px solid rgba(255, 255, 255, .12);

  overflow: hidden;

  text-align: center;

  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 1s cubic-bezier(.16, 1, .3, 1),
    transform 1s cubic-bezier(.16, 1, .3, 1);
}

.stat-item.show {
  opacity: 1;
  transform: translateY(0);
}

.stat-item::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 122, 0, .45),
      transparent);

  opacity: 0;

  transition: .8s ease;
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-symbol {
  width: 46px;
  height: 46px;

  margin: 0 auto 20px;

  display: grid;
  place-items: center;

  color: var(--accent);

  border: 1px solid rgba(255, 122, 0, .2);
  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(255, 122, 0, .13),
      rgba(255, 122, 0, .03) 68%);

  box-shadow:
    0 0 22px rgba(255, 122, 0, .08);
}

.stat-symbol svg {
  width: 23px;
  height: 23px;

  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.stat-number {
  font-size: clamp(42px, 5vw, 64px);

  line-height: 1;

  font-weight: 600;

  letter-spacing: -2px;

  margin-bottom: 12px;

  color: white;

  text-shadow:
    0 0 20px rgba(255, 122, 0, .08);

  transition: .4s ease;
}

.stat-item:hover .stat-number {
  color: #ff9b47;

  transform:
    translateY(-2px);
}

.stat-label {
  color: rgba(255, 255, 255, .45);

  font-size: 13px;

  letter-spacing: 1.5px;
}

/* FEATURES */

.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.feature-card {
  background:
    rgba(255, 255, 255, .025);

  border:
    1px solid var(--border);

  border-radius: 28px;

  padding: 34px;

  transition:
    transform .4s cubic-bezier(.16, 1, .3, 1),
    border-color .4s cubic-bezier(.16, 1, .3, 1);

  position: relative;
  overflow: hidden;

  opacity: 0;

  transform: translateY(30px);
}

.feature-card.show {
  opacity: 1;
  transform: translateY(0);
}

.feature-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, .03),
      transparent);

  transform: translateX(-120%);

  transition: 1s;
}

.feature-card:hover::before {
  transform: translateX(120%);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, .14);
}

.feature-large {
  grid-column: span 6;
}

.feature-small {
  grid-column: span 3;
}

.feature-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  margin-bottom: 24px;

  color: var(--accent);

  border: 1px solid rgba(255, 122, 0, .2);
  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(255, 122, 0, .14),
      rgba(255, 122, 0, .035) 68%);

  box-shadow:
    0 0 26px rgba(255, 122, 0, .08);

  transition:
    transform .35s cubic-bezier(.16, 1, .3, 1),
    border-color .35s ease,
    color .35s ease,
    box-shadow .35s ease;
}

.feature-icon svg {
  width: 25px;
  height: 25px;

  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.feature-card:hover .feature-icon {
  color: #ff9b47;
  border-color: rgba(255, 122, 0, .36);

  transform:
    translateY(-2px) scale(1.04);

  box-shadow:
    0 0 30px rgba(255, 122, 0, .14);
}

.feature-title {
  font-size: 24px;
  margin-bottom: 14px;
}

.feature-desc {
  color: rgba(255, 255, 255, .62);
  line-height: 1.9;
}

/* LOCATIONS */

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.location-card {
  overflow: hidden;

  border-radius: 28px;

  border: 1px solid var(--border);

  background: #0a0a0a;

  transition:
    transform .4s cubic-bezier(.16, 1, .3, 1);

  opacity: 0;

  transform: translateY(30px);
}

.location-card.show {
  opacity: 1;
  transform: translateY(0);
}

.location-card:hover {
  transform: translateY(-8px);
}

.location-image {
  height: 260px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter:
    grayscale(.15) brightness(.8);

  transition:
    transform 1.2s cubic-bezier(.16, 1, .3, 1),
    filter 1s ease;
}

.location-card:hover .location-image img {
  transform: scale(1.06);

  filter:
    grayscale(0) brightness(.92);
}

.location-content {
  padding: 28px;
}

.location-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.location-desc {
  color: rgba(255, 255, 255, .62);
  line-height: 1.9;
}

/* HOW */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  padding-top: 24px;

  border-top:
    1px solid rgba(255, 255, 255, .12);

  opacity: 0;

  transform: translateY(30px);

  transition: 1s cubic-bezier(.16, 1, .3, 1);
}

.step.show {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  color: var(--accent);
  margin-bottom: 20px;
}

.step-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.step-desc {
  color: rgba(255, 255, 255, .62);
  line-height: 1.9;
}

/* CONTACT */

.contact-box {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, .02),
      rgba(255, 255, 255, .01));

  border:
    1px solid var(--border);

  border-radius: 36px;

  padding: 80px;

  overflow: hidden;

  position: relative;

  opacity: 0;

  transform: translateY(30px);

  transition: 1s cubic-bezier(.16, 1, .3, 1);
}

.contact-box.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-title {
  font-family: var(--heading);

  font-size: clamp(42px, 5vw, 72px);

  line-height: .92;

  letter-spacing: -2px;

  margin-bottom: 20px;
}

.contact-desc {
  max-width: 680px;

  color: rgba(255, 255, 255, .62);

  line-height: 1.95;

  margin-bottom: 50px;

  font-size: 15px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group.full {
  grid-column: 1/-1;
}

.input-label {
  font-size: 14px;
  color: #bcbcbc;
}

.input {
  height: 58px;

  border-radius: 18px;

  border:
    1px solid rgba(255, 255, 255, .08);

  background:
    rgba(255, 255, 255, .025);

  padding: 0 18px;

  color: white;

  font-family: var(--body);
  font-size: 15px;

  outline: none;

  transition: .35s;
}

select.input {
  appearance: none;

  cursor: pointer;

  padding-right: 64px;

  background-image:
    linear-gradient(45deg, transparent 50%, white 50%),
    linear-gradient(135deg, white 50%, transparent 50%);

  background-position:
    calc(100% - 31px) 50%,
    calc(100% - 24px) 50%;

  background-size:
    7px 7px,
    7px 7px;

  background-repeat: no-repeat;
}

select.input option {
  background: #111;
  color: white;
}

.custom-select {
  position: relative;
}

.custom-select.is-enhanced .custom-select-native {
  position: absolute;
  inset: 0;

  opacity: 0;
  pointer-events: none;
}

.custom-select-trigger {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font: inherit;
  text-align: left;

  cursor: pointer;
}

.custom-select-trigger::after {
  content: "";

  width: 9px;
  height: 9px;

  margin-right: 10px;

  border-right: 2px solid white;
  border-bottom: 2px solid white;

  transform:
    translateY(-2px) rotate(45deg);

  transition:
    transform .28s ease,
    border-color .28s ease;
}

.custom-select.is-open .custom-select-trigger {
  border-color: rgba(255, 122, 0, .58);
  box-shadow:
    0 0 0 1px rgba(255, 122, 0, .16),
    0 18px 42px rgba(0, 0, 0, .34);
}

.custom-select.is-open .custom-select-trigger::after {
  border-color: #ff9b47;

  transform:
    translateY(2px) rotate(225deg);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;

  z-index: 30;

  padding: 8px;

  border:
    1px solid rgba(255, 122, 0, .28);

  border-radius: 18px;

  background:
    linear-gradient(180deg,
      rgba(20, 14, 9, .98),
      rgba(8, 8, 8, .98));

  box-shadow:
    0 28px 60px rgba(0, 0, 0, .56),
    inset 0 1px 0 rgba(255, 255, 255, .05);

  overflow: hidden;
}

.custom-select-option {
  width: 100%;
  min-height: 46px;

  display: flex;
  align-items: center;

  padding: 0 24px;

  border: 0;
  border-radius: 12px;

  background: transparent;

  color: white;
  font: inherit;
  text-align: left;

  cursor: pointer;

  transition:
    background .22s ease,
    color .22s ease,
    transform .22s ease;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  background:
    rgba(255, 122, 0, .18);

  outline: none;

  transform:
    translateX(2px);
}

.custom-select-option[aria-selected="true"] {
  background:
    linear-gradient(90deg,
      rgba(255, 122, 0, .86),
      rgba(255, 122, 0, .5));

  color: white;
}

textarea.input {
  height: 140px;
  padding: 18px;
  line-height: 1.7;
  resize: none;
}

.input:hover {
  border-color: rgba(255, 255, 255, .14);
}

.input:focus {
  border-color:
    rgba(255, 122, 0, .45);
}

.submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* FOOTER */

.footer {
  padding: 80px 0;

  border-top:
    1px solid rgba(255, 255, 255, .06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  width: 60px;
  margin-bottom: 18px;
}

.footer-desc {
  color: var(--muted);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  gap: 30px;
  color: #aaa;
}

.footer-links a:hover {
  color: white;
}

.scroll-top {
  position: fixed;
  right: 26px;
  bottom: 26px;

  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 122, 0, .34);
  border-radius: 50%;

  background:
    radial-gradient(circle at 50% 28%,
      rgba(255, 168, 86, .98),
      rgba(255, 122, 0, .92) 54%,
      rgba(182, 79, 0, .94));

  color: white;

  box-shadow:
    0 18px 42px rgba(0, 0, 0, .42),
    0 0 28px rgba(255, 122, 0, .22);

  cursor: pointer;

  opacity: 0;
  pointer-events: none;

  transform:
    translateY(14px) scale(.94);

  transition:
    opacity .28s ease,
    transform .28s cubic-bezier(.16, 1, .3, 1),
    box-shadow .28s ease,
    background .28s ease;

  z-index: 998;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;

  transform:
    translateY(0) scale(1);
}

.scroll-top:hover {
  background:
    radial-gradient(circle at 50% 28%,
      rgba(255, 188, 116, 1),
      rgba(255, 139, 36, .98) 54%,
      rgba(194, 88, 6, .96));

  box-shadow:
    0 22px 54px rgba(0, 0, 0, .48),
    0 0 34px rgba(255, 122, 0, .3);

  transform:
    translateY(-3px) scale(1.03);
}

.scroll-top:focus-visible {
  outline: 2px solid rgba(255, 180, 100, .86);
  outline-offset: 4px;
}

.scroll-top svg {
  width: 24px;
  height: 24px;

  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* THANK YOU */

.thankyou-page {
  min-height: 100vh;
}

.thankyou-main {
  min-height: 100vh;

  display: grid;
  place-items: center;

  padding:
    clamp(42px, 7vw, 92px)
    22px;
}

.thankyou-card {
  width: min(100%, 720px);

  position: relative;
  overflow: hidden;

  padding:
    clamp(38px, 6vw, 68px)
    clamp(24px, 5vw, 58px);

  text-align: center;

  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 28px;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, .055),
      rgba(255, 255, 255, .02)),
    rgba(10, 10, 10, .76);

  box-shadow:
    0 34px 90px rgba(0, 0, 0, .52),
    inset 0 1px 0 rgba(255, 255, 255, .06);

  backdrop-filter: blur(18px);
}

.thankyou-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(120deg,
      transparent 0%,
      rgba(255, 122, 0, .08) 42%,
      transparent 72%);

  transform:
    translateX(-40%);

  opacity: .58;

  pointer-events: none;
}

.thankyou-card > * {
  position: relative;
  z-index: 1;
}

.thankyou-logo {
  width: clamp(116px, 14.4vw, 154px);

  margin: 0 auto 32px;

  filter:
    drop-shadow(0 18px 34px rgba(255, 122, 0, .13));
}

.thankyou-title {
  max-width: 620px;

  margin: 0 auto 20px;

  font-family: var(--heading);
  font-size: clamp(32px, 4.8vw, 56px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: 0;
}

.thankyou-desc {
  max-width: 520px;

  margin: 0 auto 34px;

  color: rgba(255, 255, 255, .66);

  font-size: 16px;
  line-height: 1.95;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.thankyou-actions .btn {
  min-width: 154px;
}

/* MOBILE */

@media(max-width:1100px) {

  .hero-grid,
  .location-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-visual {
    height: clamp(560px, 112vw, 720px);
    margin-top: 8px;
  }

  .hero-pack-main {
    width: auto;
    height: min(88vw, 650px);
    max-width: min(82vw, 440px);
    max-height: 650px;
    right: 50%;
    top: 52%;

    transform:
      translate3d(calc(50% + var(--hero-machine-x)), calc(-50% + var(--hero-machine-y)), 0);
  }

  .hero-pack-blur {
    display: none;
  }

  .hero-pack-loops {
    inset: 0 -12vw;

    mask-image:
      linear-gradient(90deg,
        transparent 0%,
        #000 16%,
        #000 84%,
        transparent 100%);
  }

  .hero-pack-row-top {
    top: 18%;
  }

  .hero-pack-row-bottom {
    bottom: 16%;
  }

  .hero-pack-track img {
    width: clamp(114px, 23vw, 164px);
    height: clamp(114px, 23vw, 164px);
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .feature-large,
  .feature-small {
    grid-column: span 12;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 42px 28px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

}

@media(max-width:700px) {

  section {
    padding: 100px 0;
  }

  .container {
    padding: 0 22px;
  }

  .hero-title,
  .section-title,
  .contact-title {
    letter-spacing: -1.5px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: clamp(500px, 126vw, 620px);
  }

  .hero-pack-main {
    height: min(108vw, 560px);
    max-width: min(90vw, 380px);
  }

  .hero-pack-track {
    gap: 6px;
  }

  .hero-pack-track img {
    width: clamp(100px, 28vw, 140px);
    height: clamp(100px, 28vw, 140px);
  }

  .cursor-glow {
    display: none;
  }

  .scroll-top {
    right: 18px;
    bottom: 18px;

    width: 48px;
    height: 48px;
  }

  .thankyou-actions {
    flex-direction: column;
  }

  .thankyou-actions .btn {
    width: 100%;
  }

}

@media(prefers-reduced-motion: reduce) {
  .hero-pack-track {
    animation-play-state: paused;
  }
}

