/* ==========================================================================
   INNOVARTY — Design System
   Consultora de innovación en economía circular (textil, calzado, marroquinería)
   ========================================================================== */

:root {
  /* Brand colors */
  --c-black: #0a0a0b;
  --c-black-soft: #121214;
  --c-panel: #16161a;
  --c-panel-2: #1c1c21;
  --c-border: #2a2a30;
  --c-white: #ffffff;
  --c-off: #f6f5f3;
  --c-ink: #0a0a0b;

  --c-orange: #ff5c35;
  --c-orange-dark: #e14620;
  --c-orange-soft: #ff8a68;
  --c-teal: #00a89c;
  --c-teal-dark: #00857c;
  --c-teal-soft: #4fd6c9;

  --c-gray-100: #f4f4f5;
  --c-gray-300: #d4d4d8;
  --c-gray-400: #a3a3ab;
  --c-gray-500: #78787f;
  --c-gray-600: #55555c;

  /* Type */
  --font-display: "Arial Unicode MS", "Arial Unicode", "Arial", sans-serif;
  --font-body: "Arial Unicode MS", "Arial Unicode", "Arial", sans-serif;

  /* Layout */
  --container: 1440px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

body {
  font-family: var(--font-body);
  background: var(--c-black);
  color: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  font-size: clamp(17.5px, 1.35vw, 19px);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.028em;
}
h1 { font-size: clamp(48px, 6.8vw, 78px); }
h2 { font-size: clamp(36px, 4.8vw, 56px); line-height: 1.12; letter-spacing: -0.025em; }
h3 { font-size: clamp(25px, 3.2vw, 36px); line-height: 1.2; letter-spacing: -0.02em; }
h4 { font-size: clamp(20px, 2.4vw, 26px); line-height: 1.25; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(24px, 4vw, 64px);
}

.section { padding: clamp(44px, 5vw, 72px) 0; }
.section-tight { padding: clamp(32px, 4vw, 52px) 0; }

.bg-black { background: var(--c-black); color: var(--c-white); }
.bg-off { background: var(--c-off); color: var(--c-ink); }
.bg-white { background: var(--c-white); color: var(--c-ink); }

.text-orange { color: var(--c-orange); }
.text-teal { color: var(--c-teal); }
.text-center { text-align: center !important; }
.mx-auto { margin-inline: auto !important; }

.section-header,
.section-intro,
.center.max-w {
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}
.section-header .kicker,
.section-intro .kicker,
.center.max-w .kicker {
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 12px;
  display: inline-flex;
}
.section-header h2,
.section-intro h2,
.center.max-w h2 {
  text-align: center;
  margin-inline: auto;
}
.section-header .lead,
.section-intro .lead,
.center.max-w .lead {
  text-align: center;
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-teal);
}
.kicker-center,
.text-center .kicker {
  justify-content: center;
  margin-inline: auto;
}
.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-orange);
  flex-shrink: 0;
}

.eyebrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-teal);
}
.eyebrow-link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-orange);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: transform .35s var(--ease), background-color .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-solid {
  background: var(--c-orange);
  color: var(--c-white);
}
.btn-solid:hover { background: var(--c-orange-dark); }

.btn-outline {
  border: 1.5px solid var(--c-teal);
  color: var(--c-teal);
}
.btn-outline:hover { background: var(--c-teal); color: var(--c-black); }

.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--c-white);
}
.btn-outline-light:hover { background: var(--c-white); color: var(--c-black); }

.btn-ghost-dark {
  border: 1.5px solid rgba(10,10,11,.2);
  color: var(--c-ink);
}
.btn-ghost-dark:hover { background: var(--c-ink); color: var(--c-white); }

.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  padding-inline: 16px;
}

.nav-pill {
  width: 100%;
  max-width: 1180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(10,10,11,.06);
  border-radius: var(--radius-pill);
  padding: 12px 14px 12px 24px;
  box-shadow: 0 12px 30px rgba(10,10,11,.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--c-ink);
  margin-right: auto;
}
.brand .dot { color: var(--c-orange); }
.brand img { height: 36px; width: auto; }

.brand-tag {
  display: none !important;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--c-gray-600);
}
.nav-links a { transition: color .2s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--c-orange); }

.nav-dropdown { position: relative; }
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 22px;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 230px;
  background: var(--c-white);
  border: 1px solid rgba(10,10,11,.06);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(10,10,11,.14);
  padding: 8px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.nav-dropdown-menu a {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--c-gray-100); color: var(--c-orange); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-ink);
  color: var(--c-white);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--c-black);
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  overflow-y: auto;
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .45s var(--ease), visibility 0s linear .45s;
}
.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform .45s var(--ease);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu a {
  display: block;
  width: 100%;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-submenu {
  display: flex;
  flex-direction: column;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-submenu a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-gray-400);
  padding: 8px 0 8px 20px;
  border-bottom: 0;
}
.mobile-menu .mobile-close {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu .mobile-contact { margin-top: auto; padding-top: 24px; color: var(--c-gray-400); font-size: 14px; }
.mobile-menu .mobile-contact a { display:block; font-size:15px; font-weight:600; color: var(--c-teal-soft); border:0; padding: 4px 0; }

@media (min-width: 980px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: 144px;
  padding-bottom: 48px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: clamp(48px, 7vw, 84px); line-height: 1.04; letter-spacing: -0.032em; }
.hero-lead { font-size: clamp(20px, 2.4vw, 25px); line-height: 1.58; color: var(--c-gray-300); max-width: 52ch; margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-reassurance, .form-reassurance { display: flex; align-items: center; gap: 8px; margin-top: 22px; font-size: 13.5px; font-weight: 600; color: var(--c-gray-400); }
.hero-reassurance svg, .form-reassurance svg { color: var(--c-teal-soft); flex-shrink: 0; }



@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 32px; }
}

