/* ==========================================================================
   JVG Studio — Sistema de diseño
   Concepto: mesa de dibujo de un estudio de desarrollo. Papel milimetrado,
   tinta azul profunda, acentos de marcador (naranja de señal + amarillo
   de resaltador + menta). Tipografía técnica para títulos, humana para
   cuerpo, mono para anotaciones tipo "etiqueta de plano".
   ========================================================================== */

:root {
  color-scheme: dark;

  /* Color */
  --ink: #050505; /* fondo principal negro */
  --ink-2: #111111; /* paneles sobre negro */
  --paper: #f5f7fa; /* papel claro principal */
  --paper-2: #d9dde3; /* papel ligeramente más oscuro */
  --line: rgba(255, 255, 255, 0.1); /* líneas de cuadrícula */
  --line-paper: rgba(255, 255, 255, 0.12); /* líneas de cuadrícula sobre papel */
  --signal: #22d88f; /* verde de marca (tomado del logo) */
  --marker: #3d7bff; /* azul de marca (tomado del logo) */
  --mint: #8fd9c4; /* verde azulado suave */
  --text-main: #ffffff; /* color principal de texto */
  --text-muted: #c9d1db; /* color secundario de texto */
  --ink-soft: rgba(255, 255, 255, 0.9);
  --ink-faint: rgba(201, 209, 219, 0.82);
  --dark-soft: rgba(255, 255, 255, 0.72);
  --dark-faint: rgba(255, 255, 255, 0.56);

  /* Gradiente de marca — el mismo azul→verde del isotipo JVG */
  --brand-gradient: linear-gradient(115deg, #3d7bff 0%, #22c9a8 55%, #22d88f 100%);

  /* Tipografía */
  --display: "Space Grotesk", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;

  --container: 1180px;
}

/* Texto con el degradado de marca (mismo azul→verde del logo) --------- */
.brand-gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Componente firma: consola de código, eco directo del isotipo -------- */
.code-console {
  background: #0a0e14;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
}
.code-console .console-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--line);
  flex-wrap: nowrap;
}
.code-console .console-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: inline-block;
  flex-shrink: 0;
}
.code-console .console-bar .label {
  margin-left: 6px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--dark-faint);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.code-console .console-body {
  padding: 22px 24px 26px;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.9;
}
.code-console .console-body .prompt {
  color: var(--marker);
}
.code-console .console-body .ok {
  color: var(--signal);
}
.code-console .console-body .dim {
  color: var(--dark-faint);
}
.code-console .cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--signal);
  margin-left: 2px;
  vertical-align: -2px;
  animation: cursor-blink 1.1s steps(1) infinite;
}
@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cursor {
    animation: none;
  }
}

/* Franja de confianza (usa .code-console) — reutilizable en cualquier página */
.trust-strip {
  border-top: 1px solid var(--line);
  padding: 36px 0;
}
.trust-console .console-body {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}
@media (max-width: 700px) {
  .trust-console .console-body {
    font-size: 12.5px;
  }
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top left, rgba(91, 184, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #040404 0%, #121212 45%, #1f1f1f 100%);
  color: var(--text-main);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body > main {
  flex: 1 0 auto;
}

body > footer {
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  color: var(--text-main);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--brand-gradient);
  display: inline-block;
}

/* Cuadrícula de fondo tipo plano ------------------------------------- */
.blueprint {
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 42px 42px;
}
.blueprint-paper {
  background-image:
    linear-gradient(var(--line-paper) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-paper) 1px, transparent 1px);
  background-size: 42px 42px;
}

/* Focus visible --------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--marker);
  outline-offset: 3px;
}

/* Botones ----------------------------------------------------------------*/
.btn {
  font-family: var(--mono);
  font-size: 13.5px;
  letter-spacing: 0.03em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}
