/* =========================================================
   MyFrend ISP — style.css
   Custom CSS, no framework. Mobile-first & lightweight.
   ========================================================= */

/* ---------- Design Tokens (selaras dengan logo Myfrend) ---------- */
:root {
  /* Brand colors dari logo */
  --brand-blue:  #2563d9;   /* titik "i" pada logo */
  --mint:        #4cc59a;   /* gunung hijau */
  --mint-d:      #36a883;
  --orange:      #f5842f;   /* gunung oranye */
  --coral:       #ef5b56;   /* gunung merah-koral */
  --coral-d:     #e23f3a;

  --navy:      #122036;     /* navy kehangatan (sedikit warm) */
  --navy-900:  #0c1626;
  --blue:      #e8612f;     /* AKSEN UTAMA → oranye-koral (dipakai utk link, kicker, ikon ✓) */
  --blue-600:  #cf4a28;
  --cyan:      #f5842f;
  --cyan-400:  #ffa45c;
  --sky-bg:    #fdf3ec;     /* krem hangat (pengganti biru muda) */
  --white:     #ffffff;
  --ink:       #1c1714;
  --muted:     #6b6157;
  --line:      #f0e4da;
  --green:     #25d366;     /* WhatsApp brand green (jangan diubah) */

  /* Gradien khas logo: mint → oranye → koral */
  --grad-brand: linear-gradient(135deg, #4cc59a 0%, #f5842f 52%, #ef5b56 100%);
  /* Hero: navy hangat (glow oranye & mint ditambah lewat ::before/::after) */
  --grad-hero: linear-gradient(140deg, #0c1626 0%, #16233c 55%, #1d2335 100%);
  /* CTA utama → oranye → koral (warna dominan logo) */
  --grad-cta:  linear-gradient(135deg, #f5842f 0%, #ef5b56 100%);

  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 10px 30px rgba(60, 30, 10, .08);
  --shadow-lg: 0 20px 50px rgba(60, 30, 10, .14);
  --container:  1160px;

  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;          /* sedikit lebih besar — mudah dibaca semua usia */
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3 { line-height: 1.2; font-weight: 800; letter-spacing: -.01em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.container-narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: .98rem; line-height: 1;
  padding: 14px 22px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 17px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--grad-cta); color: #fff; box-shadow: 0 8px 20px rgba(239,91,86,.32); }
.btn-primary:hover { box-shadow: 0 12px 28px rgba(239,91,86,.45); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--line); }
.btn-outline:hover { border-color: var(--blue); background: var(--sky-bg); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-light { background: #fff; color: var(--blue); }
.btn-light:hover { box-shadow: var(--shadow-lg); }
.btn-header { padding: 11px 20px; }

/* ---------- Banner Promo ---------- */
.promo-bar {
  background: var(--grad-cta); color: #fff; font-weight: 600;
  position: relative; z-index: 101;
}
.promo-bar.hide { display: none; }
.promo-inner { display: flex; align-items: center; gap: 12px; min-height: 44px; padding-block: 7px; }
.promo-text { margin: 0; font-size: .96rem; flex: 1; text-align: center; }
.promo-text strong { font-weight: 800; }
.promo-tag {
  display: inline-block; background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.5);
  font-size: .68rem; font-weight: 800; letter-spacing: .06em; padding: 2px 9px; border-radius: 999px;
  margin-right: 6px; vertical-align: middle;
}
.promo-link {
  display: inline-block; background: #fff; color: var(--coral-d); font-weight: 800; font-size: .88rem;
  padding: 5px 14px; border-radius: 999px; margin-left: 8px; white-space: nowrap;
  transition: transform .15s, box-shadow .2s;
}
.promo-link:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(0,0,0,.18); }
.promo-close {
  background: none; border: 0; color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer;
  padding: 2px 6px; border-radius: 6px; opacity: .85; flex-shrink: 0;
}
.promo-close:hover { opacity: 1; background: rgba(255,255,255,.15); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
/* Badge gradien brand di belakang logo putih (header latar putih) */
.brand-badge {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-brand); box-shadow: 0 6px 14px rgba(245,132,47,.32);
  flex-shrink: 0;
}
.brand-badge img { width: 32px; height: 32px; object-fit: contain; display: block; }
/* Logo putih polos di footer (latar navy) */
.brand-logo-img { width: 42px; height: 42px; object-fit: contain; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; color: var(--navy); font-size: 1.28rem; font-weight: 800; }
.brand-text small { font-size: .54rem; font-weight: 600; color: var(--muted); letter-spacing: .03em; text-transform: uppercase; margin-top: 2px; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; flex-wrap: nowrap; gap: 2px; }
.main-nav li { flex-shrink: 0; }
.main-nav a {
  display: block; padding: 9px 11px; border-radius: 8px; font-weight: 600; font-size: .93rem; color: #324863;
  white-space: nowrap; transition: color .15s, background .15s;
}
.main-nav a:hover { color: var(--blue); background: var(--sky-bg); }

.btn-header { margin-left: 8px; flex-shrink: 0; white-space: nowrap; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { background: var(--grad-hero); color: #fff; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; width: 520px; height: 520px; right: -120px; top: -160px;
  background: radial-gradient(circle, rgba(245,132,47,.4), transparent 62%); border-radius: 50%;
}
.hero::after {
  content: ""; position: absolute; width: 360px; height: 360px; left: -120px; bottom: -160px;
  background: radial-gradient(circle, rgba(76,197,154,.28), transparent 64%); border-radius: 50%; z-index: 0;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
  padding-block: 72px 84px; position: relative; z-index: 1;
}
.eyebrow {
  display: inline-block; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  padding: 7px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2rem, 4.6vw, 3.3rem); margin-bottom: 18px; }
.hero-sub { font-size: 1.1rem; color: #d4e4f7; max-width: 560px; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.wa-ico { font-size: 1.1rem; }

.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stats li { font-size: .85rem; color: #bcd3ee; max-width: 110px; }
.hero-stats strong { display: block; font-size: 2rem; color: #fff; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.hero-stats strong span { font-size: .9rem; color: var(--cyan-400); }

/* Hero visual / speed card */
.hero-visual { display: grid; place-items: center; }
.speed-card {
  width: 300px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px; padding: 26px; backdrop-filter: blur(8px); box-shadow: var(--shadow-lg);
}
.speed-card-top { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: #cfe2f7; font-weight: 600; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); display: inline-block; }
.dot.live { animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.6);} 50% { box-shadow: 0 0 0 7px rgba(37,211,102,0);} }
.speed-num { font-size: 3.2rem; font-weight: 800; margin: 14px 0 18px; }
.speed-num small { font-size: 1.1rem; color: var(--cyan-400); margin-left: 4px; }
.speed-bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; margin-bottom: 18px; }
.speed-bars span { flex: 1; height: var(--h); background: linear-gradient(180deg, var(--cyan-400), var(--blue)); border-radius: 5px; animation: rise 1.4s ease both; }
@keyframes rise { from { height: 6%; opacity: .3; } }
.speed-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.speed-tags span { font-size: .72rem; background: rgba(255,255,255,.12); padding: 5px 10px; border-radius: 999px; }

/* ---------- Trust badges ---------- */
.trust { background: var(--navy-900); }
.trust-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px;
  padding-block: 18px; color: #cfe0f3; font-size: .92rem; font-weight: 600;
}
.trust-item { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Section base ---------- */
.section { padding-block: 76px; }
.section-alt { background: var(--sky-bg); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px;
}
.kicker::before {
  content: ""; width: 22px; height: 3px; border-radius: 3px; background: var(--grad-brand);
}
.kicker-light { color: var(--cyan-400); }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-head-light h2 { color: #fff; }
.section-head-light p { color: #c2d6ee; }

/* ---------- Grid + Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.biz-grid { max-width: 900px; margin-inline: auto; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Benefit */
.benefit-ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 16px; color: #fff;
  background: var(--grad-brand); box-shadow: 0 8px 18px rgba(245,132,47,.28);
}
.benefit-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.benefit-card p { color: var(--muted); font-size: .96rem; }

/* ---------- Price cards ---------- */
.price-card { display: flex; flex-direction: column; position: relative; }
.price-name { font-size: 1.35rem; color: var(--navy); margin-bottom: 6px; }
/* Harga besar & menonjol — penting untuk transparansi */
.price-amount {
  font-size: 2.5rem; font-weight: 800; color: var(--coral-d); line-height: 1; margin-bottom: 12px;
  letter-spacing: -.02em;
}
.price-amount span { font-size: 1rem; font-weight: 600; color: var(--muted); margin-left: 3px; }
.price-card-dark .price-amount { color: #ffd9a0; }
.price-desc { color: var(--muted); font-size: 1rem; margin-bottom: 18px; }
.price-feat { display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; flex: 1; }
.price-feat li { position: relative; padding-left: 28px; font-size: .96rem; color: #334a63; }
.price-feat li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 19px; height: 19px;
  background: var(--sky-bg); color: var(--blue); border-radius: 50%; display: grid; place-items: center;
  font-size: .72rem; font-weight: 800;
}
.price-card.featured { border-color: var(--orange); box-shadow: 0 18px 44px rgba(245,132,47,.2); position: relative; }
.price-card.featured::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--grad-brand); border-radius: var(--radius) var(--radius) 0 0;
}
.badge-pop {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-brand); color: #fff; font-size: .74rem; font-weight: 700;
  padding: 6px 16px; border-radius: 999px; box-shadow: 0 6px 14px rgba(245,132,47,.35); white-space: nowrap;
}
.price-note { text-align: center; margin-top: 26px; color: var(--muted); font-size: 1rem; }
.price-note a { color: var(--blue); font-weight: 700; text-decoration: underline; }
.price-note-light { color: #c2d6ee; }
.price-note-light a { color: var(--cyan-400); }

/* ---------- Tabel harga lengkap (transparansi penuh) ---------- */
.pricetable-wrap { margin-top: 42px; }
.pricetable-title { text-align: center; font-size: 1.3rem; color: var(--navy); margin-bottom: 18px; }
.pricetable {
  width: 100%; border-collapse: separate; border-spacing: 0; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.pricetable th, .pricetable td { padding: 16px 18px; text-align: left; font-size: 1.05rem; }
.pricetable thead th {
  background: var(--navy); color: #fff; font-weight: 700; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .03em;
}
.pricetable tbody tr { border-top: 1px solid var(--line); }
.pricetable tbody tr:nth-child(even) { background: #fcf8f4; }
.pricetable tbody td strong { color: var(--coral-d); font-size: 1.15rem; }
.pricetable .row-highlight { background: #fff4ec !important; }
.pricetable .row-highlight td:first-child { font-weight: 700; }
.tag-best {
  display: inline-block; background: var(--grad-brand); color: #fff; font-size: .68rem; font-weight: 700;
  padding: 3px 9px; border-radius: 999px; margin-left: 8px; vertical-align: middle;
}
.table-cta {
  display: inline-block; background: var(--green); color: #fff; font-weight: 700; font-size: .9rem;
  padding: 9px 20px; border-radius: 999px; transition: transform .15s, box-shadow .2s;
  box-shadow: 0 4px 10px rgba(37,211,102,.3);
}
.table-cta:hover { transform: translateY(-2px); box-shadow: 0 7px 16px rgba(37,211,102,.45); }

/* ---------- Bisnis/Corporate ringkas ---------- */
.biz-ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; font-size: 1.7rem;
  background: rgba(255,255,255,.1); margin-bottom: 16px;
}

/* ---------- Dedicated dark section ---------- */
.section-dark { background: var(--grad-hero); color: #fff; position: relative; overflow: hidden; }
.section-dark::before {
  content: ""; position: absolute; width: 480px; height: 480px; left: -160px; bottom: -200px;
  background: radial-gradient(circle, rgba(245,132,47,.22), transparent 62%); border-radius: 50%;
}
.section-dark .container { position: relative; z-index: 1; }
.ded-benefits { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; margin-bottom: 40px; font-weight: 600; color: #d8e8fa; }
.price-card-dark { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); box-shadow: none; }
.price-card-dark .price-name { color: #fff; }
.price-card-dark .price-desc { color: #c2d6ee; }
.price-card-dark .price-feat li { color: #dbe8f7; }
.price-card-dark .price-feat li::before { background: rgba(245,132,47,.2); color: var(--cyan-400); }
.price-card-dark:hover { box-shadow: var(--shadow-lg); }
.featured-dark { border-color: var(--orange); background: rgba(245,132,47,.12); }

/* ---------- Coverage ---------- */
.coverage-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.coverage-text h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 14px; }
.coverage-text > p { color: var(--muted); margin-bottom: 22px; max-width: 480px; }
.coverage-list { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.coverage-list li { background: #fff; border: 1px solid var(--line); padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: .92rem; box-shadow: var(--shadow); }
.coverage-map {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  background: #e9eef3; line-height: 0;
}
.coverage-map iframe { display: block; width: 100%; height: 100%; }
.map-label {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  background: rgba(18,32,54,.88); color: #fff; padding: 8px 16px; border-radius: 999px;
  font-size: .85rem; font-weight: 700; box-shadow: var(--shadow); backdrop-filter: blur(4px);
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.steps-3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin-inline: auto; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); }
.step-num {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; font-weight: 800; font-size: 1.2rem; margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(245,132,47,.28);
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .94rem; }

/* ---------- Testimoni ---------- */
.testi-card { display: flex; flex-direction: column; }
.stars { color: #f5b50a; letter-spacing: 2px; margin-bottom: 12px; }
.testi-card blockquote { font-size: 1.02rem; color: #243a52; margin-bottom: 18px; flex: 1; }
.testi-card figcaption strong { display: block; color: var(--navy); }
.testi-card figcaption span { font-size: .85rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 18px 52px 18px 22px; font-weight: 700; color: var(--navy); position: relative;
  list-style: none; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--blue); transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 22px 20px; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--grad-cta); color: #fff; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-block: 50px; flex-wrap: wrap; }
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.cta-banner p { color: #e6f2ff; }

/* ---------- Kontak ---------- */
.contact-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.contact-text h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 12px; }
.contact-text > p { color: var(--muted); margin-bottom: 28px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-ico { width: 44px; height: 44px; border-radius: 12px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; box-shadow: var(--shadow); }
.contact-list strong { display: block; color: var(--navy); }
.contact-list a { color: var(--blue); font-weight: 600; }
.contact-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; }
.contact-card > p { color: var(--muted); margin-bottom: 20px; }
.contact-card .btn { margin-bottom: 12px; }
.contact-pay { font-size: .86rem; color: var(--muted); margin-top: 8px; }
.contact-pay strong { color: var(--navy); }

/* Link & embed Google Maps (gratis) */
.map-link {
  display: inline-block; margin-top: 6px; font-size: .92rem; font-weight: 700;
  color: var(--blue); text-decoration: underline;
}
.map-embed {
  margin-top: 22px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); line-height: 0;
}
.map-embed iframe { display: block; width: 100%; filter: saturate(1.05); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #b9cbe2; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; padding-block: 56px 40px; }
.brand-footer .brand-text { color: #fff; }
.footer-brand p { margin-top: 14px; font-size: .94rem; max-width: 300px; }
.footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .94rem; transition: color .15s; }
.footer-col a:hover { color: var(--cyan-400); }
.footer-contact li { font-size: .94rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 14px; padding-block: 20px; flex-wrap: wrap; font-size: .86rem; color: #8aa3c0; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.5);
  transition: transform .2s; animation: waPulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse { 0%,100% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5);} 50% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 14px rgba(37,211,102,0);} }

/* ---------- Reveal animation (JS-driven) ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-block: 54px 64px; }
  .hero-visual { order: -1; }
  .speed-card { width: 100%; max-width: 320px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .coverage-inner, .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 760px) {
  /* Mobile nav */
  .main-nav {
    position: fixed; inset: 70px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
    transform: translateY(-150%); transition: transform .3s ease; box-shadow: var(--shadow-lg); margin: 0;
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 0; padding: 8px 14px 16px; }
  .main-nav a { padding: 14px 12px; border-radius: 8px; font-size: 1rem; }
  .btn-header { display: none; }
  .nav-toggle { display: flex; }

  .section { padding-block: 56px; }
  .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 22px; }
  /* Promo bar ringkas di HP */
  .promo-text { font-size: .82rem; }
  .promo-tag { display: none; }
  .promo-link { display: block; margin: 6px auto 0; width: fit-content; }
  /* Tabel harga → bisa di-scroll samping di HP */
  .pricetable-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pricetable { min-width: 480px; }
  .cta-banner-inner { flex-direction: column; text-align: center; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; padding-block: 42px 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .container { padding-inline: 16px; }
  .hero-cta .btn { width: 100%; }
  .hero-stats li { max-width: none; }
}

/* ---------- Accessibility ---------- */
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Komponen multi-halaman (ditambahkan untuk struktur SEO)
   ========================================================= */

/* Nav aktif */
.main-nav a.active { color: var(--blue); background: var(--sky-bg); font-weight: 700; }

/* Breadcrumb */
.breadcrumb { background: var(--sky-bg); border-bottom: 1px solid var(--line); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; padding-block: 12px; font-size: .9rem; color: var(--muted); }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li:not(:last-child)::after { content: "›"; color: var(--muted); margin-left: 6px; }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li[aria-current="page"] { color: var(--ink); font-weight: 600; }

/* Page hero (halaman interior) */
.page-hero { background: var(--grad-hero); color: #fff; position: relative; overflow: hidden; }
.page-hero .container { padding-block: 56px 60px; position: relative; z-index: 1; }
.page-hero::before {
  content: ""; position: absolute; width: 460px; height: 460px; right: -140px; top: -180px;
  background: radial-gradient(circle, rgba(245,132,47,.35), transparent 62%); border-radius: 50%;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; max-width: 18ch; }
.page-hero-sub { font-size: 1.08rem; color: #d4e4f7; max-width: 640px; margin-bottom: 26px; }

/* Service / area cards */
.service-card { display: flex; flex-direction: column; text-align: left; }
.service-card h2 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); margin-bottom: 14px; }
.service-card .price-feat { margin-bottom: 18px; }
.service-card .btn { margin-top: auto; }

/* Daftar artikel & blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; height: 100%; }
.blog-cat {
  display: inline-block; align-self: flex-start; font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: var(--blue); background: var(--sky-bg); padding: 4px 10px; border-radius: 999px;
}
.blog-card-title { font-size: 1.18rem; line-height: 1.3; }
.blog-card-title a:hover { color: var(--blue); }
.blog-card-desc { color: var(--muted); font-size: .96rem; flex: 1; }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; color: var(--muted); margin-top: 6px; }
.blog-readmore { color: var(--blue); font-weight: 700; }

/* Isi artikel / halaman teks panjang */
.article-body { font-size: 1.05rem; }
.article-body h2 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); margin: 34px 0 14px; }
.article-body h3 { font-size: 1.2rem; margin: 24px 0 10px; }
.article-body p { margin-bottom: 16px; color: #33291f; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 4px; }
.article-body li { position: relative; padding-left: 26px; margin-bottom: 9px; }
.article-body ul li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.article-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--blue-600); }

.article-header { margin-bottom: 26px; }
.article-header h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 12px 0; }
.article-meta { color: var(--muted); font-size: .92rem; }
.article-faq { margin-top: 40px; }
.article-faq h2 { font-size: 1.5rem; margin-bottom: 18px; }
.article-cta { margin-top: 40px; text-align: center; padding: 32px; }
.article-cta h2 { font-size: 1.4rem; margin-bottom: 10px; }
.article-cta p { color: var(--muted); margin-bottom: 18px; }

/* Daftar fitur blok (halaman paket) */
.price-feat-block { display: grid; gap: 8px; }
.price-feat-block li { position: relative; padding-left: 26px; }
.price-feat-block li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }

/* Info perusahaan & alamat */
.company-info li { margin-bottom: 10px; }
.contact-address { font-style: normal; }
.footer-nap { font-style: normal; margin-top: 10px; font-size: .9rem; color: #b8c6da; }

/* Cluster internal link */
.related-links .link-cluster { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.link-cluster li a {
  display: inline-block; padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--white); font-weight: 600; color: var(--ink); transition: .2s;
}
.link-cluster li a:hover { border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow); }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .page-hero .container { padding-block: 44px 46px; }
}