/* ---------- Split-loose (text + decorative geo-shape) ---------- */
.split-loose {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .split-loose { grid-template-columns: 1.3fr 0.7fr; gap: 40px; }
  .split-loose--reverse { grid-template-columns: 0.7fr 1.3fr; }
  .split-loose--reverse > :first-child { order: 1; }
  .split-loose--reverse > :last-child { order: 2; }
}
.split-loose .lead {
  font-size: clamp(20px, 2.3vw, 25px);
  line-height: 1.58;
  color: var(--c-gray-300);
  margin-top: 22px;
  max-width: 56ch;
}

/* ---------- Geo shape (abstract geometric accent) ---------- */
.geo-shape {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  margin-inline: auto;
  display: none;
  animation: geo-float-anim 8s ease-in-out infinite;
}
@media (min-width: 900px) { .geo-shape { display: block; } }

.geo-shape--a {
  animation-delay: 0s;
}
.geo-shape--b {
  animation-delay: -2.5s;
}
.geo-shape--c {
  animation-delay: -5s;
}
.geo-shape--hero-home { animation-delay: -1s; }
.geo-shape--hero-servicios { animation-delay: -2s; }
.geo-shape--hero-sobre { animation-delay: -3s; }
.geo-shape--hero-proyectos { animation-delay: -4s; }
.geo-shape--hero-contacto { animation-delay: -5s; }

.geo-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* Animations for SVG elements */
.geo-rotate-cw {
  animation: geo-spin 40s linear infinite;
}
.geo-rotate-ccw {
  animation: geo-spin-reverse 45s linear infinite;
}
.geo-float {
  animation: geo-float-anim 8s ease-in-out infinite;
}
.geo-drift-slow {
  animation: geo-drift-anim 12s ease-in-out infinite;
}
.geo-pulse {
  animation: geo-pulse-anim 3s ease-in-out infinite;
}

@keyframes geo-spin {
  to { transform: rotate(360deg); }
}

@keyframes geo-spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes geo-float-anim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes geo-drift-anim {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -8px); }
}

@keyframes geo-pulse-anim {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.35); opacity: 1; }
}

/* ---------- Logos strip / marquee ---------- */
.logo-marquee {
  margin-top: 32px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(48px, 6vw, 88px);
  animation: logo-scroll 34s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-track img {
  height: clamp(40px, 5vw, 56px);
  width: auto;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(1) opacity(0.6);
  transition: filter .25s ease, opacity .25s ease;
}
.logo-track img:hover { filter: grayscale(0) opacity(1); }
.logo-marquee.on-dark .logo-track img { filter: grayscale(1) invert(1) opacity(.5); }
.logo-marquee.on-dark .logo-track img:hover { filter: grayscale(0) invert(1) opacity(.9); }

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
}

/* Legacy static strip (kept for any non-marquee use) */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
  margin-top: 30px;
}
.logo-strip img {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter .25s ease;
}
.logo-strip img:hover { filter: grayscale(0) opacity(1); }
.logo-strip.on-dark img { filter: grayscale(1) invert(1) opacity(.5); }
.logo-strip.on-dark img:hover { filter: grayscale(0) invert(1) opacity(.85); }

