/* ============================================================
   KURMA KARYA GLOBAL - Design System
   Palette: Red #C8102E (brand) + Navy #0F2A4A (chrome)
   Radius: 2px (sharp industrial)
   Type: Archivo (display) + Inter (body), self-hosted
   ============================================================ */

:root {
  --red: #C8102E;
  --red-dark: #A30D26;
  --red-soft: #FBEAEC;
  --navy: #0F2A4A;
  --navy-2: #16375E;
  --navy-3: #1E4678;
  --ink: #17191D;
  --slate: #5A6472;
  --line: #E3E6EA;
  --bg: #FFFFFF;
  --bg-soft: #F6F7F9;
  --bg-navy: #0B1F38;
  --white: #FFFFFF;
  --radius: 2px;
  --maxw: 1280px;
  --gutter: 24px;
  --shadow-sm: 0 1px 2px rgba(15, 42, 74, .06), 0 2px 8px rgba(15, 42, 74, .05);
  --shadow-md: 0 4px 12px rgba(15, 42, 74, .08), 0 12px 32px rgba(15, 42, 74, .07);
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }

/* ---------- Layout ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--bg-navy); color: #D7DEE9; }
.section-navy h2, .section-navy h3 { color: #fff; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--red); color: #fff; padding: 10px 18px; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: flex; align-items: center; gap: 32px; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; }
.nav-divider { width: 1px; height: 30px; background: var(--line); flex-shrink: 0; }
.nav-modi { height: 26px !important; opacity: .85; }
.nav-menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-menu a {
  padding: 8px 14px; border-radius: var(--radius);
  font-size: 14.5px; font-weight: 500; color: var(--slate);
  transition: color .2s, background .2s;
}
.nav-menu a:hover { color: var(--ink); background: var(--bg-soft); }
.nav-menu a.active { color: var(--red); font-weight: 600; }
.nav-cta {
  margin-left: 12px; padding: 10px 20px; border-radius: var(--radius);
  background: var(--red); color: #fff !important; font-weight: 600; font-size: 14.5px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--red-dark); }
.nav-burger { display: none; flex-direction: column; gap: 5px; margin-left: auto; padding: 8px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); transition: transform .25s, opacity .25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 600; font-size: 15px; line-height: 1;
  border: 1px solid transparent; transition: all .2s; white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); }
.btn-outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--ink); }
.btn-outline-light { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-wa { background: #1FA855; color: #fff; }
.btn-wa:hover { background: #178C46; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: min(720px, 92vh);
  display: flex; align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: transform 7s ease-out; }
.hero-slide.active img { transform: scale(1.09); } /* Ken Burns zoom */
.hero-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(100deg, rgba(11,31,56,.95) 0%, rgba(11,31,56,.82) 34%, rgba(11,31,56,.45) 62%, rgba(11,31,56,.65) 100%);
}
.hero-content { position: relative; z-index: 3; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 64px var(--gutter); }
.hero-inner { max-width: 720px; }
.hero-kicker {
  display: inline-block; margin-bottom: 20px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: #F3C1C8;
}
.hero h1 {
  color: #fff; font-size: clamp(38px, 5.2vw, 60px); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.025em; margin-bottom: 22px;
}
.hero h1 .accent { color: #FF6B7F; }
.hero p { color: #D3DCE8; font-size: 18px; line-height: 1.6; max-width: 600px; margin-bottom: 34px; }
.hero-cta .btn-outline-light { border-width: 2px; border-color: rgba(255,255,255,.65); }
.hero-cta .btn-outline-light:hover { border-color: #fff; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  position: relative; z-index: 2; margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.hero-stat { padding-top: 18px; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 800; color: #fff; }
.hero-stat span { font-size: 13px; color: #9FB0C5; line-height: 1.4; display: block; margin-top: 4px; }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-slide img, .hero-slide.active img { transform: none; transition: none; }
}

/* ---------- Section headers ---------- */
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; margin-bottom: 14px; }
.section-head p { color: var(--slate); font-size: 16.5px; }
.section-navy .section-head p { color: #9FB0C5; }

/* ---------- Trust bar (logo wall) ---------- */
.trust-bar { border-bottom: 1px solid var(--line); background: #fff; }
.trust-inner { padding: 36px 0; }
.trust-label {
  font-family: var(--font-display); font-size: 12.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--slate);
  text-align: center; margin-bottom: 22px;
}
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.trust-logos img { height: 40px; width: auto; opacity: .9; filter: grayscale(1); transition: all .2s; }
.trust-logos img:hover { opacity: 1; filter: none; }
.trust-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border: 1px solid var(--line); border-radius: var(--radius); }
.trust-badge img { height: 26px; }
.trust-modi {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-soft); font-size: 14px; color: var(--slate);
  transition: border-color .2s, background .2s, color .2s;
}
.trust-modi img { height: 28px; width: auto; }
.trust-modi span { display: inline-flex; align-items: center; gap: 8px; }
.trust-modi:hover { border-color: var(--red); background: #fff; color: var(--ink); }
.trust-modi:hover svg { transform: translateX(3px); }
.trust-modi svg { transition: transform .2s; }

/* ---------- About split ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-copy h2 { font-size: clamp(28px, 3.2vw, 38px); margin-bottom: 20px; }
.about-copy p { color: var(--slate); margin-bottom: 16px; }
.about-copy .lead { font-size: 18px; color: var(--ink); line-height: 1.6; }
.about-visual { position: relative; }
.about-visual img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.about-quote {
  margin-top: 22px; padding: 18px 22px; border-left: 3px solid var(--red);
  background: var(--red-soft); font-family: var(--font-display); font-weight: 600;
  font-size: 17px; line-height: 1.45; color: var(--navy);
}

/* ---------- Products grid (asymmetric, rapi) ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prod-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.prod-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #C9D2DC; }
.prod-card.featured { grid-column: span 1; grid-row: span 1; }
.prod-media { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--bg-soft); }
.prod-card.featured .prod-media { aspect-ratio: 4/3; }
.prod-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.prod-card:hover .prod-media img { transform: scale(1.04); }
.prod-cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 5px 10px; background: rgba(11,31,56,.85); color: #fff;
  font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; border-radius: var(--radius);
}
.prod-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.prod-body h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.prod-body p { color: var(--slate); font-size: 14.5px; line-height: 1.55; margin-bottom: 16px; flex: 1; }
.prod-link {
  font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--red);
  display: inline-flex; align-items: center; gap: 6px;
}
.prod-link svg { transition: transform .2s; }
.prod-link:hover svg { transform: translateX(3px); }

/* ---------- Values cards (dengan icon) ---------- */
.values-band { background: var(--bg-navy); color: #D7DEE9; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 30px 28px;
  transition: border-color .25s, background .25s, transform .25s;
}
.value-card:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.07); transform: translateY(-3px); }
.value-ico {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.value-card h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.value-card p { color: #9FB0C5; font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ---------- Process / steps (no boxes) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.step { position: relative; padding-top: 8px; }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--line); }
.step::after { content: ""; position: absolute; top: -3px; left: 0; width: 8px; height: 8px; background: var(--red); }
.step h3 { font-size: 17px; margin: 16px 0 8px; }
.step p { color: var(--slate); font-size: 14.5px; line-height: 1.55; }
.step-num { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--red); letter-spacing: .1em; }

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-media { aspect-ratio: 16/9; overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-media img { transform: scale(1.04); }
.blog-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; font-size: 12.5px; color: var(--slate); }
.blog-cat { color: var(--red); font-weight: 600; }
.blog-body h3 { font-size: 18px; line-height: 1.35; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-body h3 a:hover { color: var(--red); }
.blog-body p { color: var(--slate); font-size: 14.5px; line-height: 1.55; margin-bottom: 16px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- CTA band ---------- */
.cta-section { background: var(--red); color: #fff; }
.cta-inner { padding: 72px 0; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); font-weight: 800; max-width: 560px; margin-bottom: 10px; }
.cta-inner p { color: #FBDDE1; font-size: 16px; max-width: 480px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: #F3E0E3; }
.btn-ghost-white { border: 1px solid rgba(255,255,255,.5); color: #fff; }
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { background: var(--navy); padding: 120px 0 64px; margin-top: 0; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 44px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: #9FB0C5; font-size: 17px; max-width: 620px; }
.page-hero .crumb { font-size: 13px; color: #7E93AC; margin-bottom: 16px; }
.page-hero .crumb a { color: #B9C7D9; }
.page-hero .crumb a:hover { color: #fff; }

/* ---------- Products index ---------- */
.prod-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prod-item {
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  transition: transform .25s, box-shadow .25s;
}
.prod-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.prod-item-media { aspect-ratio: 4/3; overflow: hidden; }
.prod-item-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.prod-item:hover .prod-item-media img { transform: scale(1.04); }
.prod-item-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.prod-item-body h3 { font-size: 18px; margin-bottom: 8px; }
.prod-item-body p { color: var(--slate); font-size: 14.5px; flex: 1; margin-bottom: 14px; }
.prod-item-body .prod-link { margin-top: auto; }
.prod-item-body .blog-cat { margin-bottom: 8px; display: block; }

/* ---------- Product detail ---------- */
.pd-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
.pd-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.pd-media { position: sticky; top: 100px; }
/* ---------- HBA Price Card ---------- */
.hba-card { margin-top: 22px; background: var(--navy); border-radius: var(--radius); padding: 20px 20px 14px; color: #fff; box-shadow: var(--shadow-md); }
.hba-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hba-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.hba-head strong { display: block; font-size: 15px; line-height: 1.25; }
.hba-sub { display: block; font-size: 12px; color: rgba(255,255,255,.6); margin-top: 2px; font-weight: 400; }
.hba-list { display: grid; gap: 8px; }
.hba-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 9px 13px; }
.hba-row span { font-size: 13.5px; color: rgba(255,255,255,.85); font-weight: 600; }
.hba-row strong { font-size: 16px; color: #fff; font-weight: 700; white-space: nowrap; }
.hba-row em { font-style: normal; font-size: 12px; color: rgba(255,255,255,.55); font-weight: 400; }
.hba-foot { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.hba-foot span { color: rgba(255,255,255,.75); font-weight: 600; }
.hba-foot a { color: #9DC9FF; text-decoration: none; }
.hba-foot a:hover { text-decoration: underline; }
.pd-content h2 { font-size: 26px; margin: 34px 0 14px; }
.pd-content h2:first-child { margin-top: 0; }
.pd-content p { color: var(--slate); margin-bottom: 16px; }
.pd-apps { display: grid; gap: 10px; margin-bottom: 20px; }
.pd-app { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border: 1px solid var(--line); border-radius: var(--radius); font-size: 15px; }
.pd-app .tick { width: 20px; height: 20px; border-radius: 50%; background: var(--red-soft); color: var(--red); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; font-weight: 700; }
.pd-benefit { margin-top: 26px; padding: 20px 24px; border-left: 3px solid var(--red); background: var(--red-soft); }
.pd-benefit h3 { font-size: 16px; margin-bottom: 6px; color: var(--navy); }
.pd-benefit p { color: var(--navy); font-size: 15px; margin: 0; }

/* ---------- About page ---------- */
.about-hero-quote { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 26px); font-weight: 600; line-height: 1.4; color: var(--navy); border-left: 4px solid var(--red); padding-left: 24px; margin: 40px 0; }
.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.vm-block { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 36px; }
.vm-block h2 { font-size: 22px; margin-bottom: 14px; }
.vm-block p { color: var(--slate); line-height: 1.65; }
.vm-block ul { margin-top: 14px; display: grid; gap: 10px; }
.vm-block li { display: flex; gap: 10px; color: var(--slate); font-size: 15px; line-height: 1.5; }
.vm-block li::before { content: ""; flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--red); margin-top: 9px; }

/* ---------- Legal / certification ---------- */
.legal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.legal-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: #fff; }
.legal-card h3 { font-size: 17px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.legal-card p { color: var(--slate); font-size: 14.5px; line-height: 1.6; }

/* ---------- Gallery ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.gal-card { margin: 0; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.gal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gal-media { aspect-ratio: 4/3; overflow: hidden; }
.gal-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gal-card:hover .gal-media img { transform: scale(1.04); }
.gal-card figcaption { padding: 18px 20px 22px; }
.gal-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.gal-card p { color: var(--slate); font-size: 13.5px; line-height: 1.55; margin: 0; }

/* ---------- Gallery videos ---------- */
.vid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vid-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.vid-embed { position: relative; display: block; aspect-ratio: 16/9; background: #000; }
.vid-embed img { width: 100%; height: 100%; object-fit: cover; opacity: .92; transition: opacity .25s, transform .4s; }
.vid-card:hover .vid-embed img { opacity: 1; transform: scale(1.03); }
.vid-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%; background: rgba(200,16,46,.92);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 18px; padding-left: 4px; transition: transform .2s, background .2s;
}
.vid-card:hover .vid-play { transform: translate(-50%, -50%) scale(1.08); background: var(--red); }
.vid-body { padding: 18px 20px 22px; }
.vid-body h3 { font-size: 16.5px; margin-bottom: 6px; }
.vid-body p { color: var(--slate); font-size: 13.5px; line-height: 1.55; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info h2 { margin-bottom: 18px; }
.contact-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-row:first-of-type { border-top: 1px solid var(--line); }
.contact-ico { width: 42px; height: 42px; flex-shrink: 0; border-radius: var(--radius); background: var(--red-soft); color: var(--red); display: flex; align-items: center; justify-content: center; }
.contact-row h3 { font-size: 15px; margin-bottom: 4px; }
.contact-row p { color: var(--slate); font-size: 14.5px; line-height: 1.5; }
.contact-row a:hover { color: var(--red); }
.form-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.form-card h2 { font-size: 22px; margin-bottom: 6px; }
.form-card .sub { color: var(--slate); font-size: 14.5px; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  font: inherit; font-size: 15px; color: var(--ink); background: #fff;
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 13px; color: var(--slate); margin-top: 10px; }

/* ---------- Map ---------- */
.map-wrap {
  position: relative; width: 100%; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--bg-soft); box-shadow: var(--shadow-sm);
}
.map-wrap::before {
  content: "Memuat peta lokasi…"; position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate); font-size: 14px; background: var(--bg-soft); pointer-events: none;
}
.map-wrap iframe {
  position: relative; z-index: 2; display: block; width: 100%; height: 420px; border: 0;
}

/* ---------- Footer ---------- */
.footer { background: var(--bg-navy); color: #9FB0C5; }
.footer-inner { padding: 64px 0 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-logo { height: 38px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; }
.footer-about { font-size: 14px; line-height: 1.65; margin-bottom: 18px; }
.footer h3 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: 14px; color: #9FB0C5; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 10px; font-size: 14px; line-height: 1.55; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 20px 0; font-size: 13.5px; color: #7489A2; }
.footer-bottom a.credit-link { color: #7dd3fc; text-decoration: none; font-weight: 600; transition: color .2s; }
.footer-bottom a.credit-link:hover { color: #fff; text-decoration: underline; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- WA float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: #1FA855; color: #fff; padding: 12px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14px; box-shadow: 0 6px 20px rgba(31,168,85,.4);
  transition: transform .2s, background .2s;
}
main { padding-bottom: 0; }
@media (max-width: 768px) {
  main { padding-bottom: 80px; } /* ruang aman untuk FAB WhatsApp */
  .wa-float { bottom: 16px; right: 16px; padding: 0; width: 54px; height: 54px; justify-content: center; border-radius: 50%; }
  .wa-float span { display: none; } /* mobile: ikon saja, lebih kecil */
}
.wa-float:hover { background: #178C46; transform: translateY(-2px); }
.wa-float svg { flex-shrink: 0; }

/* ---------- Blog detail ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article h1 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; margin-bottom: 14px; }
.article-meta { display: flex; gap: 14px; color: var(--slate); font-size: 14px; margin-bottom: 30px; flex-wrap: wrap; }
.article-hero { border-radius: var(--radius); margin-bottom: 34px; width: 100%; }
.article h2 { font-size: 24px; margin: 40px 0 14px; }
.article p { color: #3A4350; font-size: 17px; line-height: 1.75; margin-bottom: 20px; }

/* ---------- 404 ---------- */
.err { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 0; }
.err h1 { font-size: clamp(80px, 12vw, 140px); font-weight: 800; color: var(--red); line-height: 1; }
.err h2 { font-size: 24px; margin: 12px 0 8px; }
.err p { color: var(--slate); margin-bottom: 24px; }

/* ---------- Reveal (motion, reduced-motion safe) ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .prod-card:hover, .blog-card:hover, .prod-item:hover { transform: none; }
  .prod-card:hover .prod-media img, .blog-card:hover .blog-media img, .prod-item:hover .prod-item-media img { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .pd-grid { grid-template-columns: 1fr; gap: 32px; }
  .pd-media { position: static; }
  .legal-grid { grid-template-columns: repeat(2, 1fr); }
  .vid-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-menu {
    position: fixed; inset: 72px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 16px 20px 24px; gap: 6px;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 14px; font-size: 16px; }
  .nav-cta { margin: 8px 0 0; text-align: center; }
  .nav-burger { display: flex; }
  .hero { min-height: 0; padding: 72px 0 48px; }
  .hero-content { padding: 0 var(--gutter); } /* ikut sela container, tidak mepet */
  .hero-stats { grid-template-columns: 1fr; gap: 14px; margin-top: 40px; padding-bottom: 70px; }
  .hero-stat { display: grid; grid-template-columns: 96px 1fr; gap: 14px; align-items: baseline; padding-top: 12px; }
  .hero-stat strong { font-size: 20px; }
  .hero-stat span { font-size: 13px; padding-right: 40px; } /* ruang aman dari FAB */
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .prod-grid { grid-template-columns: 1fr; }
  .prod-list { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .vision-mission { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
  .vid-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; padding: 56px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .map-wrap iframe { height: 300px; }
  .trust-logos { gap: 24px; }
  .trust-logos img { height: 28px; }
}

@media (max-width: 390px) {
  .container { padding: 0 20px; }
  .hero-content { padding: 0 20px; }
  .hero h1 { font-size: 34px; }
  .hero-cta .btn { width: 100%; }
  .cta-actions .btn { width: 100%; }
}

/* ============================================================
   CMS runtime-render (postingan & kontak dinamis)
   ============================================================ */
.art-empty {
  grid-column: 1 / -1;
  color: var(--slate);
  font-size: 15px;
  padding: 28px 0;
}
.art-detail-body h2 {
  font-size: 24px;
  margin: 40px 0 14px;
}
.art-detail-body p,
.art-detail-body ul,
.art-detail-body ol {
  color: #3A4350;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.art-detail-body ul,
.art-detail-body ol {
  margin-left: 22px;
}
.art-cta {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.art-cta h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.art-cta p {
  color: var(--slate);
  font-size: 15px;
  margin-bottom: 16px;
}
