/* ═══════════════════════════════════════
   SALES PORTFOLIO — style.css
   Mood: Luxury · Warm · Trustworthy · Pro
   ═══════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --cream:   #F8F3EC;
  --warm:    #F0E9DC;
  --parch:   #E8DFCC;
  --navy:    #1C2B4A;
  --navy2:   #263554;
  --navy3:   #0F1D38;
  --gold:    #C9973A;
  --gold2:   #E3B258;
  --gold3:   #F5DFA0;
  --muted:   #7A7068;
  --fog:     #9B8B7A;
  --border:  rgba(28,43,74,.09);
  --white:   #FFFFFF;
  --serif:   'Cormorant', Georgia, serif;
  --sans:    'Outfit', sans-serif;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 400;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--white);
  padding: 14px 32px; border-radius: 8px; border: none;
  font-family: var(--sans); font-size: .88rem; font-weight: 600;
  letter-spacing: .03em; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(201,151,58,.3);
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,151,58,.4); }
.btn-gold.full { justify-content: center; width: 100%; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.3);
  font-family: var(--sans); font-size: .88rem; font-weight: 500;
  cursor: pointer; transition: all .2s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-outline-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 14px 32px; border-radius: 8px;
  border: 1px solid rgba(28,43,74,.2);
  font-family: var(--sans); font-size: .88rem; font-weight: 500;
  cursor: pointer; transition: all .2s; width: 100%;
}
.btn-outline-dark:hover { border-color: var(--navy); background: rgba(28,43,74,.05); transform: translateY(-2px); }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .7rem; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.section-h2 {
  font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600; line-height: 1.1; color: var(--navy);
}
.section-h2 em { font-style: italic; color: var(--gold); }
.body-p { font-size: .92rem; line-height: 1.95; color: var(--muted); margin-bottom: 18px; }

/* ═══════ NAV ═══════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
  transition: padding .3s, background .3s, box-shadow .3s;
}
nav.stuck {
  padding: 14px 56px;
  background: rgba(248,243,236,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nl-monogram {
  width: 40px; height: 40px; background: var(--navy);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--gold2);
  letter-spacing: .05em;
}
.nl-name  { display: block; font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.1; letter-spacing: .05em; }
.nl-title { display: block; font-size: .6rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--fog); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: .8rem; font-weight: 500; color: rgba(28,43,74,.55); transition: color .2s; letter-spacing: .03em; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--navy); color: white;
  padding: 10px 24px; border-radius: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: .03em;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* ── MOBILE MENU ── */
#mob {
  position: fixed; inset: 0; background: var(--navy3);
  z-index: 790; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  transform: translateX(100%); transition: transform .6s var(--ease);
}
#mob.open { transform: translateX(0); }
#mob a { font-family: var(--serif); font-size: 3rem; font-style: italic; color: rgba(248,243,236,.7); transition: color .2s; padding: 4px 0; }
#mob a:hover { color: var(--gold2); }
.mob-cta { color: var(--gold2) !important; font-style: normal !important; font-family: var(--sans) !important; font-size: 1.1rem !important; font-weight: 600 !important; margin-top: 16px !important; }

/* ═══════ HERO ═══════ */
#hero {
  min-height: 100vh; position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 56px 0; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.3) saturate(.6); }
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(15,29,56,.95) 40%, rgba(28,43,74,.7) 100%),
              linear-gradient(to top, rgba(15,29,56,.95) 0%, transparent 55%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; padding-top: 160px; padding-bottom: 80px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,151,58,.15); border: 1px solid rgba(201,151,58,.25);
  padding: 7px 18px; border-radius: 100px;
  font-size: .72rem; color: var(--gold3); font-weight: 500; letter-spacing: .08em;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp .7s .3s var(--ease) forwards;
}
.he-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.8)} }
.hero-h1 { font-family: var(--serif); font-weight: 600; line-height: 1.05; margin-bottom: 28px; }
.hl1 { display: block; font-size: clamp(1.8rem, 3.5vw, 3rem); color: rgba(248,243,236,.6); font-weight: 300; font-style: italic; opacity: 0; animation: fadeUp .9s .5s var(--ease) forwards; }
.hl2 { display: block; font-size: clamp(3rem, 6vw, 5.5rem); color: var(--cream); opacity: 0; animation: fadeUp .9s .7s var(--ease) forwards; }
.hl3 { display: block; font-size: clamp(3rem, 6vw, 5.5rem); color: var(--cream); opacity: 0; animation: fadeUp .9s .85s var(--ease) forwards; }
.hl3 em { color: var(--gold2); }
.hero-p { font-size: .98rem; line-height: 1.9; color: rgba(248,243,236,.6); max-width: 540px; margin-bottom: 40px; opacity: 0; animation: fadeUp .8s 1s var(--ease) forwards; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s 1.15s var(--ease) forwards; }