/* ---------- Cards / grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.grid-2 .reveal:nth-child(2),
.grid-3 .reveal:nth-child(2),
.grid-4 .reveal:nth-child(2) { transition-delay: .08s; }
.grid-3 .reveal:nth-child(3),
.grid-4 .reveal:nth-child(3) { transition-delay: .16s; }
.grid-4 .reveal:nth-child(4) { transition-delay: .24s; }

.phase-card {
  position: relative;
  background: radial-gradient(circle at 0% 50%, rgba(255, 92, 53, 0.18), transparent 55%),
              linear-gradient(160deg, var(--c-panel-2), var(--c-black-soft));
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 38px 28px 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 310px;
  transition: transform .35s var(--ease), border-color .3s ease, background .3s ease;
}
.phase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 92, 53, 0.4);
  background: radial-gradient(circle at 0% 50%, rgba(255, 92, 53, 0.25), transparent 60%),
              linear-gradient(160deg, var(--c-panel-2), var(--c-black-soft));
}
.phase-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-orange);
  letter-spacing: .08em;
}
.phase-card h3 {
  font-size: clamp(26px, 3.2vw, 32px);
  line-height: 1.22;
  color: var(--c-white);
}
.phase-card p {
  color: var(--c-gray-300);
  font-size: clamp(17.5px, 1.35vw, 19px);
  line-height: 1.65;
  flex-grow: 1;
}
.phase-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-orange);
  color: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.phase-card:hover .phase-arrow {
  background: var(--c-orange);
  color: var(--c-black);
  border-color: var(--c-orange);
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  color: var(--c-white);
  isolation: isolate;
}
.project-card .pc-bg {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.project-card:hover .pc-bg { transform: scale(1.06); }
.project-card .pc-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.86) 5%, rgba(0,0,0,.15) 60%, rgba(0,0,0,.05));
}
.project-card .pc-body { position: relative; z-index: 1; padding: 28px; width: 100%; }
.project-card .pc-tag { font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--c-teal-soft); }
.project-card h3 { font-size: clamp(26px, 3.2vw, 32px); font-weight: 700; line-height: 1.2; margin-top: 8px; }
.project-card p { color: var(--c-gray-300); font-size: clamp(16.5px, 1.3vw, 18px); margin-top: 8px; line-height: 1.55; }
.project-card .pc-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: var(--c-white); }
.project-card:hover .pc-link { color: var(--c-orange-soft); }

/* ---------- Servicios: phase detail (Qué incluye / El objetivo / En qué ponemos foco) ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr; gap: 24px; scroll-margin-top: 140px; }
@media (min-width: 900px) { .svc-detail { grid-template-columns: 230px 1.15fr .85fr; gap: 28px; align-items: start; } }
.svc-nav {
  background: linear-gradient(160deg, #2a1710, #0a0a0b 65%);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.svc-nav h4 { color: var(--c-white); font-size: 20px; margin-bottom: 20px; }
.svc-nav ul { display: flex; flex-direction: column; gap: 18px; }
.svc-nav li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--c-gray-400);
  line-height: 1.35;
  cursor: pointer;
  transition: color 0.25s ease;
}
.svc-nav li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--c-gray-500);
  flex-shrink: 0;
  transition: border-color 0.25s ease;
}
.svc-nav li:hover {
  color: var(--c-white);
}
.svc-nav li:hover::before {
  border-color: var(--c-teal);
}
.svc-nav li.active {
  color: var(--c-teal-soft);
  font-weight: 600;
}
.svc-nav li.active::before {
  background: var(--c-teal);
  border-color: var(--c-teal);
}

.svc-panel { border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: clamp(32px, 4vw, 48px); }
.svc-focus h2 { color: var(--c-white); font-size: clamp(32px, 4.2vw, 44px); font-weight: 700; line-height: 1.12; }
.svc-focus > p { color: var(--c-gray-300); margin-top: 20px; font-size: clamp(18.5px, 1.4vw, 21px); line-height: 1.65; }
.svc-focus h5 { color: var(--c-white); font-size: clamp(19px, 2.2vw, 23px); font-weight: 700; margin-top: 36px; margin-bottom: 20px; }
.svc-pill-list { display: flex; flex-direction: column; gap: 14px; }
.svc-pill-list li {
  background: linear-gradient(90deg, #0c3d3a, var(--c-teal));
  color: var(--c-white);
  font-size: clamp(16.5px, 1.3vw, 18px);
  font-weight: 500;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
}
.svc-objetivo h5 { color: var(--c-white); font-size: clamp(19px, 2.2vw, 23px); font-weight: 700; margin-bottom: 18px; }
.svc-objetivo p { color: var(--c-gray-300); font-size: clamp(17px, 1.3vw, 18.5px); line-height: 1.7; }

.case-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--c-border);
  overflow: hidden;
  background: var(--c-black);
  color: var(--c-white);
  transition: transform .3s var(--ease), border-color .3s ease;
}
.case-card:hover { transform: translateY(-4px); border-color: var(--c-teal); }
.case-card-top { padding: 28px; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.case-card-top h3 { font-size: clamp(25px, 3vw, 32px); line-height: 1.2; font-weight: 700; }
.case-card-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-white); color: var(--c-orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .25s ease, color .25s ease;
}
.case-card:hover .case-card-arrow { background: var(--c-orange); color: var(--c-white); }
.case-card-photo { aspect-ratio: 4/5; overflow: hidden; }
.case-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.case-card:hover .case-card-photo img { transform: scale(1.05); }

.service-tile {
  background: var(--c-white);
  border: 1px solid #e9e8e5;
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .3s ease, transform .3s ease;
}
.service-tile:hover { box-shadow: 0 20px 40px rgba(10,10,11,.08); transform: translateY(-4px); }
.service-tile .st-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--c-off);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-orange);
}
.service-tile h3 { font-size: clamp(20px, 2.4vw, 24px); font-weight: 700; line-height: 1.25; }
.service-tile a { font-size: 15px; font-weight: 700; color: var(--c-teal); margin-top: auto; }

/* ---------- On-Dark Feature Cards (Wizardly Inspired) ---------- */
.feature-card,
.bg-black .service-tile {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 4.5vw, 48px) clamp(28px, 3.5vw, 38px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.bg-black .service-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-teal-soft), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover,
.bg-black .service-tile:hover {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border-color: rgba(0, 168, 156, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before,
.bg-black .service-tile:hover::before {
  opacity: 1;
}

.feature-card h3,
.bg-black .service-tile h3 {
  color: var(--c-white);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.feature-card p,
.bg-black .service-tile p {
  color: var(--c-gray-300);
  font-size: 16px;
  line-height: 1.62;
  text-align: center;
}

.feature-card .fc-icon,
.bg-black .service-tile .st-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 6px;
  margin-inline: auto;
}

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.split > * { min-width: 0; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1.15fr 0.85fr; gap: 64px; }
  .split.reverse { grid-template-columns: 0.85fr 1.15fr; }
  .split.reverse .split-media { order: 2; }
}
.split-media img,
.grid-2 img,
.project-hero-visual img,
.case-card-photo img,
[data-zoomable] {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: zoom-in;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.split-media img:hover,
.grid-2 img:hover,
[data-zoomable]:hover {
  transform: scale(1.02);
  border-color: rgba(255, 92, 53, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* ---------- Image Lightbox Modal ---------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(10, 10, 11, 0.94);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.lightbox-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.94);
  transition: transform 0.3s var(--ease);
}
.lightbox-modal.is-active .lightbox-content {
  transform: scale(1);
}
.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
}
.lightbox-caption {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--c-gray-300);
  text-align: center;
  font-weight: 500;
}
.lightbox-close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover {
  background: var(--c-orange);
  transform: scale(1.1);
}
.split h2 { font-size: clamp(36px, 4.8vw, 56px); margin-top: 16px; line-height: 1.1; }
.split .lead { color: var(--c-gray-400); margin-top: 18px; font-size: clamp(19px, 2.2vw, 23px); max-width: 58ch; line-height: 1.6; }
.split-loose h2 { font-size: clamp(36px, 4.8vw, 56px); margin-top: 16px; line-height: 1.1; }
.split-loose .lead { color: var(--c-gray-300); margin-top: 20px; font-size: clamp(19px, 2.2vw, 23px); max-width: 58ch; line-height: 1.62; }

