/* ================================================================
   JASAQU – Bengkel Mobil Panggilan Bekasi
   CSS Premium, Mobile-First, Clean & Professional
   ================================================================ */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f4f5f7;
  color: #1a1d21;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ----------------------------------------------------------------
   CSS VARIABLES
---------------------------------------------------------------- */
:root {
  /* Colors */
  --bg:           #f4f5f7;
  --surface:      #ffffff;
  --surface-2:    #f0f2f4;
  --dark:         #1a1d21;
  --dark-2:       #23272c;
  --dark-3:       #2e333a;
  --muted:        #6b737e;
  --muted-2:      #9aa1ab;
  --line:         #e2e6ea;
  --line-2:       #d1d6dc;

  /* Accent - Biru Tua Profesional */
  --accent:       #1a3a5c;
  --accent-2:     #132d47;
  --accent-3:     #0e2236;

  /* Green (WhatsApp CTA) */
  --wa:           #16533e;
  --wa-2:         #0f3d2c;
  --wa-3:         #1a6b50;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(20,24,30,.06);
  --shadow:       0 6px 24px rgba(20,24,30,.08);
  --shadow-md:    0 12px 36px rgba(20,24,30,.10);
  --shadow-lg:    0 20px 50px rgba(20,24,30,.12);

  /* Borders */
  --radius-sm:    10px;
  --radius:       16px;
  --radius-lg:    22px;
  --radius-xl:    30px;

  /* Spacing */
  --section-pad:  64px;
  --container:    1160px;
}

/* ----------------------------------------------------------------
   UTILITIES
---------------------------------------------------------------- */
.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--section-pad) 0;
}

.section-dark {
  background: linear-gradient(160deg, #1c2028 0%, #242930 60%, #1a1f26 100%);
}

.section-tinted {
  background: var(--surface-2);
}

.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* Section header */
.section-head {
  margin-bottom: 36px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(26,58,92,.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.section-label-light {
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
}

.section-title {
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-sub {
  font-size: .97rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
}

/* Grids */
.grid { display: grid; gap: 16px; }

.grid-keunggulan { grid-template-columns: 1fr; }
.grid-layanan    { grid-template-columns: 1fr; }
.grid-testimoni  { grid-template-columns: 1fr; }

/* Fade animation base */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay { transition-delay: .12s; }
.fade-in-delay-2 { transition-delay: .24s; }

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: background .2s, transform .15s, box-shadow .2s, opacity .2s;
  position: relative;
  overflow: hidden;
}

.btn:active { transform: translateY(1px) scale(.99); }

/* Primary (blue-dark) */
.btn-primary {
  background: var(--accent);
  color: #fff;
  min-height: 50px;
  padding: 0 22px;
  box-shadow: 0 6px 20px rgba(26,58,92,.22);
}
.btn-primary:hover { background: var(--accent-2); }

/* Outline small (topbar) */
.btn-outline-sm {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--line-2);
  min-height: 40px;
  padding: 0 14px;
  font-size: .85rem;
  border-radius: 9px;
}
.btn-outline-sm:hover { background: var(--surface-2); }

/* WA small (topbar) */
.btn-wa-sm {
  background: var(--wa);
  color: #fff;
  min-height: 40px;
  padding: 0 14px;
  font-size: .85rem;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(22,83,62,.20);
}
.btn-wa-sm:hover { background: var(--wa-2); }

/* Call button (hero) */
.btn-call {
  background: #fff;
  color: var(--dark);
  min-height: 56px;
  padding: 0 26px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  flex: 1 1 auto;
}
.btn-call:hover { background: #f0f2f4; }

/* WA hero */
.btn-wa-hero {
  background: var(--wa);
  color: #fff;
  min-height: 56px;
  padding: 0 26px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(22,83,62,.28);
  flex: 1 1 auto;
}
.btn-wa-hero:hover { background: var(--wa-2); }

/* WA CTA section */
.btn-wa-cta {
  background: var(--wa);
  color: #fff;
  min-height: 60px;
  padding: 0 30px;
  font-size: 1.02rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 28px rgba(22,83,62,.30);
  flex: 1 1 auto;
}
.btn-wa-cta:hover { background: var(--wa-2); }

/* Call CTA section */
.btn-call-cta {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.18);
  min-height: 60px;
  padding: 0 30px;
  font-size: 1.02rem;
  border-radius: var(--radius-sm);
  flex: 1 1 auto;
  backdrop-filter: blur(8px);
}
.btn-call-cta:hover { background: rgba(255,255,255,.16); }

/* ----------------------------------------------------------------
   TOPBAR
---------------------------------------------------------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,245,247,.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26,29,33,.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}

.brand-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.brand-dot {
  color: var(--accent);
}

.brand-tagline {
  display: block;
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .01em;
}

.topbar-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   HERO SECTION
---------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #1c2028 0%, #242c35 45%, #1e272f 100%);
  padding: 48px 0 52px;
  color: #fff;
}

/* Subtle grid texture */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: .4;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(26,58,92,.25) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

/* Urgency pill */
.urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.90);
  font-size: .82rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  margin-bottom: 18px;
}

