:root {
  --bg: #ffffff;
  --bg2: #fff6ec;
  --card: rgba(255, 255, 255, 0.85);
  --card2: rgba(255, 255, 255, 0.72);
  --text: rgba(16, 24, 40, 0.95);
  --muted: rgba(16, 24, 40, 0.72);
  --muted2: rgba(16, 24, 40, 0.6);
  --line: rgba(16, 24, 40, 0.14);
  --shadow: 0 18px 60px rgba(16, 24, 40, 0.14);
  --blue: #ff7a00;
  --blue2: #ff9a3c;
  --gold: #ffb703;
  --gold2: #ff8f1f;
  --radius: 18px;
  --radius2: 26px;
  --container: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1100px 650px at 18% -10%, rgba(255, 122, 0, 0.18), transparent 60%),
    radial-gradient(900px 600px at 95% 0%, rgba(255, 183, 3, 0.14), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page {
  min-height: 100vh;
}

.container {
  width: min(100%, calc(var(--container) + 48px));
  padding: 0 24px;
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--card);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.14);
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__name {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand__tag {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav__link:hover {
  color: var(--text);
  background: rgba(255, 122, 0, 0.08);
  transform: translateY(-1px);
}

.navToggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
}

.navToggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(16, 24, 40, 0.85);
  margin: 4px auto;
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease,
    border-color 180ms ease, color 180ms ease;
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  box-shadow: 0 16px 40px rgba(255, 122, 0, 0.22), 0 20px 50px rgba(255, 183, 3, 0.16);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(255, 122, 0, 0.26), 0 22px 56px rgba(255, 183, 3, 0.2);
}

.btn--soft {
  background: var(--card);
  border-color: var(--line);
  color: var(--text);
}

.btn--soft:hover {
  background: rgba(255, 122, 0, 0.08);
  transform: translateY(-1px);
}

.btn--wa {
  color: #041109;
  background: linear-gradient(90deg, #25d366, #b9ffdb);
  box-shadow: 0 16px 44px rgba(37, 211, 102, 0.18);
}

.btn--wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 52px rgba(37, 211, 102, 0.22);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 122, 0, 0.08);
  transform: translateY(-1px);
}

.btn--full {
  width: 100%;
}

.hero {
  position: relative;
  padding: 64px 0 30px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1000px 600px at 10% 10%, rgba(59, 124, 255, 0.18), transparent 60%),
    radial-gradient(900px 600px at 85% 30%, rgba(244, 199, 107, 0.12), transparent 55%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--blue), var(--gold));
  box-shadow: 0 0 0 6px rgba(255, 122, 0, 0.12);
}

.hero__title {
  margin: 16px 0 14px;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero__rotate {
  position: relative;
  display: inline-grid;
  align-items: baseline;
  min-width: 11ch;
  color: transparent;
}

.hero__rotateItem {
  grid-area: 1 / 1;
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.hero__rotateItem.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 56ch;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.trustItem {
  padding: 14px 14px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
}

.trustItem__num {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.trustItem__text {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted2);
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}

.glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.55;
  pointer-events: none;
}

.glow--a {
  background: radial-gradient(circle at 40% 40%, rgba(255, 122, 0, 0.35), transparent 60%);
  left: -120px;
  top: -90px;
}

.glow--b {
  background: radial-gradient(circle at 45% 45%, rgba(255, 183, 3, 0.28), transparent 62%);
  right: -120px;
  bottom: -90px;
}

.card3d {
  position: relative;
  width: min(460px, 100%);
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: radial-gradient(700px 450px at 10% 10%, rgba(255, 122, 0, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  padding: 26px 18px 0;
  transform: translateY(6px);
}

.card3d__plate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.chip__title {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.chip__desc {
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted2);
}

.miniGrid {
  display: grid;
  grid-template-columns: repeat(2, 14px);
  grid-template-rows: repeat(2, 14px);
  gap: 8px;
}

.miniGrid__cell {
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 122, 0, 0.18), rgba(255, 183, 3, 0.16));
  border: 1px solid var(--line);
}

.hero__bottomFade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--bg2));
  pointer-events: none;
}

.section {
  padding: 80px 0;
}

.section--tight {
  padding: 66px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 122, 0, 0.06), rgba(255, 255, 255, 0.0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sectionHead {
  margin-bottom: 28px;
  max-width: 76ch;
}

.sectionHead--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  max-width: unset;
}