.avatar-frame {
  position: relative;
  width: min(340px, 80%);
  margin-inline: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  padding: 8px;
  border: 2px solid var(--c-orange);
}
.avatar-frame img { border-radius: 50%; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Testimonial ---------- */
.testimonial {
  position: relative;
  overflow: hidden;
  max-width: 1040px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 64px) clamp(36px, 5vw, 64px);
  background: radial-gradient(circle at 10% 20%, rgba(255, 92, 53, 0.12), transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(0, 168, 156, 0.15), transparent 55%),
              linear-gradient(160deg, var(--c-panel-2), var(--c-black-soft));
  border: 1px solid var(--c-border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: left;
}
.testimonial::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 92, 53, 0.25), transparent 70%);
  filter: blur(36px);
  pointer-events: none;
}
[data-testimonial-track] {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.testimonial-slide.is-active {
  opacity: 1;
}
@media (min-width: 860px) {
  .testimonial-slide {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
  }
}
.testimonial blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.6vw, 27px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--c-white);
  max-width: 660px;
  margin: 0;
}
.testimonial .t-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--c-gray-400);
  flex-shrink: 0;
}
.testimonial .t-author strong { display: block; color: var(--c-white); font-size: 18px; font-weight: 700; }
.testimonial .t-author .t-role { display: flex; flex-direction: column; line-height: 1.45; }
.testimonial .t-avatar {
  width: 68px; height: 68px; border-radius: 50%;
  border: 2px solid var(--c-orange);
  box-shadow: 0 0 16px rgba(255, 92, 53, 0.35);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial .t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--c-orange), #ff7a59);
  color: var(--c-black);
  font-weight: 700;
  font-size: 20px;
  font-family: var(--font-display);
}
.testimonial-nav {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  z-index: 10;
  position: relative;
  justify-content: center;
  width: 100%;
}
.t-nav-btn {
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-gray-400);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.t-nav-btn:hover {
  border-color: var(--c-orange);
  color: var(--c-white);
  background: rgba(255, 92, 53, 0.1);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #14141a, #050506);
  border: 1px solid var(--c-border);
  padding: clamp(32px, 4.5vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--c-white); font-size: clamp(36px, 4.8vw, 56px); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; }
.cta-banner p { color: var(--c-gray-400); font-size: clamp(18.5px, 1.4vw, 21px); line-height: 1.6; max-width: 56ch; margin: 18px auto 0; }
.cta-banner .btn { margin-top: 26px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-black);
  color: var(--c-gray-400);
  padding-top: clamp(44px, 5.5vw, 72px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 32ch; font-size: 15px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a svg { width: 19px; height: 19px; }
.footer-social a:hover {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: var(--c-black);
  transform: translateY(-2px);
}

.footer-col h4 { color: var(--c-white); font-size: 14.5px; margin-bottom: 16px; letter-spacing: .04em; text-transform: uppercase; font-weight: 700; }
.footer-col li { margin-bottom: 10px; font-size: 15.5px; }
.footer-col a:hover { color: var(--c-teal-soft); }
.footer-col address { font-style: normal; font-size: 15.5px; line-height: 1.7; }

.sub-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 0 32px;
  font-size: 13px;
  color: var(--c-gray-500);
}
@media (min-width: 700px) {
  .sub-footer { flex-direction: row; align-items: center; justify-content: space-between; }
}
.sub-footer nav { display: flex; gap: 20px; }
.sub-footer nav a:hover { color: var(--c-gray-300); }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.max-w { max-width: 640px; margin-inline: auto; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.badge-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.badge-list li {
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--c-border);
  color: var(--c-gray-300);
}

.stat-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 36px; }
@media (min-width: 700px) { .stat-row { grid-template-columns: repeat(4,1fr); } }
.stat-row .stat-num { font-family: var(--font-display); font-size: clamp(30px,4vw,44px); font-weight: 700; color: var(--c-orange); }
.stat-row .stat-label { font-size: 13px; color: var(--c-gray-400); margin-top: 4px; }

/* Page hero (secondary pages) */
.page-hero { padding-top: 168px; padding-bottom: clamp(40px, 5vw, 64px); }
.page-hero h1 { font-size: clamp(38px, 5.5vw, 62px); max-width: 22ch; }
.page-hero .lead { color: var(--c-gray-300); max-width: 56ch; margin-top: 20px; font-size: clamp(18px, 1.6vw, 21px); }

.hero-center { text-align: center; }
.hero-center h1,
.hero-center .lead { margin-inline: auto; }
.hero-center .breadcrumb,
.hero-center .badge-list,
.hero-center .cta-row,
.hero-center .process-nav { justify-content: center; }