/* Live dot */
.live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5de87a;
  flex-shrink: 0;
  animation: pulse-green 2s ease-in-out infinite;
}

.live-dot-sm {
  width: 8px;
  height: 8px;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(93,232,122,.5); }
  50%       { box-shadow: 0 0 0 8px rgba(93,232,122,0); }
}

.hero h1 {
  font-size: clamp(1.9rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 14px;
  color: #fff;
}

.h1-accent {
  color: #8cb8e0;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.phone-display {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .02em;
  color: rgba(255,255,255,.90);
  transition: color .2s;
}

.phone-display:hover { color: #fff; }

.phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
}

/* Hero Panel */
.hero-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0,0,0,.20);
}

.panel-header {
  margin-bottom: 16px;
}

.panel-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}

.panel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.stat-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-num span {
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
}

.stat-label {
  display: block;
  font-size: .74rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

.panel-services-title {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  margin-bottom: 9px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ps-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ps-tags span {
  padding: 6px 11px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  font-size: .80rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

/* ----------------------------------------------------------------
   KEUNGGULAN SECTION
---------------------------------------------------------------- */
.grid-keunggulan {
  margin-top: 28px;
}

.unggulan-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid rgba(26,29,33,.055);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.unggulan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.unggulan-card.ung-featured {
  background: linear-gradient(135deg, #f7f9fb 0%, #eef0f4 100%);
  border-color: rgba(26,58,92,.10);
}

.ung-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f2f4f7 0%, #e8ebef 100%);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.ung-body h3 {
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
  color: var(--dark);
}

.ung-body p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   LAYANAN SECTION
---------------------------------------------------------------- */
.grid-layanan {
  margin-top: 28px;
}

.layanan-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: background .25s, transform .25s, box-shadow .25s;
}

.layanan-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}

.layanan-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.20);
}

.layanan-num {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: rgba(255,255,255,.25);
  margin-bottom: 12px;
}

.layanan-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.80);
  margin-bottom: 14px;
}

.layanan-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
}

.layanan-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.60);
  line-height: 1.65;
  margin-bottom: 16px;
}

.layanan-cta {
  display: inline-block;
  font-size: .84rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}

.layanan-cta:hover {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

/* ----------------------------------------------------------------
   AREA + MAP SECTION
---------------------------------------------------------------- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.area-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--dark);
  transition: border-color .2s, box-shadow .2s;
}

.area-item:hover {
  border-color: var(--line-2);
  box-shadow: var(--shadow-sm);
}

.area-item-more {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #f7f9fb, #eef1f5);
  border-color: rgba(26,58,92,.12);
  color: var(--accent);
}

.area-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #2a5280);
  display: grid;
  place-items: center;
  color: #fff;
}

/* Map card */
.map-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.map-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #2a5280 100%);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.map-title {
  font-weight: 700;
  font-size: .92rem;
  color: var(--dark);
}

.map-sub {
  font-size: .80rem;
  color: var(--muted);
}

.map-frame iframe {
  filter: grayscale(.4) contrast(1.04);
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.map-open-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--accent);
  border-top: 1px solid var(--line);
  transition: background .2s;
}

.map-open-btn:hover {
  background: var(--surface-2);
}

/* ----------------------------------------------------------------
   TESTIMONI SECTION
---------------------------------------------------------------- */
.grid-testimoni {
  margin-top: 28px;
}

