/* ═══════════════════════════════════════════════════════════════
   perusahaan.css — B2B corporate landing page (/perusahaan) v2
   Uses only theme variables from style.css / theme_css_vars().
   Prefix: .pr-  (no collisions with global styles)
   ═══════════════════════════════════════════════════════════════ */

/* ── Shared ─────────────────────────────────────────────────── */
.pr-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pr-section { padding: 80px 0; }
.pr-section-alt { background: var(--green-light); }
.pr-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.pr-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.2;
  color: var(--green-dark);
  margin: 0 0 14px;
}
.pr-head p { color: var(--text-muted); font-size: 17px; line-height: 1.65; margin: 0; }
.pr-head p a { color: var(--orange); font-weight: 600; text-decoration: underline; }
.pr-center { text-align: center; margin-top: 44px; }

.pr-btn-lg { padding: 15px 30px; font-size: 16px; }
.pr-btn-block { width: 100%; justify-content: center; margin-top: auto; }

.pr-grid { display: grid; gap: 24px; }
.pr-grid-3 { grid-template-columns: repeat(3, 1fr); }
.pr-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .pr-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pr-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pr-grid-3, .pr-grid-4 { grid-template-columns: 1fr; }
  .pr-section { padding: 56px 0; }
}

/* ── Cards ──────────────────────────────────────────────────── */
.pr-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.pr-card h3 { font-size: 18px; color: var(--green-dark); margin: 0 0 8px; line-height: 1.35; }
.pr-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin: 0; }

.pr-ic {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--orange-light);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex: 0 0 auto;
}
.pr-ic svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pr-ic-warn { background: var(--green-light); color: var(--green); }

.pr-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  color: var(--orange);
  font-weight: 700; font-size: 14px;
  text-decoration: none;
}
.pr-link:hover { color: var(--orange-dark); }
.pr-service p, .pr-program p { flex: 1; }
.pr-program { border-top: 3px solid var(--orange); }

/* ── 1 · Hero ───────────────────────────────────────────────── */
.pr-hero {
  background: #fff;
  padding: 64px 0 56px;
}
.pr-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.pr-hero h1 {
  font-size: clamp(30px, 4.2vw, 45px);
  line-height: 1.15;
  color: var(--green-dark);
  margin: 0 0 20px;
}
.pr-hero h1 em { font-style: normal; color: var(--orange); }
.pr-lead { font-size: 17.5px; line-height: 1.7; color: var(--text-muted); margin: 0 0 28px; }
.pr-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.pr-reassure { margin: 18px 0 0; font-size: 14px; color: var(--text-light); font-weight: 600; }
.pr-hero-media img {
  width: 100%; height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
}
@media (max-width: 900px) {
  .pr-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .pr-hero { padding: 44px 0 40px; }
}

/* ── 2 · Trust band ─────────────────────────────────────────── */
.pr-trustband {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 0;
}
.pr-trustnum {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.pr-tn b { display: block; font-size: clamp(26px, 3vw, 36px); color: var(--green-dark); font-weight: 800; }
.pr-tn span { font-size: 14px; color: var(--text-muted); font-weight: 600; }
.pr-clients { margin-top: 34px; text-align: center; }
.pr-clients p { font-size: 13px; color: var(--text-light); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin: 0 0 14px; }
.pr-client-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pr-client-chips span {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 14px; font-weight: 700;
  color: var(--text-muted);
  background: var(--green-light);
}
@media (max-width: 900px) { .pr-trustnum { grid-template-columns: repeat(2, 1fr); } }

/* ── CTA strips ─────────────────────────────────────────────── */
.pr-ctastrip { background: var(--green-dark); padding: 34px 0; }
.pr-ctastrip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.pr-ctastrip p { color: rgba(255,255,255,.85); font-size: 16.5px; line-height: 1.55; margin: 0; flex: 1 1 400px; }
.pr-ctastrip p b { color: #fff; }
.pr-ctastrip .btn-primary { flex: 0 0 auto; white-space: nowrap; }
@media (max-width: 640px) {
  .pr-ctastrip-inner { flex-direction: column; align-items: flex-start; }
  .pr-ctastrip .btn-primary { width: 100%; justify-content: center; }
}

/* ── 7 · Industries ─────────────────────────────────────────── */
.pr-section-dark { background: var(--green-dark); }
.pr-section-dark .pr-head h2 { color: #fff; }
.pr-section-dark .pr-head p { color: rgba(255,255,255,.75); }
.pr-industries {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.pr-industry {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  color: #fff;
  font-weight: 700; font-size: 15px;
  transition: background .2s, border-color .2s;
}
.pr-industry:hover { background: rgba(255,255,255,.12); border-color: var(--orange); }
.pr-ind-ic { display: flex; color: var(--orange); }
.pr-ind-ic svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 1000px) { .pr-industries { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .pr-industries { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .pr-industries { grid-template-columns: 1fr; } }

/* ── 8 · Timeline (8 steps: 4×2 desktop, vertical mobile) ───── */
.pr-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 18px;
  list-style: none;
  padding: 0; margin: 0;
  position: relative;
}
.pr-timeline li { position: relative; text-align: center; }
.pr-timeline li::before {
  content: '';
  position: absolute;
  top: 24px; left: -9px;
  width: 18px; height: 2px;
  background: var(--border);
}
.pr-timeline li:first-child::before, .pr-timeline li:nth-child(5)::before { display: none; }
.pr-step-num {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800; font-size: 18px;
  box-shadow: 0 0 0 6px #fff;
}
.pr-timeline h3 { font-size: 16px; color: var(--green-dark); margin: 0 0 6px; }
.pr-timeline p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; margin: 0; }
@media (max-width: 900px) {
  .pr-timeline { grid-template-columns: 1fr; gap: 0; }
  .pr-timeline li::before { top: 0; bottom: -28px; left: 23px; width: 2px; height: auto; display: block !important; }
  .pr-timeline li:first-child::before { display: none !important; }
  .pr-timeline li:last-child::before { bottom: auto; height: 24px; }
  .pr-timeline li { display: grid; grid-template-columns: 48px 1fr; gap: 0 18px; text-align: left; padding-bottom: 28px; }
  .pr-step-num { margin: 0; grid-row: 1 / 3; box-shadow: none; }
  .pr-timeline h3 { align-self: center; }
  .pr-timeline p { grid-column: 2; }
}

/* ── 9 · Packages ───────────────────────────────────────────── */
.pr-packages { align-items: stretch; }
.pr-package {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.pr-package:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pr-package-featured {
  border: 2px solid var(--orange);
  box-shadow: var(--shadow-md);
}
.pr-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 12px; font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 16px;
  border-radius: 99px;
  white-space: nowrap;
}
.pr-package h3 {
  font-size: 19px;
  color: var(--green-dark);
  letter-spacing: .04em;
  margin: 0 0 12px;
}
.pr-pkg-for { font-size: 14.5px; color: var(--text); margin: 0 0 8px; }
.pr-pkg-for strong { color: var(--orange); }
.pr-pkg-desc { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; margin: 0 0 18px; }
.pr-package ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; }
.pr-package li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--text); line-height: 1.5;
}
.pr-package li svg { width: 18px; height: 18px; color: var(--orange); flex: 0 0 auto; margin-top: 2px; }

