:root {
  --navy: #06366f;
  --navy-dark: #002a5c;
  --navy-deep: #001f49;
  --yellow: #ffb900;
  --green: #24b35a;
  --ink: #081d3a;
  --muted: #607087;
  --line: #dde5ee;
  --soft: #f4f7fb;
  --panel: rgba(255, 255, 255, 0.86);
  --shadow: 0 16px 38px rgba(28, 51, 84, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(0, 92, 185, 0.08), transparent 26%),
    radial-gradient(circle at 86% 38%, rgba(255, 185, 0, 0.08), transparent 24%),
    #f7f9fc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: clip;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header,
.shell,
.panel,
.site-footer {
  width: min(1440px, calc(100% - 28px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 1.8vw, 22px);
  min-height: 86px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(221, 229, 238, 0.8);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 16px 45px rgba(23, 45, 76, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 136px;
  color: var(--navy-dark);
  font-size: 20px;
  line-height: 0.9;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand small {
  display: block;
  color: #f29a00;
  font-size: 15px;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: clamp(10px, 1.6vw, 28px);
  color: #102d54;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  transform: scaleX(0);
  border-radius: 99px;
  background: var(--yellow);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.whatsapp-pill,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 clamp(16px, 1.8vw, 24px);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.whatsapp-pill {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 22px rgba(36, 179, 90, 0.24);
}

.whatsapp-pill span,
.btn span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 1.1fr);
  min-height: 596px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0 43%, rgba(255, 255, 255, 0.84) 56%, rgba(255, 255, 255, 0.08) 100%),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1500&q=82") center right / cover;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(0, 57, 122, 0.06));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 7vw, 96px) 52px 125px;
}

.hero h1 {
  max-width: 590px;
  margin: 0;
  color: #0a2e61;
  font-size: clamp(43px, 5vw, 66px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 28px 0 34px;
  color: #1d314d;
  font-size: 17px;
  line-height: 1.7;
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(92px, 1fr));
  gap: 18px;
  max-width: 650px;
  margin-bottom: 34px;
}

.benefit-row article {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  color: #102d54;
  font-size: 13px;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn.primary {
  color: #082044;
  background: linear-gradient(180deg, #ffc52b, var(--yellow));
  box-shadow: 0 12px 24px rgba(255, 185, 0, 0.28);
}

.btn.outline {
  color: #0a2e61;
  background: #fff;
  border: 1px solid #b7c4d3;
}

.btn.secondary {
  color: #fff;
  background: var(--navy);
}

.btn.compact {
  min-width: 245px;
  min-height: 46px;
  margin-inline: auto;
}

.trust-band {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 48px 32px;
  color: #fff;
  background: linear-gradient(90deg, #00439d, #005fc6, #003984);
}

.trust-band p {
  margin: 0 0 16px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.trust-band div {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}

.trust-band span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
}

.panel {
  margin-top: 16px;
  padding: 34px 24px 40px;
  border: 1px solid rgba(221, 229, 238, 0.78);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 35px rgba(29, 48, 77, 0.07);
  backdrop-filter: blur(10px);
}

.section-heading {
  margin-bottom: 26px;
  text-align: center;
}

.section-heading.left {
  text-align: left;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.16;
}

.section-heading p {
  margin: 10px 0 0;
  color: #283b55;
  font-size: 15px;
}

.category-panel {
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 640px;
  margin: 0 auto 24px;
}

.category-grid article,
.purchase-slider article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(35, 54, 79, 0.12);
}

.category-grid img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
}

.category-grid h3,
.purchase-slider h3 {
  display: grid;
  place-items: center;
  min-height: 58px;
  margin: 0;
  padding: 10px 12px;
  font-size: 17px;
  line-height: 1.18;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-grid article,
.testimonial-grid article {
  min-height: 178px;
  padding: 28px 22px;
  text-align: center;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(33, 52, 78, 0.08);
}

.why-grid h3,
.process-line h3 {
  margin: 16px 0 8px;
  font-size: 16px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.why-grid p,
.process-line p,
.testimonial-grid p {
  margin: 0;
  color: #243a57;
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 0 0;
  margin: 0;
  list-style: none;
}

.process-line li {
  position: relative;
  min-width: 0;
  padding: 18px 14px 16px;
  text-align: center;
  border: 1px solid #d9e4f0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.process-line li::before {
  display: none;
}

.process-line li:first-child::before {
  left: auto;
}

.process-line li:last-child::before {
  right: auto;
}

.process-line span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto;
  color: #fff;
  border-radius: 50%;
  background: #00489c;
  font-size: 18px;
  font-weight: 900;
}

.recent {
  text-align: center;
}

.purchase-slider {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.purchase-slider img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
}

.purchase-slider p {
  margin: -5px 0 20px;
  font-size: 13px;
  font-weight: 700;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c5ceda;
}

.dots .active {
  width: 27px;
  background: #00489c;
}

.offer-panel {
  width: min(1440px, calc(100% - 28px));
  margin: 16px auto 0;
  padding: 42px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 37, 83, 0.94), rgba(0, 57, 122, 0.9)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1400&q=80") center / cover;
  box-shadow: var(--shadow);
}

.offer-inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.offer-inner h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 38px);
}

.offer-inner p {
  margin: 10px 0 28px;
  color: #d8e8fb;
}

.offer-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.offer-form input,
.offer-form select,
.offer-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid #d6e0eb;
  border-radius: 6px;
  padding: 0 18px;
  color: #172d49;
  background: #fff;
  outline: none;
}

