@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0f2044;
  --navy-mid: #1a3460;
  --navy-light: #1e3f73;
  --red: #c0392b;
  --red-light: #e74c3c;
  --green-wa: #25D366;
  --gray-bg: #f0f4f8;
  --gray-light: #e8eef5;
  --text-dark: #0f2044;
  --text-mid: #4a5568;
  --text-light: #718096;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(15, 32, 68, 0.08);
  --shadow-md: 0 8px 40px rgba(15, 32, 68, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

body::selection {
  background: var(--red);
  color: white;
}

/* ========= NAVBAR ========= */
.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 999;
  width: min(1120px, calc(100% - 40px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 14px;
  height: 64px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 40px rgba(7, 24, 53, .1), inset 0 1px 0 rgba(255, 255, 255, .8);
  transition: box-shadow 0.3s, background .3s, top .3s;
}

.navbar.scrolled {
  top: 10px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 48px rgba(7, 24, 53, .17);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon img {
  margin-top: 1px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.nav-logo-text span {
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 5px;
  border-radius: 999px;
  background: rgba(15, 32, 68, .045);
}

.nav-links a {
  display: block;
  padding: 9px 14px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, .8);
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--navy);
}

.btn-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-wa:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.btn-wa svg {
  width: 18px;
  height: 18px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* ========= HERO ========= */
.hero {
  padding-top: 82px;
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .96) 0 18%, transparent 48%), linear-gradient(145deg, #f7f9fc 0%, #e7edf5 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .38;
  background-image: linear-gradient(rgba(15, 32, 68, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 32, 68, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(192, 57, 43, .08);
  filter: blur(90px);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-floating {
  position: absolute;
  width: 340px;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-floating img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating.left {
  left: -40px;
  top: 45%;
  transform: rotate(-6deg) translateY(-50%);
}

.hero-floating.right {
  right: -40px;
  top: 38%;
  transform: rotate(6deg) translateY(-50%);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 72px 24px 90px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(15, 32, 68, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .94;
  color: var(--navy);
  margin-bottom: 28px;
  text-wrap: balance;
}

.hero h1 em {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  letter-spacing: -.045em;
}

.hero p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(15, 32, 68, 0.25);
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 32, 68, 0.3);
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(15, 32, 68, 0.15);
  transition: border-color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* ========= STATS ========= */
.stats {
  background: var(--navy);
  padding: 80px 48px;
}

.stats-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.stat-card-highlight {
  background: var(--red);
  border-color: rgba(255, 255, 255, .18);
}

.stat-card-highlight:hover {
  background: #d14232;
}

.stat-card-highlight .stat-icon {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .24);
}

.stat-card-highlight .stat-icon svg {
  stroke: white;
}

.stat-copy {
  font-size: 1.65rem;
  line-height: 1.05;
  padding-top: 5px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(192, 57, 43, 0.2);
  border: 1px solid rgba(192, 57, 43, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red-light);
  fill: none;
  stroke-width: 2;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin: 6px 0 4px;
}

.stat-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ========= SECTION HEADER ========= */
.section-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}

/* ========= PRODUCTS ========= */
.products {
  padding: 100px 48px;
  background: var(--gray-bg);
}

.products-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.products-header .section-tag {
  justify-content: center;
}

.products-header .section-tag::before {
  display: none;
}

.products-header .section-sub {
  margin: 0 auto;
}

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.filter-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid rgba(15, 32, 68, 0.18);
  background: white;
  color: var(--text-mid);
  transition: all 0.2s;
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-card[data-hidden="true"] {
  display: none;
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-light);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
}

.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge.type {
  background: var(--navy);
  color: white;
}

.badge.tag {
  background: var(--red);
  color: white;
}

.badge.tag.green {
  background: #27ae60;
}

.product-info {
  padding: 16px 16px 20px;
}

.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.btn-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px;
  border-radius: 50px;
  background: var(--green-wa);
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-order:hover {
  background: #1da851;
  transform: translateY(-1px);
}

/* ========= CLIENTS ========= */
.clients {
  padding: 100px 48px;
  background: var(--gray-light);
}

.clients-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.clients-header .section-tag {
  justify-content: center;
}

.clients-header .section-tag::before {
  display: none;
}

.clients-header .section-sub {
  margin: 0 auto;
}

.clients-grid {
  max-width: 1100px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.client-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(15, 32, 68, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.client-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.client-industry {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--red);
  text-transform: uppercase;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-check svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}

.trust-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* ========= CONTACT ========= */
.contact {
  padding: 100px 48px;
  background: var(--gray-bg);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-left .section-title {
  margin-bottom: 12px;
}

.contact-left p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: 0 2px 12px rgba(15, 32, 68, 0.06);
}

.contact-card-link {
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-card-link:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.contact-value {
  overflow-wrap: anywhere;
}

.contact-value address,
address.contact-value {
  font-style: normal;
  line-height: 1.45;
}

/* ========= WA MODAL ========= */
.wa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 32, 68, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.wa-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.wa-modal {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: var(--shadow-md);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-modal-overlay.is-active .wa-modal {
  transform: translateY(0);
}

.wa-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.wa-modal-close:hover {
  background: var(--gray-light);
  color: var(--text-dark);
}

.wa-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.wa-modal-desc {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.5;
}

.wa-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-admin-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-wa);
  color: white;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.wa-admin-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.wa-admin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-admin-icon svg {
  width: 20px;
  height: 20px;
}

.address-icon {
  background: #fff1ef;
}

.address-icon svg {
  stroke: var(--red);
}

.contact-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
}

.contact-icon-wrap.wa-icon {
  background: #e8f9ef;
}

.contact-icon-wrap.wa-icon svg {
  stroke: var(--green-wa);
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.contact-right {
  background: var(--navy);
  border-radius: 24px;
  padding: 40px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.cta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-light);
}

.contact-right h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  line-height: 1.25;
  margin-bottom: 14px;
}

.contact-right p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: white;
  color: var(--navy);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 12px;
}

.cta-btn-wa:hover {
  background: #f0f4f8;
  transform: translateY(-2px);
}

.cta-btn-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s;
}

.cta-btn-email:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* ========= FOOTER ========= */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 28px 48px;
  font-size: 13px;
  font-weight: 400;
}

footer strong {
  color: white;
}

/* ========= MOBILE NAV ========= */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 84px;
  left: 12px;
  right: 12px;
  z-index: 998;
  background: rgba(255, 255, 255, .94);
  padding: 20px 24px 24px;
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(15, 32, 68, 0.16);
  gap: 8px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
}

.mobile-menu .btn-wa {
  margin-top: 12px;
  justify-content: center;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 24px);
    top: 12px;
    padding: 0 9px 0 12px;
  }

  .nav-links,
  .btn-wa {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 110px 20px 60px;
  }

  .hero-floating {
    display: none;
  }

  .stats {
    padding: 40px 20px;
  }

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

  .products {
    padding: 60px 20px;
  }

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

  .clients {
    padding: 60px 20px;
  }

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

  .contact {
    padding: 60px 20px;
  }

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

  .trust-badges {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

/* ========= ANIMATIONS ========= */
.fade-up {
  will-change: transform, opacity;
}

/* ========= EDITORIAL EXPERIENCE ========= */
.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.navbar {
  background: linear-gradient(115deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .56));
  border-color: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 50px rgba(15, 32, 68, .12), inset 0 1px 0 #fff, inset 0 -1px 0 rgba(15, 32, 68, .04);
}