.sectionHead__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sectionHead__title {
  margin: 12px 0 8px;
  font-size: clamp(22px, 2.6vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.sectionHead__desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--mt {
  margin-top: 16px;
}

.serviceCard {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 18px;
  box-shadow: 0 16px 50px rgba(16, 24, 40, 0.1);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.serviceCard:hover {
  transform: translateY(-2px);
  background: rgba(255, 122, 0, 0.06);
  border-color: rgba(255, 122, 0, 0.18);
}

.serviceCard__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: radial-gradient(120px 80px at 20% 20%, rgba(79, 210, 255, 0.26), transparent 60%),
    radial-gradient(110px 80px at 80% 25%, rgba(244, 199, 107, 0.2), transparent 62%),
    rgba(255, 255, 255, 0.9);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(16, 24, 40, 0.85);
}

.serviceCard__title {
  margin: 12px 0 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.serviceCard__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.serviceCard--media {
  padding: 0;
  overflow: hidden;
}

.serviceCard__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: contain;
  padding: 14px 14px 0;
}

.serviceCard__body {
  padding: 14px 18px 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.step {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
}

.step__no {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(79, 210, 255, 0.9), rgba(244, 199, 107, 0.9));
}

.step__title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.step__desc {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.workCard {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: radial-gradient(380px 220px at 25% 10%, rgba(255, 122, 0, 0.12), transparent 60%),
    radial-gradient(360px 220px at 90% 20%, rgba(255, 183, 3, 0.1), transparent 60%),
    var(--card);
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.workCard:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, 0.22);
}

.workCard__top {
  display: grid;
  gap: 6px;
}

.workTag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.08);
  border: 1px solid rgba(255, 122, 0, 0.18);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.workTitle {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.workDesc {
  margin: 12px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.workLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: rgba(255, 122, 0, 0.95);
}

.workLink:hover {
  color: rgba(255, 183, 3, 0.95);
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.bullets {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 6px;
}

.stat {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card);
}

.stat__num {
  font-weight: 800;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.stat__label {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted2);
}

.aboutCard {
  margin-top: 12px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.aboutCard__title {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.aboutCard__desc {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.section--cta {
  padding: 86px 0;
}

.cta {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: radial-gradient(700px 360px at 10% 20%, rgba(255, 122, 0, 0.14), transparent 60%),
    radial-gradient(700px 360px at 95% 15%, rgba(255, 183, 3, 0.1), transparent 62%),
    var(--card2);
  padding: 22px;
  box-shadow: var(--shadow);
}

.cta__kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.cta__title {
  margin: 12px 0 8px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 24px;
  line-height: 1.18;
}

.cta__desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.cta__meta {
  margin-top: 12px;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.6;
}

.cta__meta a {
  color: rgba(255, 122, 0, 0.95);
  font-weight: 700;
}

.cta__meta a:hover {
  color: rgba(255, 183, 3, 0.98);
}

.cta__meta .sep {
  margin: 0 8px;
}

.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-content: start;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.field__input {
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field__input:focus {
  border-color: rgba(255, 122, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.14);
  background: rgba(255, 255, 255, 0.96);
}

.field__area {
  height: auto;
  resize: vertical;
  min-height: 120px;
}

.form__note {
  grid-column: 1 / -1;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.footer {
  padding: 40px 0 50px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--card);
}

.footer__name {
  font-weight: 800;
}

.footer__tag {
  font-size: 12px;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 12px;
}

.footer__links a:hover {
  color: var(--text);
  background: rgba(255, 122, 0, 0.08);
}

.footer__copy {
  color: var(--muted2);
  font-size: 12px;
  text-align: right;
}

body.menuOpen {
  overflow: hidden;
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
  }

  .hero__trust {
    grid-template-columns: 1fr;
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .about,
  .cta {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand {
    justify-content: center;
  }

  .footer__copy {
    text-align: center;
  }
}

@media (max-width: 780px) {
  .navToggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 82px;
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__link,
  .nav .btn {
    width: 100%;
    justify-content: center;
    height: 46px;
  }

  .grid--4 {
    grid-template-columns: 1fr;
  }

  .form {
    grid-template-columns: 1fr;
  }
}
