/* ================================================================
   LAYANAN.CSS — Shared styles untuk halaman jasa/layanan per industri
   Digunakan oleh: jasa-website/*, digital-marketing/*, layanan/*
   Bergantung pada: assets/css/style.css
   ================================================================ */

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--white); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb nav { font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--mid); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 6px; }

/* ── SECTION TOKENS ── */
.section { padding: 56px 0; }
.section-alt { background: var(--white); }
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}
.section-title { font-size: clamp(22px, 3.5vw, 32px); font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.section-sub { font-size: 16px; color: var(--mid); max-width: 560px; }
.section-header { margin-bottom: 36px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── SERVICE HERO ── */
.service-hero {
  background: var(--navy);
  padding: 60px 0 52px;
  position: relative; overflow: hidden;
}
.service-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(226,75,74,.15) 0%, transparent 55%);
  pointer-events: none;
}
.service-hero-inner {
  display: grid; grid-template-columns: 1fr 360px; gap: 48px;
  align-items: center; position: relative; z-index: 1;
}
.service-hero-badge {
  display: inline-block;
  background: rgba(226,75,74,.2); color: #FF8A89;
  border: 1px solid rgba(226,75,74,.4);
  font-size: 11px; font-weight: 700; padding: 4px 14px;
  border-radius: 20px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px;
}
.service-hero h1 {
  font-size: clamp(26px, 4.5vw, 42px); font-weight: 800;
  color: #fff; line-height: 1.12; margin-bottom: 16px;
}
.service-hero h1 em { color: var(--red); font-style: normal; }
.service-hero-sub { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 28px; max-width: 500px; }
.service-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.service-hero-card {
  background: var(--white); border-radius: var(--r-xl); padding: 24px;
  box-shadow: var(--shadow-lg);
}
.service-hero-card-title { font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.hero-benefit { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 13px; color: var(--charcoal); }
.hero-benefit:last-child { margin-bottom: 0; }
.hero-benefit svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.hero-benefit strong { color: var(--navy); }
.hero-price-badge {
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border);
  text-align: center;
}
.hero-price-badge .price { font-size: 26px; font-weight: 800; color: var(--red); }
.hero-price-badge .price-lbl { font-size: 12px; color: var(--muted); }

@media (max-width: 900px) { .service-hero-inner { grid-template-columns: 1fr; } .service-hero-card { display: none; } }

/* ── WHY SECTION ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  transition: box-shadow .2s, border-color .2s;
}
.why-card:hover { box-shadow: var(--shadow); border-color: var(--gold-light); }
.why-icon { width: 44px; height: 44px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.why-icon svg { width: 22px; height: 22px; }
.why-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-desc { font-size: 13px; color: var(--mid); line-height: 1.6; }

/* ── FEATURES SECTION ── */
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--red);
  color: #fff; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-content { padding-top: 4px; }
.feature-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.feature-desc { font-size: 13px; color: var(--mid); line-height: 1.6; }

/* ── FEATURE VISUAL SIDE ── */
.feature-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 800px) { .feature-2col { grid-template-columns: 1fr; } }
.feature-visual { background: var(--navy-light); border-radius: var(--r-xl); overflow: hidden; }
.feature-visual-inner { padding: 24px; }

.feature-check-list { display: flex; flex-direction: column; gap: 12px; }
.feature-check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--charcoal); line-height: 1.5; }
.feature-check svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }

/* ── PROCESS ── */
.process-grid,
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 800px) { .process-grid, .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-grid, .process-steps { grid-template-columns: 1fr; } }

.process-step { text-align: left; padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); position: relative; }
.process-step::after { content: '→'; position: absolute; right: -14px; top: 40px; font-size: 18px; color: var(--border); }
.process-step:last-child::after { display: none; }
@media (max-width: 800px) { .process-step::after { display: none; } }
.process-step .step-num,
.process-num { width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; font-size: 15px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 0 14px; }
.process-steps .process-num { margin: 0 auto 14px; }
.process-step h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 12.5px; color: var(--mid); line-height: 1.6; margin: 0; }
.process-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-desc { font-size: 12px; color: var(--mid); line-height: 1.5; }

/* ── PRICING MINI ── */
.pricing-mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 992px) { .pricing-mini { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pricing-mini { grid-template-columns: 1fr; } }

.pricing-mini-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px;
  transition: box-shadow .2s, border-color .2s;
}
.pricing-mini-card.featured { border: 2px solid var(--red); position: relative; }
.pricing-mini-card:hover { box-shadow: var(--shadow); }
.pricing-mini-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 12px; border-radius: 20px; white-space: nowrap; }
.pricing-mini-name { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.pricing-mini-price { font-size: 26px; font-weight: 800; color: var(--charcoal); margin: 12px 0 4px; }
.pricing-mini-price.featured { color: var(--red); }
.pricing-mini-price span { font-size: 13px; font-weight: 400; color: var(--muted); }
.pricing-mini-lbl { font-size: 11px; color: var(--muted); margin-bottom: 16px; }
.pricing-mini-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.pricing-mini-feat { display: flex; gap: 8px; align-items: flex-start; font-size: 12px; color: var(--mid); }
.pricing-mini-feat svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 2px; }
.pricing-mini-cta { display: block; text-align: center; padding: 10px; border-radius: var(--r); font-size: 13px; font-weight: 700; border: 2px solid var(--red); color: var(--red); background: transparent; cursor: pointer; text-decoration: none; transition: all .15s; }
.pricing-mini-cta:hover { background: var(--red); color: #fff; text-decoration: none; }
.pricing-mini-card.featured .pricing-mini-cta { background: var(--red); color: #fff; }
.pricing-mini-card.featured .pricing-mini-cta:hover { background: var(--red-dark); border-color: var(--red-dark); }

/* ── TESTI STRIP ── */
.testi-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 640px) { .testi-strip { grid-template-columns: 1fr; } }

.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; }
.testi-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.testi-stars svg { width: 14px; height: 14px; color: var(--gold); }
.testi-text { font-size: 14px; color: var(--charcoal); line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.testi-biz { font-size: 12px; color: var(--muted); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-size: 15px; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; user-select: none; }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--red); transition: transform .2s; margin-top: 2px; }
.faq-q.open svg { transform: rotate(180deg); }
.faq-a { font-size: 14px; color: var(--mid); line-height: 1.7; margin-top: 10px; display: none; }
.faq-a.open { display: block; }

/* ── CTA SECTION ── */
.cta-section { background: var(--red); padding: 56px 0; text-align: center; }
.cta-section h2 { color: #fff; font-size: clamp(22px, 3.5vw, 32px); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 16px; max-width: 540px; margin: 0 auto 28px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--red); padding: 14px 28px; border-radius: var(--r); font-weight: 700; font-size: 15px; text-decoration: none; transition: opacity .15s; }
.cta-btn-primary:hover { opacity: .92; text-decoration: none; }
.cta-btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); padding: 14px 28px; border-radius: var(--r); font-weight: 700; font-size: 15px; text-decoration: none; transition: all .15s; }
.cta-btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,.1); text-decoration: none; }
.trust-row { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,.8); }
.trust-item svg { width: 16px; height: 16px; }

/* ── NOTE BOX ── */
.note-box { background: var(--navy-light); border-left: 3px solid var(--navy); border-radius: 0 var(--r) var(--r) 0; padding: 14px 18px; font-size: 14px; color: var(--navy); margin: 24px 0; }

/* ── UTIL ── */
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.green-bg { background: var(--gold-light); }

@media (max-width: 640px) {
  .section { padding: 40px 0; }
  .service-hero { padding: 44px 0 36px; }
}
