/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Nunito', sans-serif;
  background: #F4F9FF;
  color: #1B2E3C;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* =============================================
   DESIGN TOKENS
============================================= */
:root {
  /* Colors */
  --c-blue:       #0077B6;
  --c-blue-dk:    #023E58;
  --c-blue-md:    #0096C7;
  --c-sky:        #90E0EF;
  --c-cyan:       #00B4D8;
  --c-green:      #25D366;
  --c-green-logo: #2EAA2E;
  --c-green-dk:   #1E7A1E;
  --c-bg:         #F0F8FF;
  --c-bg-alt:     #EAF4FB;
  --c-text:       #1B2E3C;
  --c-muted:      #516B7A;
  --c-border:     #C8E6F5;

  /* Typography */
  --f-display: 'Plus Jakarta Sans', sans-serif;
  --f-body:    'Nunito', sans-serif;

  /* Spacing scale */
  --sp-xs:  .5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;

  /* Border radius */
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-full: 999px;

  /* Shadows */
  --sh-sm: 0 2px 12px rgba(0,119,182,.08);
  --sh-md: 0 4px 24px rgba(0,119,182,.12);
  --sh-lg: 0 8px 40px rgba(0,119,182,.18);
  --sh-wa: 0 6px 24px rgba(37,211,102,.45);
}

/* =============================================
   TYPOGRAPHY HELPERS
============================================= */
.f-display { font-family: var(--f-display); }

h1, h2, h3 { font-family: var(--f-display); line-height: 1.25; }

/* =============================================
   LAYOUT HELPERS
============================================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding-block: var(--sp-xl);
}

.section-alt {
  background: var(--c-bg-alt);
}

/* =============================================
   SECTION HEADINGS
============================================= */
.sec-head {
  text-align: center;
  margin-bottom: var(--sp-lg);
}

.sec-tag {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-green-dk);
  background: #D4EDDA;
  padding: .3rem .9rem;
  border-radius: var(--r-full);
  margin-bottom: .8rem;
  border: 1.5px solid rgba(46,170,46,.25);
}

.sec-title {
  font-family: var(--f-display);
  font-size: clamp(1.55rem, 4.5vw, 2.1rem);
  font-weight: 800;
  color: var(--c-blue-dk);
  margin-bottom: .5rem;
}

.sec-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-green-logo));
  border-radius: var(--r-full);
  margin: .7rem auto 0;
}

.sec-sub {
  color: var(--c-muted);
  font-size: 1rem;
  max-width: 540px;
  margin-inline: auto;
  margin-top: .6rem;
}

/* =============================================
   BUTTONS
============================================= */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--c-green);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 1.8rem;
  border-radius: var(--r-full);
  box-shadow: var(--sh-wa);
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-wa:hover  { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,.5); }
.btn-wa:active { transform: translateY(0); }

.wa-icon { width: 22px; height: 22px; flex-shrink: 0; }

.btn-telp {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 1.8rem;
  border-radius: var(--r-full);
  border: 2px solid rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
  transition: background .2s;
  white-space: nowrap;
}
.btn-telp:hover { background: rgba(255,255,255,.30); }

.btn-telp-outline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 1.8rem;
  border-radius: var(--r-full);
  border: 2px solid rgba(255,255,255,.55);
  transition: background .2s;
  white-space: nowrap;
}
.btn-telp-outline:hover { background: rgba(255,255,255,.15); }

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
}

/* Solid saat di-scroll — ditambahkan via JS */
.navbar.scrolled {
  background: rgba(2,62,88,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(144,224,239,.15);
}

/* Hero harus punya padding-top supaya tidak tertutup navbar */
.hero { padding-top: 72px; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin-inline: auto;
  padding: .9rem 1.25rem;
}

.nav-logo {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: -.01em;
}
.nav-logo strong { color: var(--c-sky); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: var(--c-green);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .88rem;
  padding: .5rem 1.1rem;
  border-radius: var(--r-full);
  box-shadow: 0 3px 12px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.5); }

.nav-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* =============================================
   HERO