.navbar::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(105deg, rgba(255, 255, 255, .48), transparent 38%);
  opacity: .75;
}

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

.navbar.scrolled {
  background: linear-gradient(115deg, rgba(255, 255, 255, .91), rgba(246, 249, 253, .76));
}

.nav-links {
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow: inset 0 1px 2px rgba(15, 32, 68, .04);
}

.nav-links a {
  transition: color .25s, background .25s, box-shadow .25s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 5px 16px rgba(15, 32, 68, .08);
}

.stats {
  position: relative;
  padding: 108px 48px;
  overflow: hidden;
  background: #091a38;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 10%, rgba(231, 76, 60, .13), transparent 28%), linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
}

.stats-intro {
  position: relative;
  max-width: 1240px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  gap: 32px;
  color: white;
}

.stats-intro span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .5);
}

.stats-intro p {
  max-width: 700px;
  font-size: clamp(1.45rem, 2.6vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.12;
}

.stats-grid {
  position: relative;
  max-width: 1240px;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 14px;
}

.stat-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .11);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), background .35s, border-color .35s, box-shadow .35s;
}

.stat-card::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -100px;
  bottom: -110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .105);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .2);
}

.stat-card:hover::after {
  transform: scale(1.8);
}

.stat-main {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 394px;
  justify-content: space-between;
  background: #f2f5f8;
  color: var(--navy);
}

.stat-main:hover {
  background: white;
}

.stat-client {
  grid-column: span 5;
  overflow: hidden;
}

/* --- Client logo marquee --- */
.client-logo-strip {
  margin-top: auto;
  margin-left: -28px;
  margin-right: -28px;
  margin-bottom: -28px;
  overflow: hidden;
  padding: 12px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.client-logo-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: logo-scroll 28s linear infinite;
}

.client-logo-track:hover {
  animation-play-state: paused;
}

.client-logo-item {
  flex-shrink: 0;
  height: 28px;
  display: grid;
  place-items: center;
}

.client-logo-item img {
  height: 100%;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.4);
  transition: opacity .3s, filter .3s;
}

.client-logo-item:hover img {
  filter: grayscale(0) opacity(0.9);
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

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

.stat-response {
  grid-column: span 5;
}

.stat-shipping {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 394px;
  background: var(--red);
}

.stat-shipping:hover {
  background: #d04434;
}

.stat-service {
  grid-column: span 5;
}

.stat-index {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .44);
}

.stat-main .stat-index {
  color: var(--text-light);
}

.stat-card .stat-number {
  position: relative;
  z-index: 1;
  margin: auto 0 20px;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  letter-spacing: -.07em;
}

.stat-main .stat-number {
  color: var(--navy);
  font-size: clamp(6rem, 13vw, 11rem);
  font-weight: 700;
  line-height: .78;
}

.stat-copy-wrap {
  position: relative;
  z-index: 1;
}

.stat-copy-wrap h3 {
  color: white;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  letter-spacing: -.045em;
  line-height: 1.05;
  margin-bottom: 10px;
}

.stat-main .stat-copy-wrap h3 {
  color: var(--navy);
  max-width: 520px;
}

.stat-copy-wrap p {
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
  line-height: 1.55;
  max-width: 390px;
}

.stat-main .stat-copy-wrap p {
  color: var(--text-mid);
}

.shipping-hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: auto 0 18px;
}

.shipping-headline {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.shipping-headline h3 {
  color: var(--navy) !important;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem) !important;
  letter-spacing: -.055em;
  line-height: 1;
  margin: 0;
}

.shipping-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.shipping-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .2);
}

.shipping-desc {
  position: relative;
  z-index: 1;
  color: var(--text-mid) !important;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 18px;
}

.shipping-cities {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid #dfe4eb;
}

.shipping-cities span {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid #dce3ea;
  background: rgba(255, 255, 255, .75);
  color: #4a5568;
  font-size: 10px;
  font-weight: 650;
  transition: background .2s, border-color .2s, color .2s;
}

.shipping-cities span:last-child {
  color: var(--navy);
  font-weight: 750;
  background: #eef1f6;
  border-color: #c8d1dc;
}

.stat-shipping:hover .shipping-cities span {
  border-color: #c5ccd6;
}

.service-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.service-points div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.service-points strong,
.service-points span {
  display: block;
}

.service-points strong {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.service-points span {
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
}

.product-card {
  position: relative;
  border: 1px solid rgba(15, 32, 68, .07);
  transition: transform .5s cubic-bezier(.16, 1, .3, 1), box-shadow .5s cubic-bezier(.16, 1, .3, 1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 65px rgba(15, 32, 68, .16);
}

.product-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(15, 32, 68, .12), transparent 45%);
  opacity: 0;
  transition: opacity .45s;
}

.product-card:hover .product-img-wrap::after {
  opacity: 1;
}

.product-img-wrap img {
  transform: scale(1.01);
  transition: transform .75s cubic-bezier(.16, 1, .3, 1), filter .5s;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.13);
  filter: contrast(1.03) saturate(1.05);
}

.btn-order {
  background: var(--navy);
  overflow: hidden;
  transition: background .3s, transform .3s;
}

.btn-order:hover {
  background: var(--red);
  transform: none;
}

.client-card {
  border: 1px solid transparent;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s, border-color .4s;
}

.client-card:hover {
  transform: translateY(-7px) scale(1.02);
  border-color: rgba(192, 57, 43, .18);
  box-shadow: 0 22px 45px rgba(15, 32, 68, .12);
}

.contact {
  position: relative;
  padding: 120px 48px;
  background: #f4f6f8;
}

.contact-inner {
  max-width: 1240px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 72px;
  align-items: end;
  padding: 58px;
  border-radius: 34px;
  background: white;
  box-shadow: 0 30px 90px rgba(15, 32, 68, .09);
}

.contact-kicker {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid #dce2e9;
  color: var(--text-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-message h2 {
  font-size: clamp(2.7rem, 5vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.065em;
  color: var(--navy);
}

.contact-message h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--red);
}

.contact-message p {
  max-width: 650px;
  margin-top: 28px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
}

.contact-wa {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 14px;
  border-radius: 24px;
  color: white;
  background: var(--navy);
  text-decoration: none;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s, background .3s;
}

.contact-wa:hover {
  transform: translateY(-7px) rotate(-1deg);
  background: #163468;
  box-shadow: 0 22px 42px rgba(15, 32, 68, .24);
}

.contact-wa-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--green-wa);
}

.contact-wa span:nth-child(2) {
  font-weight: 700;
  line-height: 1.2;
}

.contact-wa small {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-arrow {
  margin-left: auto;
  padding-right: 8px;
  font-size: 22px;
  transition: transform .25s;
}

.contact-wa:hover .contact-arrow {
  transform: translate(4px, -4px);
}

footer {
  padding: 64px 48px 24px;
  text-align: left;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.footer-brand span {
  font-size: 13px;
}

.footer-address,
.footer-contact {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.7;
}

.footer-address small,
.footer-contact small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .35);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.footer-address address {
  font-style: normal;
}

.footer-contact a {
  display: block;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.footer-address:hover,
.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
}

.floating-wa {
  position: fixed;
  z-index: 997;
  right: 24px;
  bottom: 24px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 6px;
  border-radius: 999px;
  color: white;
  background: rgba(9, 26, 56, .9);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 16px 40px rgba(7, 24, 53, .28);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  text-decoration: none;
  overflow: hidden;
  max-width: 62px;
  transition: max-width .55s cubic-bezier(.16, 1, .3, 1), padding-left .55s cubic-bezier(.16, 1, .3, 1), transform .3s, background .3s;
}

.floating-wa:hover,
.floating-wa:focus-visible {
  max-width: 230px;
  padding-left: 20px;
  transform: translateY(-4px);
  background: #0b2148;
}

.floating-wa-label {
  white-space: nowrap;
  opacity: 0;
  transform: translateX(14px);
  font-size: 13px;
  font-weight: 700;
  transition: opacity .25s .08s, transform .4s .06s;
}

.floating-wa:hover .floating-wa-label,
.floating-wa:focus-visible .floating-wa-label {
  opacity: 1;
  transform: none;
}

.floating-wa-label small {
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.floating-wa-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-wa);
}