/* ── 10 · Testimonials ──────────────────────────────────────── */
.pr-testi {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  margin: 0;
  display: flex; flex-direction: column;
}
.pr-stars { color: var(--orange); font-size: 16px; letter-spacing: 3px; margin-bottom: 14px; }
.pr-testi blockquote {
  margin: 0 0 16px;
  font-size: 15.5px; line-height: 1.7;
  color: var(--text);
  flex: 1;
}
.pr-outcome {
  display: flex; align-items: center; gap: 8px;
  margin: 0 0 18px;
  padding: 10px 14px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-size: 13.5px; font-weight: 700;
}
.pr-outcome svg { flex: 0 0 auto; }
.pr-testi figcaption { display: flex; align-items: center; gap: 12px; }
.pr-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.pr-testi figcaption b { display: block; font-size: 15px; color: var(--green-dark); }
.pr-testi figcaption small { font-size: 13px; color: var(--text-muted); }

/* ── 11 · FAQ ───────────────────────────────────────────────── */
.pr-faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.pr-faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.pr-faq details[open] { border-color: var(--orange); }
.pr-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 48px 18px 22px;
  font-weight: 700; font-size: 16px;
  color: var(--green-dark);
  position: relative;
}
.pr-faq summary::-webkit-details-marker { display: none; }
.pr-faq summary::after {
  content: '+';
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px; font-weight: 400;
  color: var(--orange);
}
.pr-faq details[open] summary::after { content: '\2212'; }
.pr-faq details p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 15px; line-height: 1.65;
  color: var(--text-muted);
}

/* ── 12 · Final CTA ─────────────────────────────────────────── */
.pr-final {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 84px 0;
}
.pr-final-inner { text-align: center; max-width: 780px; }
.pr-final h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
  margin: 0 0 16px;
}
.pr-final p { color: rgba(255,255,255,.9); font-size: 17px; line-height: 1.65; margin: 0 0 32px; }
.pr-final-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.pr-btn-white, .pr-btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 34px;
  border-radius: 8px;
  font-size: 17px; font-weight: 700;
  text-decoration: none;
  transition: transform .15s, background .2s, box-shadow .2s;
}
.pr-btn-white { background: #fff; color: var(--orange-dark); box-shadow: var(--shadow-md); }
.pr-btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.pr-btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.pr-btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.pr-final-phone { margin: 26px 0 0 !important; font-size: 16px !important; }
.pr-final-phone a { color: #fff; font-weight: 800; text-decoration: underline; }
.pr-badges {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  justify-content: center;
  margin-top: 28px;
}
.pr-badges span { color: rgba(255,255,255,.95); font-size: 14px; font-weight: 700; }

/* ── Slim footer ────────────────────────────────────────────── */
.pr-foot {
  background: var(--green-dark);
  padding: 36px 0;
  text-align: center;
}
.pr-foot-links { display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: center; margin-bottom: 16px; }
.pr-foot-links a { color: rgba(255,255,255,.85); font-size: 14px; font-weight: 600; text-decoration: none; }
.pr-foot-links a:hover { color: #fff; text-decoration: underline; }
.pr-foot p { color: rgba(255,255,255,.7); font-size: 14px; margin: 0 0 6px; }
.pr-foot-copy { opacity: .6; font-size: 13px !important; }

/* ── Sticky CTA (desktop + mobile, shown after scroll) ──────── */
.pr-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px calc(10px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  transform: translateY(110%);
  transition: transform .3s ease;
}
.pr-sticky.pr-sticky-show { transform: translateY(0); }
body.pr-has-sticky { padding-bottom: 76px; }
.pr-sticky-info {
  flex: 1; min-width: 0;
  font-size: 12.5px; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pr-sticky-info b {
  display: block;
  font-size: 14.5px; color: var(--green-dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pr-sticky .btn-primary, .pr-sticky .btn-outline { flex: 0 0 auto; padding: 11px 20px; font-size: 14.5px; }
@media (max-width: 640px) {
  .pr-sticky { padding-left: 14px; padding-right: 14px; }
  .pr-sticky-secondary { display: none; }
}