============================================= */
.hero {
  background: linear-gradient(145deg, var(--c-blue-dk) 0%, #024f70 40%, var(--c-blue) 75%, #1a7a3a 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.g1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(144,224,239,.22) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.g2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(37,211,102,.12) 0%, transparent 70%);
  bottom: 80px; left: -80px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-inline: auto;
  padding: 3.5rem 1.25rem 5rem;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.16);
  color: rgba(255,255,255,.95);
  font-family: var(--f-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: .4rem 1.1rem;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(255,255,255,.28);
  margin-bottom: 1.4rem;
}

.pill-dot {
  width: 8px; height: 8px;
  background: var(--c-green-logo);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(46,170,46,.3);
  animation: blink 1.6s ease-in-out infinite;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}

.hero-highlight {
  color: #7EEAA0;
  position: relative;
}

.hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: 1.2rem 2rem;
  max-width: 480px;
  margin-inline: auto;
}

.stat { text-align: center; }

.stat-num {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  letter-spacing: .02em;
  margin-top: .2rem;
}

.stat-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.25);
}

.hero-wave {
  line-height: 0;
  margin-top: 1rem;
}
.hero-wave svg {
  width: 100%;
  height: 90px;
  display: block;
}

/* =============================================
   FEATURE CARDS (KEUNGGULAN)
============================================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
}

.feat-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--sh-sm);
  border: 1.5px solid var(--c-border);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--c-sky);
}

.feat-icon {
  width: 52px; height: 52px;
  background: var(--ic, #E0F2FE);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feat-card h3 {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-blue-dk);
  margin-bottom: .5rem;
}

.feat-card p {
  font-size: .95rem;
  color: var(--c-muted);
  line-height: 1.65;
}

/* FAQ Section Styles */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item[open] {
  border-color: #0077b6;
  box-shadow: 0 10px 15px -3px rgba(0, 119, 182, 0.1);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none; /* Menghilangkan segitiga bawaan browser */
}

.faq-question::-webkit-details-marker {
  display: none; /* Menghilangkan segitiga bawaan Safari */
}

.faq-question h3 {
  font-size: 1.1rem;
  color: #1e293b;
  margin: 0;
  font-weight: 600;
}

.faq-icon::before {
  content: "+";
  font-size: 1.5rem;
  font-weight: bold;
  color: #0077b6;
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-item[open] .faq-icon::before {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 20px 20px;
  color: #475569;
  line-height: 1.6;
  font-size: 0.95rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 15px;
}

.faq-answer strong {
  color: #0e172c;
}

/* =============================================
   HARGA — PC/DESKTOP FIX (UPDATED)
============================================= */
.harga-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-inline: auto;
}

.harga-center {
  width: 100%;
  max-width: 420px; /* Membatasi lebar agar card tidak melebar paksa di layar lebar */
  margin-inline: auto;
}

.harga-card {
  width: 100%;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--c-border);
  box-shadow: var(--sh-sm);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.harga-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }

.harga-card.harga-star {
  background: var(--c-blue-dk);
  border-color: transparent;
  box-shadow: var(--sh-lg);
  color: #fff;
}

.harga-badge {
  display: inline-block;
  background: #FBBF24;
  color: #7C2D12;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .06em;
  padding: .3rem .9rem;
  border-radius: var(--r-full);
  margin-bottom: .9rem;
}

.harga-icon { font-size: 2rem; margin-bottom: .7rem; }

.harga-tipe {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: .6rem;
  color: var(--c-blue-dk);
}
.harga-star .harga-tipe { color: #fff; }

.harga-price {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-blue);
  margin-bottom: .4rem;
}
.harga-price span {
  font-size: 1rem;
  font-weight: 600;
  opacity: .8;
}
.harga-star .harga-price { color: var(--c-sky); }

.harga-info {
  font-size: .88rem;
  color: var(--c-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.harga-star .harga-info { color: rgba(255,255,255,.7); }

.harga-btn {
  display: inline-block;
  background: var(--c-bg);
  color: var(--c-blue);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .9rem;
  padding: .65rem 1.5rem;
  border-radius: var(--r-full);
  border: 2px solid var(--c-border);
  transition: background .2s, border-color .2s;
}
.harga-btn:hover { background: #DBEAFE; border-color: var(--c-sky); }

.harga-btn.star-btn {
  background: var(--c-green);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--sh-wa);
}
.harga-btn.star-btn:hover { background: #1EBF58; }

.harga-note-red {
  font-size: .85rem;
  font-weight: 700;
  color: #E11D48;
  margin-bottom: .4rem;
}

.harga-note-strip {
  font-size: .8rem;
  color: var(--c-muted);
  margin-bottom: .6rem;
  font-style: italic;
}

/* =============================================
   STEPS (CARA PESAN)
============================================= */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 860px;
  margin-inline: auto;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  background: var(--c-bg);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--c-border);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.step:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }

.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--c-blue-md), var(--c-blue-dk));
  color: #fff;
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(0,119,182,.3);
}