.floating-wa-icon svg {
  width: 23px;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .stat-main,
  .stat-client,
  .stat-response,
  .stat-shipping,
  .stat-service,
  .stat-price {
    grid-column: auto;
    grid-row: auto;
    min-height: auto !important;
    justify-content: flex-start;
    gap: 16px;
  }

  .stat-main,
  .stat-shipping {
    min-height: auto !important;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    padding: 42px;
  }
}

@media (max-width: 768px) {
  .stats {
    padding: 80px 20px;
  }

  .stats-intro {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .stat-card,
  .stat-main,
  .stat-client,
  .stat-response,
  .stat-shipping,
  .stat-service,
  .stat-price {
    min-height: auto !important;
    height: auto !important;
    justify-content: flex-start !important;
    gap: 16px;
    flex: none;
    width: 100%;
  }

  /* Hilangkan margin auto yang mendorong konten ke bawah */
  .stat-card .stat-number,
  .stat-main .stat-number {
    margin: 0 0 8px !important;
  }

  /* Hilangkan margin auto pada shipping-hero */
  .shipping-hero {
    margin: 0 !important;
  }

  /* Stat-service jangan space-between di mobile */
  .stat-service {
    justify-content: flex-start !important;
  }

  /* Stat-shipping tidak pakai space-between di mobile */
  .stat-shipping {
    justify-content: flex-start !important;
  }

  .contact {
    padding: 80px 20px;
  }

  .contact-inner {
    padding: 30px 22px;
    border-radius: 26px;
    gap: 42px;
  }

  .contact-kicker span:last-child {
    display: none;
  }

  footer {
    padding: 54px 24px 24px;
  }

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

  .floating-wa {
    right: 14px;
    bottom: 14px;
  }
}

/* ========= REFINED DIRECTION / OUTCROWD-INSPIRED ========= */
.navbar {
  width: min(1180px, calc(100% - 40px));
  background: linear-gradient(115deg, rgba(255, 255, 255, .43), rgba(235, 240, 247, .25));
  border: 1px solid rgba(255, 255, 255, .68);
  box-shadow: 0 14px 45px rgba(15, 32, 68, .09), inset 0 1px rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  backdrop-filter: blur(26px) saturate(180%);
}

.navbar.scrolled {
  background: linear-gradient(115deg, rgba(255, 255, 255, .66), rgba(238, 242, 248, .43));
}

.nav-links {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .5);
}

.hero {
  min-height: 100svh;
  padding: 118px 32px 68px;
  display: block;
  background: #f6f4f8;
}

.hero::before {
  opacity: .28;
  background-size: 64px 64px;
}

.hero-glow {
  width: 760px;
  height: 760px;
  left: 15%;
  top: -25%;
  transform: none;
  background: rgba(183, 111, 68, .14);
  filter: blur(130px);
}

.hero-content {
  width: min(1240px, 100%);
  max-width: none;
  margin: 0 auto;
  padding: 32px 0 62px;
  min-height: calc(100svh - 186px);
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 72px;
  align-items: center;
  text-align: left;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-badge {
  margin-bottom: 30px;
  padding: 8px 14px;
  font-size: 10px;
  background: rgba(255, 255, 255, .48);
  border-color: rgba(15, 32, 68, .12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 6.3vw, 6.8rem);
  line-height: .92;
  letter-spacing: -.075em;
}

.hero h1 em {
  display: inline-block;
  margin-top: 10px;
  color: var(--red);
  font-size: .78em;
  letter-spacing: -.06em;
}

.hero p {
  max-width: 570px;
  margin: 0 0 34px;
  font-size: 16px;
  line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 16px;
}

.btn-primary span,
.btn-secondary span {
  margin-left: 8px;
  transition: transform .3s;
}

.btn-primary:hover span {
  transform: translate(4px, -4px);
}

.btn-secondary:hover span {
  transform: translateY(4px);
}

.hero-trust {
  display: flex;
  gap: 22px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 32, 68, .12);
}

.hero-trust span {
  color: var(--text-light);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-trust strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.hero-stage {
  position: relative;
  height: min(640px, 68svh);
  min-height: 520px;
  padding: 12px;
  border-radius: 40px;
  background: #0a1731;
  box-shadow: 0 42px 90px rgba(15, 32, 68, .22);
  transform-style: preserve-3d;
  perspective: 900px;
}

.hero-stage::before {
  content: '';
  position: absolute;
  inset: 12px;
  z-index: 1;
  border-radius: 30px;
  background: linear-gradient(135deg, transparent, rgba(192, 57, 43, .14));
  pointer-events: none;
}

.hero-stage-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
}

.hero-stage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.16, 1, .3, 1), filter .6s;
}

.hero-stage:hover .hero-stage-image img {
  transform: scale(1.085);
  filter: saturate(1.08) contrast(1.04);
}

.glass-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  color: white;
  background: rgba(10, 23, 49, .48);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: inset 0 1px rgba(255, 255, 255, .16), 0 15px 35px rgba(0, 0, 0, .16);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
}

.stage-status {
  left: -38px;
  top: 14%;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
}

.glass-chip small,
.glass-chip strong {
  display: block;
}

.glass-chip small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .55);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.glass-chip strong {
  font-size: 13px;
}

.status-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #35dc7d;
  box-shadow: 0 0 0 7px rgba(53, 220, 125, .15);
  animation: status-pulse 2s infinite;
}

.stage-note {
  right: -28px;
  bottom: 12%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 22px;
  padding: 15px 18px;
  border-radius: 18px;
}

.stage-note small {
  grid-column: 1 / -1;
}

.stage-note span {
  font-size: 18px;
  transition: transform .3s;
}

.stage-note:hover span {
  transform: translate(4px, -4px);
}

.stage-orbit {
  position: absolute;
  inset: -24px;
  z-index: -1;
  border: 1px solid rgba(15, 32, 68, .09);
  border-radius: 54px;
}

.stage-orbit span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.stage-orbit span:nth-child(1) {
  left: -4px;
  top: 25%;
}

.stage-orbit span:nth-child(2) {
  right: 18%;
  top: -4px;
}

.stage-orbit span:nth-child(3) {
  right: -4px;
  bottom: 18%;
}

.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 13px 0;
  overflow: hidden;
  border-top: 1px solid rgba(15, 32, 68, .09);
  white-space: nowrap;
}

.hero-ticker div {
  width: max-content;
  color: rgba(15, 32, 68, .38);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  animation: ticker 24s linear infinite;
}

.hero-ticker span {
  margin: 0 28px;
  color: var(--red);
}

.stats {
  padding: 96px 48px;
}

.stats-intro {
  grid-template-columns: .7fr 1.3fr;
  margin-bottom: 36px;
}

