/* ==========================================================================
   Landing público — RT Río San Pedro
   Depende de: base.css (variables, reset, .rv*)
   ========================================================================== */

body { overflow-x: hidden; }

/* ─── TOPBAR ───────────────────────────────────────────────── */
.tb {
  background: var(--r);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 5vw, 72px);
  position: relative;
  z-index: 210;
}
.tb-txt {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tb-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 10px;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tb-meta span { white-space: nowrap; }

/* ─── NAV ──────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bdr);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 5vw, 72px);
}
.nav-logo {
  height: 32px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nl {
  padding: 7px 13px;
  color: var(--gl);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all .2s;
}
.nl:hover { color: var(--gd); background: var(--off2); }
.nav-cta {
  margin-left: 10px;
  padding: 9px 22px;
  background: var(--r);
  color: var(--w);
  border: none;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--rd); }

/* ─── ACCESO INTERNO en el header (botón candado) ──────────── */
/* "Esconder pero accesible": no dice nada explícito sobre el portal,
   solo un ícono candado tasteful entre los enlaces y el CTA. */
.nav-portal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--bdr);
  border-radius: 50%;
  color: var(--gl);
  background: var(--w);
  margin: 0 8px 0 4px;
  transition: all .25s var(--ease);
  position: relative;
}
.nav-portal svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s var(--ease);
}
.nav-portal:hover {
  border-color: var(--r);
  color: var(--r);
  transform: rotate(-8deg) scale(1.05);
  box-shadow: 0 4px 14px rgba(200,12,15,.18);
}
.nav-portal:hover svg { transform: scale(1.1); }
.nav-portal::after {
  content: attr(data-tip);
  position: absolute;
  top: 110%;
  right: 0;
  background: var(--gd);
  color: var(--w);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: all .2s var(--ease);
}
.nav-portal:hover::after { opacity: 1; transform: translateY(0); }

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.ham span { display: block; width: 20px; height: 1.5px; background: var(--gd); }
.mob-menu {
  display: none;
  flex-direction: column;
  background: var(--w);
  border-top: 1px solid var(--bdr);
  padding: 12px clamp(16px, 5vw, 72px);
}
.mob-menu.open { display: flex; }
.nl-m {
  padding: 12px 0;
  color: var(--gl);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--bdr);
}
.nl-m.portal-m {
  color: var(--r);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nl-m.portal-m svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }
.nl-m:last-child { border-bottom: none; }

@keyframes drawLine { to { transform: scaleX(1); } }

.btn-p {
  padding: clamp(12px, 1.5vh, 15px) clamp(20px, 3vw, 32px);
  background: var(--r);
  color: var(--w);
  border: none;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all .2s;
  white-space: nowrap;
}
.btn-p:hover { background: var(--rd); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(200,12,15,.4); }



/* ─── SECTION genérica ─────────────────────────────────────── */
.sec {
  padding: clamp(72px, 10vh, 120px) clamp(24px, 5vw, 72px);
  position: relative;
  isolation: isolate;
}

/* Fondos por sección — overlay + imagen */
.sec.bg-servicios {
  background:
    linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(250,250,249,.94) 50%, rgba(255,255,255,.97) 100%),
    url("../img/bg/servicios.3fe4c9f0d7c0.jpg") center/cover no-repeat fixed;
  color: var(--gd);
}
.sec.bg-nosotros {
  background:
    linear-gradient(135deg, rgba(26,31,34,.92) 0%, rgba(26,31,34,.85) 60%, rgba(200,12,15,.45) 100%),
    url("../img/bg/nosotros.f6042e6c74e9.jpg") center/cover no-repeat fixed;
  color: var(--w);
}
.sec.bg-horario {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(244,243,241,.94) 100%),
    url("../img/bg/horario.eb9ace518f43.jpg") center/cover no-repeat fixed;
  color: var(--gd);
}
.sec.bg-contacto {
  background:
    linear-gradient(135deg, rgba(20,24,27,.93) 0%, rgba(26,31,34,.97) 100%),
    url("../img/bg/contacto.b4b3d7316852.jpg") center/cover no-repeat fixed;
  color: var(--w);
}