.step h3 {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-blue-dk);
  margin-bottom: .5rem;
}

.step p {
  font-size: .9rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--c-sky);
  font-weight: 900;
  flex-shrink: 0;
}

.steps-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* =============================================
   TESTIMONI
============================================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 1.25rem;
}

.testi-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1.5px solid var(--c-border);
  box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px; left: 16px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--c-border);
  line-height: 1;
  pointer-events: none;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.testi-stars {
  font-size: 1rem;
  margin-bottom: .8rem;
}

.testi-card p {
  font-size: .95rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testi-av {
  width: 42px; height: 42px;
  background: var(--av, var(--c-blue));
  color: #fff;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .95rem;
  color: var(--c-blue-dk);
}

.testi-loc {
  font-size: .8rem;
  color: var(--c-muted);
  margin-top: .1rem;
}

/* =============================================
   CTA BANNER
============================================= */
.cta-banner {
  background: linear-gradient(145deg, var(--c-blue-dk) 0%, var(--c-blue-md) 60%, var(--c-cyan) 100%);
  padding: 5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cg1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(144,224,239,.2) 0%, transparent 70%);
  top: -100px; right: -80px;
}
.cg2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,211,102,.15) 0%, transparent 70%);
  bottom: -60px; left: -60px;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin-inline: auto;
}

.cta-emoji {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  animation: shake 2.5s ease-in-out infinite;
}
@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(-10deg); }
  30% { transform: rotate(10deg); }
  45% { transform: rotate(-6deg); }
  60% { transform: rotate(6deg); }
  75% { transform: rotate(-3deg); }
}

.cta-banner h2 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .9rem;
  line-height: 1.25;
}

.cta-banner p {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--c-blue-dk);
  padding: 3.5rem 1.25rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 860px;
  margin-inline: auto;
}

.footer-logo {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
}
.footer-logo strong { color: var(--c-sky); }

.footer-tagline {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  font-weight: 600;
  transition: color .2s;
}
.footer-links a:hover { color: var(--c-sky); }

.footer-wa {
  display: inline-block;
  color: var(--c-green-logo);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 1.75rem;
  transition: opacity .2s;
}
.footer-wa:hover { opacity: .8; }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin-bottom: 1.25rem;
}

.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* =============================================
   FLOATING WHATSAPP
============================================= */
.float-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--c-green);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .88rem;
  padding: .75rem 1.2rem .75rem 1rem;
  border-radius: var(--r-full);
  box-shadow: var(--sh-wa);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
  animation: float-pulse 2.5s ease-in-out infinite;
}
.float-wa:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
  animation: none;
}
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,.7); }
}

/* =============================================
   SCROLL ANIMATION
============================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-aos].aos-in {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   OUR CLIENTS — GANTI SEMUA YANG LAMA
============================================= */
.clients-logos {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 3.5rem;
  width: 100%;
  box-sizing: border-box;
  padding: 1.5rem 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.clients-logos::-webkit-scrollbar { display: none; }
.clients-logos { -ms-overflow-style: none; scrollbar-width: none; }

/* Satu ukuran konsisten: 140px desktop, 120px mobile — tidak ada konflik */
.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 140px;
  width: 140px;
}

.cl-logo-img {
  width: 140px;
  height: 140px;
  background: #ffffff;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,119,182,.08);
  border: 1.5px solid rgba(0,119,182,.1);
  padding: .85rem;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .25s;
}

.cl-logo-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.client-logo span {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--c-muted);
  text-align: center;
  line-height: 1.3;
  margin-top: .6rem;
  width: 140px;
  white-space: normal;
  word-wrap: break-word;
  font-family: var(--f-display);
}