.offer-form textarea,
.upload-box,
.offer-form button {
  grid-column: 1 / -1;
}

.offer-form textarea {
  min-height: 92px;
  padding-top: 15px;
  resize: vertical;
}

.upload-box {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.78);
  border-radius: 6px;
  cursor: pointer;
}

.upload-box input {
  position: absolute;
  width: 1px;
  min-height: 1px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.upload-box small {
  color: #d7e7fb;
}

.testimonials {
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-grid article {
  text-align: left;
}

.stars {
  color: var(--yellow);
  letter-spacing: 3px;
  font-size: 19px;
}

.testimonial-grid p {
  margin: 18px 0 22px;
  font-size: 15px;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
  color: #152b48;
  font-size: 13px;
}

.testimonial-grid span {
  color: var(--muted);
}

.faq {
  max-width: none;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(33, 52, 78, 0.06);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 18px;
  cursor: pointer;
  color: #173453;
  font-size: 14px;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--navy);
  font-size: 21px;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.faq .btn {
  margin-top: 18px;
}

.bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 16px;
  padding: 32px 42px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 35, 77, 0.96), rgba(0, 53, 112, 0.78)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1500&q=80") center / cover;
}

.bottom-cta h2 {
  margin: 0 0 5px;
  font-size: 30px;
}

.bottom-cta p {
  margin: 0;
  font-size: 22px;
}

.mini-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 800;
}

.mini-checks span::before {
  content: "✓";
  margin-right: 10px;
  color: var(--yellow);
}

.site-footer {
  margin-top: 0;
  padding: 34px 42px 30px;
  color: #dbe7f6;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(135deg, #00244f, #003b7e 58%, #00234c);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
}

.footer-brand {
  color: #fff;
}

.footer-grid h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 10px;
  color: #dbe7f6;
  font-size: 14px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 900;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 48px;
  margin-top: 14px;
}

.newsletter input,
.newsletter button {
  min-height: 48px;
  border: 0;
}

.newsletter input {
  min-width: 0;
  padding: 0 16px;
  border-radius: 5px 0 0 5px;
}

.newsletter button {
  color: #fff;
  background: var(--yellow);
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.copyright {
  margin: 32px 0 0;
  text-align: right;
  color: #bed0e6;
  font-size: 13px;
}

.icon,
.big-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--navy);
}

.big-icon {
  width: 64px;
  height: 64px;
  color: #00489c;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 72, 156, 0.09), rgba(255, 185, 0, 0.08));
}

.icon::before,
.icon::after,
.big-icon::before,
.big-icon::after {
  content: "";
  position: absolute;
}

.refresh::before {
  inset: 5px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
}

.refresh::after {
  right: 3px;
  top: 6px;
  border: 6px solid transparent;
  border-left-color: currentColor;
}