.sec-tag { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.sec-tag.tight { margin-bottom: 12px; }
.sec-bar { width: 20px; height: 2px; background: var(--r); }
.sec-tag-t { font-size: 9px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--r); }
.sec-tag-t-dim { color: rgba(200,12,15,.7); }
.tight-h { margin-bottom: 16px !important; }
.sec-h2 {
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -1.5px;
  margin-bottom: clamp(40px, 6vh, 64px);
  color: inherit;
}
.sec-h2 em { font-style: normal; color: var(--r); }

/* Texto sobre fondo oscuro */
.sec.bg-nosotros, .sec.bg-contacto { color: var(--w); }
.sec.bg-nosotros .sec-tag-t { color: rgba(200,12,15,.9); }

/* ─── SERVICIOS ────────────────────────────────────────────── */
.sv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--bdr);
  box-shadow: var(--shl);
}
.sv {
  background: var(--w);
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.sv:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(0,0,0,.12); z-index: 1; }
.sv::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--r);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.sv:hover::after { transform: scaleX(1); }
.sv-num {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  font-style: italic;
  color: rgba(0,0,0,.04);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 2px;
  user-select: none;
  transition: color .3s;
}
.sv:hover .sv-num { color: rgba(200,12,15,.08); }
.sv-icon { width: 56px; height: 56px; stroke: var(--r); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 18px; transition: transform .3s var(--ease), filter .3s var(--ease); filter: drop-shadow(0 2px 6px rgba(0,0,0,.08)); }
.sv:hover .sv-icon { transform: scale(1.12) translateY(-2px); filter: drop-shadow(0 6px 14px rgba(30,125,50,.25)); }
.sv-name { font-size: 12px; font-weight: 700; color: var(--gd); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.sv-desc { font-size: 12px; color: var(--gl); line-height: 1.85; }
.sv-list { list-style: none; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--bdr); }
.sv-list li {
  font-size: 11px; color: var(--gm);
  padding: 5px 0;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--off2);
}
.sv-list li:last-child { border-bottom: none; }
.sv-list li::before { content: ""; width: 10px; height: 1px; background: var(--r); flex-shrink: 0; }

/* ─── NOSOTROS (fondo oscuro) — ver .nos-grid-v2 en la sección Hero V2 ─ */

/* ─── HORARIO ──────────────────────────────────────────────── */
.hor-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 80px); align-items: center; }
.hor-sub { font-size: 13px; color: var(--gl); line-height: 1.9; margin-bottom: 28px; }
.hor-card { border: 1px solid var(--bdr); overflow: hidden; box-shadow: var(--shl); background: var(--w); }
.hor-head {
  background: var(--gd);
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--r);
}
.hor-head-t { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.5); }
.hor-dot { width: 7px; height: 7px; background: var(--r); border-radius: 50%; box-shadow: 0 0 8px rgba(200,12,15,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.hor-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid var(--bdr);
  transition: background .15s;
}
.hor-row:hover { background: var(--off); }
.hor-row:last-of-type { border-bottom: none; }
.hor-dia { font-size: 12px; color: var(--gm); font-weight: 500; }
.hor-hora { font-size: 13px; font-weight: 700; color: var(--gd); }
.hor-closed { color: #d0d0d0; font-weight: 400; }
.hor-badge {
  background: var(--r); color: var(--w);
  font-size: 7px; font-weight: 700;
  letter-spacing: 2px; padding: 2px 7px;
  text-transform: uppercase;
  margin-left: 8px;
  border-radius: 2px;
}
.hor-addr {
  font-size: 11px; color: var(--gl);
  padding: 11px 22px;
  background: var(--off);
  border-top: 1px solid var(--bdr);
}

/* ─── CONTACTO (fondo oscuro) ──────────────────────────────── */
.cont-in { max-width: 960px; margin: 0 auto; }
.cont-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 80px);
  margin-bottom: clamp(36px, 5vh, 56px);
  align-items: end;
}
.cont-h2 {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  color: var(--w);
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -1px;
}
.cont-h2 em { font-style: normal; color: var(--r); }
.cont-sub { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.9; margin-bottom: 24px; }
.cont-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.cc { background: rgba(255,255,255,.04); padding: clamp(18px, 3vw, 26px); transition: background .25s; text-decoration: none; color: inherit; display: block; }
.cc:hover { background: rgba(200,12,15,.12); }
.cc-l { font-size: 8px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 8px; }
.cc-v { font-size: clamp(13px, 1.3vw, 15px); font-weight: 700; color: var(--w); }

