/* =========================================================
   MO2 AUTO DETAILING — Modern Premium Theme
   ========================================================= */
:root {
  --bg: #080c13;
  --bg-2: #0d1322;
  --surface: #111827;
  --surface-2: #182136;
  --border: rgba(255, 255, 255, 0.1);
  --border-soft: rgba(255, 255, 255, 0.06);
  --text: #e8edf6;
  --muted: #94a3b8;
  --brand: #2563eb;
  --brand-2: #38bdf8;
  --grad: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
  --ok: #22c55e;
  --warn: #fbbf24;
  --radius: 20px;
  --radius-sm: 12px;
  --font-d: "Poppins", system-ui, sans-serif;
  --font-b: "Inter", system-ui, sans-serif;
  --shadow: 0 20px 55px rgba(2, 6, 18, 0.45);
  --shadow-sm: 0 8px 24px rgba(2, 6, 18, 0.3);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}
html,
body {
  overflow-x: clip;
}
@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-track {
  background: #0a0f18;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--brand), var(--brand-2));
  border-radius: 8px;
}

img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ---------- Utilities ---------- */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
  width: 100%;
}
.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  white-space: nowrap;
}
.pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-d);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s,
    background 0.25s,
    color 0.25s;
}
.btn--accent {
  background: var(--grad);
  color: #fff;
  box-shadow:
    0 10px 28px rgba(37, 99, 235, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(56, 189, 248, 0.42);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--brand-2);
  color: #fff;
}
.btn--lg {
  padding: 1rem 1.8rem;
  font-size: 1.02rem;
}
.btn--block {
  width: 100%;
}
.ico {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

/* ---------- Topbar ---------- */
.topbar {
  background: linear-gradient(
    90deg,
    rgba(6, 10, 16, 0.96),
    rgba(8, 12, 19, 0.96)
  );
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.52rem clamp(12px, 3vw, 28px);
  font-size: 0.8rem;
  color: var(--muted);
}
.topbar__area {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #cfe8ff;
  font-weight: 600;
  transition: color 0.2s;
}
.topbar__phone:hover {
  color: #fff;
}
@media (max-width: 640px) {
  .topbar__hours {
    display: none;
  }
  .topbar {
    justify-content: center;
  }
}

/* ---------- Sticky Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 11, 18, 0.92);
  border-bottom: 1px solid var(--border-soft);
  transition:
    box-shadow 0.3s,
    background 0.3s;
}
.header.is-scrolled {
  box-shadow: 0 12px 40px rgba(2, 6, 18, 0.5);
  background: rgba(6, 9, 15, 0.92);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  min-height: 62px;
  padding-block: 0.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex: none;
}
.brand__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: none;
  border-radius: 10px;
}
.brand__logo--sm {
  width: 34px;
  height: 34px;
}
.brand__name {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  white-space: nowrap;
  line-height: 1.08;
}
.brand__name b {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 1279px) {
  .brand__name {
    font-size: 1.14rem;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 20px);
}
.nav__link {
  position: relative;
  padding: 0.42rem 0.15rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #cdd7e6;
  transition: color 0.2s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.2px;
  border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav__link:hover {
  color: #fff;
}
.nav__link:hover::after {
  transform: scaleX(1);
}
.nav__link.is-active {
  color: #fff;
}
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  position: relative;
  z-index: 1101;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}
.nav__toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2.4px;
  border-radius: 2px;
  background: #fff;
  transition:
    transform 0.3s var(--ease),
    opacity 0.25s,
    top 0.25s;
}
.nav__toggle span:nth-child(1) {
  top: 12px;
}
.nav__toggle span:nth-child(2) {
  top: 21px;
}
.nav__toggle span:nth-child(3) {
  top: 30px;
}
.nav__head,
.nav__close,
.nav__tel {
  display: none;
}
@media (max-width: 1024px) {
  .nav__toggle span:nth-child(1) {
    top: 11px;
  }
  .nav__toggle span:nth-child(2) {
    top: 20px;
  }
  .nav__toggle span:nth-child(3) {
    top: 29px;
  }
}
body.nav-open .nav__toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
body.nav-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav__toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* mobile off-canvas panel */
@media (max-width: 1024px) {
  .nav__toggle {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    width: min(320px, 85vw);
    background: linear-gradient(180deg, #0b1120, #080c13);
    border-left: 1px solid var(--border);
    transform: translateX(102%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.38s var(--ease),
      opacity 0.3s;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 4.6rem 2.1rem 2.4rem;
    gap: 1.7rem;
    overflow-y: auto;
  }
  body.nav-open .nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    box-shadow: -24px 0 60px rgba(2, 6, 18, 0.6);
  }
  body.nav-open {
    overflow: hidden;
  }
  .nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    align-self: flex-start;
    width: 100%;
  }
  .nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .nav__head .brand__name {
    font-size: 1.06rem;
  }
  .nav__close {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    font-size: 1.7rem;
    line-height: 1;
    color: #e2e8f0;
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.05rem;
    width: 100%;
  }
  .nav__link {
    display: block;
    width: 100%;
    padding: 0.62rem 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 10px;
  }
  .nav__link:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  .nav__cta {
    width: 100%;
    justify-content: center;
  }
  .nav__tel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--muted);
  }
}
.nav__foot {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(60px, 8vw, 110px) clamp(44px, 6vw, 84px);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      1000px 520px at 82% 18%,
      rgba(37, 99, 235, 0.16),
      transparent 62%
    ),
    radial-gradient(
      800px 480px at 8% 90%,
      rgba(56, 189, 248, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #0b1020 0%, #0a0f18 100%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(
    900px 480px at 70% 30%,
    #000 40%,
    transparent 100%
  );
  mask-image: radial-gradient(
    900px 480px at 70% 30%,
    #000 40%,
    transparent 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  align-items: flex-start;
}
.hero__title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.2vw, 3.35rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
}
.hero__sub {
  font-size: clamp(0.98rem, 1.5vw, 1.13rem);
  color: var(--muted);
  max-width: 54ch;
}
.hero__cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.hero__trust strong {
  color: #fff;
}
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--warn);
  font-size: 0.85rem;
}

