/* ── BASE ── */
.hosting-page-wrap * { box-sizing: border-box; margin: 0; padding: 0; }
.hosting-page-wrap {
  font-family: 'Be Vietnam Pro', 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

/* ── HERO INTRO ── */
.hp-hero {
  background: linear-gradient(135deg, var(--accent-pale) 0%, var(--surface2) 100%);
  border: 1px solid var(--borderG);
  border-radius: 10px;
  padding: 36px 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.hp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 10%, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}
.hp-hero .hp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.hp-hero .hp-hero-badge::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  animation: hp-blink 1.4s ease-in-out infinite;
}
@keyframes hp-blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hp-hero h1 {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}
.hp-hero .hp-hero-desc {
  color: var(--text2);
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 680px;
}
.hp-hero .hp-hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hp-hero .hp-usp-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  border: 1px solid var(--borderG);
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  box-shadow: var(--shadow-sm);
}
.hp-hero .hp-usp-pill .pill-icon {
  font-size: 15px;
}
.hp-hero .hp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.hp-btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(74,140,28,.28);
}
.hp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid var(--border2);
  transition: background .2s, border-color .2s;
}
.hp-btn-secondary:hover {
  background: var(--accent-pale);
  border-color: var(--accent);
}

/* ── SECTION HEADING ── */
.hp-section { margin-bottom: 44px; }
.hp-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--divider);
}
.hp-section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  border-radius: 99px;
  background: linear-gradient(to bottom, var(--accent-light), var(--accent-dark));
  flex-shrink: 0;
}

/* ── INTRO TEXT CARD ── */
.hp-intro-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  color: var(--text2);
  line-height: 1.75;
}
.hp-intro-card p + p { margin-top: 12px; }
.hp-intro-card strong { color: var(--text); }

/* ── BENEFIT LIST ── */
.detail-content-wrap .hp-benefit-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin: 0;
}
.hp-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
  border-radius: 8px;
}
.hp-benefit-list li:hover {
  border-color: var(--borderG);
  box-shadow: 0 6px 20px var(--accent-glow);
}
.hp-benefit-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}
.hp-benefit-body br{
    display: none;
}
.hp-benefit-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.hp-benefit-body span {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
}

/* ── FEATURE GRID ── */
.hp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.hp-feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, transform .2s;
}
.hp-feature-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}
.hp-feature-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-dark);
  margin: 0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hp-feature-card h3::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hp-feature-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── REASONS LIST ── */
.detail-content-wrap ul.hp-reasons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: reason-counter;
  margin: 0;
}
.hp-reasons-list li {
  counter-increment: reason-counter;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}
.hp-reasons-list li:hover { border-color: var(--borderG); }
.hp-reason-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-pale);
  border: 1.5px solid var(--borderG);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-dark);
  margin-top: 1px;
}
.hp-reasons-list strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.hp-reasons-list span {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── COMPARE TABLE ── */
.hp-compare-wrap { overflow-x: auto; }
.hp-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.hp-compare-table thead tr {
  background: var(--accent-dark);
  color: #fff;
}
.hp-compare-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}
.hp-compare-table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.hp-compare-table thead th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }
.hp-compare-table tbody tr:nth-child(even) { background: var(--bg2); }
.hp-compare-table tbody tr:hover { background: var(--accent-pale); }
.hp-compare-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--divider);
  vertical-align: middle;
}
.hp-compare-table td:first-child {
  font-weight: 600;
  color: var(--text);
  font-size: 13px;
}
.hp-compare-table .td-good {
  color: var(--accent-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hp-compare-table .td-good::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}
.hp-compare-table .td-bad {
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 7px;
}
.hp-compare-table .td-bad::before {
  content: '×';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #f1f3f5;
  color: #adb5bd;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── PROCESS STEPS ── */
.hp-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.hp-process-steps::before {
  content: '';
  position: absolute;
  left: 19px; top: 36px; bottom: 36px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-pale));
  border-radius: 99px;
}
.hp-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  position: relative;
}
.hp-step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px var(--accent-pale);
  z-index: 1;
}
.hp-step-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  margin-bottom: 4px;
}
.hp-step-body p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}

/* ── TARGET CARDS ── */
.hp-target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 14px;
}
.hp-target-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 20px 22px;
  transition: border-color .2s, box-shadow .2s;
}
.hp-target-card:hover {
  border-left-color: var(--accent-light);
  box-shadow: var(--shadow-md);
}
.hp-target-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.hp-target-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}
/* ── CTA BANNER ── */
.hp-cta-banner {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  border-radius: 10px;
  padding: 36px 40px;
  text-align: center;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
  @media(max-width: 767px){
    padding: 30px 20px;
  }
}
.hp-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(255,255,255,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hp-cta-banner h2 {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.hp-cta-banner p {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  margin-bottom: 24px;
  @media(max-width: 767px){ margin-bottom: 4px;}
}
.hp-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s;
  margin: 0 6px;
}
.hp-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.hp-btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.5);
  transition: border-color .2s, background .2s;
  margin: 0 6px;
}
.hp-btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ── DISCOUNT BADGE ── */
.hp-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
  letter-spacing: .04em;
}