.client-logo:hover .cl-logo-img {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 28px rgba(0,119,182,.16);
  border-color: var(--c-cyan);
}

/* Mobile: satu nilai saja — tidak ada duplikasi */
@media (max-width: 639px) {
  .client-logo {
    flex: 0 0 120px;
    width: 120px;
  }
  .cl-logo-img {
    width: 120px;
    height: 120px;
    padding: .65rem;
  }
  .client-logo span {
    width: 120px;
    font-size: .75rem;
  }
}

/* =============================================
   TRUST BAR (TETAP SAMA)
============================================= */
.clients-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  background: linear-gradient(135deg, var(--c-blue-dk) 0%, #01293a 100%);
  border-radius: var(--r-xl);
  border: 1.5px solid rgba(46,170,46,.2);
  padding: 1.75rem 2.5rem;
  max-width: 740px;
  margin-inline: auto;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.trust-num { font-family: var(--f-display); font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.trust-label { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.6); text-align: center; letter-spacing: .03em; }
.trust-div { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* =============================================
   LOKASI
============================================= */
.lokasi-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  max-width: 960px;
  margin-inline: auto;
}

.lokasi-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.lokasi-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
}

.lokasi-icon {
  font-size: 1.4rem;
  line-height: 1;
  padding-top: .1rem;
  flex-shrink: 0;
}

.lokasi-label {
  font-family: var(--f-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: .2rem;
}

.lokasi-val {
  font-size: .95rem;
  color: var(--c-text);
  font-weight: 600;
  line-height: 1.5;
}

.lokasi-wa {
  margin-top: .5rem;
  justify-content: center;
}

.lokasi-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--c-border);
  box-shadow: var(--sh-md);
  min-height: 380px;
}

/* =============================================
   MEDIA QUERIES (GLOBAL & RESPONSIVE)
============================================= */
@media (min-width: 640px) {
  .container { padding-inline: 2rem; }
}

/* RESPONSIVE — MOBILE (MAX-WIDTH: 639px) */
@media (max-width: 639px) {
  /* Hero */
  .hero-inner { padding: 2.5rem 1.25rem 4rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-wa, .btn-telp { width: 100%; justify-content: center; }
  .hero-stats { gap: 1rem; padding: 1rem 1.25rem; }
  .stat-num { font-size: 1.1rem; }

  /* Steps — vertical */
  .steps { flex-direction: column; align-items: stretch; }
  .step { max-width: 100%; }
  .step-arrow { transform: rotate(90deg); margin-inline: auto; }

  /* client-logo mobile: sudah diatur di blok tersendiri di atas */
  .clients-trust { padding: 1.25rem 1.5rem; border-radius: var(--r-lg); }
  .trust-div { display: none; }

  /* Lokasi map stack on mobile */
  .lokasi-wrap { grid-template-columns: 1fr; }
  .lokasi-map { min-height: 280px; }

  /* Clients 1 column */
  .clients-grid { grid-template-columns: 1fr; }

  /* Harga featured no scale on mobile */
  .harga-card.harga-star { transform: none; }
  .harga-card.harga-star:hover { transform: translateY(-4px); }

  /* Layanan horizontal padding reduce */
  .layanan-card { padding: 1.25rem; }

  /* CTA actions */
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-telp-outline { width: 100%; justify-content: center; }

  /* Float button shorter label */
  .float-wa span { display: none; }
  .float-wa { padding: .85rem; border-radius: 50%; }

  /* Sections */
  .section { padding-block: 3rem; }
}

/* RESPONSIVE — LARGE SCREENS / PC (MIN-WIDTH: 1024px) */
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .harga-grid { padding-block: var(--sp-sm); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  
  .harga-card.harga-star {
    transform: scale(1.05); /* Efek pop-out eksklusif PC agar seimbang di tengah */
  }
  .harga-card.harga-star:hover {
    transform: scale(1.05) translateY(-6px);
  }
}


/* =============================================
   GALERI PENGERJAAN
============================================= */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.galeri-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1.5px solid var(--c-border);
  background: #000;
  aspect-ratio: 4/3;
}

.galeri-wide {
  grid-column: span 3;
  aspect-ratio: 16/7;
}

.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, opacity .4s ease;
  opacity: .92;
}

