.page-reputation {
  display: block;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: #0f172a;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #f8f9fc;

  & *, & *::before, & *::after { box-sizing: border-box; margin: 0; padding: 0; }
  & img { max-width: 100%; display: block; }
  & a { color: inherit; text-decoration: none; }

  .msi {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  }
  .msi.filled { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

  /* ===== Layout ===== */
  .container { max-width: 80rem; margin: 0 auto; padding: 0 clamp(1rem, 3vw, 2.5rem); }
  .container.narrow { max-width: 48rem; }

  /* ===== Hero ===== */
  .hero {
    position: relative;
    background: #06357a;
    overflow: hidden;
    height: calc(100svh - var(--header-h, 9rem));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem clamp(1rem, 3vw, 2.5rem);
    text-align: center;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #06357a 0%, #06357a 60%, #042055 100%);
    opacity: 0.96;
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.25rem;
  }

  .hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 0.6rem;
    background: #fff;
    color: #06357a;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: background 0.18s ease, transform 0.18s ease;
  }
  .btn-hero-primary:hover { background: #f1f5f9; transform: translateY(-1px); }

  .btn-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    transition: color 0.18s ease;
  }
  .btn-hero-link:hover { color: rgba(255,255,255,0.75); }
  .btn-hero-link .msi { font-size: 1rem; }

  /* ===== Section bases ===== */
  .section { padding: 5rem 0; }
  .section.white { background: #fff; }
  .section.light { background: #f8f9fc; }
  .section.muted { background: rgba(108,117,125,0.08); }

  .section-kicker {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #06357a;
    margin-bottom: 0.6rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin-bottom: 1rem;
  }

  .section-title.center { text-align: center; }

  .section-sub {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 40rem;
  }

  .section-sub.center { text-align: center; margin: 0 auto; }

  /* ===== Definition ===== */
  .definition-inner { text-align: center; max-width: 44rem; margin: 0 auto; }
  .definition-inner .section-title { margin-bottom: 1.5rem; }
  .definition-inner p { font-size: 1.05rem; color: #64748b; line-height: 1.8; }

  /* ===== Key Benefits — 3 cards ===== */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 4rem;
  }

  .benefit-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(15,23,42,0.06);
    border: 1px solid #f1f5f9;
    transition: box-shadow 0.22s ease;
  }
  .benefit-card:hover { box-shadow: 0 10px 30px rgba(15,23,42,0.1); }

  .benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(6,53,122,0.08);
    color: #06357a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
  }
  .benefit-icon .msi { font-size: 1.75rem; }

  .benefit-card h3 { font-size: 1.1rem; font-weight: 700; color: #0f172a; margin-bottom: 0.75rem; }
  .benefit-card > p { font-size: 0.9rem; color: #64748b; line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }

  .benefit-checklist { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .benefit-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
  }
  .benefit-checklist .msi { color: #06357a; font-size: 1.1rem; flex-shrink: 0; margin-top: 0.05rem; }

  /* ===== 3-Step Numbered ===== */
  .steps-header { text-align: center; max-width: 42rem; margin: 0 auto 4rem; }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    position: relative;
  }

  /* connecting line between step circles */
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: calc(16.67% + 1rem);
    right: calc(16.67% + 1rem);
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
  }

  .step-item { text-align: center; position: relative; z-index: 1; }

  .step-num {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 2px solid #06357a;
    background: #f8f9fc;
    color: #06357a;
    font-size: 1.35rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
  }

  .step-item h3 { font-size: 1.1rem; font-weight: 700; color: #0f172a; margin-bottom: 0.75rem; }
  .step-item p  { font-size: 0.9rem; color: #64748b; line-height: 1.65; }

  /* ===== Consequences ===== */
  .consequences-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
  }

  .cons-visual {
    position: relative;
    min-width: 0;
  }

  .cons-visual-shell {
    position: relative;
    border-radius: 1.35rem;
    overflow: hidden;
    padding: 1.1rem;
    background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
    border: 1px solid #d9e5f5;
    box-shadow: 0 24px 54px rgba(15,23,42,0.14);
  }

  .cons-visual-shell::before {
    content: '';
    position: absolute;
    inset: auto -3rem -3rem auto;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239,68,68,0.12) 0%, rgba(239,68,68,0) 74%);
    pointer-events: none;
  }

  .cons-visual-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .cons-dots {
    display: flex;
    gap: 0.35rem;
  }

  .cons-dots span {
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 50%;
  }

  .cons-dots span:nth-child(1) { background: #ef4444; }
  .cons-dots span:nth-child(2) { background: #f59e0b; }
  .cons-dots span:nth-child(3) { background: #22c55e; }

  .cons-title-chip {
    padding: 0.48rem 0.75rem;
    border-radius: 999px;
    background: #e8f0ff;
    color: #06357a;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .cons-rating-card,
  .cons-alert-card,
  .cons-review-item {
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 24px rgba(15,23,42,0.06);
  }

  .cons-rating-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.9rem;
  }

  .cons-rating-label {
    color: #64748b;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.28rem;
  }

  .cons-rating-value {
    color: #b91c1c;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .cons-stars {
    display: flex;
    gap: 0.08rem;
    color: #f59e0b;
  }

  .cons-stars .msi {
    font-size: 1.15rem;
  }

  .cons-alert-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    margin-bottom: 0.9rem;
    border-color: #fecaca;
    background: #fff5f5;
  }

  .cons-alert-card .msi {
    color: #dc2626;
    font-size: 1.35rem;
    flex-shrink: 0;
  }

  .cons-alert-card strong {
    display: block;
    color: #7f1d1d;
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 0.12rem;
  }

  .cons-alert-card p {
    color: #991b1b;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .cons-review-list {
    display: grid;
    gap: 0.8rem;
  }

  .cons-review-item {
    padding: 0.95rem;
  }

  .cons-review-item.negative {
    border-left: 4px solid #ef4444;
  }

  .cons-review-item.muted {
    border-left: 4px solid #94a3b8;
  }

  .cons-review-head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.75rem;
  }

  .cons-review-avatar {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 0.8rem;
    background: linear-gradient(135deg, #fee2e2 0%, #fca5a5 100%);
    flex-shrink: 0;
  }

  .cons-review-avatar.small {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  }

  .cons-review-name {
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
  }

  .cons-review-meta {
    color: #64748b;
    font-size: 0.74rem;
  }

  .cons-review-lines {
    display: grid;
    gap: 0.42rem;
  }

  .cons-review-lines span {
    display: block;
    height: 0.6rem;
    border-radius: 999px;
    background: #e2e8f0;
  }

  .cons-review-lines span:nth-child(1) { width: 100%; }
  .cons-review-lines span:nth-child(2) { width: 82%; }

  .cons-review-lines.short span:nth-child(1) { width: 78%; }
  .cons-review-lines.short span:nth-child(2) { width: 56%; }

  .cons-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }

  .cons-item { display: flex; gap: 1rem; }
  .cons-item-icon { flex-shrink: 0; color: #6c757d; }
  .cons-item-icon .msi { font-size: 1.6rem; }
  .cons-item h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 0.3rem; }
  .cons-item p  { font-size: 0.88rem; color: #64748b; line-height: 1.6; }

  /* ===== Best Practices — 2×2 grid ===== */
  .practices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 56rem;
    margin: 3.5rem auto 0;
  }

  .practice-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.85rem;
    border: 1px solid #e2e8f0;
    background: #f8f9fc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .practice-card:hover { border-color: rgba(6,53,122,0.25); box-shadow: 0 4px 14px rgba(15,23,42,0.06); }

  .practice-card-icon {
    flex-shrink: 0;
    padding: 0.65rem;
    border-radius: 0.6rem;
    background: #eff6ff;
    color: #06357a;
  }
  .practice-card-icon .msi { font-size: 1.4rem; }

  .practice-card h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 0.4rem; }
  .practice-card p  { font-size: 0.85rem; color: #64748b; line-height: 1.6; }

  /* ===== Lead Form ===== */
  .lead-outer { padding: 5rem 1.5rem; background: #f8f9fc; }

  .lead-card {
    background: #06357a;
    border-radius: 1.5rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    max-width: 72rem;
    margin: 0 auto;
  }

  .lead-copy {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
  }

  .lead-copy h2 {
    font-size: clamp(1.75rem, 2.2vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .lead-copy p { font-size: 1rem; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 2rem; }

  .lead-promises { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
  .lead-promises li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
  }
  .lead-promises .msi { color: #93c5fd; font-size: 1.2rem; }

  .lead-form-panel {
    background: #fff;
    padding: 3.5rem;
  }

  .lead-form-panel h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.75rem;
  }

  /* ===== Responsive ===== */
  @media (max-width: 1024px) {
    .lead-card { grid-template-columns: 1fr; }
  }

  @media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 3rem; }
    .steps-grid::before { display: none; }
    .consequences-inner { grid-template-columns: 1fr; }
    .practices-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 640px) {
    .hero { padding: 2.5rem 1rem; height: auto; min-height: calc(100svh - var(--header-h, 5rem)); }
    .section { padding: 3.5rem 0; }
    .lead-outer { padding: 3rem 1rem; }
    .lead-copy, .lead-form-panel { padding: 2rem 1.5rem; }
    .hero-actions { flex-direction: column; }
  }

  /* ===== Lead Form Section ===== */
  .lead-section {
    padding: 0;
    background: #fff;
  }

  .lead-section-header {
    background: #06357A;
    color: #fff;
    padding: 4rem 1.5rem 6rem;
    text-align: center;
  }

  .lead-section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
    color: #fff;
  }

  .lead-section-header p {
    color: #bfdbfe;
    max-width: 36rem;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .lead-form-wrap {
    max-width: 56rem;
    margin: -3rem auto 0;
    padding: 0 1.5rem 4rem;
    position: relative;
    z-index: 1;
  }
}

.page-reputation .faq-wrap {
  max-width: 52rem;
  margin: 0 auto;
}

.page-reputation .ms-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}

.page-reputation .ms-faq-item {
  list-style: none;
  border-bottom: 1px solid #dbe3ee;
  background: rgba(255, 255, 255, 0.82);
}

.page-reputation .ms-faq-item:first-child {
  border-top: 1px solid #dbe3ee;
}

.page-reputation .ms-faq-item summary {
  list-style: none;
}

.page-reputation .ms-faq-item summary::-webkit-details-marker {
  display: none;
}

.page-reputation .ms-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 0.15rem;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
}

.page-reputation .ms-faq-trigger:hover {
  color: #06357a;
}

.page-reputation .ms-faq-trigger:focus-visible {
  outline: 2px solid #06357a;
  outline-offset: 3px;
  border-radius: 0.35rem;
}

.page-reputation .ms-faq-chevron {
  flex-shrink: 0;
  width: 1.3rem;
  height: 1.3rem;
  color: #06357a;
  transition: transform 0.25s ease;
}

.page-reputation .ms-faq-item[open] .ms-faq-chevron {
  transform: rotate(180deg);
}

.page-reputation .ms-faq-answer {
  margin: 0;
  padding: 0 0.15rem 1.25rem;
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.72;
}

@media (max-width: 768px) {
  .page-reputation .cons-visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .page-reputation .cons-visual-shell {
    padding: 0.9rem;
  }

  .page-reputation .cons-rating-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-reputation .cons-rating-value {
    font-size: 1.7rem;
  }

  .page-reputation .ms-faq-trigger {
    font-size: 0.95rem;
    padding: 1rem 0.1rem;
  }
}
