:root {
  --blue: #0b74d1;
  --blue-dark: #064d91;
  --green: #27c779;
  --green-dark: #118a54;
  --mint: #e8fff5;
  --white: #ffffff;
  --text: #15324a;
  --muted: #5e7182;
  --shadow: 0 22px 60px rgba(8, 67, 120, 0.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7fcff 0%, #ffffff 45%, #f0fff8 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 116, 209, 0.08);
}
.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img { width: 132px; display: block; }
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-weight: 700;
  color: var(--blue-dark);
}
.nav-links a:hover { color: var(--green-dark); }
.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: white !important;
  box-shadow: 0 10px 22px rgba(39, 199, 121, 0.22);
}
.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 46px;
  position: relative;
  padding: 72px 0;
}
.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.55;
  z-index: -1;
}
.hero-bg-shape.one { width: 280px; height: 280px; background: #c8f8e3; top: 90px; left: -60px; }
.hero-bg-shape.two { width: 360px; height: 360px; background: #d6efff; bottom: 50px; right: -70px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 900;
}
h1, h2, h3 { margin: 0; line-height: 1.12; }
h1 {
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  letter-spacing: -0.06em;
  color: var(--blue-dark);
}
.hero-text {
  margin: 24px 0 0;
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 650px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 14px 22px;
  font-weight: 900;
  transition: 0.2s ease;
}
.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 16px 30px rgba(11, 116, 209, 0.20);
}
.btn.secondary {
  color: var(--blue-dark);
  background: white;
  border: 1px solid rgba(11, 116, 209, 0.16);
}
.btn:hover { transform: translateY(-2px); }
.btn.large { margin-top: 24px; padding: 16px 26px; }
.quick-info {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.quick-info div {
  display: flex;
  gap: 9px;
  align-items: center;
  background: white;
  padding: 12px 15px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(8, 67, 120, 0.08);
}
.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 38px;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.9), transparent 34%), linear-gradient(145deg, #e8fff5, #eff8ff 55%, #ffffff);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.9);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
}
.tool-team {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.tool {
  position: absolute;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 28px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 18px 38px rgba(8, 67, 120, 0.14);
  font-size: 3.1rem;
  animation: float 4.5s ease-in-out infinite;
}
.spray { top: 72px; left: 52px; }
.mop { top: 70px; right: 50px; animation-delay: 0.6s; }
.bucket { top: 205px; left: 132px; width: 128px; height: 128px; font-size: 3.6rem; animation-delay: 1s; }
.sponge { bottom: 160px; left: 58px; animation-delay: 1.6s; }
.vacuum { bottom: 158px; right: 68px; animation-delay: 2s; }
.shine {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -80px;
  background: rgba(255,255,255,0.64);
  border-radius: 999px;
}
.hero-card h2, .hero-card p { position: relative; }
.hero-card h2 { font-size: 2rem; color: var(--blue-dark); }
.hero-card p { margin: 10px 0 0; color: var(--muted); }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(3deg); }
}
.trust-strip {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.trust-strip div, .card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(8, 67, 120, 0.08);
  border: 1px solid rgba(11, 116, 209, 0.08);
}
.trust-strip strong { display: block; font-size: 1.45rem; color: var(--blue-dark); }
.trust-strip span { color: var(--muted); }
.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}
.section-heading { max-width: 680px; margin-bottom: 32px; }
.section-heading h2, .split h2, .area-section h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.045em;
  color: var(--blue-dark);
}
.section-heading p, .split p, .area-section p {
  color: var(--muted);
  font-size: 1.05rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 44px rgba(8, 67, 120, 0.08);
}
.icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--mint);
  font-size: 2rem;
  margin-bottom: 22px;
}
.card h3 { color: var(--blue-dark); font-size: 1.35rem; }
.card p { color: var(--muted); margin-bottom: 0; }
.split {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 38px;
  align-items: center;
}
.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li {
  margin: 11px 0;
  padding-left: 34px;
  position: relative;
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 0.86rem;
}
.process-box {
  background: linear-gradient(145deg, var(--blue-dark), var(--blue));
  color: white;
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.process-box h3 { font-size: 1.8rem; }
.process-box ol { margin: 22px 0 0; padding-left: 22px; }
.process-box li { margin: 14px 0; font-weight: 700; }
.area-section {
  width: min(1120px, calc(100% - 32px));
  margin: 40px auto 80px;
  text-align: center;
  padding: 70px 26px;
  border-radius: 38px;
  background: radial-gradient(circle at top left, rgba(39,199,121,0.24), transparent 34%), radial-gradient(circle at bottom right, rgba(11,116,209,0.24), transparent 38%), white;
  box-shadow: var(--shadow);
}
.area-section p { max-width: 720px; margin-left: auto; margin-right: auto; }
.footer {
  background: #062f56;
  color: white;
  text-align: center;
  padding: 42px 18px;
}
.footer img { width: 120px; margin-bottom: 12px; }
.footer p { margin: 6px 0; color: rgba(255,255,255,0.82); }
.footer a { color: white; font-weight: 900; }
@media (max-width: 860px) {
  .nav { height: auto; padding: 16px 0; gap: 12px; flex-direction: column; }
  .nav-links { gap: 14px; font-size: 0.92rem; flex-wrap: wrap; justify-content: center; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 46px; }
  .hero-card { min-height: 430px; }
  .cards, .trust-strip { grid-template-columns: 1fr; }
  .tool { width: 82px; height: 82px; font-size: 2.4rem; }
  .bucket { width: 106px; height: 106px; font-size: 3rem; left: 100px; }
  .spray { left: 32px; }
  .mop { right: 30px; }
  .sponge { left: 38px; }
  .vacuum { right: 42px; }
}
@media (max-width: 520px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .brand img { width: 112px; }
  .hero-card { min-height: 380px; border-radius: 28px; padding: 24px; }
  .bucket { left: 50%; transform: translateX(-50%); }
  .quick-info div { width: 100%; }
  .btn { width: 100%; }
}

/* Media Sosial */
.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.social-section {
  padding-top: 76px;
  padding-bottom: 82px;
}

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

.social-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: space-between;
  background: white;
  border-radius: 30px;
  padding: 26px;
  border: 1px solid rgba(11, 116, 209, 0.08);
  box-shadow: 0 18px 44px rgba(8, 67, 120, 0.08);
  transition: 0.22s ease;
  position: relative;
  overflow: hidden;
}

.social-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -58px;
  top: -58px;
  border-radius: 999px;
  background: rgba(39, 199, 121, 0.14);
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(8, 67, 120, 0.14);
}

.social-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--blue));
  position: relative;
  z-index: 1;
}

.social-card h3 {
  color: var(--blue-dark);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.social-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

.footer-socials {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.footer-socials a {
  color: white;
  font-weight: 900;
  background: rgba(255,255,255,0.12);
  padding: 9px 14px;
  border-radius: 999px;
}

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

@media (max-width: 600px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
}
