.propv2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.propv2-hero {
  /* Disamakan dengan hero asuransi-kendaraan-bermotor (.akb-hero) */
  background: linear-gradient(135deg, var(--pd-blue) 0%, var(--pd-blue-pale) 100%);
  padding: 56px 0 48px;
  overflow: hidden;
}

.propv2-hero-grid {
  display: grid;
  grid-template-columns: 1fr; /* mobile: menumpuk ke bawah */
  gap: 32px;
  align-items: center;
}

/* Label kecil di atas judul */
.propv2-hero-label {
  display: inline-block;
  background: rgba(14, 165, 233, 0.15);
  color: var(--pd-blue-pale);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* Tagline / judul utama */
.propv2-hero-title {
  color: var(--pd-white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px;
}

.propv2-hero-title span { color: var(--pd-navy); }

/* Deskripsi di bawah tagline */
.propv2-hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 540px;
}

/* Tombol di hero */
.propv2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.propv2-btn-primary {
  display: inline-block;
  background: var(--pd-blue);
  color: var(--pd-white);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: var(--pd-transition);
}

.propv2-btn-primary:hover { background: var(--pd-blue-pale); color: var(--pd-navy); }

.propv2-btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--pd-white);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: var(--pd-transition);
}

.propv2-btn-ghost:hover { border-color: var(--pd-blue-pale); color: var(--pd-blue-pale); }

/* Gambar hero di kanan */
.propv2-hero-image { text-align: center; }

.propv2-hero-image img {
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

/* =========================================================
   Judul section umum halaman ini
   ========================================================= */
.propv2-section-head { text-align: center; }

.propv2-section-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pd-blue);
  margin-bottom: 8px;
}

.propv2-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--pd-text);
  margin: 0;
}

.propv2-section-sub {
  font-size: 15px;
  color: var(--pd-muted);
  max-width: 640px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* =========================================================
   KEUNGGULAN PRODUK — grid kartu
   ========================================================= */
.propv2-addon { background: var(--pd-gray); padding: var(--pd-section-pad); }
.propv2-addon--white { background: var(--pd-white); }

.propv2-addon-grid {
  display: grid;
  grid-template-columns: 1fr; /* mobile: 1 kolom */
  gap: 20px;
  margin-top: 32px;
}

.propv2-addon-card {
  background: var(--pd-white);
  border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius);
  padding: 26px 24px;
  transition: var(--pd-transition);
}

.propv2-addon--white .propv2-addon-card { background: var(--pd-gray); }

.propv2-addon-card:hover {
  border-color: var(--pd-blue);
  box-shadow: 0 10px 26px rgba(14, 165, 233, 0.12);
  transform: translateY(-4px);
}

.propv2-addon-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.12);
  color: var(--pd-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.propv2-addon-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--pd-text);
  margin: 0 0 8px;
}

.propv2-addon-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--pd-muted);
  margin: 0;
}

/* =========================================================
   PERBANDINGAN DUA KARTU — jaminan standar vs perluasan
   ========================================================= */
.propv2-compare { background: var(--pd-white); padding: var(--pd-section-pad); }

.propv2-compare-grid {
  display: grid;
  grid-template-columns: 1fr; /* mobile: menumpuk */
  gap: 24px;
  margin-top: 32px;
}

.propv2-compare-card {
  border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius);
  padding: 32px 28px;
  background: var(--pd-gray);
  transition: var(--pd-transition);
}

.propv2-compare-card:hover {
  border-color: var(--pd-blue);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.12);
  transform: translateY(-4px);
}

/* Kartu kanan dibuat lebih menonjol (background navy) */
.propv2-compare-card--featured {
  background: linear-gradient(135deg, var(--pd-navy) 0%, var(--pd-navy-mid) 100%);
  border-color: var(--pd-navy-mid);
}