/* hero visual card */
.hero__visual {
  position: relative;
  z-index: 2;
}
.hero__card {
  background: linear-gradient(160deg, #141c30, #0d1424 55%, #0a0f18);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.hero__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: #cfe8ff;
  font-weight: 600;
}
.hero__card-label .pill__dot {
  width: 6px;
  height: 6px;
  animation: none;
  background: var(--brand-2);
}
.hero__card-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0b1120;
  background: var(--grad);
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
}
.hero__paint {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: linear-gradient(135deg, #1c3357 0%, #14233c 42%, #0a101a 100%);
}
.hero__paint-sheen {
  position: absolute;
  inset: -30% -10% -40% 45%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.08) 30%,
    transparent 55%
  );
  transform: skewX(-14deg);
}
.hero__paint::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    460px 220px at 82% 82%,
    rgba(56, 189, 248, 0.22),
    transparent 65%
  );
}
.hero__paint-badge {
  position: absolute;
  left: 14px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(8, 14, 24, 0.78);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.34rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #dbeafe;
  letter-spacing: 0.04em;
}
.ico--spark {
  width: 1.05em;
  height: 1.05em;
  color: var(--brand-2);
}
.hero__card-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 0.55rem 0.35rem;
}
.spec__ico {
  font-size: 1.15rem;
  line-height: 1;
}
.spec strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: #e2e8f0;
}
.spec span:last-child {
  font-size: 0.68rem;
  color: var(--muted);
}
.chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(10, 16, 26, 0.86);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #e8edf6;
  box-shadow: var(--shadow-sm);
}
.chip--1 {
  top: -16px;
  right: -6px;
  z-index: 5;
}
.chip--2 {
  bottom: 58px;
  left: -26px;
  z-index: 5;
}
.chip--3 {
  bottom: -14px;
  right: 28px;
  z-index: 5;
}

/* hero stats */
.hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 3vw, 36px);
  margin-top: clamp(28px, 4vw, 52px);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: center;
}
.stat__num {
  font-family: var(--font-d);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  font-size: 0.83rem;
  color: var(--muted);
}