.truck::before {
  left: 2px;
  top: 10px;
  width: 22px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.truck::after {
  left: 5px;
  bottom: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 16px 0 0 currentColor;
}

.shield::before {
  left: 7px;
  top: 3px;
  width: 16px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 9px 9px 5px 5px;
}

.shield::after {
  left: 14px;
  top: 11px;
  width: 10px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.tag::before {
  left: 5px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: currentColor;
  transform: rotate(45deg);
}

.tag::after {
  right: 7px;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}

.building::before,
.hotel::before,
.warehouse::before,
.school::before,
.shop::before {
  left: 7px;
  bottom: 3px;
  width: 16px;
  height: 22px;
  border: 2px solid currentColor;
}

.building::after,
.hotel::after {
  left: 11px;
  top: 10px;
  width: 3px;
  height: 3px;
  background: currentColor;
  box-shadow: 6px 0 0 currentColor, 0 7px 0 currentColor, 6px 7px 0 currentColor;
}

.school::before {
  transform: skewY(-10deg);
}

.utensil::before {
  left: 8px;
  top: 4px;
  width: 2px;
  height: 23px;
  background: currentColor;
  box-shadow: 7px 0 0 currentColor, 14px 0 0 currentColor;
}

.utensil::after {
  right: 5px;
  top: 4px;
  width: 5px;
  height: 23px;
  border-radius: 8px 8px 2px 2px;
  background: currentColor;
}

.shop::after {
  left: 4px;
  top: 5px;
  width: 22px;
  height: 8px;
  background: currentColor;
}

.warehouse::before {
  width: 20px;
  clip-path: polygon(0 32%, 50% 0, 100% 32%, 100% 100%, 0 100%);
}

.money::before {
  content: "Rp";
  inset: 0;
  display: grid;
  place-items: center;
  color: #0aa457;
  font-weight: 950;
}

.big-icon.truck::before,
.big-icon.truck::after,
.big-icon.shield::before,
.big-icon.shield::after,
.big-icon.tag::before,
.big-icon.tag::after {
  transform: scale(1.55);
  transform-origin: center;
}

.big-icon.tag::before {
  left: 20px;
  top: 18px;
}

.big-icon.tag::after {
  right: 22px;
  top: 21px;
}

.upload::before {
  left: 7px;
  bottom: 5px;
  width: 16px;
  height: 14px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px;
}

.upload::after {
  left: 10px;
  top: 3px;
  width: 10px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

@media (min-width: 1051px) {
  main {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(390px, 0.95fr);
    gap: 16px;
    width: min(1440px, calc(100% - 28px));
    margin: 0 auto;
    overflow: clip;
  }

  main > * {
    min-width: 0;
    width: 100%;
    margin-inline: 0;
  }

  .hero {
    grid-column: 1 / 2;
  }

  .category-panel {
    grid-column: 2 / 3;
    grid-row: 1 / span 1;
  }

  .why,
  .recent,
  .testimonials,
  .bottom-cta {
    grid-column: 1 / 2;
  }

  .process,
  .offer-panel,
  .faq {
    grid-column: 2 / 3;
  }

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

  .site-footer {
    width: min(1440px, calc(100% - 28px));
  }
}

@media (max-width: 1220px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .main-nav,
  .whatsapp-pill {
    display: none;
  }

  .site-header.nav-open {
    grid-template-columns: auto auto;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .whatsapp-pill {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.nav-open .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .category-grid {
    max-width: none;
  }

  .process-line {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px;
  }

  .process-line li::before {
    display: none;
  }

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

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

@media (max-width: 720px) {
  .site-header,
  .shell,
  .panel,
  .offer-panel,
  .site-footer {
    width: min(100% - 20px, 1440px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand {
    min-width: 0;
    font-size: 17px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0 56%, rgba(255, 255, 255, 0.55)),
      url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=900&q=80") center bottom / cover;
  }

  .hero-copy {
    padding: 42px 22px 245px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

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

  .benefit-row,
  .category-grid,
  .why-grid,
  .process-line,
  .purchase-slider,
  .offer-form,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit-row {
    justify-items: stretch;
  }

  .benefit-row article {
    grid-template-columns: 32px 1fr;
    justify-items: start;
    text-align: left;
  }

  .trust-band {
    padding: 18px;
  }

  .trust-band div {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .trust-band span {
    justify-content: flex-start;
    font-size: 13px;
  }

  .bottom-cta {
    display: grid;
    padding: 28px 22px;
  }

  .bottom-cta h2 {
    font-size: 25px;
  }

  .bottom-cta p {
    font-size: 18px;
  }

  .mini-checks {
    gap: 12px;
  }

  .copyright {
    text-align: left;
  }
}
