
/* ==========================================================
   PT BARAMEDIA LITERASI DIGITAL
   Premium Editorial Theme
   Maroon · Cream · Gold · White
   ========================================================== */

:root{
  --bg:#f7f1e6;
  --surface:#ffffff;
  --soft:#f0e6d6;
  --soft-2:#eadbc7;
  --ink:#2b1b1d;
  --muted:#74666a;
  --navy:#5b1722;
  --teal:#7b2030;
  --teal2:#963446;
  --maroon:#6d1f2b;
  --maroon-dark:#481018;
  --gold:#c4a15f;
  --gold-dark:#9d7b3f;
  --line:#dfd3c3;
  --danger:#9a3d45;
  --success:#64765f;
  --radius:12px;
  --shadow:0 20px 50px rgba(73,16,24,.08);
}

*{box-sizing:border-box}
html{background:var(--bg);scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.6;
}
.wrap{width:min(1180px,calc(100% - 48px));margin-inline:auto}

/* ---------- top bar ---------- */
.topbar{
  background:var(--maroon-dark);
  color:#f0dfc3;
  border:0;
  font-size:10px;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.topbar .wrap{
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

/* ---------- header ---------- */
.site-header{
  background:rgba(255,255,255,.96);
  border-bottom:1px solid #eadfce;
  box-shadow:0 8px 30px rgba(73,16,24,.035);
  backdrop-filter:blur(14px);
}
.nav-wrap{
  min-height:82px;
  display:flex;
  align-items:center;
  gap:28px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}
.brand img{
  width:56px;
  height:56px;
  object-fit:contain;
  flex:0 0 auto;
}
.brand strong{
  display:block;
  color:var(--maroon-dark);
  font-family:Georgia,"Times New Roman",serif;
  font-weight:700;
  font-size:18px;
  letter-spacing:.045em;
}
.brand small{
  display:block;
  margin-top:2px;
  color:#9a7b50;
  font-size:9px;
  letter-spacing:.16em;
}
.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:26px;
  margin-left:auto;
}
.nav-links a{
  position:relative;
  color:#594b4e;
  text-decoration:none;
  font-size:12px;
  font-weight:700;
  letter-spacing:.025em;
}
.nav-links a:after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:-8px;
  height:2px;
  background:var(--gold);
  transition:.2s ease;
}
.nav-links a:hover{color:var(--maroon)}
.nav-links a:hover:after{right:0}
.nav-cta{margin-left:8px}
.menu-toggle{
  display:none;
  margin-left:auto;
  border:1px solid #d8c9b5;
  background:#fff;
  color:var(--maroon);
  border-radius:8px;
  width:42px;
  height:42px;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border-radius:7px;
  padding:12px 20px;
  border:1px solid transparent;
  font-size:12px;
  font-weight:800;
  letter-spacing:.055em;
  text-transform:uppercase;
  text-decoration:none;
  cursor:pointer;
  transition:.2s ease;
  box-shadow:none;
}
.btn-primary{
  background:var(--maroon);
  color:#fff;
}
.btn-primary:hover{
  background:var(--maroon-dark);
  color:#fff;
  transform:translateY(-1px);
}
.btn-light{
  background:#fff;
  color:var(--maroon);
  border-color:#d6c4aa;
}
.btn-light:hover{
  border-color:var(--gold);
  background:#fffaf2;
}
.btn-dark{background:var(--maroon-dark);color:#fff}
.btn-danger{background:#9a3d45;color:#fff}
.btn-block{width:100%}

/* ---------- hero ---------- */
.hero{
  position:relative;
  padding:84px 0 78px;
  overflow:hidden;
  background:
    radial-gradient(circle at 7% 7%, rgba(196,161,95,.14), transparent 28%),
    linear-gradient(135deg,#fff 0%,#fbf7f0 56%,#f2e7d7 100%);
}
.hero:before{
  content:"";
  position:absolute;
  inset:auto -140px -230px auto;
  width:520px;
  height:520px;
  border-radius:50%;
  border:1px solid rgba(109,31,43,.08);
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);
  gap:54px;
  align-items:center;
}
.hero-copy{
  max-width:700px;
}
.eyebrow,.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:0;
  color:var(--maroon);
  background:transparent;
  font-size:10px;
  font-weight:850;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.eyebrow:before,.kicker:before{
  content:"";
  width:28px;
  height:1px;
  background:var(--gold);
}
.hero h1{
  max-width:720px;
  margin:22px 0 22px;
  color:var(--maroon-dark);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(48px,5.2vw,72px);
  line-height:1.02;
  font-weight:500;
  letter-spacing:-.04em;
}
.hero h1 span{
  color:var(--gold-dark);
  font-style:italic;
}
.lead{
  max-width:650px;
  margin:0;
  color:#6b5c60;
  font-size:17px;
  line-height:1.78;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:30px;
}
.trust-row{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  margin-top:28px;
  color:#755f65;
  font-size:11px;
}
.trust-row span:before{
  color:var(--gold-dark);
}

/* hero right */
.hero-panel{
  position:relative;
  overflow:hidden;
  background:var(--maroon-dark);
  border:1px solid #6b2d36;
  border-radius:18px;
  padding:30px;
  box-shadow:0 30px 70px rgba(72,16,24,.14);
}
.hero-panel:after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  border-radius:50%;
  border:1px solid rgba(196,161,95,.18);
  right:-80px;
  top:-80px;
}
.hero-logo{
  display:grid;
  grid-template-columns:82px 1fr;
  gap:18px;
  align-items:start;
  padding-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.hero-logo img{
  width:82px;
  height:82px;
  object-fit:contain;
  padding:8px;
  border-radius:10px;
  background:#fffaf0;
}
.hero-logo .panel-kicker{
  color:#d7b875!important;
  font-size:10px;
  font-weight:800;
  letter-spacing:.11em;
}
.hero-logo h3{
  color:#fff!important;
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
  line-height:1.2;
  font-weight:500;
  margin:7px 0 0;
}
.hero-steps{
  list-style:none;
  margin:18px 0 0;
  padding:0;
}
.hero-steps li{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:14px;
  align-items:start;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.hero-steps li:last-child{border-bottom:0}
.hero-steps b{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid rgba(196,161,95,.45);
  display:grid;
  place-items:center;
  background:transparent!important;
  color:#e2c17c!important;
  font-size:11px;
}
.hero-steps strong{
  display:block;
  color:#fff!important;
  font-size:14px;
}
.hero-steps small{
  display:block;
  margin-top:4px;
  color:#cdbfc1!important;
  line-height:1.55;
}
.panel-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:20px;
  color:#e1c17e!important;
  text-decoration:none;
  font-weight:700;
  font-size:12px;
}

/* ---------- sections ---------- */
section{padding:82px 0}
.section-head{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);
  gap:40px;
  align-items:end;
  margin-bottom:34px;
}
.section-head h2{
  margin:8px 0 0;
  color:var(--maroon-dark);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(34px,4vw,50px);
  line-height:1.1;
  font-weight:500;
  letter-spacing:-.03em;
}
.section-head p{
  margin:0;
  color:#746569;
  line-height:1.75;
}

/* services */
.services{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  background:transparent;
  border:0;
}
.service{
  position:relative;
  overflow:hidden;
  min-height:250px;
  padding:28px 24px 26px;
  border:1px solid #e3d6c4;
  border-radius:12px;
  background:#fff;
  box-shadow:0 10px 30px rgba(72,16,24,.04);
}
.service:before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:3px;
  background:linear-gradient(90deg,var(--maroon),var(--gold));
}
.service:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 42px rgba(72,16,24,.08);
}
.service .icon{
  display:block;
  width:auto;
  height:auto;
  background:transparent!important;
  color:var(--gold-dark)!important;
  font-family:Georgia,"Times New Roman",serif;
  font-size:13px;
  letter-spacing:.14em;
}
.service h3{
  margin:28px 0 12px;
  color:var(--maroon-dark);
  font-family:Georgia,"Times New Roman",serif;
  font-size:22px;
  font-weight:600;
  line-height:1.25;
}
.service p{
  color:#74676a;
  font-size:13px;
  line-height:1.72;
}