.stats-intro p {
  font-size: clamp(1.5rem, 2.3vw, 2.45rem);
}

.stats-grid {
  display: flex;
  grid-template-columns: none;
  grid-auto-rows: auto;
  gap: 10px;
}

.stat-card,
.stat-main,
.stat-client,
.stat-response,
.stat-shipping,
.stat-service,
.stat-price {
  flex: 1 1 0;
  grid-column: auto;
  grid-row: auto;
  padding: 22px;
  border-radius: 22px;
  cursor: default;
}

.stat-card {
  justify-content: flex-end;
}

.stat-card:hover {
  flex-grow: 1.34;
  transform: translateY(-8px) rotate(.3deg);
}

.stat-main {
  background: rgba(255, 255, 255, .93);
}

.stat-card .stat-number,
.stat-main .stat-number {
  margin: auto 0 18px;
  font-size: clamp(2.6rem, 3.8vw, 4.2rem);
  line-height: .85;
}

.stat-copy-wrap h3,
.stat-main .stat-copy-wrap h3 {
  font-size: 1.25rem;
  line-height: 1.15;
}

.stat-copy-wrap p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.stat-shipping {
  background: #fff;
  justify-content: space-between;
}

.stat-shipping .stat-copy-wrap p {
  display: block;
}

.shipping-hero {
  margin: 0;
  gap: 12px;
}

.shipping-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shipping-headline h3 {
  font-size: clamp(1.9rem, 2.4vw, 2.6rem) !important;
  line-height: 1.05;
}

.stat-service {
  justify-content: space-between;
}

.service-points {
  grid-template-columns: 1fr;
}

.guarantee-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guarantee-headline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guarantee-headline h3 {
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.05;
  color: var(--navy);
  margin: 0;
}

.guarantee-desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-mid);
}

.guarantee-extra {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 7px;
  border-top: 1px solid #dfe4eb;
}

.guarantee-extra svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--text-light);
  stroke-width: 1.7;
}

.guarantee-extra span {
  font-size: 12px;
  color: var(--text-light);
}

.guarantee-extra strong {
  color: var(--navy);
  font-weight: 700;
}

/* Price card (card 6) */
.stat-price {
  justify-content: flex-start;
  gap: 32px;
}

@media (max-width: 1024px) {
  .stat-price {
    justify-content: flex-start;
    gap: 16px;
  }
}

.price-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-headline h3 {
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.05;
  color: var(--navy);
  margin: 0;
}

.price-desc {
  font-size: 13px;
  color: var(--text-mid);
}

.products {
  padding-top: 112px;
}

.products-header {
  max-width: 850px;
}

.products-header .section-title {
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  letter-spacing: -.065em;
}

.products-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.product-img-wrap {
  border-radius: 24px;
  aspect-ratio: 1 / 1.02;
  box-shadow: 0 15px 45px rgba(15, 32, 68, .09);
}

.flip-inner {
  display: contents; 
}

.flip-front {
  display: contents;
}

.flip-back {
  display: none;
}

.product-info {
  margin: -5px 12px 0;
  padding: 21px 4px 10px;
  background: transparent;
}

.product-name {
  min-height: 44px;
  font-size: 16px;
}

.product-card:hover {
  box-shadow: none;
  transform: translateY(-8px);
}

.product-card:hover .product-img-wrap {
  box-shadow: 0 30px 70px rgba(15, 32, 68, .18);
}

.product-img-wrap img {
  transform: scale(1.005);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.16) rotate(.35deg);
}

.btn-order {
  width: auto;
  justify-content: flex-start;
  padding: 0;
  border-radius: 0;
  color: var(--navy);
  background: transparent;
}

.btn-order::after {
  content: '↗';
  margin-left: auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--navy);
  transition: transform .3s, background .3s;
}

.btn-order:hover {
  color: var(--red);
  background: transparent;
}

.btn-order:hover::after {
  transform: rotate(45deg);
  background: var(--red);
}

.clients {
  padding: 112px 0;
  overflow: hidden;
  background: #f6f4f8;
}

.clients-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 55px;
  padding: 0 24px;
}

.clients-header .section-tag {
  justify-content: center;
}

.clients-header .section-sub {
  margin: 0 auto;
}

.clients-header .section-title {
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -.06em;
}

.client-marquee {
  position: relative;
  display: grid;
  gap: 12px;
  transform: rotate(-1.2deg) scale(1.02);
}

.client-marquee::before,
.client-marquee::after {
  content: '';
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
}

.client-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f6f4f8, transparent);
}

.client-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #f6f4f8, transparent);
}

.client-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: client-marquee 34s linear infinite;
}

.client-track.reverse {
  animation-direction: reverse;
  animation-duration: 39s;
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}

.client-card {
  position: relative;
  width: 230px;
  min-height: 130px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 20px 16px;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(15, 32, 68, .08);
  box-shadow: none;
  text-align: left;
  overflow: hidden;
  gap: 14px;
}

.client-card::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  right: -55px;
  top: -55px;
  border-radius: 50%;
  background: var(--red);
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

/* Logo container */
.client-card-logo {
  position: relative;
  z-index: 1;
  height: 36px;
  display: flex;
  align-items: center;
}

.client-card-logo img {
  height: 100%;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .55;
  transition: filter .35s, opacity .35s, transform .35s;
  transform: scale(1.35);
  transform-origin: left center;
}

.client-card-logo.logo-lg {
  height: 80px;
}

.client-card-logo.logo-lg img {
  height: 80px;
  max-width: 185px;
}


.client-card-logo img[src*="logwin"] {
  transform: scale(1) !important;
  transform-origin: left center;
}


.client-card-logo img[src*="mayora"] {
  transform: translateX(-50%) scale(1.35) !important;
  transform-origin: left center;
  object-position: left center;
}

.client-card-info {
  position: relative;
  z-index: 1;
}

.client-card:hover {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-4px) rotate(1.2deg);
}

.client-card:hover::before {
  transform: scale(3.7);
}

.client-card:hover .client-card-logo img {
  filter: brightness(0) invert(1);
  opacity: .85;
}

.client-card:hover .client-name,
.client-card:hover .client-industry {
  color: white;
}

.client-card:hover .client-industry {
  color: rgba(255, 255, 255, .6);
}

.trust-badges {
  margin-top: 70px;
  padding: 0 24px;
}

.contact {
  min-height: 760px;
  padding: 110px 48px;
  overflow: hidden;
  color: white;
  background: #080f21;
}