.propv2-compare-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.12);
  color: var(--pd-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.propv2-compare-card--featured .propv2-compare-icon {
  background: rgba(56, 189, 248, 0.2);
  color: var(--pd-blue-pale);
}

.propv2-compare-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--pd-blue);
  background: rgba(14, 165, 233, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.propv2-compare-card--featured .propv2-compare-badge {
  color: var(--pd-navy);
  background: var(--pd-blue-pale);
}

.propv2-compare-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--pd-text);
  margin: 0 0 10px;
}

.propv2-compare-card--featured .propv2-compare-title { color: var(--pd-white); }

.propv2-compare-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--pd-muted);
  margin: 0 0 18px;
}

.propv2-compare-card--featured .propv2-compare-desc { color: rgba(255, 255, 255, 0.78); }

.propv2-compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.propv2-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--pd-text);
  padding: 6px 0;
}

.propv2-compare-card--featured .propv2-compare-list li { color: rgba(255, 255, 255, 0.9); }

.propv2-compare-list li i {
  color: var(--pd-blue);
  margin-top: 4px;
  flex-shrink: 0;
}

.propv2-compare-card--featured .propv2-compare-list li i { color: var(--pd-blue-pale); }

/* Catatan kecil di bawah list */
.propv2-compare-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--pd-border);
  font-size: 13px;
  color: var(--pd-muted);
}

.propv2-compare-card--featured .propv2-compare-note {
  border-top-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
}

/* =========================================================
   TABEL JAMINAN — risiko di kiri, ceklis standar & perluasan
   ========================================================= */
.propv2-table-section { background: var(--pd-gray); padding: var(--pd-section-pad); }

/* Wrapper supaya tabel bisa discroll ke samping di HP */
.propv2-table-wrap {
  margin-top: 32px;
  overflow-x: auto;
  border-radius: var(--pd-radius);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.propv2-table {
  width: 100%;
  min-width: 560px; /* jaga kolom tidak terlalu sempit saat discroll di HP */
  border-collapse: collapse;
  background: var(--pd-white);
}

.propv2-table th,
.propv2-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--pd-border);
  font-size: 15px;
}

/* Header tabel */
.propv2-table thead th {
  background: var(--pd-navy);
  color: var(--pd-white);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.propv2-table thead th:first-child { text-align: left; }

/* Kolom pertama = nama risiko */
.propv2-table tbody td:first-child {
  color: var(--pd-text);
  font-weight: 500;
  text-align: left;
}

/* Kolom ceklis di tengah */
.propv2-table tbody td:nth-child(2),
.propv2-table tbody td:nth-child(3) {
  text-align: center;
  width: 160px;
}

.propv2-table tbody tr:last-child td { border-bottom: none; }
.propv2-table tbody tr:hover td { background: #f0f9ff; }

/* Ikon ceklis hijau dan strip abu-abu */
.propv2-check { color: #16a34a; font-size: 18px; }
.propv2-cross { color: #cbd5e1; font-size: 18px; }

/* Keterangan kecil di bawah tabel */
.propv2-table-footnote {
  margin-top: 14px;
  font-size: 13px;
  color: var(--pd-muted);
  text-align: center;
}

/* =========================================================
   Responsive — tablet ke atas
   ========================================================= */
@media (min-width: 768px) {
  .propv2-hero { padding: 72px 0 64px; }
  .propv2-hero-title { font-size: 40px; }
  .propv2-compare-grid { grid-template-columns: 1fr 1fr; } /* dua kartu sejajar */
  .propv2-addon-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Responsive — laptop ke atas */
@media (min-width: 1024px) {
  /* Hero: teks kiri lebih lebar dari gambar kanan */
  .propv2-hero-grid { grid-template-columns: 1.2fr 1fr; }
  .propv2-hero-image img { max-width: 400px; }

  .propv2-addon-grid { grid-template-columns: repeat(3, 1fr); }
  .propv2-section-title { font-size: 32px; }
}