/* ---------- Services hero (impact + animated orbit visual) ---------- */
.impact-hero { position: relative; padding-top: 168px; padding-bottom: 64px; overflow: hidden; }
.impact-hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(560px 560px at 10% -12%, rgba(255,92,53,.16), transparent 62%),
    radial-gradient(520px 520px at 96% 6%, rgba(0,168,156,.14), transparent 62%);
}
.impact-hero-bg::before,
.impact-hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .45;
}
.impact-hero-bg::before { width: 420px; height: 420px; top: -150px; left: -110px; background: var(--c-orange); animation: hero-drift 17s ease-in-out infinite; }
.impact-hero-bg::after { width: 380px; height: 380px; bottom: -170px; right: -90px; background: var(--c-teal); animation: hero-drift 20s ease-in-out infinite reverse; }
.impact-hero-bg--no-orange {
  background: radial-gradient(520px 520px at 96% 6%, rgba(0,168,156,.14), transparent 62%) !important;
}
.impact-hero-bg--no-orange::before {
  display: none !important;
}

@keyframes hero-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(34px, 24px) scale(1.1); }
}

.impact-hero .container { position: relative; z-index: 1; }
.impact-hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-top: 10px; }
.impact-hero-content h1 { max-width: 15ch; }
.process-nav-center { justify-content: center; margin-top: 48px; }

@media (min-width: 960px) {
  .impact-hero-grid { grid-template-columns: 1.1fr .9fr; gap: 24px; }
}

.impact-hero-visual {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  margin-inline: auto;
}
.jv-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); }
.jv-ring-a { inset: 0; }
.jv-ring-b { inset: 15%; border-color: rgba(0,168,156,.3); border-style: dashed; animation: jv-spin 46s linear infinite; }

.jv-orbit { position: absolute; inset: 0; animation: jv-spin 26s linear infinite; }
.jv-node { position: absolute; width: 60px; height: 60px; }
.jv-node-1 { top: 0; left: 50%; transform: translate(-50%, -50%); }
.jv-node-2 { top: 50%; left: 100%; transform: translate(-50%, -50%); }
.jv-node-3 { top: 100%; left: 50%; transform: translate(-50%, -50%); }
.jv-node-4 { top: 50%; left: 0; transform: translate(-50%, -50%); }

.jv-node-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--c-panel);
  border: 1px solid var(--c-border);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  color: var(--c-teal-soft);
  box-shadow: 0 8px 22px rgba(0,0,0,.4);
  animation: jv-spin-rev 26s linear infinite;
}
.jv-node-inner span { font-family: var(--font-display); font-size: 10px; font-weight: 700; color: var(--c-gray-400); }

.jv-core {
  position: absolute; inset: 27%;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--c-orange-soft), var(--c-orange) 46%, var(--c-orange-dark) 100%);
  display: flex; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 0 70px rgba(255,92,53,.4);
  animation: jv-pulse 4s ease-in-out infinite;
}
.jv-core span { font-family: var(--font-display); font-weight: 700; font-size: 14px; line-height: 1.25; color: var(--c-white); }

.jv-particle { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--c-teal-soft); animation: jv-float 6s ease-in-out infinite; }
.jv-particle.p1 { top: 4%; left: 10%; }
.jv-particle.p2 { bottom: 8%; left: 4%; background: var(--c-orange-soft); animation-delay: 1.4s; }
.jv-particle.p3 { top: 10%; right: 6%; animation-delay: 2.8s; }

@keyframes jv-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes jv-spin-rev { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes jv-pulse {
  0%, 100% { box-shadow: 0 0 70px rgba(255,92,53,.4); transform: scale(1); }
  50% { box-shadow: 0 0 100px rgba(255,92,53,.6); transform: scale(1.04); }
}
@keyframes jv-float {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50% { transform: translateY(-14px); opacity: 1; }
}

/* Case deck (proyectos.html hero — shuffling stack of case-study cards) */
.cd-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,53,.35), rgba(0,168,156,.16) 55%, transparent 75%);
  filter: blur(38px);
  animation: cd-glow-pulse 6s ease-in-out infinite;
}
.case-deck {
  position: absolute;
  inset: 0;
  perspective: 1200px;
}
.case-chip {
  position: absolute;
  inset: 6% 10%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-panel);
  border: 1px solid var(--c-border);
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
  padding: 24px;
  display: flex;
  flex-direction: column;
  animation-name: cc-shuffle;
  animation-duration: 12s;
  animation-timing-function: cubic-bezier(.65,0,.35,1);
  animation-iteration-count: infinite;
}
.cc-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.cc-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,11,.35) 0%, rgba(10,10,11,.55) 55%, rgba(10,10,11,.92) 100%);
}
.cc-icon {
  position: relative; z-index: 2;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,92,53,.22);
  backdrop-filter: blur(4px);
  color: var(--c-orange-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: auto;
}
.cc-tag { position: relative; z-index: 2; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--c-teal-soft); margin-top: 18px; }
.case-chip h4 { position: relative; z-index: 2; font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--c-white); margin-top: 6px; }
.cc-brand { position: relative; z-index: 2; font-size: 13px; color: var(--c-gray-300); margin-top: 2px; }

.cc-1 { animation-delay: 0s; }
.cc-2 { animation-delay: -3s; }
.cc-3 { animation-delay: -6s; }
.cc-4 { animation-delay: -9s; }

@keyframes cc-shuffle {
  0%, 18%   { transform: translate(0, 0) scale(1) rotate(0deg);         opacity: 1;   z-index: 4; }
  25%, 43%  { transform: translate(9%, 7%) scale(.92) rotate(7deg);     opacity: .7;  z-index: 3; }
  50%, 68%  { transform: translate(0, 11%) scale(.85) rotate(0deg);     opacity: .45; z-index: 2; }
  75%, 93%  { transform: translate(-9%, 7%) scale(.92) rotate(-7deg);   opacity: .7;  z-index: 3; }
  100%      { transform: translate(0, 0) scale(1) rotate(0deg);         opacity: 1;   z-index: 4; }
}
@keyframes cd-glow-pulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