.contact::before {
  content: 'LET\2019S TALK';
  position: absolute;
  left: 50%;
  bottom: -7%;
  transform: translateX(-50%);
  white-space: nowrap;
  color: rgba(255, 255, 255, .025);
  font-size: 20vw;
  font-weight: 900;
  letter-spacing: -.08em;
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  min-height: 540px;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-kicker {
  color: rgba(255, 255, 255, .48);
  border-color: rgba(255, 255, 255, .14);
}

.contact-message h2 {
  color: white;
  font-size: clamp(3.7rem, 7.2vw, 7.5rem);
}

.contact-message h2 em {
  color: #d66555;
}

.contact-message p {
  max-width: 560px;
  color: rgba(255, 255, 255, .55);
}

.contact-action {
  align-self: end;
}

.contact-wa {
  width: 180px;
  height: 180px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  border-radius: 50%;
  color: var(--navy);
  background: #f0e7dc;
  transform: rotate(-8deg);
}

.contact-wa:hover {
  transform: rotate(0deg) scale(1.07);
  color: white;
  background: var(--red);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
}

.contact-wa strong {
  font-size: 19px;
  line-height: 1.05;
}

.contact-wa small {
  margin: 0;
  color: currentColor;
  opacity: .6;
}

.contact-wa .contact-arrow {
  align-self: flex-end;
  margin: 0;
  padding: 0;
  font-size: 25px;
}

.contact-orbit {
  position: absolute;
  width: 650px;
  height: 650px;
  right: -170px;
  top: 15%;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  animation: orbit-spin 22s linear infinite;
}

.contact-orbit::before,
.contact-orbit::after {
  content: '';
  position: absolute;
  inset: 12%;
  border: inherit;
  border-radius: inherit;
}

.contact-orbit::after {
  inset: 27%;
}

.contact-orbit span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.contact-orbit span:nth-child(1) {
  top: 9%;
  left: 22%;
}

.contact-orbit span:nth-child(2) {
  right: -4px;
  top: 50%;
}

.contact-orbit span:nth-child(3) {
  left: 30%;
  bottom: 5%;
}

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

@keyframes client-marquee {
  to {
    transform: translateX(calc(-50% - 6px));
  }
}

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

@keyframes status-pulse {
  50% {
    box-shadow: 0 0 0 11px rgba(53, 220, 125, 0);
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 7vw, 5rem);
  }

  .hero-stage {
    min-height: 470px;
  }

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

  .stat-card,
  .stat-main,
  .stat-client,
  .stat-response,
  .stat-shipping,
  .stat-service {
    min-height: 240px;
  }

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


  .product-img-wrap {
    overflow: visible;
    perspective: 900px;
    cursor: pointer;
    position: relative;
  }

  .product-img-wrap::after {
    content: 'Ketuk untuk spek \21BB';
    position: absolute;
    inset: auto;
    bottom: 12px;
    right: 14px;
    z-index: 4;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .04em;
    color: white;
    background: rgba(8, 25, 54, .72);
    padding: 4px 9px;
    border-radius: 20px;
    backdrop-filter: none;
    pointer-events: none;
    opacity: 1;
    transition: opacity .3s;
  }

  .product-img-wrap.is-flipped::after {
    opacity: 0;
  }

  .product-img-wrap .flip-inner {
    display: flex;
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform .55s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: inherit;
  }

  .product-img-wrap.is-flipped .flip-inner {
    transform: rotateY(180deg);
  }

  .product-img-wrap .flip-front {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: inherit;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-img-wrap .flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: rotateY(180deg);
    border-radius: inherit;
    background: var(--navy, #081936);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 22px;
    gap: 16px;
  }

  .flip-back-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    opacity: .5;
    text-transform: uppercase;
  }

  .flip-back-model {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.2;
  }

  .flip-back-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 14px;
  }

  .flip-back-spec-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .flip-back-spec-row dt {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .45;
  }

  .flip-back-spec-row dd {
    font-size: 13px;
    font-weight: 600;
    opacity: .92;
    margin: 0;
  }
}

@media (min-width: 1700px) {

  .shipping-headline h3 {
    font-size: 2.3rem !important;
    line-height: 1.05;
  }

  .price-headline h3 {
    font-size: 1.8rem !important;
  }
  .client-card {
    width: 300px;
    min-height: 170px;
    padding: 24px 26px 22px;
    border-radius: 22px;
    gap: 18px;
  }

  .client-card-logo {
    height: 46px;
  }

  .client-card-logo img {
    max-width: 140px;
  }

  .client-card-logo.logo-lg {
    height: 100px;
  }

  .client-card-logo.logo-lg img {
    height: 100px;
    max-width: 230px;
  }

  .client-name {
    font-size: 15px;
    font-weight: 700;
  }

  .client-industry {
    font-size: 13px;
  }

  .client-track {
    gap: 16px;
  }

  .client-marquee {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 24px);
  }

  .hero {
    padding: 100px 18px 60px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 26px;
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .hero-trust {
    gap: 12px;
    justify-content: space-between;
  }

  .hero-stage {
    width: 100%;
    height: 470px;
    min-height: 0;
    border-radius: 30px;
  }

  .stage-status {
    left: 12px;
  }

  .stage-note {
    right: 12px;
  }

  .hero-ticker {
    position: relative;
    margin: 30px -18px -60px;
  }

  .stats {
    padding: 78px 18px;
  }

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

  .stat-card,
  .stat-main,
  .stat-client,
  .stat-response,
  .stat-shipping,
  .stat-service {
    min-height: 220px;
  }

  .products {
    padding: 80px 18px;
  }

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

  .product-img-wrap {
    aspect-ratio: 1.12 / 1;
  }

  .clients {
    padding: 80px 0;
  }

  .client-card-logo img[src*="mayora"] {
    transform: translateX(0%);
    object-position: left center;
  }

  .client-card {
    width: auto;
    min-height: 0;
    padding: 0 20px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    gap: 0;
    justify-content: center;
    align-items: center;
  }

  .client-card:hover {
    background: transparent;
    border-color: transparent;
    color: inherit;
    transform: none;
  }

  .client-card:hover::before {
    transform: none;
  }

  .client-card:hover .client-card-logo img {
    filter: grayscale(1);
    opacity: .55;
  }


  .client-card::before {
    display: none;
  }

  .client-card-info {
    display: none;
  }

  .client-card-logo {
    height: 34px;
  }

  .client-card-logo img {
    max-width: 100px;
  }

  .client-card-logo.logo-lg {
    height: 48px;
  }

  .client-card-logo.logo-lg img {
    height: 48px;
    max-width: 130px;
  }

  .client-track {
    gap: 0;
  }

  .client-marquee {
    gap: 16px;
  }

  .contact {
    min-height: 680px;
    padding: 80px 22px;
  }

  .contact-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 520px;
    gap: 40px;
  }

  .contact-action {
    margin-left: auto;
  }

  .contact-wa {
    width: 150px;
    height: 150px;
  }
}

/* ========= REQUESTED LIGHT REFINEMENT ========= */
.hero {
  width: calc(100% - 16px);
  min-height: 1000px;
  margin: 8px;
  padding: 122px 32px 0;
  border: 7px solid #0b1427;
  border-radius: 38px;
  background: #fff;
  overflow: hidden;
}

.hero::before {
  opacity: .18;
  mask-image: linear-gradient(to bottom, black, transparent 68%);
}

.hero-glow {
  width: 720px;
  height: 430px;
  left: 50%;
  top: 15%;
  transform: translateX(-50%);
  background: rgba(90, 150, 190, .09);
  filter: blur(100px);
}

.hero-content {
  display: block;
  width: min(1220px, 100%);
  min-height: 830px;
  padding: 28px 0 0;
  text-align: center;
}

.hero-copy {
  position: static;
  max-width: 930px;
  margin: 0 auto;
}

.hero-badge {
  margin: 0 auto 20px;
}

.hero h1 {
  max-width: none;
  margin: 0 auto 20px;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.065em;
}

.hero h1 em {
  margin-top: 10px;
  font-family: inherit;
  font-size: .78em;
  font-style: normal;
  font-weight: 600;
  color: #a3a9b3;
  letter-spacing: -.055em;
}

.hero p {
  max-width: 650px;
  margin: 0 auto 22px;
  font-size: 15px;
  line-height: 1.6;
}

.hero-buttons {
  justify-content: center;
}

.hero-trust {
  display: none;
}