/* ---------- Ticker ---------- */
.ticker {
  margin-block: clamp(16px, 2.5vw, 30px);
  overflow: hidden;
  border-block: 1px solid var(--border-soft);
  padding-block: 1.05rem;
  background: rgba(255, 255, 255, 0.02);
}
.ticker__track {
  display: flex;
  gap: 2.6rem;
  white-space: nowrap;
  animation: tickerScroll 24s linear infinite;
  width: 200%;
}
.ticker__track span {
  font-family: var(--font-d);
  font-size: 0.92rem;
  font-weight: 600;
  color: #cfe0f0;
  letter-spacing: 0.02em;
}
.ticker__track i {
  font-style: normal;
  color: var(--brand-2);
}
@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    animation: none;
  }
}

/* ---------- Section base ---------- */
.section {
  position: relative;
  padding-block: clamp(72px, 9vw, 112px);
}
.section__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 54px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.34rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-2);
}
.section__title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.55rem, 3.4vw, 2.55rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.section__lead {
  font-size: clamp(0.95rem, 1.4vw, 1.06rem);
  color: var(--muted);
  text-align: center;
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 30px);
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s,
    box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: var(--shadow-sm);
}
.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  margin: -0.4rem -0.4rem 0;
}
.service-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.service-card:hover .service-card__img {
  transform: scale(1.06);
}
.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 12, 19, 0) 55%,
    rgba(8, 12, 19, 0.55) 100%
  );
  pointer-events: none;
}
.service-card__ico {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.18),
    rgba(37, 99, 235, 0.14)
  );
  border: 1px solid rgba(56, 189, 248, 0.35);
}
.service-card__ico svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-2);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-family: var(--font-d);
  font-size: 1.17rem;
  font-weight: 600;
  color: #eef2f9;
}
.service-card p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.6;
}
.service-card__tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #abcdfa;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  background: rgba(56, 189, 248, 0.08);
}

/* ---------- One Day ---------- */
.oneday__content {
  min-width: 0;
}
.oneday__content .section__head {
  text-align: left;
  align-items: flex-start;
  margin-bottom: clamp(18px, 2.5vw, 34px);
}
.oneday__content .section__lead {
  text-align: left;
}
.oneday__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}
.oneday__item {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.oneday__item:hover {
  background: rgba(56, 189, 248, 0.06);
  border-color: rgba(56, 189, 248, 0.3);
}
.oneday__check {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex: none;
  background: var(--grad);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}
.oneday__check svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.oneday__item strong {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 600;
  display: block;
  color: #eaf0f8;
}
.oneday__item p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ---------- Tech ---------- */
.tech {
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    #0b1526 50%,
    var(--bg) 100%
  );
}
.tech__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 30px);
}
.tech-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}
.tech-card__num {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-2);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}
.tech-card h3 {
  font-family: var(--font-d);
  font-size: 1.18rem;
  font-weight: 600;
  color: #eef2f9;
}
.tech-card p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- Process ---------- */
.process {
  background: var(--bg-2);
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}
.process__item {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  padding: 1.9rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s;
}
.process__item:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.4);
}
.process__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px;
  background: var(--grad);
  opacity: 0.85;
}
.process__step {
  align-self: flex-start;
  font-family: var(--font-d);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  background: var(--grad);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}
.process__item h3 {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 600;
  color: #eef2f9;
}
.process__item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Pricing ---------- */
.pricing {
  background: var(--bg-2);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  padding: 1.7rem 1.4rem 1.4rem;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s,
    box-shadow 0.3s;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.42);
}
.price-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  margin: -0.7rem -0.4rem 0;
}
.price-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.price-card:hover .price-card__img {
  transform: scale(1.06);
}
.price-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 12, 19, 0) 55%,
    rgba(8, 12, 19, 0.55) 100%
  );
  pointer-events: none;
}
.price-card.is-popular {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: var(--shadow-sm);
}
.price-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--grad);
  padding: 0.26rem 0.7rem;
  border-radius: 999px;
}
.price-card__name {
  font-family: var(--font-d);
  font-size: 1.22rem;
  font-weight: 700;
  color: #f1f5fb;
}
.price-card__sub {
  font-size: 0.8rem;
  color: var(--muted);
}
.price__price {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-block: 0.9rem;
  border-block: 1px solid var(--border-soft);
}
.price__amount {
  font-family: var(--font-d);
  font-size: clamp(1.28rem, 2.2vw, 1.7rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price__per {
  font-size: 0.78rem;
  color: var(--muted);
}
.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.price-card__list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: #c7d2e1;
}
.price-card__list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-2);
  flex: none;
}