.btn-primary {
  background: var(--brand-gradient);
  color: #03110a;
  font-weight: 600;
}
.btn-primary:hover {
  transform: translate(-1px, -2px);
  filter: brightness(1.08);
}
.btn-whatsapp {
  background: var(--marker);
  color: #04121d;
  font-weight: 700;
  padding: 10px 16px;
}
.btn-whatsapp:hover {
  transform: translate(-1px, -2px);
  background: #3ea8f5;
}
.btn-ghost {
  border-color: var(--ink-faint);
  color: var(--paper);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--paper);
  transform: translate(-1px, -2px);
}
.btn-ghost-dark {
  border-color: var(--dark-faint);
  color: var(--ink);
  background: transparent;
}
.btn-ghost-dark:hover {
  border-color: var(--ink);
  transform: translate(-1px, -2px);
}

/* Navegación --------------------------------------------------------------*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.7);
}
.site-header .wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.02em;
}
.logo img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}
.logo .logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo .logo-title {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.logo .logo-subtitle {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.logo .dot {
  color: var(--signal);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 14.5px;
  color: #b8bcc2;
  transition: all 0.15s ease;
  position: relative;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 999px;
}
.nav-links a:hover,
.nav-links a.active {
  color: #f3f4f6;
  background: rgba(255, 255, 255, 0.12);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 2px;
  background: var(--brand-gradient);
  border-radius: 999px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--text-muted);
  border-radius: 3px;
  width: 40px;
  height: 40px;
  color: var(--text-main);
  cursor: pointer;
  font-size: 18px;
}
.nav-login-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}
.nav-login-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.nav-login-btn img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.nav-login-initial {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--signal);
  font-family: var(--mono);
  font-weight: 600;
  font-size: 22px;
}
.nav-login-btn--admin::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--signal);
  border: 2px solid #050505;
}
.nav-mobile-socials {
  display: none;
}

@media (max-width: 860px) {
  .site-header .wrap {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-right {
    margin-left: auto;
    gap: 10px;
  }
  .nav-login-btn {
    width: 50px;
    height: 50px;
  }
  .nav-login-btn img {
    width: 50px;
    height: 50px;
  }
  .nav-login-initial {
    width: 50px;
    height: 50px;
    font-size: 19px;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  }
  .nav-links.open {
    max-height: 520px;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a.active::after {
    display: none;
  }
  .nav-links a.active {
    color: var(--signal);
  }

  /* Iconos sociales dentro del menú móvil (debajo de Contacto) */
  .nav-mobile-socials {
    display: block;
    padding: 18px 24px 6px;
  }
  .nav-mobile-socials .header-socials {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }
  .nav-mobile-socials .header-social-btn {
    width: 68px;
    height: 68px;
    min-height: 68px;
    padding: 0;
  }
  .nav-mobile-socials .header-social-btn img,
  .nav-mobile-socials .header-social-btn svg {
    width: 44px;
    height: 44px;
  }
  .nav-mobile-socials .header-social-btn span {
    display: none;
  }
  .nav-right > .header-socials {
    display: none;
  }
}

/* Footer -------------------------------------------------------------*/
.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 30px;
  margin-top: 140px;
  background: rgba(255, 255, 255, 0.03);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-grid h4 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-grid a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14.5px;
}
.footer-grid a:hover {
  color: var(--marker);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px -10px rgba(0, 0, 0, 0.6);
  z-index: 999;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 36px -10px rgba(0, 0, 0, 0.65);
}
.whatsapp-float img {
  width: 58px;
  height: 58px;
  display: block;
}
@media (max-width: 600px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float img {
    width: 50px;
    height: 50px;
  }
}
.cookie-consent {
  position: fixed;
  left: 16px;
  bottom: 16px;
  width: calc(100% - 32px);
  max-width: 420px;
  background: rgba(10, 10, 10, 0.97);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-consent p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-faint);
  margin: 0;
}
.cookie-consent p a {
  color: var(--signal);
}
.cookie-consent-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
@media (max-width: 500px) {
  .cookie-consent-actions {
    flex-direction: column;
  }
  .cookie-consent-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
.brand-hero-card {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.55);
  max-width: 430px;
}
.brand-hero-card img {
  width: 66px;
  height: 66px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}