/* Hero stats bar */
.hero-stats {
  position: relative; z-index: 2;
  display: flex; background: var(--white);
  border-top: 3px solid var(--gold);
  opacity: 0; animation: fadeUp .8s 1.3s var(--ease) forwards;
}
.hs { flex: 1; padding: 22px 28px; display: flex; flex-direction: column; gap: 4px; border-right: 1px solid var(--border); }
.hs:last-child { border-right: none; }
.hs-n { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1; display: inline; }
.hs-plus { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.hs-l { font-size: .7rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--fog); }
.hs-div { display: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════ MARQUEE ═══════ */
.marquee-strip { background: var(--navy); overflow: hidden; padding: 12px 0; }
.marquee-track { display: flex; width: max-content; animation: ticker 26s linear infinite; }
.marquee-track span { font-size: .8rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(248,243,236,.5); padding: 0 24px; white-space: nowrap; }
.marquee-track .mx { color: var(--gold); padding: 0 4px; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════ ABOUT ═══════ */
#about { padding: 140px 56px; background: var(--warm); }
.about-wrap { display: grid; grid-template-columns: 420px 1fr; gap: 100px; align-items: center; max-width: 1300px; margin: 0 auto; }
.about-photo { position: relative; }
.ap-frame { width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; box-shadow: 0 40px 100px rgba(28,43,74,.2); position: relative; }
.ap-frame svg, .ap-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ap-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: white; padding: 18px 22px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 48px rgba(28,43,74,.3);
}
.apb-icon { font-size: 1.8rem; }
.ap-badge strong { display: block; font-size: .9rem; font-weight: 700; line-height: 1; margin-bottom: 3px; }
.ap-badge span { font-size: .72rem; color: var(--gold2); }
.ap-cert {
  position: absolute; top: 20px; left: 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.ap-cert span {
  background: var(--gold); color: var(--navy);
  font-size: .6rem; font-weight: 700; letter-spacing: .12em;
  padding: 5px 10px;
}
.about-details { display: flex; flex-direction: column; gap: 0; margin-top: 32px; border-top: 1px solid var(--border); }
.ad { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.ad-ic { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.ad strong { display: block; font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.ad small { font-size: .78rem; color: var(--fog); }
.about-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* ═══════ LAYANAN ═══════ */
#layanan { padding: 140px 56px; background: var(--cream); }
.layanan-header { text-align: center; margin-bottom: 60px; }
.layanan-header .eyebrow { justify-content: center; }
.layanan-header .eyebrow::before { display: none; }
.layanan-sub { font-size: .92rem; color: var(--fog); margin-top: 12px; max-width: 480px; margin-left: auto; margin-right: auto; }
.layanan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); max-width: 1300px; margin: 0 auto; }
.lc { background: var(--white); padding: 36px 28px; position: relative; transition: background .3s, transform .3s; }
.lc:hover { background: var(--warm); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(28,43,74,.1); z-index: 2; }
.lc.featured { background: var(--navy); color: white; }
.lc.featured:hover { background: var(--navy2); }
.lc-badge { position: absolute; top: -1px; right: 24px; background: var(--gold); color: var(--navy); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; }
.lc-icon { font-size: 2.2rem; margin-bottom: 20px; display: block; }
.lc-tag { font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.lc.featured .lc-tag { color: var(--gold2); }
.lc-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.lc.featured .lc-name { color: var(--cream); }
.lc-desc { font-size: .83rem; line-height: 1.8; color: var(--fog); margin-bottom: 20px; }
.lc.featured .lc-desc { color: rgba(248,243,236,.55); }
.lc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.lc-list li { font-size: .82rem; color: var(--muted); padding-left: 16px; position: relative; }
.lc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-size: .75rem; font-weight: 700; }
.lc.featured .lc-list li { color: rgba(248,243,236,.6); }
.lc.featured .lc-list li::before { color: var(--gold2); }
.lc-btn { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; color: var(--gold); border-bottom: 1px solid rgba(201,151,58,.3); padding-bottom: 2px; transition: gap .2s, border-color .2s; }
.lc-btn:hover { gap: 12px; border-color: var(--gold); }
.lc-btn-light { color: var(--gold2); border-color: rgba(227,178,88,.3); }
.lc-btn-light:hover { border-color: var(--gold2); }

/* ═══════ PENCAPAIAN ═══════ */
#pencapaian { padding: 140px 56px; background: var(--navy3); }
.penc-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 100px; align-items: start; max-width: 1300px; margin: 0 auto; }
.penc-left { position: sticky; top: 120px; }
.penc-left .eyebrow { color: var(--gold2); }
.penc-left .eyebrow::before { background: var(--gold2); }
.penc-left .section-h2 { color: var(--cream); }
.penc-left .section-h2 em { color: var(--gold2); }
.penc-left .body-p { color: rgba(248,243,236,.5); }
.penc-left .btn-gold { margin-top: 12px; }
.penc-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.07); }
.pc { background: rgba(255,255,255,.04); padding: 36px 28px; transition: background .3s; }
.pc:hover { background: rgba(255,255,255,.08); }
.pc-n { font-family: var(--serif); font-size: 3.5rem; font-weight: 700; color: var(--gold2); line-height: 1; display: inline; }
.pc-plus { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--gold); display: inline; }
.pc-label { font-size: .85rem; font-weight: 600; color: var(--cream); margin-top: 12px; margin-bottom: 6px; }
.pc-desc { font-size: .78rem; line-height: 1.7; color: rgba(248,243,236,.35); }