/* ---------- Paket Nano Coating — kartu per layer ---------- */
.nano-cards {
  margin-top: 2.6rem;
}
.nano-cards__title {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.35rem;
}
.nano-cards__sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
}
.nano-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}
.nano-col {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.nano-col::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--border-soft);
  transition: background 0.3s;
}
.nano-col:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 14px 34px rgba(2, 8, 23, 0.5);
}
.nano-col.is-active {
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: 0 16px 38px rgba(56, 189, 248, 0.14);
  transform: translateY(-4px);
}
.nano-col.is-active::before {
  background: var(--grad);
}
.nano-col__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(37, 99, 235, 0.1);
}
.nano-col__head h4 {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.nano-col__list {
  list-style: none;
  margin: 0;
  padding: 0.3rem 0.9rem 0.55rem;
}
.nano-size {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0.45rem;
  border-bottom: 1px dashed var(--border-soft);
}
.nano-size:last-child {
  border-bottom: 0;
}
.nano-size__ic {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  padding: 7px;
  border-radius: 11px;
  color: var(--brand-2);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.22);
}
.nano-size strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #e8eef8;
  line-height: 1.3;
}
.nano-size__price {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--brand-2);
  font-variant-numeric: tabular-nums;
}
.nt-badge {
  display: inline-block;
  padding: 0.14rem 0.55rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--grad);
  color: #fff;
  vertical-align: middle;
  white-space: nowrap;
}
.nt-badge--best {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #3a2a05;
}
.nano-cards__note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 1.2rem;
}
.nano-cards__note a {
  color: var(--brand-2);
  font-weight: 600;
}
.nano-cards__note a:hover {
  text-decoration: underline;
}
@media (max-width: 980px) {
  .nano-cards__grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto;
    width: 100%;
  }
}
.pricing__note {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
  text-align: center;
  border: 1px dashed rgba(56, 189, 248, 0.45);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  color: #bfdcfa;
  background: rgba(56, 189, 248, 0.06);
}

/* ---------- Testimonials ---------- */
.testimoni {
  background: linear-gradient(180deg, #0a0f1a 0%, #0d1424 100%);
}
.testimoni::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      700px 400px at 10% 10%,
      rgba(56, 189, 248, 0.1),
      transparent 60%
    ),
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1.5px);
  background-size:
    auto,
    24px 24px;
}
.t-wrap {
  position: relative;
}
.t-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.t-track::-webkit-scrollbar {
  display: none;
}
.t-card {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  overflow: hidden;
  padding: 1.7rem 1.2rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow-sm);
}
.t-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
}
.t-card__stars {
  display: flex;
  gap: 3px;
  color: var(--warn);
  font-size: 0.82rem;
}
.t-card__quote {
  font-family: var(--font-d);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #e4ebf6;
  flex: 1;
}
.t-card__quote::before {
  content: "\201C";
  display: block;
  font-size: 2.2rem;
  line-height: 0.8;
  color: var(--brand-2);
  opacity: 0.45;
  margin-bottom: 0.3rem;
}
.t-card__who {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border-soft);
  padding-top: 0.9rem;
}
.t-card__avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: none;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}
.t-card__who div {
  display: flex;
  flex-direction: column;
}
.t-card__who strong {
  font-family: var(--font-d);
  font-size: 0.95rem;
  color: #f1f5fb;
}
.t-card__who span {
  font-size: 0.8rem;
  color: var(--muted);
}
.t-nav {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  z-index: 6;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(8, 14, 24, 0.82);
  border: 1px solid var(--border);
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
}
.t-nav:hover:not(:disabled) {
  background: var(--grad);
}
.t-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.t-nav svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.t-nav--prev {
  left: 6px;
}
.t-nav--next {
  right: 6px;
}
.t-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.car-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition:
    background 0.25s,
    transform 0.25s;
}
.car-dot.is-active {
  background: var(--brand-2);
  transform: scale(1.25);
}
@media (max-width: 1024px) {
  .t-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }
}
@media (max-width: 640px) {
  .t-card {
    flex: 0 0 calc(100% - 18px);
  }
}