.case-deck-dots { position: absolute; left: 50%; bottom: -34px; transform: translateX(-50%); display: flex; gap: 8px; }
.cd-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-border); animation: cd-dot-pulse 12s ease-in-out infinite; }
.cd-dot.dd-1 { animation-delay: 0s; }
.cd-dot.dd-2 { animation-delay: -3s; }
.cd-dot.dd-3 { animation-delay: -6s; }
.cd-dot.dd-4 { animation-delay: -9s; }
@keyframes cd-dot-pulse {
  0%, 18% { background: var(--c-orange); width: 20px; }
  25%, 100% { background: var(--c-border); width: 6px; }
}

/* ---------- Individual project-case hero (base) ---------- */
.project-hero { position: relative; padding-top: 168px; padding-bottom: 72px; overflow: hidden; }
.project-hero .container { position: relative; z-index: 2; }
.project-hero-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
@media (min-width: 960px) { .project-hero-grid { grid-template-columns: 1.45fr 0.55fr; gap: 48px; } }
.project-hero h1 { font-size: clamp(38px, 5.5vw, 62px); }
.project-hero .lead { color: var(--c-gray-300); max-width: 56ch; margin-top: 20px; font-size: clamp(18px, 1.6vw, 21px); }

.project-fact-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.pf-item {
  flex: 1 1 210px;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(12px);
  width: 100%;
  box-sizing: border-box;
}
.pf-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-teal-soft);
  margin-bottom: 8px;
}
.pf-value {
  display: block;
  font-size: 15.5px;
  color: var(--c-gray-300);
  line-height: 1.5;
}
.pf-value ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pf-value ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--c-white);
  font-weight: 500;
}
.pf-value ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-orange);
  flex-shrink: 0;
}
.pf-item .badge-list {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pf-item .badge-list li {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(0, 168, 156, 0.12);
  border: 1px solid rgba(0, 168, 156, 0.3);
  color: var(--c-teal-soft);
}

.project-hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
  width: 100%;
  margin-left: auto;
}

.project-hero-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  border: 1px solid var(--c-border);
  overflow: hidden;
}

/* Illustration panel — replaces stock photos in RETO / LA SOLUCIÓN sections */
.illustration-panel {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--c-panel-2), var(--c-panel));
  border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  padding: 7%;
}
.illustration-panel svg { width: 100%; height: 100%; overflow: visible; }

/* SEA Project — waves + rising bubbles + bobbing badge */
.sw-scene { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.sw-wave-wrap { position: absolute; left: 0; right: 0; bottom: 0; height: 52%; overflow: hidden; }
.sw-layer { position: absolute; left: 0; bottom: 0; width: 200%; height: 100%; }
.sw-back { animation: sw-scroll 26s linear infinite; }
.sw-front { animation: sw-scroll 15s linear infinite; opacity: .9; }
.sw-bubble { position: absolute; border-radius: 50%; background: var(--c-teal-soft); opacity: 0; animation: sw-rise linear infinite; }
.sw-bubble.b1 { left: 16%; bottom: 14%; width: 8px; height: 8px; animation-duration: 7s; animation-delay: .2s; }
.sw-bubble.b2 { left: 32%; bottom: 8%; width: 5px; height: 5px; background: var(--c-orange-soft); animation-duration: 9s; animation-delay: 2s; }
.sw-bubble.b3 { left: 62%; bottom: 18%; width: 6px; height: 6px; animation-duration: 8s; animation-delay: 1s; }
.sw-bubble.b4 { left: 78%; bottom: 10%; width: 9px; height: 9px; animation-duration: 10s; animation-delay: 3.5s; }
.sw-badge {
  position: absolute; right: 14%; top: 30%;
  width: 62px; height: 62px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--c-teal-soft), var(--c-teal) 52%, var(--c-teal-dark) 100%);
  display: flex; align-items: center; justify-content: center; color: var(--c-white);
  box-shadow: 0 0 60px rgba(0,168,156,.4);
  animation: sw-bob 4.5s ease-in-out infinite;
}
@keyframes sw-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes sw-rise { 0% { transform: translateY(0); opacity: 0; } 12% { opacity: .85; } 88% { opacity: 0; } 100% { transform: translateY(-130px); opacity: 0; } }
@keyframes sw-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Creavalo — shimmering mosaic of material swatches */
.cv-scene { position: absolute; inset: 11%; z-index: 1; display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(4,1fr); gap: 7%; pointer-events: none; }
.cv-tile { border-radius: 7px; background: var(--c-panel-2); animation: cv-pulse 5s ease-in-out infinite; }
.cv-tile:nth-child(3n+1) { background: rgba(0,168,156,.28); }
.cv-tile:nth-child(4n+2) { background: rgba(255,92,53,.24); }
@keyframes cv-pulse { 0%, 100% { transform: scale(.86); opacity: .5; } 50% { transform: scale(1); opacity: 1; } }