.brand-hero-card strong {
  display: block;
  color: var(--paper);
  font-size: 16px;
  line-height: 1.2;
}
.brand-hero-card span {
  display: block;
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}
.header-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  min-width: 40px;
  padding: 0;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    color 0.2s ease;
  color: var(--paper);
  opacity: 0.95;
  text-decoration: none;
  border: 0;
  background: transparent;
}
.header-social-btn:hover {
  transform: translateY(-2px) scale(1.03);
  opacity: 1;
  color: var(--paper);
}
.header-social-btn img,
.header-social-btn svg {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}
.header-social-btn svg {
  fill: currentColor;
}
.header-social-btn span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: inherit;
}
.copyright-note {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  max-width: 760px;
}
.legal-links-footer {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legal-links-footer a {
  color: var(--text-muted);
  text-decoration: none;
}
.legal-links-footer a:hover {
  color: var(--marker);
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .header-socials {
    margin-left: 8px;
  }
}

@media (max-width: 600px) {
  .header-socials {
    margin-left: 6px;
  }
}

/* Sección de página con encabezado tipo "plano" ------------------------- */
.page-hero {
  padding: 64px 0 70px;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow {
  margin-bottom: 22px;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 780px;
}
.page-hero p.lede {
  margin-top: 22px;
  max-width: 560px;
  font-size: 17.5px;
  color: var(--ink-soft);
}

section {
  padding: 100px 0;
}

.reviews-section {
  padding-top: 80px;
}
.reviews-head {
  max-width: 720px;
  margin-bottom: 34px;
}
.reviews-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-top: 16px;
}
.reviews-head p {
  margin-top: 16px;
  color: var(--ink-faint);
  font-size: 17px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}
.review-form,
.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 24px 60px -34px rgba(0, 0, 0, 0.72);
}
.review-form h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.review-form label,
.review-form fieldset {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(2, 2, 2, 0.45);
  color: var(--text-main);
  font-family: var(--body);
  font-size: 15px;
  text-transform: none;
}
.review-form textarea {
  resize: vertical;
  min-height: 112px;
}
.review-rating {
  border: 0;
  padding: 0;
  margin: 0 0 16px;
}
.review-rating legend {
  margin-bottom: 8px;
}
.review-rating label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  text-transform: none;
  font-size: 14px;
  cursor: pointer;
}
.review-rating label span,
.review-rating label {
  color: #ffd700 !important;
  -webkit-text-fill-color: #ffd700;
}
.review-rating label span {
  text-shadow: 0 0 0 #ffd700;
  font-size: 16px;
  letter-spacing: 0.12em;
}
.review-rating input {
  width: auto;
  margin: 0;
}
.form-status {
  margin-top: 12px;
  min-height: 22px;
  color: var(--signal);
  font-family: var(--mono);
  font-size: 12px;
}
.review-feed {
  display: grid;
  gap: 16px;
}
.review-card .review-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.review-card .review-name {
  font-weight: 600;
}
.review-card .review-meta {
  color: var(--text-muted);
  font-size: 13px;
  font-family: var(--mono);
}
.review-card .review-stars {
  display: flex;
  gap: 2px;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  font-size: 17px;
}
.review-card .review-star {
  color: #7a7a7a;
  -webkit-text-fill-color: #7a7a7a;
}
.review-card .review-star.filled {
  color: #ffd700 !important;
  -webkit-text-fill-color: #ffd700 !important;
  text-shadow: 0 0 0 #ffd700;
}
.review-card .review-star.empty {
  color: rgba(255, 255, 255, 0.28) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.28) !important;
  text-shadow: 0 0 0 rgba(255, 255, 255, 0.28);
}
.review-card p {
  color: var(--ink-faint);
}
.review-verified {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--signal);
  border: 1px solid var(--signal);
  border-radius: 999px;
  padding: 1px 8px;
  margin-left: 6px;
  vertical-align: middle;
}
.review-avatar {
  border-radius: 50%;
  flex-shrink: 0;
}
.review-avatar-fallback {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--signal);
  font-family: var(--mono);
  font-weight: 600;
  font-size: 15px;
}
.review-user-badge {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-main);
}
.rating-summary {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.review-delete {
  margin-top: 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.review-delete:hover {
  background: rgba(255, 255, 255, 0.16);
}
.legal-box {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}
.legal-box h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}
.legal-box ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: var(--ink-faint);
}
.legal-box li {
  line-height: 1.7;
}
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  section {
    padding: 64px 0;
  }
  .reviews-section {
    padding-top: 56px;
  }
}