/* ---------- FAQ ---------- */
.faq__list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq__item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.faq__item.is-open {
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: var(--shadow-sm);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.3rem;
  text-align: left;
  color: #eef2f9;
  font-family: var(--font-d);
  font-size: 1.02rem;
  font-weight: 600;
}
.faq__ico {
  position: relative;
  width: 14px;
  height: 14px;
  flex: none;
}
.faq__ico::before,
.faq__ico::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-2);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}
.faq__ico::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__item.is-open .faq__ico::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__a p {
  padding: 0 1.3rem 1.2rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    760px 420px at 88% 26%,
    rgba(37, 99, 235, 0.14),
    transparent 62%
  );
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4.5vw, 64px);
  align-items: start;
}
.contact__info {
  position: relative;
}
.contact__info .section__head {
  text-align: left;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}
.contact__info .section__lead {
  text-align: left;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.contact__item:hover {
  background: rgba(56, 189, 248, 0.07);
  border-color: rgba(56, 189, 248, 0.35);
}
.contact__ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex: none;
  background: var(--grad);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}
.contact__ico svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact__txt {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.contact__txt strong {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 600;
  color: #eef2f9;
}
.contact__txt a {
  color: var(--brand-2);
  font-weight: 600;
  transition: color 0.2s;
}
.contact__txt a:hover {
  color: #fff;
}
.contact__txt span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* form */
.contact__form-wrap {
  position: relative;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 2.1rem 1.8rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow);
}
.contact-form__title {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 700;
  color: #f1f5fb;
}
.contact-form__row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.contact-form__row .f-input {
  flex: 1;
  min-width: 150px;
}
.f-input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 13px;
  color: var(--text);
  background: rgba(10, 16, 28, 0.6);
  border: 1px solid var(--border-soft);
  font-family: var(--font-b);
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.f-input:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}
.f-input::placeholder {
  color: #6b7a94;
}
.contact-form__tip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}
textarea.f-input {
  resize: vertical;
  min-height: 96px;
}
select.f-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5M8 6.5l-1.8-1.8' fill='%2338bdf8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(135deg, #122c74 0%, #1d4ed8 100%);
  margin-top: 0;
  padding-block: clamp(18px, 2.5vw, 30px) clamp(16px, 2vw, 22px);
}
.footer__bottom {
  border-block-start: 1px solid rgba(255, 255, 255, 0.22);
  padding-block: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
}
.footer__bottom p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.92);
}
.footer__bottom p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- Gallery ---------- */
.gallery {
  position: relative;
  overflow: hidden;
}
.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    800px 460px at 12% 20%,
    rgba(37, 99, 235, 0.1),
    transparent 60%
  );
}
.g-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.g-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s,
    border-color 0.35s;
}
.g-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(56, 189, 248, 0.5);
}
.g-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.g-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.55s var(--ease);
}
.g-item:hover .g-img {
  transform: scale(1.06);
}
.gallery .g-media::after,
.lightbox .lightbox__media::after {
  display: none;
}
.g-shine {
  position: absolute;
  inset: -30% -18% -40% 40%;
  z-index: 2;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.34),
    rgba(255, 255, 255, 0.06) 32%,
    transparent 55%
  );
  transform: skewX(-14deg);
  transition: transform 0.6s var(--ease);
}
.g-item:hover .g-shine {
  transform: skewX(-14deg) translateX(26%);
}
.g-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  line-height: 1;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.45);
  transition: transform 0.25s var(--ease);
}
.g-item:hover .g-zoom {
  transform: rotate(90deg);
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 12, 0.82);
  backdrop-filter: blur(6px);
}
.lightbox__card {
  position: relative;
  z-index: 2;
  width: min(1160px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: translateY(22px) scale(0.97);
  transition: transform 0.35s var(--ease);
  padding: 1rem;
}
.lightbox.is-open .lightbox__card {
  transform: none;
}
.lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(8, 14, 24, 0.8);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
}
.lightbox__close:hover {
  background: var(--grad);
}
.lightbox__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  place-items: center;
  flex: none;
  background: #0a0f18;
}
.lightbox__img {
  position: relative;
  inset: auto;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  margin: 0 auto;
}
.lightbox__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.15rem 1.05rem 0.4rem;
}
.lightbox__cat {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #cfe8ff;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 999px;
  padding: 0.24rem 0.7rem;
  text-transform: uppercase;
}
.lightbox__title {
  font-family: var(--font-d);
  font-size: 1.45rem;
  font-weight: 700;
  color: #f1f5fb;
}
.lightbox__desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}
.lb-open {
  overflow: hidden;
}
@media (max-width: 1024px) {
  .g-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .g-grid {
    grid-template-columns: 1fr;
  }
  .lightbox__card {
    max-height: 90vh;
  }
}