.hero-stage {
  width: min(720px, 68vw);
  height: 500px;
  min-height: 0;
  margin: 54px auto -44px;
  padding: 10px;
  border-radius: 58px 58px 0 0;
  background: #0b1427;
  box-shadow: 0 35px 85px rgba(15, 32, 68, .18);
}

.hero-stage::before {
  inset: 10px;
  border-radius: 48px 48px 0 0;
  background: linear-gradient(to top, rgba(255, 255, 255, .05), transparent);
}

.hero-stage-image {
  border-radius: 48px 48px 0 0;
}

.hero-stage-image img {
  object-position: center 55%;
}

.hero-stage:hover .hero-stage-image img {
  transform: scale(1.11) translateY(-8px);
}

.stage-status {
  left: -155px;
  top: 38%;
  color: var(--navy);
  background: rgba(255, 255, 255, .78);
  border-color: rgba(255, 255, 255, .9);
}

.stage-note {
  right: -165px;
  bottom: 25%;
  color: var(--navy);
  background: rgba(255, 255, 255, .78);
  border-color: rgba(255, 255, 255, .9);
}

.glass-chip small {
  color: var(--text-light);
}

.stage-orbit {
  inset: -20px;
  border-color: rgba(15, 32, 68, .1);
  border-radius: 70px 70px 0 0;
}

.hero-ticker {
  background: white;
}

.stats {
  padding: 104px 48px;
  background: #fff;
}

.stats::before {
  display: none;
}

.stats-intro {
  color: var(--navy);
  margin-bottom: 42px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e6e9ee;
}

.stats-intro span {
  color: var(--text-light);
}

.stats-intro p {
  color: var(--navy);
}

.stats-grid {
  gap: 12px;
}

.stat-card,
.stat-main,
.stat-client,
.stat-response,
.stat-shipping,
.stat-service {
  min-height: 285px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #dfe4eb;
  box-shadow: 0 10px 30px rgba(15, 32, 68, .045);
}

.stat-card::before {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: #d8dde5;
  transform: scaleX(.22);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), background .3s;
}

.stat-card::after {
  background: rgba(15, 32, 68, .035);
}

.stat-card:hover {
  background: #fff;
  border-color: #c5ccd6;
  box-shadow: 0 24px 55px rgba(15, 32, 68, .1);
}

.stat-card:hover::before {
  transform: scaleX(1);
  background: var(--red);
}

.stat-index,
.stat-main .stat-index {
  color: #8993a3;
}

.stat-card .stat-number,
.stat-main .stat-number {
  color: var(--navy);
}

.stat-copy-wrap h3,
.stat-main .stat-copy-wrap h3 {
  color: var(--navy);
}

.stat-copy-wrap p,
.stat-main .stat-copy-wrap p {
  color: var(--text-mid);
}

.stat-shipping {
  background: #fff;
  justify-content: space-between;
}

.stat-shipping:hover {
  background: #fff;
}

.service-points div {
  border-color: #dfe4eb;
}

.service-points strong {
  color: var(--navy);
}

.service-points span {
  color: var(--text-light);
}

.product-card {
  overflow: visible;
}

.product-card:hover {
  z-index: 10;
}

.product-img-wrap {
  overflow: visible;
  transition: box-shadow .45s cubic-bezier(.16, 1, .3, 1);
}

.product-img-wrap img {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  box-shadow: 0 0 0 rgba(15, 32, 68, 0);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.105) translateY(-9px);
  box-shadow: 0 30px 65px rgba(15, 32, 68, .2);
}

.product-badges {
  z-index: 5;
}

.product-img-wrap::after {
  z-index: 3;
  border-radius: 24px;
}

.contact {
  min-height: 650px;
  padding: 110px 48px;
  color: var(--navy);
  background: #fff;
  border-top: 1px solid #e6e9ee;
}

.contact::before {
  display: none;
}

.contact-inner {
  min-height: 430px;
  grid-template-columns: 1fr auto;
}

.contact-kicker {
  color: var(--text-light);
  border-color: #dfe4ea;
}

.contact-message h2 {
  color: var(--navy);
  font-size: clamp(3.4rem, 6.5vw, 6.7rem);
}

.contact-message h2 em {
  color: var(--red);
}

.contact-message p {
  color: var(--text-mid);
}

.contact-wa {
  color: white;
  background: var(--navy);
}

.contact-wa:hover {
  color: white;
  background: var(--red);
  box-shadow: 0 28px 65px rgba(15, 32, 68, .18);
}

.contact-orbit {
  border-color: rgba(15, 32, 68, .075);
}

.contact-orbit span {
  background: var(--red);
}

footer {
  color: var(--text-mid);
  background: #f4f6f8;
  border-top: 1px solid #dfe4ea;
}

.footer-brand strong {
  color: var(--navy);
}

.footer-address,
.footer-contact {
  color: var(--text-mid);
}

.footer-address small,
.footer-contact small {
  color: var(--text-light);
}

.footer-contact a {
  color: var(--text-mid);
}

.footer-address:hover,
.footer-contact a:hover {
  color: var(--red);
}

.footer-bottom {
  color: var(--text-light);
  border-color: #d9dee6;
}

.footer-bottom a {
  color: var(--navy);
}