/* journal/card area */
.soft-section{
  background:#f0e5d5;
  border-top:1px solid #e4d6c3;
  border-bottom:1px solid #e4d6c3;
}
.books-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.book-card{
  overflow:hidden;
  border:1px solid #e0d3c1;
  border-radius:12px;
  background:#fff;
  box-shadow:0 12px 32px rgba(72,16,24,.05);
}
.book-card:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 46px rgba(72,16,24,.09);
}
.book-cover{
  min-height:285px;
  background:linear-gradient(145deg,#5a1420,#8b2a3a 55%,#c5a463);
}
.book-cover.alt2{background:linear-gradient(145deg,#441019,#72202f 52%,#b99a5c)}
.book-cover.alt3{background:linear-gradient(145deg,#6c1b29,#9a3447 55%,#d0b276)}
.book-cover.alt4{background:linear-gradient(145deg,#3d0d15,#671a26 56%,#a8874d)}
.book-cover:after{border-color:rgba(255,255,255,.18)}
.book-body{padding:20px}
.pill{
  border-radius:999px;
  background:#f5ecde;
  color:#7d5e2e;
  border:1px solid #e4d4ba;
}
.book-body p{line-height:1.7}
.book-isbn{color:var(--maroon)}

/* workflow */
.workflow{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
  background:transparent;
  border:0;
}
.flow{
  padding:24px 20px;
  border:1px solid #e4d7c6;
  border-radius:12px;
  background:#fff;
  box-shadow:0 10px 28px rgba(72,16,24,.035);
}
.flow b{
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--maroon)!important;
  color:#fff!important;
  font-size:11px;
}
.flow h3{
  margin:18px 0 8px;
  color:var(--maroon-dark);
  font-family:Georgia,"Times New Roman",serif;
  font-size:18px;
}
.flow p{
  margin:0;
  color:#776a6c;
  font-size:12px;
  line-height:1.65;
}

/* request section */
.booking-section{
  position:relative;
  background:var(--maroon-dark)!important;
  color:#fff;
}
.booking-section:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 10% 20%,rgba(196,161,95,.11),transparent 24%),
    radial-gradient(circle at 90% 80%,rgba(255,255,255,.035),transparent 25%);
  pointer-events:none;
}
.booking-box{
  position:relative;
}
.booking-copy h2{
  color:#fff;
  font-family:Georgia,"Times New Roman",serif;
  font-weight:500;
}
.booking-copy p{color:#d0c2c4}
.booking-section .kicker{color:#e0bd75}
.booking-section .kicker:before{background:#e0bd75}
.form-card{
  border:1px solid #e6d8c7;
  border-radius:14px;
  background:#fffaf3;
  box-shadow:0 22px 55px rgba(0,0,0,.12);
}
.field label{
  color:#59494d;
  font-size:11px;
  font-weight:800;
  letter-spacing:.045em;
}
.field input,.field select,.field textarea{
  width:100%;
  border-radius:8px;
  border:1px solid #d9c9b5;
  background:#fff;
  color:var(--ink);
  padding:13px 13px;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:0;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(196,161,95,.12);
}
.note{
  border-radius:8px;
  background:#f3e8d8;
  color:#68575b;
}
.alert{border-radius:8px}

/* page hero/profile */
.page-hero{
  background:linear-gradient(135deg,#fff 0%,#f6eddf 100%);
  border-bottom:1px solid #e0d2c0;
}
.page-hero h1{
  color:var(--maroon-dark);
  font-family:Georgia,"Times New Roman",serif;
  font-weight:500;
}
.profile-card{
  border:1px solid #e0d2c0;
  border-radius:12px;
  background:#fff;
  box-shadow:0 12px 34px rgba(72,16,24,.045);
}
.profile-primary{
  background:var(--maroon-dark);
  color:#fff;
  border-color:var(--maroon-dark);
}
.profile-primary h2,
.profile-primary h3,
.profile-primary dd{color:#fff}
.profile-primary dt{color:#cdbbbd}
.profile-primary a{color:#e3c17c}

/* tracking/payment */
.track-shell{padding:72px 0}
.track-card{
  border:1px solid #e1d4c2;
  border-radius:14px;
  background:#fff;
  box-shadow:0 24px 60px rgba(72,16,24,.08);
}
.track-card h1{
  color:var(--maroon-dark);
  font-family:Georgia,"Times New Roman",serif;
  font-weight:500;
}
.meta-box{border-radius:8px;background:#f4eadc}
.timeline-step.done .timeline-dot{background:var(--maroon)}
.timeline-step.current .timeline-dot{background:var(--gold-dark)}

.payment-checkout{
  border:1px solid #e1d3c1!important;
  border-radius:14px!important;
  background:#fffaf3!important;
}
.payment-qris{
  border:1px solid #dfd1bf!important;
  border-radius:12px!important;
}
.pay-box{
  border-radius:10px!important;
  background:#f6ede2!important;
}
.pay-box.total{
  background:#efe0c7!important;
}
.pay-box.total b{color:var(--maroon)!important}
.payment-note{
  border-radius:10px!important;
  background:#fbf0dd!important;
  color:#6e5633!important;
}

/* storefront */
.shop-hero{
  background:linear-gradient(135deg,#fff 0%,#f3e6d5 100%)!important;
  border-color:#e1d2c0!important;
}
.shop-hero h1{color:var(--maroon-dark)!important}
.shop-hero .kicker{color:var(--maroon)!important}
.shop-hero-stat,.shop-toolbar,.product-card,
.product-main-cover,.product-permalink,.product-specs,
.product-description-card{
  border-radius:12px!important;
  border-color:#e0d2c0!important;
  background:#fff!important;
  box-shadow:0 10px 28px rgba(72,16,24,.045)!important;
}
.product-card:hover{
  transform:translateY(-3px)!important;
  box-shadow:0 18px 42px rgba(72,16,24,.08)!important;
}
.product-type,
.breadcrumb a:hover,
.product-detail-btn:hover{color:var(--maroon)!important}
.product-detail-info h1,
.product-body h2,
.product-price b,
.product-specs b,
.product-description-card h2{
  color:var(--maroon-dark)!important;
}
.product-cover-fallback{
  background:linear-gradient(145deg,#5a1420,#8b2a3a 55%,#c5a463)!important;
}
.product-buy-box{
  border-radius:12px!important;
  border-color:#e0d2c0!important;
  background:#f4e9da!important;
}

/* footer */
.site-footer{
  background:var(--maroon-dark)!important;
  border:0!important;
  color:#d8cbcd!important;
}
.site-footer .brand strong,
.site-footer h4{color:#fff!important}
.site-footer .brand small{color:#d8ba77!important}
.site-footer a,.site-footer p{color:#d0c1c3!important}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.11)!important;
  color:#ae9b9f!important;
}

/* admin */
.admin-shell{background:#f4ecdf}
.admin-top{
  background:var(--maroon-dark)!important;
  border:0!important;
}
.admin-top .brand strong{color:#fff!important}
.admin-top .brand small{color:#d9b972!important}
.admin-nav{
  background:#fff!important;
  border-bottom:1px solid #dfd0bd!important;
  box-shadow:0 5px 18px rgba(72,16,24,.03);
}
.admin-nav a{color:#67575b!important}
.admin-nav a.active{
  color:var(--maroon)!important;
  border-color:var(--gold)!important;
}
.panel{
  border-radius:12px!important;
  border:1px solid #e0d2c0!important;
  box-shadow:0 10px 28px rgba(72,16,24,.04)!important;
  background:#fff!important;
}
.table th{
  background:#f2e7d8!important;
  color:#5d454a!important;
}
.table td{border-color:#eadfd1!important}
.login-wrap{
  background:
    radial-gradient(circle at 20% 15%,rgba(196,161,95,.12),transparent 24%),
    linear-gradient(135deg,#fff 0%,#f4eadc 100%)!important;
}
.login-card{
  border-radius:14px!important;
  border:1px solid #e1d2c0!important;
  box-shadow:0 26px 70px rgba(72,16,24,.09)!important;
}

/* ---------- responsive ---------- */
@media(max-width:1050px){
  .hero-grid{grid-template-columns:1fr;gap:38px}
  .hero-copy{max-width:800px}
  .hero-panel{max-width:760px}
  .services{grid-template-columns:repeat(2,minmax(0,1fr))}
  .books-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .workflow{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:860px){
  .nav-links,.nav-cta{display:none}
  .menu-toggle{display:grid;place-items:center}
  body.menu-open .nav-links{
    display:flex;
    position:absolute;
    left:24px;
    right:24px;
    top:88px;
    z-index:50;
    padding:18px;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    border:1px solid #dfd0bd;
    border-radius:12px;
    background:#fff;
    box-shadow:0 18px 45px rgba(72,16,24,.12);
  }
  body.menu-open .nav-cta{
    display:inline-flex;
    position:absolute;
    right:24px;
    top:288px;
    z-index:51;
  }
  .section-head{grid-template-columns:1fr;gap:14px}
}
@media(max-width:720px){
  .wrap{width:min(100% - 28px,1180px)}
  .topbar .wrap{justify-content:center}
  .topbar .wrap span:last-child{display:none}
  .nav-wrap{min-height:72px}
  .brand img{width:45px;height:45px}
  .brand strong{font-size:14px}
  .brand small{font-size:8px}
  .hero{padding:58px 0 54px}
  .hero h1{font-size:44px}
  .hero-panel{padding:22px;border-radius:14px}
  .hero-logo{grid-template-columns:64px 1fr}
  .hero-logo img{width:64px;height:64px}
  .hero-logo h3{font-size:23px}
  section{padding:62px 0}
  .services,.books-grid,.workflow{grid-template-columns:1fr}
  .trust-row{gap:12px}
}


/* ==========================================================
   COLOR LOCK — MAROON / CREAM / GOLD / WHITE ONLY
   ========================================================== */
:root{
  --teal:#6d1f2b !important;
  --teal2:#963446 !important;
  --success:#9d7b3f !important;
}

.home-page .hero{
  background:
    radial-gradient(circle at 8% 8%,rgba(196,161,95,.15),transparent 26%),
    radial-gradient(circle at 91% 14%,rgba(109,31,43,.08),transparent 24%),
    linear-gradient(135deg,#ffffff 0%,#fbf5ec 54%,#f1e2d0 100%) !important;
}

.home-page .hero-panel:before{
  background:rgba(196,161,95,.12) !important;
}

.home-page .hero-steps b,
.home-page .service .icon,
.flow b{
  background:#f2e4d8 !important;
  color:#6d1f2b !important;
}

.home-page .panel-kicker,
.home-page .panel-link,
.kicker,
.product-type,
.shop-hero .kicker,
.breadcrumb a:hover,
.product-detail-btn:hover{
  color:#6d1f2b !important;
}

.btn-primary{
  background:#6d1f2b !important;
  color:#fff !important;
  box-shadow:0 10px 24px rgba(109,31,43,.16) !important;
}
.btn-primary:hover{
  background:#481018 !important;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.shop-toolbar select:focus,
.shop-search:focus-within{
  border-color:#c4a15f !important;
  box-shadow:0 0 0 3px rgba(196,161,95,.12) !important;
}

.book-cover.alt3{
  background:linear-gradient(150deg,#6d1f2b,#963446 55%,#c4a15f) !important;
}

.product-cover-fallback{
  background:linear-gradient(145deg,#481018 0%,#7b2030 58%,#c4a15f 100%) !important;
}

.product-buy-box{
  background:linear-gradient(145deg,#ffffff,#fbf4ea) !important;
  border-color:#e2d2bf !important;
}

.pay-box.total{
  background:#efdfc6 !important;
}
.pay-box.total b{
  color:#6d1f2b !important;
}

.alert-success{
  background:#f3eadb !important;
  color:#705728 !important;
  border-color:#dcc79d !important;
}

.admin-nav a:hover,
.admin-nav a.active{
  background:#f2e4d8 !important;
  color:#6d1f2b !important;
}


/* ==========================================================
   FINAL HERO/PANEL FIX — MAROON / CREAM / GOLD / WHITE
   ========================================================== */

/* Hilangkan semua aksen hijau/teal yang mungkin diwarisi CSS lama */
.hero-panel,
.home-page .hero-panel,
.hero-panel::before,
.hero-panel::after{
  background:none !important;
}

.home-page .hero-panel{
  background:
    radial-gradient(circle at 92% 8%, rgba(196,161,95,.16), transparent 28%),
    linear-gradient(145deg,#481018 0%,#5b1722 54%,#6d1f2b 100%) !important;
  border:1px solid rgba(196,161,95,.30) !important;
  box-shadow:0 28px 64px rgba(72,16,24,.20) !important;
  border-radius:18px !important;
}

/* Logo pada panel hero diperbesar dan diberi ruang yang proporsional */
.home-page .hero-logo{
  grid-template-columns:132px minmax(0,1fr) !important;
  gap:24px !important;
  align-items:center !important;
  padding-bottom:26px !important;
}

.home-page .hero-logo img{
  width:132px !important;
  height:132px !important;
  max-width:none !important;
  object-fit:contain !important;
  padding:10px !important;
  border-radius:14px !important;
  background:#fffaf2 !important;
  border:1px solid rgba(196,161,95,.32) !important;
}

.home-page .hero-logo .panel-kicker{
  color:#e1bd73 !important;
}

.home-page .hero-logo h3{
  color:#fff !important;
}

.home-page .hero-steps li{
  border-color:rgba(255,255,255,.12) !important;
}

.home-page .hero-steps b{
  background:#fff2df !important;
  color:#6d1f2b !important;
  border:1px solid #d8b978 !important;
}

.home-page .hero-steps strong{
  color:#fff !important;
}

.home-page .hero-steps small{
  color:#dacccd !important;
}

.home-page .panel-link{
  color:#e1bd73 !important;
}

/* Accent label pada hero kiri juga dikunci ke maroon/gold */
.home-page .eyebrow,
.home-page .kicker{
  color:#6d1f2b !important;
  background:transparent !important;
}

.home-page .eyebrow::before,
.home-page .kicker::before{
  background:#c4a15f !important;
}

/* Hilangkan residu hijau pada ikon/check */
.home-page .trust-row,
.home-page .trust-row span,
.home-page .trust-row span::before{
  color:#6d1f2b !important;
}

/* Tombol tetap maroon */
.home-page .btn-primary,
.nav-cta{
  background:#6d1f2b !important;
  color:#fff !important;
}

.home-page .btn-primary:hover,
.nav-cta:hover{
  background:#481018 !important;
}

/* Responsive logo panel */
@media(max-width:720px){
  .home-page .hero-logo{
    grid-template-columns:88px minmax(0,1fr) !important;
    gap:16px !important;
  }

  .home-page .hero-logo img{
    width:88px !important;
    height:88px !important;
    padding:7px !important;
  }
}