.galeri-item:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.galeri-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(2,62,88,.85));
  color: #fff;
  font-family: var(--f-display);
  font-size: .82rem;
  font-weight: 600;
  padding: 1.5rem .9rem .7rem;
  letter-spacing: .01em;
}

@media (max-width: 639px) {
  .galeri-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .galeri-wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
}
/* =============================================
   KATEGORI KLIEN (GANTI LOGO BRAND)
============================================= */
.klien-kategori-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.klien-kat-item {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.klien-kat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--c-cyan);
}

.klien-kat-icon {
  font-size: 2rem;
  margin-bottom: .6rem;
  line-height: 1;
}

.klien-kat-label {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-blue-dk);
  margin-bottom: .3rem;
}

.klien-kat-sub {
  font-size: .82rem;
  color: var(--c-muted);
}

.klien-disclaimer {
  text-align: center;
  font-size: .8rem;
  color: var(--c-muted);
  font-style: italic;
  margin-top: .5rem;
  margin-bottom: 2rem;
  max-width: 640px;
  margin-inline: auto;
  padding: .6rem 1rem;
  background: rgba(0,0,0,.03);
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  line-height: 1.5;
}

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

/* =============================================
   AREA LAYANAN (SEO SECTION)
============================================= */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.area-card {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--c-blue-md);
}

.area-card-cta {
  background: linear-gradient(135deg, var(--c-blue-dk) 0%, #024f70 100%);
  border-color: transparent;
  color: #fff;
}

.area-card-cta h3, .area-card-cta p {
  color: rgba(255,255,255,.9);
}

.area-card-cta:hover {
  border-color: var(--c-sky);
}

.area-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.area-card h3 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-blue-dk);
}

.area-card p {
  font-size: .88rem;
  color: var(--c-muted);
  line-height: 1.6;
  flex: 1;
}

.area-cta {
  display: inline-block;
  font-family: var(--f-display);
  font-size: .82rem;
  font-weight: 700;
  color: var(--c-blue);
  margin-top: .25rem;
  transition: color .2s;
}

.area-cta:hover { color: var(--c-blue-md); }

.area-card-cta .area-cta {
  color: #7dd3fc;
}

.area-card-cta .area-cta:hover {
  color: #fff;
}

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

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

/* =============================================
   GOOGLE MAPS BUTTON
============================================= */
.btn-gmaps {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  color: var(--c-blue-dk);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 1.6rem;
  border-radius: var(--r-full);
  border: 2px solid var(--c-border);
  box-shadow: var(--sh-sm);
  transition: background .2s, border-color .2s, transform .2s;
  white-space: nowrap;
  width: 100%;
  justify-content: center;
  margin-top: .25rem;
}
.btn-gmaps:hover {
  background: var(--c-bg-alt);
  border-color: var(--c-blue);
  transform: translateY(-2px);
}

/* =============================================
   FOOTER MAPS LINK
============================================= */
.footer-maps {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  font-family: var(--f-display);
  font-weight: 600;
  margin-top: .4rem;
  transition: color .2s;
}
.footer-maps:hover { color: #fff; }

/* =============================================
   PERFORMANCE — LOW-END MOBILE
   @media prefers-reduced-motion + low-perf hints
============================================= */

/* Reduce motion: matikan semua animasi untuk user yang minta */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .nav-dot, .pill-dot { animation: none; }
  .float-wa { animation: none; }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}

/* HP mid-low: matikan backdrop-filter yang mahal */
@media (max-width: 639px) {
  .navbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(2,62,88,.98) !important;
  }
  /* Matikan hero glow di mobile — jadi gradient biasa */
  .hero-glow { display: none; }
  /* Kurangi box-shadow kompleks */
  .feat-card, .testi-card, .faq-item {
    box-shadow: 0 2px 8px rgba(0,119,182,.08);
  }
  /* Kurangi transition cost */
  .btn-wa, .btn-telp, .btn-telp-outline {
    transition: none;
  }
  /* Float WA: simplify animation */
  .float-wa {
    animation: none;
    box-shadow: 0 4px 16px rgba(37,211,102,.5);
  }
}

/* Hint browser untuk gpu-compositing hanya pada elemen yang benar-benar perlu */
.float-wa,
.btn-wa,
.hero-inner {
  will-change: auto; /* reset — jangan paksa GPU layer untuk semua */
}

