/* ============================================================
   VIVA GESTUN — Landing Page CSS v3
   Tema: Clean White · Navy · Blue Accent
   Sesuai foto model: putih bersih, fresh, minimalis
   ============================================================ */

/* @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Syne:wght@700;800&display=swap'); */

:root {
  --navy:      #0D2137;
  --slate:     #1B3A5C;
  --blue:      #1A6EFF;
  --blue-dk:   #1558D6;
  --blue-lt:   rgba(26,110,255,.1);
  --blue-glow: rgba(26,110,255,.15);
  --white:     #FFFFFF;
  --offwhite:  #F5F7FA;
  --gray:      #E8ECF2;
  --muted:     #7A8EA8;
  --text:      #1A2D42;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 12px rgba(13,33,55,.08);
  --shadow:    0 6px 28px rgba(13,33,55,.12);
  --shadow-lg: 0 16px 56px rgba(13,33,55,.16);
  --transition:.25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
.display { font-family: 'Syne', sans-serif; }

/* ── Utility ── */
.container { width: 90%; max-width: 1160px; margin: 0 auto; }
.tag {
  display: inline-block;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); border: 1.5px solid var(--blue);
  border-radius: 99px; padding: .28rem .9rem; margin-bottom: 1rem;
}
.tag.white { color: var(--white); border-color: rgba(255,255,255,.5); }
.tag.navy  { color: var(--navy);  border-color: var(--navy); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: .95rem;
  border-radius: 99px; padding: .85rem 2rem;
  cursor: pointer; border: none; text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-blue {
  background: var(--blue); color: var(--white);
  box-shadow: 0 6px 24px rgba(26,110,255,.35);
}
.btn-blue:hover { background: var(--blue-dk); box-shadow: 0 10px 32px rgba(26,110,255,.45); }
.btn-white {
  background: var(--white); color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-navy {
  background: var(--navy); color: var(--white);
  box-shadow: 0 6px 20px rgba(13,33,55,.25);
}
.btn-navy:hover { background: var(--slate); }
.btn-lg { font-size: 1.05rem; padding: 1rem 2.5rem; }
.btn .material-icons { font-size: 1.1rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ══════════════════════════════════════════
   NEWS TICKER
══════════════════════════════════════════ */
.news-ticker-bar {
  background: var(--navy);
  border-bottom: 2px solid var(--blue);
  height: 38px; display: flex; align-items: center;
  overflow: hidden; position: relative; z-index: 101;
}
.ticker-label {
  background: var(--blue); color: var(--white);
  font-size: .68rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 0 1rem; height: 100%;
  display: flex; align-items: center; white-space: nowrap; flex-shrink: 0; gap: .4rem;
}
.ticker-label .material-icons { font-size: .9rem; }
.ticker-track-wrap { flex: 1; overflow: hidden; height: 100%; display: flex; align-items: center; }
.ticker-track {
  display: flex; align-items: center; white-space: nowrap;
  animation: ticker-scroll 40s linear infinite; will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 0 2rem; font-size: .78rem;
  color: rgba(255,255,255,.75); cursor: pointer; text-decoration: none;
  transition: color var(--transition);
}
.ticker-item:hover { color: #74AAFF; }
.ticker-item::after { content: '●'; color: var(--blue); font-size: .45rem; margin-left: 2rem; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-loader {
  padding: 0 1.5rem; font-size: .78rem;
  color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: .5rem;
}
.ticker-loader .spin {
  width: 12px; height: 12px;
  border: 2px solid rgba(255,255,255,.15); border-top-color: var(--blue);
  border-radius: 50%; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 100;
  padding: 1rem 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray);
  transition: all var(--transition);
}
.navbar.scrolled {
  top: 0;
  background: rgba(255,255,255,.98);
  box-shadow: 0 2px 20px rgba(13,33,55,.08);
  padding: .65rem 0;
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.navbar-brand { text-decoration: none; display: flex; align-items: center; gap: .6rem; }
.navbar-logo { height: 36px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text); text-decoration: none;
  font-weight: 600; font-size: .88rem; transition: color var(--transition);
}
.nav-links a:hover { color: var(--blue); }
.nav-cta { margin-left: .8rem; }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--navy); }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800;
  color: var(--navy); text-decoration: none; transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--navy); cursor: pointer; }

