/* ==========================================================================
   SHS Solusindo Network — Marketing Website
   ========================================================================== */

:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fff2e6;
  --blue: #3457ff;
  --blue-dark: #223bd1;
  --blue-light: #eaefff;
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-light: #e9fbef;
  --ink: #0f172a;
  --ink-soft: #51607a;
  --ink-faint: #8592ab;
  --bg: #ffffff;
  --bg-soft: #f7f8fb;
  --border: #e7eaf1;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 45px -25px rgba(15, 23, 42, 0.25);
  --shadow-card: 0 10px 30px -18px rgba(15, 23, 42, 0.18);
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--orange-light);
  padding: 7px 16px;
  border-radius: 999px;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }

p { margin: 0; color: var(--ink-soft); line-height: 1.7; }

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin: 14px 0 16px; }
.section-head p { font-size: 17px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 16px 30px -14px rgba(249, 115, 22, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 34px -14px rgba(249, 115, 22, 0.6); }
.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange-dark); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 13.5px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 19px; }
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand small { display: block; font-weight: 600; font-size: 11px; color: var(--ink-faint); letter-spacing: 0.04em; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active span::after { top: 0; transform: rotate(-45deg); }

#mobileNav.open { max-height: 320px !important; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 76px 0 40px; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: -180px; right: -160px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.16), transparent 70%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -220px; left: -180px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.14), transparent 70%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy h1 { font-size: clamp(36px, 5vw, 58px); }
.hero-copy h1 .accent { color: var(--orange); }
.hero-copy p.lead { font-size: 18px; margin: 22px 0 32px; max-width: 500px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero-stat b { display: block; font-size: 26px; font-weight: 800; }
.hero-stat span { font-size: 13px; color: var(--ink-faint); font-weight: 600; }

.hero-art {
  position: relative;
  background: linear-gradient(160deg, #fff, var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
.hero-art-badge {
  position: absolute;
  top: -18px; right: 26px;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 14px 24px -12px rgba(15,23,42,0.5);
}
.speed-ring {
  width: 100%;
  aspect-ratio: 1;
  max-width: 320px;
  margin: 10px auto 0;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 0deg 300deg, var(--border) 300deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.speed-ring::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 4px 18px rgba(15,23,42,0.06);
}
.speed-ring-inner { position: relative; text-align: center; z-index: 1; }
.speed-ring-inner b { font-size: 40px; font-weight: 800; display: block; }
.speed-ring-inner span { font-size: 13px; color: var(--ink-faint); font-weight: 600; }
.hero-art-foot { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.hero-chip {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  text-align: center;
}
.hero-chip b { display: block; font-size: 15px; }
.hero-chip span { font-size: 11.5px; color: var(--ink-faint); font-weight: 600; }

.logo-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.logo-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 36px; padding: 26px 24px; }
.logo-strip span.label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.logo-strip .pill {
  font-size: 13px; font-weight: 700; color: var(--ink-soft);
  padding: 8px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--border);
}

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -20px rgba(15,23,42,0.22); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; }
.icon-orange { background: var(--orange-light); color: var(--orange-dark); }
.icon-blue { background: var(--blue-light); color: var(--blue-dark); }
.icon-green { background: var(--green-light); color: var(--green-dark); }

/* ---------- Packages ---------- */
.pkg-section { background: var(--bg-soft); }
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pkg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: #fcd9b8; }
.pkg-card.featured { border-color: var(--orange); box-shadow: 0 20px 40px -20px rgba(249,115,22,0.4); }
.pkg-badge {
  position: absolute; top: -13px; left: 22px;
  background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em;
  padding: 5px 14px; border-radius: 999px;
}
.pkg-speed { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.pkg-speed b { font-size: 34px; font-weight: 800; color: var(--ink); }
.pkg-speed span { font-size: 13px; color: var(--ink-faint); font-weight: 700; }
.pkg-label { font-size: 12.5px; color: var(--ink-faint); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 18px; }
.pkg-price { font-size: 21px; font-weight: 800; margin-bottom: 2px; }
.pkg-price span { font-size: 12.5px; font-weight: 600; color: var(--ink-faint); }
.pkg-note { font-size: 12px; color: var(--ink-faint); margin-bottom: 20px; }
.pkg-card .btn { margin-top: auto; }
.pkg-foot-note { text-align: center; margin-top: 40px; font-size: 14px; color: var(--ink-faint); }
.pkg-perks { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center; margin-top: 28px; }
.pkg-perk { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.pkg-perk .dot { width: 20px; height: 20px; border-radius: 50%; background: var(--green-light); color: var(--green-dark); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 30px 22px 26px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); }
.step-num {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; margin-bottom: 18px;
}
.step h3 { font-size: 16.5px; margin-bottom: 8px; }
.step p { font-size: 13.5px; }

/* ---------- Coverage ---------- */
.coverage { background: linear-gradient(135deg, #12203f, #1c2f57); border-radius: var(--radius-lg); padding: 64px; color: #fff; position: relative; overflow: hidden; }
.coverage::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 90% 0%, rgba(249,115,22,0.28), transparent 60%); }
.coverage-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.coverage h2 { color: #fff; font-size: clamp(26px, 3.4vw, 34px); margin-bottom: 16px; }
.coverage p { color: #c8d2ea; font-size: 15.5px; }
.coverage-area-list { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.coverage-area {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.coverage-area .pin { width: 34px; height: 34px; border-radius: 10px; background: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.coverage-area b { display: block; font-size: 15px; }
.coverage-area span { font-size: 12.5px; color: #a9b6d6; }
.coverage-cta { display: flex; flex-direction: column; gap: 14px; }
.coverage-cta .btn-primary { width: 100%; }

/* ---------- Testimoni ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-card); }
.testi-stars { color: var(--orange); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p.quote { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 20px; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 15px; }
.testi-who b { display: block; font-size: 14px; }
.testi-who span { font-size: 12px; color: var(--ink-faint); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--orange), #ff9d4d);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  color: #fff;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.9); }
.cta-band .btn-outline { background: #fff; color: var(--orange-dark); border: none; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 22px;
  box-shadow: var(--shadow-card);
}
.contact-icon { width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 19px; }
.contact-item b { display: block; font-size: 15px; margin-bottom: 4px; }
.contact-item span, .contact-item a { font-size: 14px; color: var(--ink-soft); }
.contact-wa-panel {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-wa-panel h3 { color: #fff; font-size: 24px; margin-bottom: 14px; }
.contact-wa-panel p { color: #b9c2d6; margin-bottom: 26px; }
.wa-form { display: flex; flex-direction: column; gap: 14px; }
.wa-form input, .wa-form select {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.06);
  color: #fff; font-family: inherit; font-size: 14.5px;
}
.wa-form input::placeholder { color: #8592ab; }
.wa-form select option { color: #0f172a; }

/* ---------- Footer ---------- */
.site-footer { background: #0c1526; color: #aeb8cf; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 800; font-size: 18px; margin-bottom: 16px; }
.footer-brand img { width: 34px; height: 34px; }
.site-footer p { color: #8f9ab5; font-size: 14px; }
.footer-col h4 { color: #fff; font-size: 13.5px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; color: #aeb8cf; margin-bottom: 12px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #74809c; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: #fff; }
.footer-social a:hover { background: var(--orange); }

/* ---------- WA floating button ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #22c55e; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 30px -10px rgba(34,197,94,0.6);
  font-size: 26px;
  animation: pulseWa 2.4s infinite;
}
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 16px 30px -10px rgba(34,197,94,0.6); }
  50% { box-shadow: 0 16px 30px -10px rgba(34,197,94,0.9), 0 0 0 10px rgba(34,197,94,0.12); }
}

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* ---------- Legal pages ---------- */
.legal-hero { padding: 64px 0 20px; }
.legal-hero h1 { font-size: clamp(30px, 4vw, 42px); }
.legal-hero p { margin-top: 14px; font-size: 15px; }
.legal-body { max-width: 780px; margin: 0 auto; padding-bottom: 40px; }
.legal-body h2 { font-size: 19px; margin: 36px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { font-size: 15px; margin-bottom: 12px; }
.legal-body ul { padding-left: 20px; margin: 0 0 12px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--orange-dark); margin-bottom: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .header-actions a.btn { display: none; } /* WA header berdesakan dgn logo di layar sempit — pakai tombol WA melayang saja */
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { max-width: 420px; margin: 0 auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .coverage-inner { grid-template-columns: 1fr; }
  .coverage { padding: 40px 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 40px 28px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .feature-grid, .pkg-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