@media (max-width: 1024px) {
  .hero {
    min-height: 950px;
  }

  .hero-stage {
    width: min(680px, 76vw);
  }

  .stage-status {
    left: -80px;
  }

  .stage-note {
    right: -80px;
  }

  .hero-trust {
    display: none;
  }

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

@media (max-width: 768px) {
  .hero {
    width: calc(100% - 8px);
    min-height: 980px;
    margin: 4px;
    padding: 96px 14px 0;
    border-width: 4px;
    border-radius: 28px;
  }

  .hero-content {
    min-height: 850px;
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .hero h1 em {
    font-size: .72em;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-stage {
    width: 94%;
    height: 430px;
    margin-top: 58px;
    border-radius: 38px 38px 0 0;
  }

  .hero-stage-image,
  .hero-stage::before {
    border-radius: 30px 30px 0 0;
  }

  .stage-status {
    left: -8px;
    top: 14%;
  }

  .stage-note {
    right: -8px;
    bottom: 10%;
  }

  .stats {
    padding: 80px 18px;
  }

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

  .contact {
    min-height: 680px;
    padding: 82px 22px;
  }

  .contact-inner {
    min-height: 520px;
  }

  footer {
    padding-top: 56px;
  }
}

/* ========= REFERENCE-MATCHED HERO ========= */
.hero {
  position: relative;
  width: calc(100% - 16px);
  height: 1000px;
  min-height: 1000px;
  margin: 8px;
  padding: 0;
  border: 8px solid #0a1427;
  border-radius: 38px;
  background: #fff;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero-glow {
  display: block;
  width: 900px;
  height: 520px;
  left: 50%;
  top: 30%;
  transform: translateX(-50%);
  background: rgba(44, 188, 226, .1);
  filter: blur(105px);
}

.hero-content {
  position: relative;
  display: block;
  width: min(1240px, 100%);
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: 154px 24px 0;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 20;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  max-width: none;
  margin: 0;
  color: #090d16;
  font-size: clamp(3.35rem, 4.4vw, 4.8rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.055em;
}

.hero .hero-subheadline {
  max-width: none;
  margin: 12px 0 0;
  color: #a4a9b2;
  font-size: clamp(3rem, 4.1vw, 4.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.06em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 34px;
  padding: 0 28px;
  border-radius: 18px;
  color: white;
  background: #29b9df;
  box-shadow: 0 12px 28px rgba(41, 185, 223, .28);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s, background .3s;
}

.hero-cta:hover {
  transform: translateY(-4px);
  background: #13a9d1;
  box-shadow: 0 18px 38px rgba(41, 185, 223, .35);
}

.hero-stage {
  position: absolute;
  z-index: 4;
  left: calc(50% - 350px);
  bottom: -100px;
  width: 700px;
  height: 690px;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.hero-stage::before,
.stage-orbit {
  display: none;
}

.hero-stage-image {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 78px;
  width: 520px;
  height: 620px;
  transform: translateX(-50%);
  overflow: hidden;
  border: 10px solid #0b1427;
  border-radius: 66px 66px 0 0;
  background: white;
  box-shadow: 0 24px 65px rgba(15, 32, 68, .2);
}

.hero-stage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50px 50px 0 0;
  transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}

.hero-stage:hover .hero-stage-image img {
  transform: scale(1.075);
}

.hero-side-photo {
  position: absolute;
  z-index: 5;
  width: 225px;
  height: 138px;
  margin: 0;
  overflow: hidden;
  border: 3px solid white;
  border-radius: 17px;
  background: #edf1f5;
  box-shadow: 0 18px 35px rgba(15, 32, 68, .16);
}

.hero-side-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.16, 1, .3, 1);
}

.hero-side-photo:hover img {
  transform: scale(1.12);
}

.side-left {
  left: -245px;
  top: 145px;
}

.side-right {
  right: -245px;
  top: 62px;
}

.service-float {
  position: absolute;
  z-index: 8;
  min-width: 200px;
  padding: 14px 16px;
  color: #273242;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(15, 32, 68, .09);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(15, 32, 68, .13);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  text-align: left;
}

.service-float small,
.service-float strong {
  display: block;
}

.service-float small {
  margin-bottom: 5px;
  color: #8b94a2;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.service-float strong {
  font-size: 13px;
}

.service-install {
  left: -145px;
  bottom: 240px;
}

.service-technician {
  right: -55px;
  top: 195px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.service-care {
  left: 12px;
  top: 28px;
}

.service-rent {
  right: 38px;
  bottom: 138px;
}

.hero-ticker,
.hero-badge,
.hero-buttons,
.hero-trust {
  display: none;
}

@media (max-width: 1100px) {
  .hero-stage {
    left: calc(50% - 305px);
    width: 610px;
  }

  .side-left {
    left: -150px;
  }

  .side-right {
    right: -150px;
  }

  .service-install {
    left: -90px;
  }

  .service-technician {
    right: -50px;
  }
}

@media (max-width: 820px) {
  .hero {
    height: 940px;
    min-height: 940px;
  }

  .hero-content {
    padding-top: 150px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 7vw, 3.8rem);
  }

  .hero .hero-subheadline {
    font-size: clamp(2.3rem, 6.4vw, 3.3rem);
  }

  .hero-stage {
    left: calc(50% - 260px);
    bottom: -100px;
    width: 520px;
    height: 630px;
  }

  .hero-stage-image {
    top: 95px;
    width: 420px;
    height: 550px;
    border-radius: 52px 52px 0 0;
  }

  .hero-side-photo {
    width: 155px;
    height: 100px;
  }

  .side-left {
    left: -65px;
    top: 175px;
  }

  .side-right {
    right: -65px;
    top: 95px;
  }

  .service-float {
    min-width: 165px;
    padding: 11px 13px;
  }

  .service-install {
    left: -45px;
    bottom: 195px;
  }

  .service-technician {
    right: -25px;
    top: 220px;
  }

  .service-care {
    left: 50px;
    top: 45px;
  }

  .service-rent {
    right: 45px;
    bottom: 120px;
  }
}

@media (max-width: 560px) {
  .hero {
    width: calc(100% - 8px);
    height: 880px;
    min-height: 880px;
    margin: 4px;
    border-width: 4px;
    border-radius: 28px;
  }

  .hero-content {
    padding: 132px 12px 0;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero .hero-subheadline {
    margin-top: 8px;
    font-size: 2.15rem;
  }

  .hero-cta {
    min-height: 50px;
    margin-top: 25px;
    border-radius: 15px;
  }

  .hero-stage {
    left: calc(50% - 170px);
    bottom: -80px;
    width: 340px;
    height: 550px;
  }

  .hero-stage-image {
    top: 105px;
    width: 290px;
    height: 455px;
    border-width: 7px;
    border-radius: 42px 42px 0 0;
  }

  .hero-stage-image img {
    border-radius: 32px 32px 0 0;
  }

  .hero-side-photo {
    width: 105px;
    height: 72px;
    border-radius: 12px;
  }

  .side-left {
    left: -5px;
    top: 180px;
  }

  .side-right {
    right: -5px;
    top: 110px;
  }

  .service-float {
    min-width: 135px;
    padding: 9px 10px;
    border-radius: 12px;
  }

  .service-float strong {
    font-size: 10px;
  }

  .service-float small {
    font-size: 7px;
  }

  .service-install {
    left: -5px;
    bottom: 145px;
  }

  .service-technician {
    right: -7px;
    top: 225px;
  }

  .service-care {
    left: 22px;
    top: 55px;
  }

  .service-rent {
    right: 12px;
    bottom: 75px;
  }
}

/* ========= MINIMAL INTERACTION REFINEMENT ========= */
.hero {
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
}


.stat-card,
.stat-main,
.stat-client,
.stat-response,
.stat-shipping,
.stat-service {
  flex-grow: 1;
  isolation: isolate;
  transform-origin: 50% 70%;
  will-change: transform;
}

.stat-card:hover {
  flex-grow: 1;
  transform: none;
}

.stat-card::after {
  z-index: -1;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: inherit;
  background: radial-gradient(circle 190px at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(41, 185, 223, .13), transparent 68%);
  opacity: 0;
  transform: none;
  transition: opacity .35s ease;
}

.stat-card:hover::after {
  opacity: 1;
  transform: none;
}

.product-badges {
  display: none;
}

.product-img-wrap[data-spec-model] {
  cursor: none;
}

.spec-cursor {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  width: min(310px, calc(100vw - 28px));
  padding: 16px;
  color: white;
  background: rgba(8, 22, 48, .94);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(8, 22, 48, .24);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-999px, -999px, 0) scale(.92);
}

.spec-cursor.is-active {
  visibility: visible;
}

.spec-cursor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.spec-cursor-head small {
  color: #8fdff2;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.spec-cursor-head strong {
  font-size: 15px;
  letter-spacing: -.02em;
}

.spec-cursor dl {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
}

.spec-cursor dl div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  align-items: start;
}

.spec-cursor dt {
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.spec-cursor dd {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 11px;
  line-height: 1.35;
}

.contact {
  min-height: 0;
  padding: 104px 48px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
}

.contact-inner {
  width: min(1280px, 100%);
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}

.contact-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-kicker {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 54px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dfe5ec;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-message {
  grid-column: auto;
  align-self: auto;
}

.contact-message h2 {
  margin: 0;
  font-size: clamp(3.8rem, 6vw, 6.4rem);
  line-height: .88;
  letter-spacing: -.075em;
}

.contact-message h2 em {
  display: inline-block;
  margin-top: 10px;
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  color: #9ca5b2;
}

.contact-message p {
  max-width: 590px;
  margin: 34px 0 0;
  font-size: 17px;
  line-height: 1.7;
}

.rental-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.rental-includes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid #dce3ea;
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  color: #4f5b6e;
  font-size: 11px;
  font-weight: 650;
}

.rental-includes span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #29b9df;
  box-shadow: 0 0 0 4px rgba(41, 185, 223, .1);
}

.rental-visual {
  position: relative;
  min-width: 0;
  padding: 18px;
  border: 1px solid #dce3ea;
  border-radius: 38px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 35px 80px rgba(15, 32, 68, .1);
}

.rental-image {
  height: 350px;
  overflow: hidden;
  border-radius: 27px;
  background: #eef3f7;
}

.rental-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .85s cubic-bezier(.16, 1, .3, 1);
}

.rental-visual:hover .rental-image img {
  transform: scale(1.055);
}

.rental-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px 2px;
}