/* Redoit by KENDU — modular panels assembling */
.kd-scene { position: absolute; inset: 13%; z-index: 1; pointer-events: none; }
.kd-panel {
  position: absolute; width: 30%; height: 45%;
  top: var(--top); left: var(--left);
  border-radius: 10px;
  background: linear-gradient(160deg, var(--c-panel-2), var(--c-panel));
  border: 1px solid var(--c-border);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
  animation: kd-assemble 6s cubic-bezier(.65,0,.35,1) infinite;
  animation-delay: var(--delay);
}
@keyframes kd-assemble {
  0%        { transform: translate(var(--fx), var(--fy)) scale(.7); opacity: 0; }
  25%, 70%  { transform: translate(0,0) scale(1); opacity: 1; }
  100%      { transform: translate(var(--fx), var(--fy)) scale(.7); opacity: 0; }
}

/* Eldacorcho — concentric ripples + drifting grains */
.ec-scene { position: absolute; inset: 8%; z-index: 1; pointer-events: none; }
.ec-ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(255,92,53,.4); animation: ec-ripple 4.5s ease-out infinite; }
.ec-ring.r2 { animation-delay: 1.1s; border-color: rgba(255,92,53,.3); }
.ec-ring.r3 { animation-delay: 2.2s; border-color: rgba(255,92,53,.22); }
.ec-ring.r4 { animation-delay: 3.3s; border-color: rgba(255,92,53,.16); }
.ec-core {
  position: absolute; inset: 36%; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--c-orange-soft), var(--c-orange) 55%, var(--c-orange-dark) 100%);
  box-shadow: 0 0 60px rgba(255,92,53,.4);
  display: flex; align-items: center; justify-content: center; color: var(--c-white);
  animation: ec-core-pulse 4.5s ease-in-out infinite;
}
.ec-grain { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--c-orange-soft); opacity: .7; animation: ec-drift linear infinite; }
@keyframes ec-ripple { 0% { transform: scale(.3); opacity: 0; } 15% { opacity: .9; } 100% { transform: scale(1); opacity: 0; } }
@keyframes ec-core-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes ec-drift { 0% { transform: translate(0,0); opacity: .2; } 50% { opacity: .8; } 100% { transform: translate(14px,-130px); opacity: 0; } }

/* Sobre nosotros — retrato de Alfonso en órbita con sus credenciales */
.ab-orbit { position: absolute; inset: 0; animation: jv-spin 34s linear infinite; }
.ab-badge { position: absolute; width: 94px; }
.ab-badge-1 { top: 0%; left: 50%; transform: translate(-50%, -50%); }
.ab-badge-2 { top: 80%; left: 8%; transform: translate(-50%, -50%); }
.ab-badge-3 { top: 80%; left: 92%; transform: translate(-50%, -50%); }
.ab-badge-inner {
  animation: jv-spin-rev 34s linear infinite;
  background: var(--c-panel);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 10px 6px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
}
.ab-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--c-orange); }
.ab-label { display: block; font-size: 10px; color: var(--c-gray-400); margin-top: 2px; line-height: 1.25; }
.ab-core {
  position: absolute; inset: 25%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--c-orange);
  box-shadow: 0 0 60px rgba(255,92,53,.35);
  animation: sw-bob 5s ease-in-out infinite;
}
.ab-core img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (prefers-reduced-motion: reduce) {
  .impact-hero-bg::before, .impact-hero-bg::after,
  .jv-ring-b, .jv-orbit, .jv-node-inner, .jv-core, .jv-particle,
  .cd-glow, .case-chip, .cd-dot,
  .sw-back, .sw-front, .sw-bubble, .sw-badge,
  .cv-tile, .kd-panel, .ec-ring, .ec-core, .ec-grain,
  .ab-orbit, .ab-badge-inner, .ab-core { animation: none; }
}

/* ---------- Process timeline (servicios.html) ---------- */
.process-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.process-nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px 10px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--c-border);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c-gray-300);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.process-nav a:hover { border-color: var(--c-teal); color: var(--c-white); background: rgba(0,168,156,.08); }
.process-nav .pn-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--c-panel-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--c-orange);
  flex-shrink: 0;
}

.timeline { position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-orange) 0%, var(--c-teal) 50%, var(--c-orange) 100%);
  opacity: .3;
}
.timeline-progress {
  position: absolute;
  left: 27px;
  top: 10px;
  width: 2px;
  height: 0%;
  background: linear-gradient(180deg, var(--c-orange) 0%, var(--c-teal) 100%);
  box-shadow: 0 0 12px rgba(0,168,156,.6);
  transition: height .1s linear;
}
.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding-bottom: 72px;
  scroll-margin-top: 120px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-marker {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-black-soft);
  border: 1.5px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--c-orange);
  flex-shrink: 0;
}
.timeline-total {
  position: absolute;
  top: 62px;
  left: 0;
  font-size: 11px;
  color: var(--c-gray-500);
  width: 56px;
  text-align: center;
}
.timeline-body { padding-top: 6px; }
.timeline-tag {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--c-teal-soft);
  text-transform: uppercase;
}
.timeline-step h3 { color: var(--c-white); font-size: clamp(21px, 2.6vw, 27px); margin-top: 8px; }
.timeline-step > .timeline-body > p.timeline-desc { color: var(--c-gray-400); margin-top: 12px; max-width: 62ch; font-size: 15.5px; }

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 26px;
}
@media (min-width: 900px) {
  .timeline-grid { grid-template-columns: 1.2fr 1fr; gap: 40px; }
}

.focus-list { display: flex; flex-direction: column; gap: 12px; }
.focus-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  color: var(--c-gray-300);
  line-height: 1.4;
}
.focus-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--c-teal); }