/* ═══════ TESTIMONI ═══════ */
#testimoni { padding: 140px 56px; background: var(--cream); }
.testi-header { text-align: center; margin-bottom: 60px; }
.testi-header .eyebrow { justify-content: center; }
.testi-header .eyebrow::before { display: none; }
.testi-sub { font-size: .92rem; color: var(--fog); margin-top: 12px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); max-width: 1300px; margin: 0 auto; }
.tc { background: var(--white); padding: 36px 28px; display: flex; flex-direction: column; gap: 20px; transition: background .3s; }
.tc:hover { background: var(--warm); }
.tc-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.tc-text { font-family: var(--serif); font-size: 1.05rem; line-height: 1.8; color: var(--navy); font-style: italic; flex: 1; }
.tc-text::before { content: '"'; font-size: 3rem; color: var(--gold3); line-height: 0; vertical-align: -.4em; margin-right: 4px; font-family: var(--serif); }
.tc-person { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.tc-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: .9rem; font-weight: 700; color: white; flex-shrink: 0; }
.tc-av1 { background: linear-gradient(135deg, #1C2B4A, #263554); }
.tc-av2 { background: linear-gradient(135deg, #C9973A, #E3B258); }
.tc-av3 { background: linear-gradient(135deg, #2C6B4A, #3D8C62); }
.tc-av4 { background: linear-gradient(135deg, #6B2C2C, #8C3D3D); }
.tc-av5 { background: linear-gradient(135deg, #4A1C6B, #6B2C8C); }
.tc-av6 { background: linear-gradient(135deg, #1C4A3D, #2C6B5A); }
.tc-person strong { display: block; font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.tc-person span { font-size: .75rem; color: var(--fog); }

/* ═══════ KONTAK ═══════ */
#kontak { padding: 140px 56px; background: var(--navy); }
.kontak-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; max-width: 1300px; margin: 0 auto; }
.kontak-h2 { font-family: var(--serif); font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 600; line-height: 1.05; color: var(--cream); margin-bottom: 20px; }
.kontak-h2 em { font-style: italic; color: var(--gold2); }
#kontak .body-p { color: rgba(248,243,236,.55); }
#kontak .eyebrow { color: var(--gold2); }
#kontak .eyebrow::before { background: var(--gold2); }
.kontak-items { margin: 36px 0; display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(255,255,255,.08); }
.ki { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.ki-ico { font-size: 1.1rem; flex-shrink: 0; margin-top: 3px; }
.ki-label { display: block; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold2); margin-bottom: 3px; }
.ki-val { display: block; font-size: .9rem; font-weight: 600; color: var(--cream); }
.kontak-social { display: flex; gap: 10px; flex-wrap: wrap; }
.ks-btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border: 1px solid rgba(255,255,255,.15); color: rgba(248,243,236,.6); font-size: .78rem; border-radius: 100px; transition: all .2s; }
.ks-btn:hover { border-color: var(--gold2); color: var(--gold2); }
.kontak-card { background: var(--white); padding: 40px 36px; }
.kontak-card h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.kontak-card h3 em { font-style: italic; color: var(--gold); }
.kontak-card p { font-size: .88rem; line-height: 1.8; color: var(--fog); margin-bottom: 28px; }
.kk-btns { display: flex; flex-direction: column; gap: 10px; }
.kk-note { display: flex; align-items: center; gap: 8px; font-size: .75rem; color: var(--fog); margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.kk-note span { color: var(--gold); font-weight: 700; }

/* ═══════ FOOTER ═══════ */
footer { background: var(--navy3); padding: 80px 56px 36px; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; max-width: 1300px; margin: 0 auto; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.07); }
.foot-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.foot-monogram { width: 44px; height: 44px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); flex-shrink: 0; }
.foot-name { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--cream); letter-spacing: .06em; }
.foot-role { font-size: .65rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(248,243,236,.3); margin-top: 2px; }
.fc-t { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold2); font-weight: 600; margin-bottom: 18px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col ul li { font-size: .83rem; color: rgba(248,243,236,.3); }
.foot-col ul li a { color: rgba(248,243,236,.35); transition: color .2s; }
.foot-col ul li a:hover { color: var(--gold2); }
.foot-bottom { max-width: 1300px; margin: 0 auto; padding-top: 28px; display: flex; justify-content: space-between; font-size: .72rem; color: rgba(248,243,236,.2); }

/* ═══════ WA FLOAT ═══════ */
#wafloat {
  position: fixed; bottom: 32px; right: 32px; z-index: 700;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: white; padding: 13px 22px; border-radius: 100px;
  font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .03em;
  box-shadow: 0 8px 32px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
  animation: popIn .6s 1.5s var(--ease) backwards;
}
#wafloat:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(37,211,102,.45); }
@keyframes popIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
#wafloat svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── SCROLL REVEAL ── */
.rev { opacity: 0; transform: translateY(30px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.rev.in { opacity: 1; transform: translateY(0); }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1200px) {
  .layanan-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 1024px) {
  .about-wrap, .kontak-inner, .penc-wrap { grid-template-columns: 1fr; gap: 60px; }
  .penc-left { position: static; }
  .about-wrap { grid-template-columns: 1fr; }
  .ap-frame { max-width: 380px; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  nav.stuck { padding: 12px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #hero { padding: 0 24px 0; }
  .hero-stats { flex-wrap: wrap; }
  .hs { min-width: 50%; }
  .hs-div { display: none; }
  #about, #layanan, #pencapaian, #testimoni, #kontak { padding: 80px 24px; }
  .layanan-grid, .testi-grid { grid-template-columns: 1fr; }
  .penc-right { grid-template-columns: 1fr; }
  footer { padding: 60px 24px 32px; }
  .foot-top { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
  #wafloat span { display: none; }
  #wafloat { padding: 14px; border-radius: 50%; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .about-btns { flex-direction: column; }
  .kontak-social { flex-direction: column; }
}
