
:root {
  --ink: #24325d;
  --muted: #53607f;
  --purple: #6a2ee6;
  --purple-dark: #4d22c4;
  --blue: #1788ef;
  --pink: #ef4c9a;
  --orange: #ff851a;
  --green: #18ad45;
  --yellow: #ffd629;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(77, 58, 145, 0.13);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 4% 7%, rgba(216, 233, 255, .7), transparent 15%),
    radial-gradient(circle at 94% 17%, rgba(237, 219, 255, .6), transparent 14%),
    #fff;
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
}

/* NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(95, 81, 171, .08);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: .9;
  min-width: 150px;
}

.brand-main {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 31px;
  letter-spacing: -1px;
  color: #4f2bc7;
}

.brand-main span { color: #ff8a1f; }

.brand small {
  margin-top: 7px;
  font-size: 12px;
  font-weight: 900;
  color: #4631be;
  letter-spacing: 5px;
  padding-left: 5px;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 900;
  color: #232b63;
  transition: .25s ease;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  border-radius: 999px;
  transition: .25s ease;
}

.main-nav a:hover,
.main-nav a.active { color: var(--purple); }

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  background: #f2edff;
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  margin: 4px 0;
  border-radius: 99px;
  background: var(--purple);
}

/* HERO */
.hero {
  position: relative;
  padding: 70px 0 32px;
  background:
    radial-gradient(circle at 72% 33%, rgba(209, 240, 255, .95) 0 19%, transparent 43%),
    linear-gradient(180deg, #f8fcff 0%, #eefaff 40%, #f7f0ff 100%);
  overflow: hidden;
}

.hero-grid,
.feature-strip {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.2fr;
  align-items: center;
  gap: 54px;
  min-height: 500px;
}

.eyebrow {
  color: var(--purple);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  margin: 0 0 8px;
}

.hero h1 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-size: clamp(44px, 5vw, 66px);
  line-height: .97;
  letter-spacing: -2.2px;
  color: #5931c8;
}

.blue { color: var(--blue); }
.orange { color: var(--orange); }
.pink { color: var(--pink); }

.lead {
  max-width: 540px;
  margin: 22px 0 28px;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
  color: #4b5875;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(53, 47, 123, .13);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(53, 47, 123, .18);
}