.quote-card {
  background: var(--surface);
  border: 1px solid rgba(26,29,33,.055);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}

.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.quote-stars {
  font-size: .85rem;
  letter-spacing: .05em;
  color: #c8a800;
  margin-bottom: 12px;
}

.quote-text {
  font-size: .91rem;
  line-height: 1.7;
  color: #3a4049;
  margin-bottom: 18px;
  position: relative;
}

.quote-text::before {
  content: "\201C";
  position: absolute;
  top: -6px;
  left: -4px;
  font-size: 2.5rem;
  line-height: 1;
  color: #dde1e6;
  font-weight: 900;
}

.quote-text { padding-left: 18px; }

.quote-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.quote-avatar {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8d0da 0%, #b0bbc7 100%);
  display: grid;
  place-items: center;
  font-size: .78rem;
  font-weight: 800;
  color: #3a4a58;
  letter-spacing: .03em;
}

.quote-name {
  font-weight: 700;
  font-size: .88rem;
  color: var(--dark);
}

.quote-loc {
  font-size: .80rem;
  color: var(--muted);
}

/* ----------------------------------------------------------------
   CTA SECTION
---------------------------------------------------------------- */
.section-cta {
  padding: 56px 0;
  background: var(--bg);
}

.cta-box {
  background: linear-gradient(155deg, #1c2028 0%, #252d36 60%, #1e2830 100%);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  color: #fff;
  box-shadow: 0 28px 60px rgba(15,18,22,.20);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(26,58,92,.25) 0%, transparent 65%);
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  font-size: .80rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  margin-bottom: 16px;
}

.cta-title {
  font-size: clamp(1.7rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.cta-title span {
  color: #8cb8e0;
}

.cta-desc {
  font-size: .96rem;
  color: rgba(255,255,255,.72);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.cta-desc strong {
  color: #fff;
  font-weight: 700;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.cta-number {
  margin-top: 20px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: rgba(255,255,255,.75);
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.footer {
  background: var(--dark-2);
  padding: 48px 0 32px;
  color: rgba(255,255,255,.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 12px;
}

.footer-logo span {
  color: #8cb8e0;
}

.footer-brand-block p {
  font-size: .88rem;
  line-height: 1.65;
  max-width: 320px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 16px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}

.footer-contact-item:hover { color: #fff; }

.footer-info-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 12px;
}

.footer-info-list {
  display: grid;
  gap: 8px;
}

.footer-info-list li {
  font-size: .88rem;
  color: rgba(255,255,255,.60);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-bottom p {
  font-size: .80rem;
  color: rgba(255,255,255,.35);
}

/* ----------------------------------------------------------------
   STICKY WHATSAPP
---------------------------------------------------------------- */
.sticky-wa {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 200;
}

.sticky-wa a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 10px 32px rgba(22,83,62,.32);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}

.sticky-wa a:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 40px rgba(22,83,62,.40);
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: #fff;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: .80rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}

.wa-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
}

.sticky-wa a:hover .wa-tooltip {
  opacity: 1;
}

/* ================================================================
   RESPONSIVE — TABLET (768px+)
================================================================ */
@media (min-width: 768px) {
  :root {
    --section-pad: 88px;
  }

  .hero {
    padding: 68px 0 72px;
  }

  .hero-grid {
    grid-template-columns: 1.15fr .85fr;
    gap: 36px;
    align-items: center;
  }

  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-cta .btn-call,
  .hero-cta .btn-wa-hero {
    flex: 1 1 auto;
    max-width: 220px;
  }

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

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

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

  .area-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-actions .btn {
    flex: 0 1 auto;
    min-width: 220px;
  }

  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ================================================================
   RESPONSIVE — DESKTOP (1024px+)
================================================================ */
@media (min-width: 1024px) {
  :root {
    --section-pad: 100px;
  }

  .hero {
    padding: 80px 0 88px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 4vw, 4.4rem);
  }

  .grid-keunggulan {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .grid-layanan {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .grid-testimoni {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .cta-box {
    padding: 56px 48px;
  }

  .cta-title {
    font-size: clamp(2.2rem, 3vw, 3.2rem);
  }
}

/* ================================================================
   PRINT (clean / no WA button)
================================================================ */
@media print {
  .topbar, .sticky-wa, .hero-cta, .cta-actions { display: none; }
}