.goal-card {
  background: linear-gradient(160deg, var(--c-panel-2), var(--c-black-soft));
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: start;
  transition: border-color .3s ease;
}
.goal-card:hover { border-color: rgba(255,92,53,.4); }
.goal-card .gc-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,92,53,.12);
  color: var(--c-orange);
  display: flex; align-items: center; justify-content: center;
}
.goal-card .gc-label { font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--c-gray-500); }
.goal-card p { color: var(--c-gray-300); font-size: 16.5px; line-height: 1.55; }
.goal-card p strong { color: var(--c-orange-soft); font-weight: 600; }

/* ---------- Page-hero CTA row ---------- */
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ---------- Section bridge (visual connector between sections) ---------- */
.section-bridge { display: flex; justify-content: center; margin-top: 40px; }
.section-bridge .sb-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-teal);
  animation: bridge-bounce 2.2s ease-in-out infinite;
}
@keyframes bridge-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .section-bridge .sb-arrow { animation: none; }
}

/* ---------- Methodology (servicios.html) ---------- */
.methodology-figure {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(16px, 3vw, 28px);
}
.methodology-figure img { width: 100%; height: auto; border-radius: 12px; }

.methodology-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 40px auto 0; }
.faq-item {
  background: var(--c-white);
  border: 1px solid #e9e8e5;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--c-ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--c-teal);
  color: var(--c-teal);
  flex-shrink: 0;
  position: relative;
  transition: transform .3s var(--ease), background .25s ease;
}
.faq-item .faq-icon::before,
.faq-item .faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item .faq-icon::before { width: 12px; height: 1.5px; }
.faq-item .faq-icon::after { width: 1.5px; height: 12px; }
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--c-teal); color: var(--c-white); }
.faq-item .faq-body { padding: 0 24px 24px; color: var(--c-gray-600); font-size: 15px; line-height: 1.65; max-width: 68ch; }

/* Breadcrumb */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--c-gray-500); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--c-teal-soft); }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 600; color: var(--c-gray-300); }
.field input, .field textarea, .field select {
  background: var(--c-panel);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--c-white);
  font-size: 15px;
  transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--c-teal);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 12.5px; color: var(--c-gray-500); margin-top: 6px; }

.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .ci-icon {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--c-teal);
  color: var(--c-teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h4 { color: var(--c-white); font-size: 15px; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--c-gray-400); font-size: 15px; }
.contact-info-item a:hover { color: var(--c-teal-soft); }

/* Legal pages */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: 22px; margin-top: 40px; margin-bottom: 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--c-gray-600); font-size: 15.5px; margin-bottom: 14px; }
.prose ul { padding-left: 22px; list-style: disc; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--c-orange); color: #fff; padding: 12px 18px; border-radius: 8px;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Trust bar (recurring "Confían en nosotros..." divider) ---------- */
.trust-bar {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  background: linear-gradient(90deg, #242426, #3e3e41);
  color: var(--c-gray-100);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-bar::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -6%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,92,53,.4), transparent 70%);
  filter: blur(26px);
  pointer-events: none;
}
.trust-bar span {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-bar .logo-marquee {
  margin-top: 0;
  flex: 1;
  min-width: 0;
  width: 100%;
}
.trust-bar .logo-track img {
  height: 32px;
  filter: grayscale(1) invert(1) opacity(0.4);
}
.trust-bar .logo-track img:hover {
  filter: grayscale(0) invert(1) opacity(0.85);
}
@media (min-width: 900px) {
  .trust-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 12px 28px;
  }
}
.bg-white .trust-bar,
.bg-off .trust-bar { background: linear-gradient(90deg, #1c1c1e, #35353a); color: var(--c-white); }

/* ---------- CTA final (shared "Demos forma a tu futuro circular" block) ---------- */
.cta-banner.cta-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1b1b22, #0a0a0c);
  border: 1px solid var(--c-border);
  padding: clamp(36px, 5vw, 60px);
  text-align: left;
  margin-top: clamp(48px, 6vw, 84px);
}
.cta-banner.cta-final::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 92, 53, 0.18), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.cta-banner.cta-final::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 168, 156, 0.12), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}
.cta-person {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-border);
  padding: 24px;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.cta-person img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--c-orange);
  object-fit: cover;
  flex-shrink: 0;
}
.cta-person p {
  margin: 0;
  color: var(--c-gray-300);
  font-size: 16px;
  line-height: 1.6;
}
.cta-banner.cta-final .btn {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .cta-banner.cta-final {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto;
    gap: 24px 56px;
    align-items: center;
    text-align: left;
  }
  .cta-banner.cta-final h2 {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.2;
    position: relative;
    z-index: 1;
  }
  .cta-banner.cta-final .cta-person {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
  }
  .cta-banner.cta-final .btn {
    grid-column: 1;
    grid-row: 2;
    margin-top: 12px;
    align-self: start;
    justify-self: start;
  }
}

/* ---------- Draggable Projects Horizontal Slider ---------- */
.projects-slider-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  cursor: grab;
  user-select: none;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.projects-slider-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.projects-slider-container.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.projects-slider-container .case-card {
  flex: 0 0 280px;
  width: 280px;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .projects-slider-container .case-card {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
  }
}
@media (min-width: 960px) {
  .projects-slider-container .case-card {
    flex: 0 0 calc(33.333% - 16px);
    width: calc(33.333% - 16px);
  }
}
@media (min-width: 1280px) {
  .projects-slider-container {
    cursor: default;
  }
  .projects-slider-container.is-dragging {
    cursor: default;
  }
  .projects-slider-container .case-card {
    flex: 0 0 calc(25% - 18px);
    width: calc(25% - 18px);
    cursor: pointer;
  }
}