/* ══════════════════════════════════════════
   HERO — Clean Split Layout
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: stretch;
  padding-top: calc(38px + 70px); /* ticker + navbar */
  background: var(--white);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(160deg, #EDF2FF 0%, #DDEAFF 60%, #C8D9FF 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: center; width: 100%;
}

/* Hero Left */
.hero-left { padding: 4rem 2rem 4rem 3rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue-lt); border: 1px solid rgba(26,110,255,.25);
  border-radius: 99px; padding: .38rem 1rem;
  font-size: .75rem; font-weight: 800; color: var(--blue);
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: 1.4rem;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.4; transform:scale(1.5); }
}

.hero-logo-img { height: 52px; width: auto; max-width: 520px; object-fit: contain; margin-bottom: 1.4rem; display: block; }

.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800; color: var(--navy);
  letter-spacing: -.02em; line-height: 1.15; margin-bottom: 1.2rem;
}
.hero-h1 em {
  font-style: normal; color: var(--blue);
  position: relative;
}
.hero-h1 em::after {
  content: ''; position: absolute;
  left: 0; bottom: 2px; right: 0;
  height: 3px; background: var(--blue); border-radius: 2px; opacity: .25;
}

.hero-sub { color: var(--muted); font-size: 1rem; max-width: 460px; margin-bottom: 2rem; line-height: 1.7; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* Admin badge */
.admin-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #FFF3E0;
  border: 1.5px solid #FFB300;
  border-radius: var(--radius); padding: .7rem 1.2rem;
  margin-bottom: 2rem;
}
.admin-badge .num {
  font-family: 'Syne', sans-serif; font-size: 1.5rem;
  font-weight: 800; color: #E65100;
}
.admin-badge .desc { font-size: .82rem; color: #7A5000; font-weight: 600; line-height: 1.3; }

.hero-trust {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 1.8rem; border-top: 1px solid var(--gray);
}
.trust-item { display: flex; flex-direction: column; }
.trust-item .num {
  font-family: 'Syne', sans-serif; font-size: 1.5rem;
  font-weight: 800; color: var(--navy);
}
.trust-item .num span { color: var(--blue); }
.trust-item .lbl { font-size: .75rem; color: var(--muted); font-weight: 600; }
.trust-divider { width: 1px; height: 36px; background: var(--gray); }

/* Hero Right — Model Slider */
.hero-right {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 2rem 0 0;
  min-height: 580px;
}
.hero-model-slider {
  position: relative;
  width: 100%; max-width: 440px;
  height: 560px;
}
.hero-slide {
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: auto; max-width: 400px; height: 100%;
  object-fit: contain; object-position: bottom;
  opacity: 0;
  transition: opacity .8s ease, transform .8s ease;
  transform: translateX(-50%) translateY(8px);
}
.hero-slide.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: -1.8rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem;
}
.slider-dot {
  width: 7px; height: 7px; border-radius: 99px;
  background: var(--gray);
  transition: all var(--transition); cursor: pointer;
}
.slider-dot.active { background: var(--blue); width: 22px; }