/* ---------- Floating buttons ---------- */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 1200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.25s var(--ease),
    opacity 0.25s,
    visibility 0.25s;
}
.wa-float:hover {
  transform: scale(1.1);
}
body.nav-open .wa-float,
body.nav-open .to-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.wa-float__ico {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.wa-float__ping {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--ok);
  animation: pulse 1.8s infinite;
  z-index: 2;
}
.to-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 1200;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.4);
  transition:
    opacity 0.3s,
    visibility 0.3s,
    transform 0.25s;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 640px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
  .to-top {
    right: 18px;
    bottom: 82px;
    width: 40px;
    height: 40px;
  }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 1300;
  background: #0d1424;
  border: 1px solid var(--border);
  color: #e8eef8;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  animation: toastIn 0.35s var(--ease);
}
.toast.is-hide {
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: 0.3s;
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    max-width: 560px;
    margin-inline: auto;
  }
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech__grid {
    grid-template-columns: 1fr;
  }
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .hero__title {
    font-size: clamp(1.8rem, 4.6vw, 2.7rem);
  }
  .chip--2 {
    left: -8px;
  }
}
@media (max-width: 760px) {
  .section {
    padding-block: clamp(56px, 8vw, 80px);
  }
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin-inline: auto;
  }
}
@media (max-width: 640px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .oneday__list {
    grid-template-columns: 1fr;
  }
  .tech__grid {
    grid-template-columns: 1fr;
  }
  .process__grid {
    grid-template-columns: 1fr;
  }
  .hero__cta .btn {
    width: 100%;
  }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__inner {
    gap: 2.2rem;
  }
  .hero__card-specs {
    grid-template-columns: 1fr;
  }
  .hero__stats {
    gap: 14px;
  }
  .contact-form__row .f-input {
    min-width: 100%;
  }
  .contact-form {
    padding: 1.7rem 1.3rem;
  }
  .faq__q {
    padding: 1rem 1.1rem;
  }
}

/* =========================================================
   SECTION DECORATIVE BACKGROUNDS + HIGHLIGHT SLIDER
   ========================================================= */