.rental-panel>div small,
.rental-panel>div strong {
  display: block;
}

.rental-panel>div small {
  margin-bottom: 5px;
  color: #8b95a4;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rental-panel>div strong {
  color: var(--navy);
  font-size: 15px;
}

.contact-wa {
  width: auto;
  height: auto;
  min-height: 66px;
  flex: 0 0 auto;
  flex-direction: row;
  justify-content: flex-start;
  gap: 11px;
  padding: 9px 11px;
  border-radius: 20px;
  color: white;
  background: var(--navy);
  transform: none;
}

.contact-wa:hover {
  color: white;
  background: #163468;
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(15, 32, 68, .23);
}

.contact-wa-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.contact-wa-icon svg {
  width: 22px;
  height: 22px;
}

.contact-wa>span:nth-child(2) {
  min-width: 112px;
}

.contact-wa>span:nth-child(2) small {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, .55);
  font-size: 8px;
}

.contact-wa>span:nth-child(2) strong {
  font-size: 12px;
  white-space: nowrap;
}

.contact-wa .contact-arrow {
  align-self: center;
  margin: 0 3px 0 0;
  padding: 0;
  font-size: 17px;
}

.contact-wa {
  color: var(--navy);
  background: #fff;
  border: 1px solid #dce3ea;
  box-shadow: 0 10px 26px rgba(15, 32, 68, .09);
}

.contact-wa:hover {
  color: var(--navy);
  background: #fff;
  border-color: #c8d1dc;
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(15, 32, 68, .14);
}

.contact-wa-icon {
  color: #0ba956;
  background: #e8fbf0;
}

.contact-wa>span:nth-child(2) small {
  color: #8a95a5;
}

.contact-wa .contact-arrow {
  color: var(--navy);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.contact-wa:hover .contact-arrow {
  transform: translate(3px, -3px);
}

@media (max-width: 900px) {
  .contact {
    padding: 84px 24px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .contact-kicker {
    margin-bottom: 38px;
  }

  .contact-message h2 {
    font-size: clamp(3.6rem, 11vw, 6rem);
  }

  .rental-visual {
    width: min(620px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .hero {
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .contact {
    padding: 72px 16px;
  }

  .contact-inner {
    min-height: 0;
    gap: 42px;
  }

  .contact-kicker {
    margin-bottom: 32px;
  }

  .contact-message h2 {
    font-size: 3.25rem;
  }

  .contact-message p {
    margin-top: 24px;
    font-size: 15px;
  }

  .rental-includes {
    margin-top: 26px;
  }

  .rental-visual {
    padding: 10px;
    border-radius: 28px;
  }

  .rental-image {
    height: 280px;
    border-radius: 20px;
  }

  .rental-panel {
    display: block;
    padding: 16px 2px 2px;
  }

  .rental-panel>div {
    margin-bottom: 14px;
  }

  .contact-wa {
    width: 100%;
  }

  .contact-wa .contact-arrow {
    margin-left: auto;
  }
}

@media (hover: none) {
  .product-img-wrap[data-spec-model] {
    cursor: auto;
  }

  .spec-cursor {
    display: none;
  }
}

/* ========= LATEST SECTION POLISH ========= */
.hero-stage {
  bottom: 0;
}

.hero-stage-image {
  top: 92px;
  width: 540px;
  height: 540px;
}

.hero-stage-image img {
  object-fit: cover;
  object-position: center;
}

.spec-cursor {
  color: #101827;
  background: rgba(255, 255, 255, .96);
  border-color: #dfe5ec;
  box-shadow: 0 22px 55px rgba(15, 32, 68, .16);
}

.spec-cursor-head {
  border-color: #e5e9ee;
}

.spec-cursor-head small {
  color: #168cae;
}

.spec-cursor-head strong {
  color: var(--navy);
}

.spec-cursor dt {
  color: #7c8796;
}

.spec-cursor dd {
  color: #202c3e;
  font-weight: 600;
}

.rental-visual {
  padding: 30px;
  border-radius: 34px;
  background: rgba(255, 255, 255, .88);
}

.rental-brief-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 26px;
  border-bottom: 1px solid #e1e6ec;
}

.rental-brief-head small,
.rental-brief-head h3 {
  display: block;
}

.rental-brief-head small {
  margin-bottom: 8px;
  color: #8a95a4;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.rental-brief-head h3 {
  max-width: 300px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 2.3vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.rental-brief-head>span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 8px 11px;
  border-radius: 999px;
  color: #556176;
  background: #f3f6f8;
  font-size: 9px;
  font-weight: 650;
}

.rental-brief-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #20d36f;
  box-shadow: 0 0 0 5px rgba(32, 211, 111, .1);
}

.rental-brief-list {
  display: grid;
  margin-top: 8px;
}

.rental-brief-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid #e7ebef;
  transition: padding .35s cubic-bezier(.16, 1, .3, 1), background .3s;
}

.rental-brief-item:hover {
  padding: 0 12px;
  background: #f8fafc;
}

.rental-brief-item>span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #dce3ea;
  border-radius: 11px;
  color: #7c8795;
  font-size: 9px;
  font-weight: 750;
}

.rental-brief-item small,
.rental-brief-item strong {
  display: block;
}

.rental-brief-item small {
  margin-bottom: 3px;
  color: #8994a3;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rental-brief-item strong {
  color: var(--navy);
  font-size: 13px;
}

.rental-panel {
  padding: 22px 0 0;
}

@media (max-width: 1100px) and (min-width: 821px) {
  .hero-stage {
    bottom: 0;
  }

  .hero-stage-image {
    top: 105px;
    width: 500px;
    height: 500px;
  }

}

@media (max-width: 820px) {
  .hero {
    height: 980px;
    min-height: 980px;
  }

  .hero-stage {
    bottom: 0;
  }

  .hero-stage-image {
    top: 105px;
    width: 420px;
    height: 500px;
  }
}

@media (max-width: 560px) {
  .hero {
    height: 940px;
    min-height: 940px;
  }

  .hero-stage {
    bottom: 0;
  }

  .hero-stage-image {
    top: 80px;
    width: 290px;
    height: 420px;
  }

  .rental-visual {
    padding: 22px;
  }

  .rental-brief-head {
    display: block;
    padding-bottom: 22px;
  }

  .rental-brief-head>span {
    margin-top: 18px;
  }

  .rental-brief-head h3 {
    font-size: 2rem;
  }

  .rental-brief-item {
    min-height: 76px;
  }

  .floating-wa.is-suppressed {
    opacity: 0;
    transform: translateY(18px) scale(.85);
    pointer-events: none;
  }
}

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

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

/* ========= 1700PX+ LARGE DISPLAY CUSTOMIZATION ========= */
@media (min-width: 1700px) {
  .hero-cta {
    margin-top: 14px;
    transform: translateY(-10px);
  }
}