/* ─── FOOTER ───────────────────────────────────────────────── */
footer {
  background: #111416;
  border-top: 2px solid var(--r);
  padding: 24px clamp(24px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.f-logo { height: 22px; width: auto; max-width: 140px; object-fit: contain; }
.f-links { display: flex; align-items: center; gap: clamp(12px, 3vw, 28px); flex-wrap: wrap; }
.fl { font-size: 9px; color: rgba(255,255,255,.2); letter-spacing: 2px; text-transform: uppercase; transition: color .2s; }
.fl:hover { color: rgba(255,255,255,.5); }
.f-copy { font-size: 9px; color: rgba(255,255,255,.12); }

/* ─── ANIMACIONES por sección — variantes ──────────────────── */
/* Zoom-in (hero / cards de servicio) */
.fx-zoom { opacity: 0; transform: scale(.92); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.fx-zoom.on { opacity: 1; transform: scale(1); }

/* Slide-up con blur (números/títulos) */
.fx-blur { opacity: 0; transform: translateY(40px); filter: blur(8px); transition: all .8s var(--ease); }
.fx-blur.on { opacity: 1; transform: translateY(0); filter: blur(0); }

/* Tilt 3D suave */
.fx-tilt { opacity: 0; transform: perspective(800px) rotateY(-15deg) translateZ(-40px); transition: all .8s var(--ease); transform-origin: left center; }
.fx-tilt.on { opacity: 1; transform: perspective(800px) rotateY(0) translateZ(0); }

/* ─── Móvil: desactiva fixed (mejor performance + scroll iOS) ─ */
@media (hover: none), (max-width: 800px) {
  .sec.bg-servicios, .sec.bg-nosotros, .sec.bg-horario, .sec.bg-contacto {
    background-attachment: scroll;
  }
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 800px) {
  .nav-links { display: none; }
  .ham { display: flex; }
  .nav-portal { display: none; }   /* en móvil va dentro del menú hamburguesa */
  .hor-layout, .cont-grid { grid-template-columns: 1fr; }
  .cont-cards { grid-template-columns: 1fr; }
  .tb-meta { display: none; }
}

@media (max-width: 480px) {
  .sv-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}

/* ─── Banner Agendar online ──────────────────────────────── */
.banner-agendar {
  background: linear-gradient(135deg, #1e7d32 0%, #0d3d18 100%);
  color: #fff;
  padding: 28px 20px;
  position: relative;
  overflow: hidden;
}
.banner-agendar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,255,255,.08) 0%, transparent 50%);
  pointer-events: none;
}
.banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.banner-text { flex: 1; min-width: 280px; }
.banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.18);
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 10px;
  backdrop-filter: blur(6px);
}
.banner-h {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -.5px;
}
.banner-h em {
  font-style: normal;
  background: linear-gradient(180deg, #fff 60%, #FFD54F 60%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding: 0 2px;
}
.banner-sub {
  font-size: 14px;
  opacity: .92;
  max-width: 540px;
  margin: 0;
  line-height: 1.5;
}
.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #1e7d32;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  transition: all .15s ease;
  flex-shrink: 0;
}
.banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  background: #FFD54F;
}
@media (max-width: 720px) {
  .banner-h { font-size: 24px; }
  .banner-cta { width: 100%; justify-content: center; }
  .banner-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .banner-kicker { align-self: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO V2 — fullscreen, foto protagonista, tipografía editorial
   Reemplaza el split 1fr/1fr del hero v1.
   ═══════════════════════════════════════════════════════════════════ */
.hero-v2 {
  position: relative;
  min-height: calc(100vh - 102px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 12vh, 120px) clamp(24px, 8vw, 96px) clamp(40px, 6vh, 80px);
  background:
    url("../img/bg/hero.b0ad57c8aaaf.jpg") center/cover no-repeat;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.hero-v2-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg,
      rgba(15,20,25,.85) 0%,
      rgba(15,20,25,.65) 35%,
      rgba(15,20,25,.40) 65%,
      rgba(30,125,50,.35) 100%);
  z-index: 0;
  pointer-events: none;
}
.hero-v2-content { position: relative; z-index: 2; max-width: 1100px; }

.hero-v2-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 36px;
}
.hero-v2-dot {
  width: 7px; height: 7px;
  background: var(--r);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(30,125,50,.8);
  animation: pulse 2.2s ease-in-out infinite;
}