.section > .container {
  position: relative;
  z-index: 1;
}
.services {
  background: linear-gradient(180deg, #0a0f1a 0%, #0d1322 55%, #0a0f18 100%);
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      700px 380px at 88% 12%,
      rgba(37, 99, 235, 0.14),
      transparent 60%
    ),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1.5px);
  background-size:
    auto,
    22px 22px;
}
.oneday {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.015) 0 1px,
      transparent 1px 26px
    ),
    linear-gradient(180deg, #0d1322 0%, #0a0f18 100%);
}
.oneday::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    640px 360px at 10% 88%,
    rgba(56, 189, 248, 0.12),
    transparent 60%
  );
}
.tech {
  background:
    linear-gradient(
      180deg,
      rgba(12, 20, 36, 0.93) 0%,
      rgba(11, 21, 38, 0.88) 50%,
      rgba(12, 20, 36, 0.94) 100%
    ),
    url("../assets/gallery/3.jpeg") center/cover no-repeat;
}
.tech::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    760px 420px at 50% 0%,
    rgba(37, 99, 235, 0.12),
    transparent 65%
  );
}
.process {
  background: linear-gradient(180deg, #0a0f1a 0%, #0d1322 100%);
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      680px 380px at 12% 10%,
      rgba(56, 189, 248, 0.13),
      transparent 60%
    ),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size:
    auto,
    48px 48px,
    48px 48px;
}
.pricing {
  background:
    linear-gradient(
      180deg,
      rgba(13, 19, 34, 0.94) 0%,
      rgba(10, 15, 24, 0.92) 100%
    ),
    url("../assets/gallery/5.jpeg") center/cover no-repeat;
}
.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    760px 420px at 90% 18%,
    rgba(37, 99, 235, 0.15),
    transparent 62%
  );
}
.faq {
  background: linear-gradient(180deg, #0a0f1a 0%, #0d1424 100%);
}
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      600px 340px at 88% 8%,
      rgba(56, 189, 248, 0.1),
      transparent 60%
    ),
    radial-gradient(rgba(56, 189, 248, 0.08) 1px, transparent 1.6px);
  background-size:
    auto,
    24px 24px;
}
.gallery {
  background: linear-gradient(180deg, #0d1424 0%, #0a0f18 100%);
}
.gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      720px 400px at 92% 82%,
      rgba(37, 99, 235, 0.12),
      transparent 62%
    ),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.012) 0 1px,
      transparent 1px 30px
    );
}
.contact {
  background:
    linear-gradient(
      180deg,
      rgba(13, 20, 36, 0.93) 0%,
      rgba(10, 15, 24, 0.95) 100%
    ),
    url("../assets/gallery/6.jpeg") center/cover no-repeat;
}
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    700px 400px at 8% 90%,
    rgba(37, 99, 235, 0.13),
    transparent 62%
  );
}
.footer {
  background: linear-gradient(180deg, #060a10 0%, #04070b 100%);
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    640px 360px at 88% 10%,
    rgba(37, 99, 235, 0.1),
    transparent 62%
  );
}

/* Efek parallax untuk section ber-background foto (desktop saja — di mobile fixed bikin berat) */
@media (min-width: 1025px) {
  .tech,
  .pricing,
  .contact {
    background-attachment: scroll, fixed;
  }
}

/* ---------- Promo slider (kartu poster, gaya testimoni) ---------- */
.highlight {
  background: linear-gradient(180deg, #0d1424 0%, #0c1424 50%, #0d1424 100%);
}
.highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      820px 460px at 50% 100%,
      rgba(37, 99, 235, 0.1),
      transparent 65%
    ),
    radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1.5px);
  background-size:
    auto,
    26px 26px;
}
.hl-wrap {
  position: relative;
}
.hl-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.hl-track::-webkit-scrollbar {
  display: none;
}
.hl-slide {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.hl-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  z-index: 3;
}
.hl-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(6, 10, 17, 0) 46%,
    rgba(6, 10, 17, 0.84) 100%
  );
}
.hl-slide:hover,
.hl-slide:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(56, 189, 248, 0.5);
  outline: none;
}
.hl-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.hl-slide:hover img,
.hl-slide:focus-visible img {
  transform: scale(1.06);
}
.hl-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 60%
  );
  transform: translateX(-130%);
  transition: transform 0.7s;
}
.hl-slide:hover .hl-shine,
.hl-slide:focus-visible .hl-shine {
  transform: translateX(130%);
}
.hl-zoom {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(8, 14, 24, 0.82);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  opacity: 0;
  transform: scale(0.6) rotate(-90deg);
  transition:
    opacity 0.3s,
    transform 0.3s,
    background 0.3s;
}
.hl-slide:hover .hl-zoom,
.hl-slide:focus-visible .hl-zoom {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  background: var(--grad);
}
.hl-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1.2rem 1.1rem;
}
.hl-cap strong {
  font-family: var(--font-d);
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff;
}
.hl-cap span {
  font-size: 0.82rem;
  color: #c9d6e8;
}
@media (max-width: 1024px) {
  .hl-slide {
    flex: 0 0 calc((100% - 18px) / 2);
  }
}
@media (max-width: 640px) {
  .hl-slide {
    flex: 0 0 calc(100% - 18px);
  }
}
@media (max-width: 640px) {
  .hl-slide {
    flex: 0 0 calc(100% - 8px);
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ticker__track {
    animation: none;
  }
}

/* ---------- End ---------- */