/* =============================================
   PRINT — HIDE DECORATIVE ELEMENTS
============================================= */
@media print {
  .navbar, .float-wa, .hero-glow, .cta-banner { display: none; }
  body { background: #fff; color: #000; }
}
/* =============================================
   BLOG / ARTIKEL SECTION
============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #DDF0FA;
  box-shadow: 0 2px 12px rgba(0,119,182,.08);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  color: #1B2E3C;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 8px 40px rgba(0,119,182,.18); }

.blog-thumb {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blog-emoji { font-size: 3rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,.2)); }

.blog-body {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  flex: 1;
}
.blog-meta { display: flex; align-items: center; gap: .6rem; }
.blog-cat {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #DBEAFE;
  color: #0077B6;
  padding: .2rem .7rem;
  border-radius: 999px;
}
.blog-date { font-size: .78rem; color: #516B7A; }
.blog-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .98rem;
  font-weight: 800;
  color: #023E58;
  line-height: 1.4;
}
.blog-card p { font-size: .87rem; color: #516B7A; line-height: 1.6; flex: 1; }
.blog-read {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .84rem;
  font-weight: 700;
  color: #0077B6;
  margin-top: .2rem;
  display: inline-block;
}
.blog-card:hover .blog-read { color: #00B4D8; }

/* =============================================
   ARTIKEL PAGE STYLES
============================================= */
.art-hero {
  background: linear-gradient(145deg, #023E58, #0096C7);
  padding: 5rem 1.25rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.art-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(144,224,239,.18) 0%, transparent 60%);
}
.art-hero-inner { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; }

.art-cat {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3);
  margin-bottom: 1.2rem;
}
.art-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.art-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}
.art-meta span { display: flex; align-items: center; gap: .3rem; }