.hero-v2-title {
  font-size: clamp(48px, 9vw, 124px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -3px;
  margin: 0 0 28px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-v2-title-acc {
  color: var(--r);
  position: relative;
  display: inline-block;
}
.hero-v2-title-acc::after {
  content: "";
  position: absolute;
  bottom: 8px; left: 0;
  width: 100%; height: 4px;
  background: var(--r);
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 1.2s cubic-bezier(.25,.46,.45,.94) .8s forwards;
}

.hero-v2-sub {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  max-width: 640px;
  margin: 0 0 44px;
  font-weight: 400;
}

.hero-v2-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-v2-btn-p {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  background: var(--r);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s ease;
  box-shadow: 0 8px 28px rgba(30,125,50,.45);
}
.hero-v2-btn-p:hover {
  background: var(--rd);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(30,125,50,.6);
}
.hero-v2-btn-g {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 24px;
  background: transparent;
  color: rgba(255,255,255,.9);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease;
  backdrop-filter: blur(6px);
}
.hero-v2-btn-g:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
}

/* Stats abajo del hero */
.hero-v2-stats {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: clamp(24px, 5vw, 56px);
  margin-top: clamp(48px, 8vh, 88px);
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}
.hero-v2-stat { display: flex; flex-direction: column; }
.hero-v2-stat-num {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  letter-spacing: -.5px;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-v2-stat-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.hero-v2-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.18);
}

@media (max-width: 780px) {
  .hero-v2 { min-height: auto; padding: 80px 20px 48px; }
  .hero-v2-title { letter-spacing: -1.5px; }
  .hero-v2-stat-sep { display: none; }
  .hero-v2-stats { gap: 20px; flex-direction: row; }
  .hero-v2-stat { flex: 1 1 40%; min-width: 130px; }
}

/* ═══════════════════════════════════════════════════════════════════
   NOSOTROS V2 — split editorial, sin logo flotante
   ═══════════════════════════════════════════════════════════════════ */
.nos-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) { .nos-grid-v2 { grid-template-columns: 1fr; } }

.nos-v2-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--r);
  margin-bottom: 16px;
}
.nos-v2-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -1.5px;
  color: #fff;
  margin: 0 0 28px;
}
.nos-v2-title em {
  font-style: italic;
  color: var(--r);
  font-weight: 900;
}
.nos-v2-lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  margin: 0 0 36px;
}
.nos-v2-quote {
  background: rgba(255,255,255,.05);
  border-left: 3px solid var(--r);
  padding: 24px 28px;
  border-radius: 0 12px 12px 0;
  backdrop-filter: blur(8px);
}
.nos-v2-quote-mark {
  font-size: 48px;
  font-weight: 900;
  color: var(--r);
  line-height: 1;
  margin-bottom: -12px;
  opacity: .8;
}
.nos-v2-quote-txt {
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  margin-bottom: 14px;
}
.nos-v2-quote-cite {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,.55);
}

.nos-vals-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.nv-v2 {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 20px 22px;
  transition: all .25s ease;
  backdrop-filter: blur(6px);
}
.nv-v2:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(30,125,50,.4);
  transform: translateX(4px);
}
.nv-v2-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--r);
  line-height: 1;
  letter-spacing: -1px;
  min-width: 44px;
}
.nv-v2-content { flex: 1; }
.nv-v2-t {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -.3px;
}
.nv-v2-d {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.65);
}