/* Floating proofs */
.hero-float {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .6rem;
  white-space: nowrap; z-index: 3;
  animation: float 3.5s ease-in-out infinite;
}
.hero-float-icon { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-float-icon.blue { background: var(--blue-lt); }
.hero-float-icon.green { background: rgba(46,204,113,.12); }
.hero-float-icon.orange { background: rgba(255,152,0,.12); }
.hero-float-icon .material-icons { font-size: .95rem; }
.hero-float-icon.blue .material-icons   { color: var(--blue); }
.hero-float-icon.green .material-icons  { color: #27ae60; }
.hero-float-icon.orange .material-icons { color: #e65100; }
.hero-float-text .title { font-size: .78rem; font-weight: 800; color: var(--navy); }
.hero-float-text .sub   { font-size: .68rem; color: var(--muted); }
.float-tl { top: 4rem;  left: -1rem;  animation-delay: 0s; }
.float-tr { top: 7rem;  right: -1rem; animation-delay: .6s; }
.float-bl { bottom: 5rem; left: -1.5rem; animation-delay: 1.2s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* ══════════════════════════════════════════
   CARD LOGOS
══════════════════════════════════════════ */
.cards-strip {
  background: var(--offwhite);
  padding: 2rem 0;
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}
.cards-strip-inner {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 1.5rem 2.5rem;
}
.cards-strip-label {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.card-logo-item {
  display: flex; align-items: center; justify-content: center;
  opacity: .55; transition: opacity var(--transition), transform var(--transition);
}
.card-logo-item:hover { opacity: 1; transform: scale(1.08); }
.card-logo-item img { height: 32px; width: auto; object-fit: contain; }

/* ══════════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════════ */
.why-strip { background: var(--navy); padding: 2.2rem 0; overflow: hidden; }
.strip-inner {
  display: flex; gap: 3rem;
  animation: marquee 24s linear infinite; width: max-content;
}
.strip-item {
  display: flex; align-items: center; gap: .55rem;
  white-space: nowrap; font-size: .88rem; font-weight: 600;
  color: rgba(255,255,255,.6);
}
.strip-item .material-icons { color: var(--blue); font-size: .95rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   PROMO SECTION
══════════════════════════════════════════ */
.promo-section { padding: 5rem 0; }
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.promo-model-wrap { display: flex; align-items: center; justify-content: center; position: relative; }
.promo-slider {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 480px;
}
.promo-slide {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.promo-slide.active {
  opacity: 1;
}
.promo-model-img { max-width: 380px; width: 100%; height: auto; }
.medal-img { width: 80px; height: 80px; margin-bottom: 1.5rem; display: block; }
.promo-grid > div:last-child h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.promo-grid > div:last-child p { font-size: 1rem; max-width: 500px; margin-bottom: 2rem; }
.promo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.promo-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--offwhite);
  border-radius: var(--radius);
}
.promo-stat .num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  display: block;
  margin-bottom: 0.5rem;
}
.promo-stat .lbl { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

/* ══ PROMO SECTION MOBILE FIX ══ */
@media (max-width: 768px) {
  .promo-section {
    padding: 3rem 0 2.5rem;
  }

  .promo-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  /* Model foto di atas, teks di bawah */
  .promo-model-wrap {
    order: 1;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .promo-slider {
    height: 400px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .medal-img {
    display: none;
  }

  .promo-model-img {
    max-width: 260px;
    width: 75%;
    margin: 0 auto;
    display: block;
  }

  /* Teks/konten di bawah foto */
  .promo-grid > div:last-child {
    order: 2;
    padding: 0 1rem 1.5rem;
  }

  .medal-img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
  }

  .promo-text h2,
  .promo-grid > div:last-child h2 {
    font-size: 1.6rem;
    margin-bottom: .6rem;
  }

  .promo-text p,
  .promo-grid > div:last-child p {
    font-size: .88rem;
    max-width: 100%;
    margin-bottom: 1.2rem;
  }

  .promo-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
    margin-bottom: 1.4rem;
  }

  .promo-stat {
    padding: .7rem .5rem;
  }

  .promo-stat .num {
    font-size: 1.2rem;
  }

  .promo-stat .lbl {
    font-size: .62rem;
  }

  .promo-grid .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .promo-stats {
    grid-template-columns: 1fr 1fr;
  }

  .promo-stat:last-child {
    grid-column: 1 / -1;
  }

  .promo-model-img {
    width: 65%;
  }
}
/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials { background: var(--white); overflow: hidden; }
.testi-track-wrap { overflow: hidden; padding: .5rem 0; }
.testi-track {
  display: flex; gap: 1.2rem;
  animation: scroll-testi 30s linear infinite; width: max-content;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes scroll-testi {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testi-card {
  background: var(--offwhite); border: 1px solid var(--gray);
  border-radius: var(--radius-lg); padding: 1.7rem; width: 290px; flex-shrink: 0;
  transition: box-shadow var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow); }
.testi-stars { display: flex; gap: .1rem; margin-bottom: .8rem; }
.testi-stars .material-icons { font-size: .9rem; color: #F59E0B; }
.testi-card p { font-size: .86rem; color: #5A6E82; line-height: 1.7; margin-bottom: 1.1rem; font-style: italic; }
.testi-name {
  font-weight: 700; font-size: .83rem; color: var(--navy);
  display: flex; align-items: center; gap: .4rem;
}
.testi-name::before {
  content: ''; display: inline-block; width: 16px; height: 2px;
  background: var(--blue); border-radius: 1px;
}
.google-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.google-badge {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--white); border: 1.5px solid var(--gray);
  border-radius: 99px; padding: .55rem 1.4rem;
  font-size: .85rem; font-weight: 700; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.google-badge .material-icons { color: #F59E0B; }

/* ══════════════════════════════════════════
   SEO SECTION
══════════════════════════════════════════ */
.seo-section { background: var(--offwhite); padding: 4rem 0 2rem; }
.keyword-pills {
  display: flex; flex-wrap: wrap; gap: .6rem;
  justify-content: center; margin-bottom: 2.5rem;
}
.kw-pill {
  background: var(--white); border: 1.5px solid var(--gray);
  border-radius: 99px; padding: .35rem .9rem;
  font-size: .76rem; font-weight: 700; color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.kw-pill:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-lt); }
.kw-pill.hot { border-color: rgba(239,68,68,.3); color: #DC2626; background: rgba(239,68,68,.05); }
.kw-pill.rise { border-color: rgba(16,185,129,.3); color: #059669; background: rgba(16,185,129,.05); }
.seo-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.seo-card {
  background: var(--white); border: 1px solid var(--gray);
  border-radius: var(--radius-lg); padding: 1.7rem;
}
.seo-card-head { display: flex; align-items: center; gap: .6rem; margin-bottom: .8rem; }
.seo-card-head .material-icons { color: var(--blue); font-size: 1.1rem; }
.seo-card-head span { font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }
.seo-card h3 { font-family: 'Syne', sans-serif; font-size: .95rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
.seo-card p { font-size: .83rem; color: var(--muted); line-height: 1.7; }
.seo-dense {
  margin-top: 1.8rem; padding: 1.3rem 1.6rem;
  background: var(--white); border: 1px solid var(--gray);
  border-radius: var(--radius); font-size: .78rem; color: #9AAAB8; line-height: 1.9;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq { background: var(--white); }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: .7rem; }
.faq-item { background: var(--offwhite); border: 1px solid var(--gray); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem; background: none; border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .92rem;
  font-weight: 700; color: var(--navy); text-align: left; gap: 1rem;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--blue); }
.faq-q .icon { flex-shrink: 0; transition: transform var(--transition); color: var(--blue); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .88rem; color: var(--muted); line-height: 1.7; padding: 0 1.4rem;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.4rem 1.2rem; }

/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  padding: 5rem 0; position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(26,110,255,.12) 0%, transparent 70%);
}
.cta-section .container { position: relative; }
.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800; color: var(--white); margin-bottom: .8rem;
}
.cta-section h2 em { font-style: normal; color: #74AAFF; }
.cta-section p { color: rgba(255,255,255,.6); font-size: .95rem; max-width: 460px; margin: 0 auto 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-info { margin-top: 1.6rem; font-size: .78rem; color: rgba(255,255,255,.35); }
.cta-medal { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 1.3rem; display: block; opacity: .9; }

/* ══════════════════════════════════════════
   TRENDING NEWS
══════════════════════════════════════════ */
.trending-news { background: var(--offwhite); padding: 5rem 0; border-top: 1px solid var(--gray); }
.trending-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.trending-head-left { display: flex; align-items: center; gap: 1rem; }
.trending-head h2 { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.trending-badge {
  background: #EF4444; color: var(--white);
  font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 99px; padding: .22rem .7rem;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge { 0%,100% { opacity:1; } 50% { opacity:.55; } }
.trending-refresh {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: var(--muted); font-weight: 600; cursor: pointer;
  border: 1px solid var(--gray); border-radius: 99px; padding: .38rem .9rem;
  background: var(--white); transition: all var(--transition);
}
.trending-refresh:hover { border-color: var(--blue); color: var(--blue); }
.trending-refresh .material-icons { font-size: .88rem; }
.trending-refresh.loading .material-icons { animation: spin .8s linear infinite; }
.news-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.news-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gray); background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none; display: block; color: inherit;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-img { width: 100%; height: 130px; object-fit: cover; display: block; }
.news-card-img-placeholder {
  width: 100%; height: 130px;
  background: linear-gradient(135deg, var(--navy), var(--slate));
  display: flex; align-items: center; justify-content: center;
}
.news-card-img-placeholder .material-icons { color: rgba(255,255,255,.2); font-size: 2rem; }
.news-card-body { padding: .85rem; }
.news-card-source { font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin-bottom: .35rem; }
.news-card-title { font-size: .82rem; font-weight: 700; color: var(--navy); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-time { font-size: .68rem; color: var(--muted); margin-top: .45rem; display: flex; align-items: center; gap: .25rem; }
.news-card-time .material-icons { font-size: .72rem; }

/* Skeleton */
.news-skeleton { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray); background: var(--white); }
.skel-img { width: 100%; height: 130px; background: linear-gradient(90deg, #e8ecf2 25%, #f5f7fa 50%, #e8ecf2 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
.skel-body { padding: .85rem; }
.skel-line { height: 9px; border-radius: 5px; background: linear-gradient(90deg, #e8ecf2 25%, #f5f7fa 50%, #e8ecf2 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; margin-bottom: .5rem; }
.skel-line.short { width: 50%; }
.skel-line.med   { width: 80%; }
.skel-line.long  { width: 100%; }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.news-error { grid-column: 1/-1; text-align: center; padding: 3rem; color: var(--muted); }
.news-error .material-icons { font-size: 2rem; display: block; margin-bottom: .6rem; opacity: .35; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer { background: var(--navy); padding: 3.5rem 0 2rem; color: rgba(255,255,255,.5); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo-img { height: 36px; width: auto; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: .8rem; display: block; }
.footer-about { font-size: .85rem; line-height: 1.7; max-width: 270px; margin-bottom: 1.2rem; }
.footer-socials { display: flex; gap: .5rem; }
.social-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); text-decoration: none;
  font-size: .75rem; font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.social-btn:hover { background: var(--blue); color: var(--white); }
.footer-col h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: #74AAFF; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .55rem; font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: .55rem; }
.footer-contact-item .material-icons { font-size: .9rem; color: var(--blue); margin-top: .15rem; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.4rem; display: flex; align-items: center; justify-content: space-between; font-size: .78rem; flex-wrap: wrap; gap: .5rem; }

/* WA Float */
.wa-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4); text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-bounce 3.5s ease-in-out infinite 2s;
}
.wa-float:hover { transform: scale(1.1); animation: none; }
.wa-float svg { width: 28px; height: 28px; fill: white; }
@keyframes wa-bounce { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero::before { width: 50%; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-connector { display: none; }
  .promo-grid { grid-template-columns: 1fr; text-align: center; }
  .promo-model-img { max-width: 320px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: repeat(3,1fr); }
  .seo-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .hero-left { padding: 3rem 0 2rem; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .syarat-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .news-grid { grid-template-columns: repeat(2,1fr); }
  .seo-cards { grid-template-columns: 1fr; }
  section { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .hero { padding-top: calc(38px + 60px); }
  .hero-h1 { font-size: 1.9rem; }
  .hero-trust { flex-wrap: wrap; gap: 1rem; }
  .trust-divider { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .promo-stats { grid-template-columns: 1fr 1fr; }
}