.art-body {
  max-width: 760px;
  margin: 3rem auto 4rem;
  padding-inline: 1.25rem;
}
.art-body h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #023E58;
  margin: 2.2rem 0 .8rem;
}
.art-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0077B6;
  margin: 1.5rem 0 .5rem;
}
.art-body p { font-size: 1.02rem; color: #2C3E50; line-height: 1.85; margin-bottom: 1rem; }
.art-body ul, .art-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.art-body li { font-size: 1.02rem; color: #2C3E50; line-height: 1.8; margin-bottom: .4rem; }
.art-body strong { color: #023E58; }

.art-highlight {
  background: #EFF6FF;
  border-left: 4px solid #0077B6;
  border-radius: 0 10px 10px 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 1rem;
  color: #023E58;
  line-height: 1.7;
}
.art-cta-box {
  background: linear-gradient(135deg, #023E58, #0096C7);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin: 2.5rem 0;
}
.art-cta-box h3 { font-family: 'Plus Jakarta Sans', sans-serif; color: #fff; font-size: 1.3rem; margin-bottom: .5rem; }
.art-cta-box p { color: rgba(255,255,255,.85); margin-bottom: 1.2rem; font-size: 1rem; }

.art-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #0077B6;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 2rem;
  transition: color .2s;
}
.art-back:hover { color: #00B4D8; }

.art-related { border-top: 1.5px solid #DDF0FA; padding-top: 2rem; margin-top: 2rem; }
.art-related h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: #023E58; margin-bottom: 1rem; }
.art-related-links { display: flex; flex-direction: column; gap: .6rem; }
.art-related-links a { color: #0077B6; font-weight: 600; font-size: .95rem; transition: color .15s; }
.art-related-links a:hover { color: #00B4D8; }

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

/* =============================================
   NAVBAR HAMBURGER MENU
============================================= */
.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* =============================================
   NAVBAR — DESKTOP HORIZONTAL + MOBILE HAMBURGER
============================================= */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 1.5rem;
  height: 72px;
  gap: 1.5rem;
}

/* ── Desktop links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-links > li > a,
.nav-drop-trigger {
  display: flex;
  align-items: center;
  gap: .3rem;
  color: rgba(255,255,255,.85);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  padding: .45rem .75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-links > li > a:hover,
.nav-drop-trigger:hover,
.nav-has-drop:hover > a {
  background: rgba(255,255,255,.12);
  color: #fff;
}

/* ── Dropdown container ── */
.nav-has-drop {
  position: relative;
  list-style: none;
}

.nav-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #023E58;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  min-width: 220px;
  padding: .5rem 0;
  list-style: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  z-index: 200;
  animation: subFadeIn .18s ease;
}

@keyframes subFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Arrow pointer */
.nav-submenu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: #023E58;
  border-left: 1px solid rgba(255,255,255,.12);
  border-top: 1px solid rgba(255,255,255,.12);
  rotate: 45deg;
}

.nav-has-drop:hover .nav-submenu,
.nav-has-drop:focus-within .nav-submenu {
  display: block;
}

.nav-submenu li a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.1rem;
  color: rgba(255,255,255,.85);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-submenu li a:hover {
  background: rgba(255,255,255,.1);
  color: #7dd3fc;
}

/* ── Right side ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

/* ── Burger button (hidden on desktop) ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
  flex-shrink: 0;
}
.nav-burger:hover { background: rgba(255,255,255,.25); }
.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile dropdown panel ── */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(2,62,88,.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: .75rem 0 1rem;
  animation: dropDown .22s ease;
}
.nav-mobile.open { display: flex; }

@keyframes dropDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-mob-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .72rem 1.25rem;
  color: rgba(255,255,255,.85);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.nav-mob-link:hover { background: rgba(255,255,255,.08); color: #7dd3fc; }

.nav-mob-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: .4rem 1.25rem;
}

.nav-mob-wa {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: .5rem 1.25rem 0;
  background: #25D366;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s;
}
.nav-mob-wa:hover { background: #1EBF58; }

/* ── MOBILE breakpoint ── */
@media (max-width: 768px) {
  .nav-links { display: none; } /* hide desktop links */
  .nav-burger { display: flex; } /* show hamburger */
  .nav-inner { height: 64px; }
}

/* =============================================
   KECAMATAN COVERAGE BLOCKS (SEO Section)
============================================= */
#kecamatan-layanan .container {
  max-width: 900px;
}

.kec-block {
  background: #fff;
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-blue);
  border-radius: var(--r-md);
  padding: 1.4rem 1.75rem;
  margin-bottom: 1rem;
  transition: box-shadow .25s ease, transform .25s ease;
}
.kec-block:hover {
  box-shadow: var(--sh-md);
  transform: translateX(4px);
}
.kec-block:last-child { margin-bottom: 0; }

.kec-title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-blue-dk);
  margin: 0 0 .6rem 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  line-height: 1.4;
}

.kec-badge { font-size: 1rem; flex-shrink: 0; }

.kec-desc {
  color: #374151;
  font-size: .93rem;
  line-height: 1.75;
  margin: 0 0 .85rem 0;
}
.kec-desc strong { color: var(--c-blue-dk); }
.kec-desc em { color: var(--c-muted); font-style: normal; }

.kec-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--f-display);
  font-size: .88rem;
  font-weight: 700;
  color: var(--c-blue);
  text-decoration: none;
  border-bottom: 1.5px dotted var(--c-blue);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.kec-link:hover { color: var(--c-blue-md); border-color: var(--c-blue-md); }

/* Left accent color varies per kabupaten */
.kec-block:nth-child(1) { border-left-color: #0077B6; } /* Kudus — biru */
.kec-block:nth-child(2) { border-left-color: #059669; } /* Jepara — hijau */
.kec-block:nth-child(3) { border-left-color: #D97706; } /* Pati — amber */
.kec-block:nth-child(4) { border-left-color: #7C3AED; } /* Rembang — ungu */
.kec-block:nth-child(5) { border-left-color: #DC2626; } /* Blora — merah */

@media (max-width: 639px) {
  .kec-block {
    padding: 1.1rem 1.25rem;
  }
  .kec-block:hover { transform: none; }
  .kec-title { font-size: .98rem; }
  .kec-desc { font-size: .88rem; }
}

/* =============================================
   SEO TEXT BLOCK (Tentang Layanan section)
============================================= */
.seo-text-block {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.seo-text-block p {
  color: #374151;
  font-size: .97rem;
  line-height: 1.85;
  margin: 0;
  background: #fff;
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
}
.seo-text-block p:first-child {
  border-top: 3px solid var(--c-blue);
}
.seo-text-block strong { color: var(--c-blue-dk); }

@media (max-width: 639px) {
  .seo-text-block p {
    padding: 1rem 1.1rem;
    font-size: .92rem;
  }
}

/* =============================================
   FOOTER — keyword cloud small text
============================================= */
.footer-copy small {
  display: block;
  margin-top: .5rem;
  color: rgba(255,255,255,.22);
  font-size: .73rem;
  line-height: 1.6;
}

/* =============================================
   STICKY WA BANNER (mobile — muncul di bawah layar)
   Ditambahkan via JS saat scroll > 400px
============================================= */
.sticky-wa-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .85rem 1.25rem;
  box-shadow: 0 -4px 24px rgba(37,211,102,.4);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.sticky-wa-bar.visible {
  transform: translateY(0);
}
.sticky-wa-bar a {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
}
.sticky-wa-bar .swa-pulse {
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
/* Hanya tampil di mobile */
@media (min-width: 769px) {
  .sticky-wa-bar { display: none !important; }
}

/* =============================================
   AREA PAGE — navbar, hero, komponen
   (sedot-wc-kudus.html, sedot-wc-jepara.html, dll)
============================================= */

/* Navbar di halaman area langsung solid (class .scrolled sudah ada di HTML) */
.navbar.scrolled {
  background: rgba(2,62,88,.96) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(144,224,239,.15);
}

/* ── Area Hero ── */
.area-hero {
  background: linear-gradient(145deg, #023E58 0%, #024f70 50%, #0077B6 100%);
  /* kompensasi navbar fixed 72px + ruang visual */
  padding: calc(72px + 3rem) 1.25rem 4rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.area-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--c-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.area-breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1rem;
  font-family: var(--f-display);
}
.area-breadcrumb a {
  color: #7dd3fc;
  text-decoration: none;
  transition: opacity .2s;
}
.area-breadcrumb a:hover { opacity: .8; }

.area-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 800;
  margin-bottom: .75rem;
  line-height: 1.2;
}

.area-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

/* ── Kecamatan grid ── */
.area-kec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-top: 1.5rem;
}

.area-kec-item {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: .75rem 1rem;
  font-family: var(--f-display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-blue-dk);
  text-align: center;
  transition: background .2s, border-color .2s;
}
.area-kec-item:hover {
  background: #DBEAFE;
  border-color: var(--c-sky);
}

/* ── FAQ area ── */
.area-faq-list { max-width: 720px; margin-inline: auto; }

/* ── Back home link ── */
.back-home {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--f-display);
  font-size: .88rem;
  font-weight: 700;
  color: var(--c-blue);
  margin-bottom: 2rem;
  transition: color .2s;
}
.back-home:hover { color: var(--c-blue-md); }

/* ── Mobile breakpoint area page ── */
@media (max-width: 768px) {
  .area-hero {
    padding-top: calc(64px + 2rem);
  }
}

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

/* =============================================
   KLIEN DISCLAIMER
============================================= */
.klien-disclaimer {
  text-align: center;
  font-size: .78rem;
  color: var(--c-muted);
  margin-top: .5rem;
  margin-bottom: 2rem;
  font-style: italic;
  opacity: .75;
}

/* =============================================
   FOOTER MAPS LINK
============================================= */
.footer-maps {
  display: inline-block;
  color: var(--c-sky);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .9rem;
  margin-left: 1rem;
  margin-bottom: 1.75rem;
  transition: opacity .2s;
}
.footer-maps:hover { opacity: .75; }

@media (max-width: 639px) {
  .footer-maps {
    display: block;
    margin-left: 0;
    margin-bottom: 1rem;
    margin-top: -.75rem;
  }
}

.area-footer-bridge{
  background: #023E58;
  color: #fff;
  padding-bottom: 2rem;
}

.area-footer-bridge .sec-title,
.area-footer-bridge .sec-sub{
  color: #fff;
}

.area-footer-bridge .sec-tag{
  background: rgba(255,255,255,.15);
  color: #fff;
}

.area-footer-bridge .footer-links a{
  color: rgba(255,255,255,.85);
}

.area-footer-bridge .footer-links a:hover{
  color: #fff;
}

footer{
  margin-top: 0;
}