.btn-primary { background: linear-gradient(135deg, #7442ea, #5931d2); color: white; }
.btn-white { background: white; color: #5035b4; }
.btn-purple { background: linear-gradient(135deg, #7d2fe7, #9e31ef); color: white; }
.btn-blue { background: linear-gradient(135deg, #169ef5, #1382df); color: white; }
.btn-orange { background: linear-gradient(135deg, #ff9b17, #ff7c13); color: white; }
.btn-green { background: linear-gradient(135deg, #41c95d, #14a93b); color: white; }
.btn-yellow { background: #ffd31a; color: #513cbc; }

.hero-visual {
  min-height: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0;
  filter: none;
  padding: 0;
}

.feature-strip {
  margin-top: 28px;
  background: rgba(255,255,255,.94);
  border-radius: 34px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  box-shadow: var(--shadow);
}

.feature-item {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.feature-item strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  color: #353364;
}

.feature-item span {
  display: block;
  color: #69718a;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

.feature-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 17px;
  font-size: 24px;
}

.feature-icon.purple { background: #eee7ff; }
.feature-icon.yellow { background: #fff3be; }
.feature-icon.pink { background: #ffe2ee; }
.feature-icon.green { background: #dff7df; }

/* SECTIONS */
.content-section { padding: 40px 0; }

.story-section .container {
  padding: 35px 36px 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 65% 6%, rgba(255,255,255,.65), transparent 22%),
    linear-gradient(135deg, #fae9ff, #fdefff 48%, #fff0fa);
  box-shadow: inset 0 0 0 1px rgba(203, 150, 230, .12);
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 38px;
  align-items: center;
  margin-bottom: 22px;
}

.section-heading h2,
.row-copy h2,
.cta-copy h2 {
  font-family: "Baloo 2", cursive;
  margin: 0 0 8px;
  font-size: clamp(32px, 4vw, 43px);
  line-height: 1.05;
  color: #6a21c6;
  letter-spacing: -.8px;
}

.section-heading p,
.row-copy p,
.cta-copy p {
  color: #59617d;
  font-weight: 700;
  line-height: 1.6;
}

.story-banner {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  background: transparent;
  background-image: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}

.story-banner img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  padding: 0;
  margin: 0 auto;
}

.slider,
.mini-slider {
  position: relative;
}

.slider-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 2px 14px;
}

.slider-track::-webkit-scrollbar { display: none; }

.media-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: 210px;
  background: white;
  border-radius: 17px;
  padding: 8px 8px 14px;
  box-shadow: 0 13px 28px rgba(89, 49, 169, .14);
  transition: .22s ease;
}

.media-card:hover,
.video-card:hover,
.game-card:hover {
  transform: translateY(-4px);
}

.card-image,
.video-thumb,
.game-thumb {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.card-image {
  height: 190px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card h3,
.video-card h3 {
  margin: 10px 6px 0;
  font-size: 13px;
  text-align: center;
  line-height: 1.3;
  color: #2e345d;
}

.slider-btn {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: #7540d5;
  font-size: 32px;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(56, 45, 119, .18);
  cursor: pointer;
}

.slider-btn.prev { left: -18px; }
.slider-btn.next { right: -18px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.slider-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d2c3ee;
}

.slider-dots span.active {
  background: #6930c3;
  width: 10px;
  height: 10px;
}

/* MEDIA ROWS */
.media-row .media-row-grid {
  padding: 28px 30px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: .73fr 1.35fr;
  gap: 34px;
  align-items: center;
}

.blue-row .media-row-grid { background: linear-gradient(135deg, #effaff, #dff4ff); }
.cream-row .media-row-grid { background: linear-gradient(135deg, #fff9e7, #fffdf4); }
.green-row .media-row-grid { background: linear-gradient(135deg, #f0fbea, #f8fff3); }
.lavender-row .media-row-grid { background: linear-gradient(135deg, #f7edff, #f5efff); }

.row-copy h2 { color: #253062; font-size: 30px; }
.row-copy h2 span { color: #1594e8; }
.orange-text { color: #ff7519 !important; }
.orange-text.sub { font-size: .73em; }
.green-text { color: #15a541 !important; }
.purple-text { color: #6a2ecc !important; }

.row-copy p {
  font-size: 14px;
  margin: 12px 0 18px;
}

.mini-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 15px 0 20px;
}

.mini-benefits span {
  font-weight: 900;
  font-size: 11px;
  color: #3d4a77;
}

.video-card {
  flex: 0 0 calc((100% - 30px) / 3);
  min-width: 190px;
  background: white;
  padding: 7px 7px 12px;
  border-radius: 14px;
  box-shadow: 0 9px 23px rgba(70, 71, 117, .12);
  transition: .22s ease;
}

.video-thumb {
  position: relative;
  height: 140px;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #ec3c76;
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: 0 7px 18px rgba(39, 43, 81, .18);
}

.game-card {
  flex: 0 0 calc((100% - 30px) / 3);
  min-width: 180px;
  transition: .22s ease;
}

.game-thumb {
  position: relative;
  height: 155px;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-play {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  background: #2fc34f;
  color: white;
  border-radius: 999px;
  padding: 6px 17px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 7px 16px rgba(27, 148, 59, .22);
}

/* CTA */
.cta-section { padding: 45px 0 25px; }

.cta-card {
  background:
    radial-gradient(circle at 85% 10%, rgba(255,255,255,.13), transparent 25%),
    linear-gradient(135deg, #5c42d3, #4c2ec3);
  border-radius: 34px;
  min-height: 300px;
  padding: 34px 36px;
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 38px;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-copy h2 { color: white; }
.cta-copy h2 span { color: #ffe445; }
.cta-copy p { color: #f0eeff; max-width: 650px; }

.cta-visual {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  background: transparent;
  background-image: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}

.cta-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  padding: 0;
  margin: 0 auto;
}

/* FOOTER */
.site-footer { padding: 16px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr 2fr auto;
  align-items: center;
  gap: 24px;
}

.footer-brand { min-width: 130px; }
.footer-brand .brand-main { font-size: 28px; }

.footer-grid > p {
  margin: 0;
  font-size: 11px;
  color: #626982;
  font-weight: 800;
}

.footer-values {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 10px;
  font-weight: 900;
  color: #485174;
}

.socials { display: flex; gap: 8px; }

.socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ece9ff;
  color: #6241d1;
  font-weight: 900;
}

.version-badge {
  margin-top: 8px;
  font-size: 10px;
  color: #8a8fa5;
  font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 13px; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-values { justify-content: flex-start; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 21px;
    right: 21px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 14px; border-radius: 10px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy { text-align: center; }
  .lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  .hero-visual,
  .hero-visual img { min-height: 0; height: 390px; }

  .section-heading.split,
  .media-row .media-row-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  
  .media-card { flex-basis: calc((100% - 22px) / 2); }
  .video-card, .game-card { flex-basis: calc((100% - 18px) / 2); }
}

@media (max-width: 600px) {
  .container { width: min(100% - 24px, 1180px); }
  .nav-wrap { min-height: 72px; }
  .brand { min-width: 120px; }
  .brand-main { font-size: 26px; }

  .hero h1 { font-size: 43px; }
  .lead { font-size: 14px; }

  .feature-strip {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 24px;
  }

  .hero-visual,
  .hero-visual img { height: 310px; }

  .story-section .container,
  .media-row .media-row-grid,
  .cta-card {
    padding: 24px 18px;
    border-radius: 26px;
  }

  .section-heading h2,
  .cta-copy h2 { font-size: 34px; }

  .media-card,
  .video-card,
  .game-card {
    flex-basis: 82%;
    min-width: 82%;
  }

  .slider-btn { width: 36px; height: 36px; }
  .slider-btn.prev { left: -8px; }
  .slider-btn.next { right: -8px; }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand { justify-self: center; }
  .footer-values, .socials { justify-content: center; }
}

/* v1.1.5 — Mobile viewport lock / horizontal overflow fix */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body { position: relative; }
main, section, header, footer, .container { max-width: 100%; }
img, iframe, video { max-width: 100%; }
.slider, .mini-slider, .slider-track {
  min-width: 0;
  max-width: 100%;
}
@media (max-width: 600px) {
  .slider, .mini-slider { overflow: hidden; }
  .slider-track {
    width: 100%;
    max-width: 100%;
    overscroll-behavior-x: contain;
    touch-action: pan-y;
  }
  .slider-btn.prev { left: 4px; }
  .slider-btn.next { right: 4px; }
  .hero, .content-section, .cta-section, .site-footer { overflow-x: clip; }
}


/* v1.1.7 contributor cards */
.contributor-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.contributor-card {
    border-radius:28px;
    padding:24px;
    text-align:center;
    min-width:0;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.contributor-card img {
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:50%;
    border:6px solid white;
}

.contributor-card p,
.contributor-card h3 {
    overflow-wrap:anywhere;
}

.contributor-card.lavender {background:#eee5ff;}
.contributor-card.blue {background:#e4f4ff;}
.contributor-card.mint {background:#e4faef;}
.contributor-card.yellow {background:#fff5d8;}
.contributor-card.pink {background:#ffe6f1;}
.contributor-card.peach {background:#ffe9db;}

@media(max-width:768px){
    .contributor-grid {
        grid-template-columns:repeat(2,1fr);
        gap:16px;
    }
    .contributor-card img {
        width:90px;
        height:90px;
    }
}

/* v1.1.8 contributor center fix */
.contributor-card {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    text-align:center;
}

.contributor-card img {
    display:block;
    margin:0 auto 16px;
}

.contributor-card h3,
.contributor-card p {
    width:100%;
    text-align:center;
}


/* v1.1.17 — Hero PNG tampil apa adanya */
.hero img,
.hero-image,
.hero-visual img,
.hero-media img,
.hero-art img,
.about-hero img,
.about-illustration img,
.page-hero img,
[class*="hero"] img {
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  border: none !important;
  outline: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  transform: none;
  object-fit: contain;
}

/* Hilangkan style placeholder/wadah visual yang memberi efek pada asset hero */
.hero-image,
.hero-visual,
.hero-media,
.hero-art,
.about-hero,
.about-illustration,
.page-hero-visual {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

/* Decorative pseudo-elements pada area hero tidak boleh menimpa PNG */
.hero-image::before,
.hero-image::after,
.hero-visual::before,
.hero-visual::after,
.hero-media::before,
.hero-media::after,
.hero-art::before,
.hero-art::after,
.about-hero::before,
.about-hero::after,
.about-illustration::before,
.about-illustration::after,
.page-hero-visual::before,
.page-hero-visual::after {
  display: none !important;
  content: none !important;
}


/* v1.1.17 — semua container asset hero benar-benar netral */
.hero-img,
.hero-image,
.hero-visual,
.hero-media,
.hero-art,
.page-hero-visual,
.about-illustration,
.contact-right .about-illustration {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  min-height: 0 !important;
}

.hero-img img,
.hero-image img,
.hero-visual img,
.hero-media img,
.hero-art img,
.page-hero-visual img,
.about-illustration img,
.contact-right .about-illustration img,
[class*="hero"] > img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  filter: none !important;
  padding: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-img::before,
.hero-img::after,
.hero-image::before,
.hero-image::after,
.hero-visual::before,
.hero-visual::after,
.hero-media::before,
.hero-media::after,
.hero-art::before,
.hero-art::after,
.page-hero-visual::before,
.page-hero-visual::after,
.about-illustration::before,
.about-illustration::after {
  content: none !important;
  display: none !important;
}


/* v1.1.17 — Homepage hero asset containers: PNG tampil utuh tanpa container dekoratif */
.story-banner,
.cta-visual {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  padding: 0 !important;
}

.story-banner img,
.cta-visual img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  padding: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.story-banner::before,
.story-banner::after,
.cta-visual::before,
.cta-visual::after {
  content: none !important;
  display: none !important;
}


/* v1.1.17 — static image background global */
html {
  background: transparent;
}

body {
  background-color: #faf7ff;
  background-image: url("../images/backgrounds/site-background.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* v1.1.17 — homepage global logo */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  display: block;
  width: clamp(125px, 13vw, 180px);
  max-width: 100%;
  height: auto;
}


/* v1.1.17 — Homepage book placeholders use 1:1 ratio */
.story-card img,
.book-card img,
.slider-card img,
.story-slide img {
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  object-position: center !important;
}


/* v1.1.19 — Mobile homepage hero spacing fix
   Menghapus tinggi paksa pada hero mobile agar tidak menyisakan ruang kosong berlebihan.
   Asset hero tetap ditampilkan utuh tanpa crop. */
@media (max-width: 600px) {
  .hero {
    padding-top: 28px;
    padding-bottom: 18px;
  }

  .hero-grid {
    min-height: 0 !important;
    gap: 10px !important;
    align-items: start;
  }

  .hero-copy {
    margin: 0;
  }

  .eyebrow {
    margin-bottom: 5px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.5vw, 43px);
    line-height: 0.98;
  }

  .lead {
    margin-top: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-visual {
    height: auto !important;
    min-height: 0 !important;
    margin-top: 4px;
    margin-bottom: 0;
  }

  .hero-visual img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto !important;
  }

  .feature-strip {
    margin-top: 14px;
  }
}
