:root {
    --gh-navy:          #0b2b4a;
    --gh-navy-dark:     #071b30;
    --gh-yellow:        #FFD700;
    --gh-yellow-soft:   rgba(255, 215, 0, 0.18);
    --gh-yellow-muted:  rgba(255, 215, 0, 0.45);
    --gh-border-soft:   rgba(0, 0, 0, 0.06);
    --gh-border-strong: rgba(0, 0, 0, 0.12);
    --gh-border-yellow: rgba(11, 43, 74, 0.18);
    --gh-accent:        #ff4f5a;
    --gh-text-dark:     #1b1b1b;
    --gh-text-muted:    #6b7280;
    --gh-radius:        14px;
    --gh-transition:    200ms ease;
    --gh-font:          'Plus Jakarta Sans', sans-serif;
  }

  /* ============================================
     SECTION — fondo gris claro + puntos
  ============================================ */
  #reviews {
    background-color: #f0f2f5;
    background-image: radial-gradient(circle, #c8cdd6 1px, transparent 1px);
    background-size: 24px 24px;
    position: relative;
    overflow: hidden;
    padding: 96px 24px 80px;
    font-family: var(--gh-font);
  }

  /* Viñeta suave en los bordes para que los puntos no corten bruscamente */
  #reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 40% at 50% 0%,   rgba(240,242,245,0.95) 0%, transparent 100%),
      radial-gradient(ellipse 60% 40% at 50% 100%, rgba(240,242,245,0.95) 0%, transparent 100%),
      radial-gradient(ellipse 30% 100% at 0%   50%, rgba(240,242,245,0.85) 0%, transparent 100%),
      radial-gradient(ellipse 30% 100% at 100% 50%, rgba(240,242,245,0.85) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
  }

  /* ============================================
     CONTAINER
  ============================================ */
  .reviews-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
  }

  /* ============================================
     HEADER
  ============================================ */
  .reviews-header {
    text-align: center;
    margin-bottom: 52px;
  }

  .reviews-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gh-navy);
    background: rgba(11, 43, 74, 0.07);
    border: 1px solid rgba(11, 43, 74, 0.14);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
  }

  .reviews-eyebrow i {
    color: var(--gh-yellow);
    font-size: 9px;
    -webkit-text-stroke: 0.5px #b8940a;
  }

  .reviews-header h2 {
    font-family: var(--gh-font);
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--gh-navy-dark);
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.03em;
  }

  .reviews-header h2 em {
    font-style: normal;
    color: var(--gh-navy);
    position: relative;
  }

  /* Subrayado amarillo en la palabra destacada */
  .reviews-header h2 em::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0; right: 0;
    height: 3px;
    background: var(--gh-yellow);
    border-radius: 2px;
  }

  .reviews-title-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }

  .reviews-title-deco .deco-line {
    display: block;
    height: 1px;
    width: 56px;
    background: linear-gradient(to right, transparent, var(--gh-border-strong));
  }

  .reviews-title-deco .deco-line.right {
    background: linear-gradient(to left, transparent, var(--gh-border-strong));
  }

  .reviews-title-deco i {
    color: var(--gh-yellow);
    font-size: 11px;
    -webkit-text-stroke: 0.5px #b8940a;
  }

  /* ============================================
     STATS BAR
  ============================================ */
  .reviews-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 36px;
    margin-bottom: 40px;
    padding: 22px 32px;
    background: #ffffff;
    border: 1px solid var(--gh-border-strong);
    border-top: 3px solid var(--gh-navy);
    border-radius: var(--gh-radius);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    position: relative;
  }

  .stat-stars {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .stat-stars .stars-row {
    display: flex;
    gap: 3px;
  }

  .stat-stars .stars-row i {
    color: #f5c400;
    font-size: 17px;
    -webkit-text-stroke: 0.3px #c9a300;
  }

  .stat-text strong {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--gh-navy-dark);
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .stat-text small {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--gh-text-muted);
    letter-spacing: 0.03em;
  }

  .stat-divider {
    width: 1px;
    height: 38px;
    background: var(--gh-border-strong);
    flex-shrink: 0;
  }

  /* Botón CTA */
  .btn-leave-review {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 22px;
    background: var(--gh-navy);
    border: 2px solid var(--gh-navy);
    color: #ffffff;
    border-radius: 999px;
    font-family: var(--gh-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: var(--gh-transition);
    white-space: nowrap;
  }

  .btn-leave-review:hover {
    background: var(--gh-yellow);
    border-color: var(--gh-yellow);
    color: var(--gh-navy-dark);
    box-shadow: 0 4px 16px rgba(255,215,0,0.35);
  }

  /* ============================================
     WIDGET WRAPPER
  ============================================ */
  .reviews-widget-wrap {
    background: #ffffff;
    border: 1px solid var(--gh-border-strong);
    border-radius: var(--gh-radius);
    padding: 40px 32px;
    position: relative;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    overflow: hidden;
  }

  /* Franja superior navy */
  .reviews-widget-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gh-navy-dark), var(--gh-navy), #1a5276, var(--gh-navy-dark));
  }

  /* Acento amarillo esquina inferior derecha */
  .reviews-widget-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 120px; height: 4px;
    background: var(--gh-yellow);
    border-radius: 2px 0 0 0;
  }

  /* ============================================
     FOOTER
  ============================================ */
  .reviews-footer-note {
    text-align: center;
    margin-top: 24px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gh-text-muted);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }

  .reviews-footer-note i {
    color: var(--gh-navy);
    font-size: 11px;
  }

  /* ============================================
     RESPONSIVE
  ============================================ */
  @media (max-width: 680px) {
    #reviews { padding: 72px 16px 60px; }

    .reviews-stats-bar {
      flex-direction: column;
      text-align: center;
      gap: 18px;
      padding: 20px;
    }

    .stat-divider { display: none; }

    .reviews-widget-wrap { padding: 24px 14px; }
  }