/* ====================================================
   PIXMA PRESS (pixma.press) — European Digital Media & Coverage Association
   Design: Mint/Black modern agency (contained card layout)
   Nota: fuentes se cargan vía <link> en HTML (no @import) para evitar
   bloqueo de renderizado. Este CSS es render-blocking único.
   ==================================================== */

/* ── CSS RESET & BASE ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  /* Brand palette */
  --mint:        #6BFFD8;
  --mint-light:  #A8FFE8;
  --mint-dark:   #00D4A4;
  --black:       #0A0A0A;
  --black-soft:  #141414;
  --black-card:  #1A1A1A;
  --white:       #FFFFFF;
  --gray-100:    #F5F5F5;
  --gray-200:    #E8E8E8;
  --gray-400:    #999999;
  --gray-600:    #555555;
  --accent:      #FF4757;
  --gold:        #F5C518;

  /* Background */
  --bg-outer:    #50BFA1;   /* Rich mint/seafoam outer canvas matching reference */
  --bg-main:     #D2F6EC;   /* Soft pastel mint card background */
  --bg-dark:     #0A0A0A;
  --text-main:   #0A0A0A;
  --text-muted:  #4A4A4A;

  /* Typography — Plus Jakarta Sans: modern, clean, normal-width geometric sans */
  --font-head:   'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-full:999px;

  /* Transitions */
  --t-fast:  0.18s ease;
  --t-med:   0.32s ease;
  --t-slow:  0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  font-family: var(--font-body);
  background: var(--bg-outer);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── PAGE WRAPPER — aesthetic rounded card like reference ── */
.page-wrap {
  background: var(--bg-main);
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  border-radius: 42px;
  box-shadow: 0 25px 80px rgba(12, 54, 42, 0.22);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Dark sections inside page-wrap keep their backgrounds */
.page-wrap > section[style*="background:var(--black)"],
.page-wrap > section#services,
.page-wrap > .gallery-preview,
.page-wrap > .ticker-wrap,
.page-wrap > .stats-band,
.page-wrap > footer {
  /* Inherit background color */
}

/* ── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-outer); }
::-webkit-scrollbar-thumb { background: var(--black); border-radius: 3px; }

/* ── UTILITY ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--r-full);
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--r-full);
  padding: 0.85rem 2rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.btn-mint {
  background: var(--mint);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(107,255,216,0.4);
}
.btn-mint:hover {
  transform: translateY(-2px);
  background: var(--mint-light);
  box-shadow: 0 8px 32px rgba(107,255,216,0.6);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  /* Sticky within the page-wrap — doesn't span full viewport width */
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--t-med), backdrop-filter var(--t-med);
  /* Initial: transparent on mint green */
  background: transparent;
}

.navbar.scrolled {
  background: rgba(200, 255, 240, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--black);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
}

/* Pill nav container */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--black);
  border-radius: var(--r-full);
  padding: 0.4rem 0.5rem;
}

.nav-pill a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.25;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 0.45rem 1rem;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-pill a:hover,
.nav-pill a.active {
  color: var(--black);
  background: var(--mint);
}

/* Access CTA in nav */
.nav-access-btn {
  background: var(--mint);
  color: var(--black) !important;
  font-weight: 700 !important;
  border-radius: var(--r-full);
  padding: 0.45rem 1.1rem !important;
}

/* Centrado vertical + horizontal de todas las píldoras/etiquetas */
.section-label,
.service-tag,
.team-exp-tag,
.tier-tag,
.plan-badge,
.tqc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger-btn {
  display: none;
  background: var(--black);
  border: none;
  border-radius: var(--r-sm);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}

.mobile-drawer.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-drawer a {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  transition: color var(--t-fast);
}

.mobile-drawer a:hover { color: var(--mint); }

.mobile-drawer .close-drawer {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t-fast), color var(--t-fast);
}

.mobile-drawer .close-drawer:hover { border-color: var(--mint); color: var(--mint); }

/* ── HERO SECTION ──────────────────────────────────── */
/* ── HERO SECTION (MATCHING REFERENCE UI) ───────────── */
.hero {
  padding: 2rem 2.2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--bg-main);
}

/* Left pill: reviews with 3 customer avatars */
.hero-review-pill {
  position: absolute;
  top: 1.8rem;
  left: 2.2rem;
  background: var(--black);
  color: var(--white);
  border-radius: var(--r-full);
  padding: 0.35rem 0.9rem 0.35rem 0.45rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  font-weight: 600;
  z-index: 5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  text-decoration: none;
  animation: fadeInDown 0.6s var(--t-slow) both;
}
.review-avatars {
  display: flex;
  align-items: center;
}
.review-avatars img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--black);
  margin-left: -7px;
  object-fit: cover;
}
.review-avatars img:first-child {
  margin-left: 0;
}

/* Right: 3D wireframe rings illustration */
.hero-rings-wireframe {
  position: absolute;
  top: 1.6rem;
  right: 2.2rem;
  width: 105px;
  height: 105px;
  z-index: 2;
  pointer-events: none;
  animation: floatOrbit 7s ease-in-out infinite alternate;
}
@keyframes floatOrbit {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(6deg); }
}

/* Hero Typography */
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.3rem, 5.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #0E0E0E;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.7s var(--t-slow) 0.1s both;
}
.hero-title-sub {
  display: block;
  font-weight: 800;
}
.hero-sub {
  font-size: clamp(0.85rem, 1.5vw, 0.98rem);
  color: #2D3748;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.7s var(--t-slow) 0.2s both;
}

/* Button */
.btn-get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  border-radius: var(--r-full);
  padding: 0.8rem 2.2rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.7s var(--t-slow) 0.3s both;
}
.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0,0,0,0.3);
  background: #1F1F1F;
}

/* ── 3-COLUMN HERO SHOWCASE (REFERENCE EXACT COMPOSITION) ── */
.hero-showcase {
  display: grid;
  grid-template-columns: 260px 1fr 280px;
  align-items: end;
  gap: 0.8rem;
  width: 100%;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Left Card */
.showcase-card-left {
  background: var(--black);
  color: var(--white);
  border-radius: 32px 32px 0 0;
  padding: 2.2rem 1.6rem 1.8rem;
  text-align: left;
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.soundwave-svg {
  position: absolute;
  top: -55px;
  left: 10px;
  width: 135px;
  height: 55px;
  pointer-events: none;
}
.boost-circle-badge {
  position: absolute;
  top: -26px;
  right: 14px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--black);
  border: 3px solid var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.boost-badge-svg {
  width: 100%;
  height: 100%;
  animation: rotateSlow 14s linear infinite;
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.boost-center-spark {
  position: absolute;
  font-size: 0.85rem;
  color: var(--mint);
}
.showcase-card-left h3 {
  font-family: var(--font-head);
  font-size: 1.38rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
}

/* Center Person */
.showcase-center {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}
.showcase-person {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.12));
}

/* Floating social badges around center person */
.social-bubble {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
  z-index: 4;
  animation: floatSocial 4s ease-in-out infinite alternate;
}
.social-yt {
  top: 15%;
  left: 8%;
  background: #FF0000;
}
.social-tw {
  top: 22%;
  right: 10%;
  background: #1DA1F2;
  animation-delay: 0.8s;
}
.social-ig {
  bottom: 28%;
  right: 6%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  animation-delay: 1.6s;
}
.social-fb {
  bottom: 24%;
  left: 5%;
  background: #1877F2;
  animation-delay: 1.2s;
}
@keyframes floatSocial {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-7px); }
}

/* Right Card */
.showcase-card-right {
  background: var(--black);
  color: var(--white);
  border-radius: 32px 32px 0 0;
  padding: 2.2rem 1.6rem 1.8rem;
  text-align: left;
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cross-badge-svg {
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
  width: 24px;
  height: 24px;
  color: var(--mint);
}
.showcase-card-right-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
  margin-bottom: 1.3rem;
  margin-top: 1.2rem;
}
.showcase-stat-item {
  margin-bottom: 0.9rem;
}
.showcase-stat-item:last-child {
  margin-bottom: 0;
}
.stat-val-text {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.stat-label-text {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.35rem;
}
.stat-bar-track {
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  background: var(--mint);
  border-radius: 3px;
}

/* ── TICKER / MARQUEE ────────────────────────────────── */
.ticker-wrap {
  background: var(--black);
  color: var(--mint);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 2rem;
  animation: ticker 25s linear infinite;
}

.ticker-track span {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 1rem;
}

.ticker-track .dot {
  color: rgba(107,255,216,0.4);
  font-size: 1.2rem;
  vertical-align: middle;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION SHARED ──────────────────────────────────── */
.section {
  padding: 6rem 0;
}

.section-head {
  margin-bottom: 3.5rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--black);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-top: 0.75rem;
  line-height: 1.7;
}

/* ── SERVICES SECTION ────────────────────────────────── */
#services {
  background: var(--black);
  color: var(--white);
  padding: 6rem 0;
}

#services .section-label { color: var(--mint); background: rgba(107,255,216,0.1); border-color: rgba(107,255,216,0.2); }
#services .section-title { color: var(--white); }
#services .section-desc { color: rgba(255,255,255,0.55); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: 3rem;
}

.service-card {
  background: var(--black-card);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--t-med);
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}

.service-card:hover { background: #1e1e1e; }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(107,255,216,0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  transition: background var(--t-fast), transform var(--t-fast);
}

.service-card:hover .service-icon {
  background: rgba(107,255,216,0.2);
  transform: scale(1.1);
}

.service-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
}

.service-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.service-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.2rem;
}

.service-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--mint);
  background: rgba(107,255,216,0.08);
  border: 1px solid rgba(107,255,216,0.15);
  border-radius: var(--r-full);
  padding: 0.2rem 0.65rem;
}

/* ── WHY US / STATS BAND ─────────────────────────────── */
.stats-band {
  background: var(--mint);
  padding: 4rem 0;
  overflow: hidden;
}

.stats-band-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(0,0,0,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

/* ── TEAM SECTION ────────────────────────────────────── */
#team {
  padding: 6rem 0;
  background: var(--bg-main);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.team-photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #e0e0e0;
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.team-card:hover .team-photo-wrap img { transform: scale(1.06); }

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--t-med);
}

.team-card:hover .team-photo-overlay { opacity: 1; }

.team-social-links {
  display: flex;
  gap: 0.5rem;
}

.team-social-links a {
  width: 32px;
  height: 32px;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 0.75rem;
  text-decoration: none;
  transition: transform var(--t-fast), background var(--t-fast);
}

.team-social-links a:hover { transform: scale(1.15); background: var(--white); }

.team-info {
  padding: 1.4rem;
}

.team-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.team-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.8rem;
}

.team-exp-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--black);
  background: var(--mint);
  border-radius: var(--r-full);
  padding: 0.15rem 0.55rem;
}

/* ── GALLERY PREVIEW ─────────────────────────────────── */
.gallery-preview {
  padding: 6rem 0;
  background: var(--black);
}

.gallery-preview .section-label { color: var(--mint); background: rgba(107,255,216,0.1); border-color: rgba(107,255,216,0.2); }
.gallery-preview .section-title { color: var(--white); }
.gallery-preview .section-desc { color: rgba(255,255,255,0.55); }

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-top: 2.5rem;
}

.preview-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
}

.preview-item:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.preview-item:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.preview-item:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.preview-item:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform var(--t-slow), filter var(--t-med);
  filter: brightness(0.8);
}

.preview-item:hover img { transform: scale(1.04); filter: brightness(0.65); }

.preview-lock {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity var(--t-med);
  backdrop-filter: blur(4px);
}

.preview-item:hover .preview-lock { opacity: 1; }

.preview-lock-icon {
  font-size: 2rem;
  color: var(--mint);
}

.preview-lock-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gallery-cta-strip {
  margin-top: 3rem;
  padding: 2.5rem;
  background: rgba(107,255,216,0.07);
  border: 1px solid rgba(107,255,216,0.15);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.gallery-cta-text h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.gallery-cta-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}

/* ── LOGOS BAND ──────────────────────────────────────── */
.logos-band {
  padding: 3rem 0;
  background: var(--bg-main);
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.logos-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.8rem;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.logo-item {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(0,0,0,0.18);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  transition: color var(--t-fast);
  user-select: none;
}

.logo-item:hover { color: rgba(0,0,0,0.45); }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials {
  padding: 6rem 0;
  background: var(--bg-main);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.85rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--black);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--black);
}

.testimonial-org {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.1rem;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer-col ul li a:hover { color: var(--mint); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.footer-socials a:hover {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--black);
}

/* ── ABOUT / INNER PAGE HERO ────────────────────────────── */
.page-hero {
  /* Navbar is sticky so much less top padding needed */
  padding: 4rem 0 4rem;
  background: var(--bg-main);
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--black);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── ACCESS / PAYWALL PAGE ────────────────────────────── */
.access-page {
  /* Stack vertically within the constrained 1060px card — better than side-by-side */
  min-height: auto;
  display: flex;
  align-items: stretch;
  flex-direction: row;
}

.access-left {
  flex: 1;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}

.access-left::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107,255,216,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.access-right {
  flex: 1;
  background: var(--bg-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 4rem;
}

.access-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.access-form-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.access-form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.06);
}

.form-input::placeholder { color: var(--gray-400); }

.form-divider {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin: 1.2rem 0;
  position: relative;
}

.form-divider::before, .form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--gray-200);
}

.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

.form-footer-text {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.form-footer-text a {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}
.form-footer-text a:hover { text-decoration: underline; }

.access-features {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 380px;
}

.access-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.access-feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(107,255,216,0.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.access-feature-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.access-feature-text p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* Plans */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.plan-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-med), transform var(--t-med);
}

.plan-card.featured {
  border-color: var(--mint);
  background: linear-gradient(135deg, #1a1a1a 0%, #0f1f1a 100%);
}

.plan-card:hover { transform: translateY(-4px); }

.plan-badge {
  display: inline-block;
  background: var(--mint);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--r-full);
  padding: 0.2rem 0.7rem;
  margin-bottom: 1.2rem;
}

.plan-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.plan-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}

.tier-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mint);
  background: rgba(107, 255, 216, 0.12);
  border: 1px solid rgba(107, 255, 216, 0.25);
  border-radius: var(--r-full);
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.8rem;
}

.tier-status {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

/* Security honeypot trap */
.hp-field {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

.plan-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.plan-features li::before {
  content: '✓';
  color: var(--mint);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── PAGE TRANSITIONS ────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.6s var(--t-slow) both;
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--t-slow), transform 0.7s var(--t-slow);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */

/* ≤1060px: the page-wrap card becomes full-width (normal mobile) */
@media (max-width: 1060px) {
  body { padding: 0; }
  .page-wrap { border-radius: 0; box-shadow: none; }
}

/* ≤1100px: la píldora de opiniones pasa a flujo centrado para no tapar el título */
@media (max-width: 1100px) {
  .hero-review-pill { position: static; margin: 0 auto 1.2rem; }
  .hero-rings-wireframe { display: none; }
}

/* Tablet: reflow grids */
@media (max-width: 900px) {
  .hero-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .showcase-card-left, .showcase-card-right {
    border-radius: 24px;
    min-height: auto;
  }
  .hero-rings-wireframe {
    display: none;
  }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
  .preview-item:first-child { grid-column: 1; grid-row: 1; }
  .preview-item:nth-child(2) { grid-column: 2; grid-row: 1; }
  .preview-item:nth-child(3) { grid-column: 1; grid-row: 2; }
  .preview-item:nth-child(4) { grid-column: 2; grid-row: 2; }
  /* Access page stacks on tablet */
  .access-page { flex-direction: column; }
  .access-left, .access-right { padding: 4rem 2rem; }
}

/* Mobile */
@media (max-width: 768px) {
  .container { padding: 0 1.2rem; }
  .nav-pill { display: none; }
  .hamburger-btn { display: flex; }
  .mobile-drawer { display: flex; }
  .hero { padding: 2.5rem 1.2rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: 100%; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .preview-item:first-child,
  .preview-item:nth-child(2),
  .preview-item:nth-child(3),
  .preview-item:nth-child(4) { grid-column: 1; grid-row: auto; }
  .gallery-cta-strip { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .section { padding: 4rem 0; }
  .logos-row { gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: -0.015em; }
  .plans-grid { grid-template-columns: 1fr; }
  .access-form-card { padding: 2rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ====================================================
   PIXMA.PRESS — Hardening responsive + page modules
   (estilos migrados desde <style> inline para permitir
   CSP script-src 'self' sin 'unsafe-inline' en scripts)
   ==================================================== */
img { max-width: 100%; }
img, svg { overflow-wrap: anywhere; }
.page-wrap { overflow: clip; isolation: isolate; min-width: 0; }
main, section, aside, .container { min-width: 0; }
h1, h2, h3, p, li { overflow-wrap: break-word; }

/* Skip-link accesible */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--black); color: var(--mint); padding: 0.7rem 1.2rem; border-radius: 0 0 12px 0; z-index: 2000; font-weight: 700; font-size: 0.85rem; }
.skip-link:focus { left: 12px; top: 12px; }

/* Foco visible (teclado) */
:focus-visible { outline: 3px solid var(--mint-dark); outline-offset: 2px; border-radius: 6px; }

/* Respeta movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
}

/* Safe-area iOS + tap targets */
body { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
button, .btn, .nav-pill a, .faq-q, .tab-btn { min-height: 44px; }
.tab-btn, .faq-q { touch-action: manipulation; }

/* Imágenes sin CLS */
.showcase-person, .team-photo-wrap img, .preview-item img, .pgal-item img, .review-avatars img { aspect-ratio: auto; }
.team-photo-wrap img { background: #e0e0e0; }

/* ── Access page modules (antes inline) ── */
.access-title { font-family: var(--font-head); font-size: clamp(1.8rem,4vw,2.7rem); font-weight: 800; color: var(--white); line-height: 1.2; letter-spacing: -0.015em; margin-bottom: 1rem; }
.access-lead { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 1.5rem; }
.access-narrow { max-width: 420px; width: 100%; }
.gallery-strip { display: flex; gap: 0.75rem; margin: 2.5rem 0; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-bottom: 0.5rem; }
.gallery-strip::-webkit-scrollbar { display: none; }
.strip-thumb { flex-shrink: 0; width: 120px; height: 90px; border-radius: var(--r-md); overflow: hidden; border: 2px solid rgba(107,255,216,0.15); position: relative; cursor: pointer; transition: border-color var(--t-fast), transform var(--t-fast); }
.strip-thumb:hover { border-color: var(--mint); transform: scale(1.04); }
.strip-thumb img { width: 100%; height: 100%; object-fit: cover; }
.count-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(107,255,216,0.1); border: 1px solid rgba(107,255,216,0.2); border-radius: var(--r-full); padding: 0.45rem 1rem; font-size: 0.78rem; font-weight: 700; color: var(--mint); margin-bottom: 1.5rem; }
.tab-group { display: flex; border-bottom: 2px solid var(--gray-200); margin-bottom: 1.8rem; }
.tab-btn { flex: 1; padding: 0.8rem; background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; color: var(--gray-400); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: color var(--t-fast), border-color var(--t-fast); }
.tab-btn.active { color: var(--black); border-bottom-color: var(--black); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.checkbox-group { display: flex; align-items: flex-start; gap: 0.7rem; margin-top: 1rem; }
.checkbox-group input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--black); flex-shrink: 0; margin-top: 1px; cursor: pointer; }
.checkbox-group label { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; cursor: pointer; }
.checkbox-group label a { color: var(--black); font-weight: 600; }
.private-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.6rem; margin-top: 2rem; }
.pgal-item { aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; position: relative; cursor: pointer; background: #222; }
.pgal-item img { width: 100%; height: 100%; object-fit: cover; filter: blur(8px) brightness(0.5); transform: scale(1.06); transition: filter var(--t-med); }
.pgal-item:hover img { filter: blur(4px) brightness(0.4); }
.pgal-item .pgal-lock { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.3rem; }
.pgal-item .pgal-lock-icon { font-size: 1.5rem; color: var(--mint); }
.pgal-item .pgal-lock-num { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }
.tier-quick-card { background: var(--white); border-radius: var(--r-lg); padding: 1.2rem 1.5rem; border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: space-between; gap: 1rem; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.tier-quick-card.featured { background: var(--black); border-color: var(--mint); }
.tier-quick-card.featured .tqc-name { color: var(--white); }
.tier-quick-card.featured .tqc-desc { color: rgba(255,255,255,0.5); }
.tier-quick-card.featured .tqc-badge { color: var(--mint); }
.tqc-name { font-weight: 700; font-size: 0.88rem; color: var(--black); }
.tqc-desc { font-size: 0.75rem; color: var(--text-muted); }
.tqc-badge { font-family: var(--font-head); font-weight: 800; font-size: 0.75rem; color: var(--black); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.tier-list { display: flex; flex-direction: column; gap: 0.75rem; }
.tier-section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 1rem; }
.tier-more { text-align: center; font-size: 0.8rem; color: var(--text-muted); text-decoration: none; margin-top: 0.3rem; }
.forgot-wrap { text-align: right; margin-top: -0.4rem; margin-bottom: 1rem; }
.forgot-link { font-size: 0.78rem; color: var(--text-muted); text-decoration: none; }
.btn-block { width: 100%; justify-content: center; }
.form-msg { text-align: center; font-size: 0.82rem; font-weight: 600; margin-top: 0.8rem; display: none; }
.access-features-wrap { margin-top: 2rem; }

/* ── Services modules (antes inline) ── */
.process-steps { display: flex; flex-direction: column; margin-top: 3rem; }
.process-step { display: grid; grid-template-columns: 60px 1fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); align-items: start; }
.process-step:last-child { border-bottom: none; }
.step-num { width: 52px; height: 52px; border-radius: 50%; border: 2px solid rgba(107,255,216,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--mint); flex-shrink: 0; }
.step-content h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.step-content p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.faq-q { width: 100%; padding: 1.4rem 1.8rem; text-align: left; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; color: var(--black); gap: 1rem; }
.faq-icon { font-size: 1.2rem; transition: transform var(--t-fast); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding: 0 1.8rem; }
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 1.4rem; }
.faq-a p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }
.section-pad-dark { padding: 6rem 0; background: var(--black); }
.section-pad-main { padding: 4rem 0 6rem; background: var(--bg-main); }
.section-pad-tiers { padding: 6rem 0; background: var(--black-soft); }
.faq-narrow { max-width: 760px; }
.text-center { text-align: center; }
.mt-3rem { margin-top: 3rem; }

/* ── Team modules (antes inline) ── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.value-card { background: var(--white); border-radius: var(--r-xl); padding: 2rem; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: transform var(--t-med), box-shadow var(--t-med); }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.value-emoji { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.value-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem; }
.value-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }
.join-banner { background: var(--black); border-radius: var(--r-xl); padding: 4rem 3rem; text-align: center; position: relative; overflow: hidden; margin-top: 4rem; }
.join-banner::before { content: ""; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; background: radial-gradient(circle,rgba(107,255,216,0.15) 0%,transparent 70%); pointer-events: none; }
.join-banner h2 { font-family: var(--font-head); font-size: clamp(1.4rem,3.5vw,2rem); font-weight: 800; color: var(--white); margin-bottom: 0.75rem; }
.join-banner p { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 2rem; max-width: 460px; margin-left: auto; margin-right: auto; }
.assoc-loc { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.team-name-lg { font-size: 1.15rem; }

/* Hero center image: evita CLS y desbordes */
.showcase-person { aspect-ratio: 4 / 5; object-fit: contain; }

/* Tablas / pre futuros */
table { width: 100%; border-collapse: collapse; }
pre, code { overflow-x: auto; max-width: 100%; }

/* ≤900px: apilados (refuerzo) */
@media (max-width: 900px) {
  .access-left, .access-right { padding-left: 2rem; padding-right: 2rem; }
  .process-step { grid-template-columns: 48px 1fr; gap: 1.2rem; }
  .join-banner { padding: 3rem 1.5rem; }
}
/* ≤480px: ultra-compacto */
@media (max-width: 380px) {
  .container { padding: 0 1rem; }
  .hero { padding-left: 1rem; padding-right: 1rem; }
  .private-gallery { grid-template-columns: repeat(2,1fr); }
  .tier-quick-card { flex-direction: column; align-items: flex-start; }
  .process-step { grid-template-columns: 1fr; }
  .step-num { width: 44px; height: 44px; }
}

/* ====================================================
   BLOG PIXMA PRESS: índice y artículos
   ==================================================== */
.breadcrumb { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--black); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--black); font-weight: 600; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.blog-card { background: var(--white); border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: transform var(--t-med), box-shadow var(--t-med); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: #e0e0e0; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.blog-card-kicker { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mint-dark); }
.blog-card-title { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; line-height: 1.35; color: var(--black); }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { text-decoration: underline; }
.blog-card-excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.blog-card-meta { margin-top: auto; font-size: 0.75rem; color: var(--gray-400); }
.article-hero-img { border-radius: var(--r-xl); overflow: hidden; margin: 2rem 0; background: #e0e0e0; }
.article-hero-img img { width: 100%; height: auto; display: block; }
.article-meta { display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; font-size: 0.82rem; color: var(--text-muted); margin: 1rem 0 0; }
.article-standfirst { font-size: 1.08rem; line-height: 1.7; color: var(--text-main); font-weight: 500; margin-top: 1.2rem; }
.article-body { font-size: 0.95rem; line-height: 1.8; color: #222; }
.article-body h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.01em; color: var(--black); margin: 2.6rem 0 1rem; line-height: 1.3; }
.article-body h3 { font-family: var(--font-head); font-size: 1.12rem; font-weight: 700; color: var(--black); margin: 1.8rem 0 0.7rem; }
.article-body p { margin-bottom: 1.1rem; }
.article-body ul, .article-body ol { margin: 0 0 1.2rem 1.3rem; }
.article-body li { margin-bottom: 0.55rem; }
.article-body li::marker { font-weight: 700; }
.article-body a { color: var(--black); font-weight: 600; }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 2rem; font-size: 0.85rem; background: var(--white); border-radius: var(--r-md); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.article-body th, .article-body td { text-align: left; padding: 0.75rem 1rem; border-bottom: 1px solid var(--gray-200); vertical-align: top; }
.article-body th { background: var(--black); color: var(--white); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.article-body tr:last-child td { border-bottom: none; }
.article-toc { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg); padding: 1.4rem 1.6rem; margin: 2rem 0; }
.article-toc p { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.7rem; color: var(--black); }
.article-toc ol { margin: 0 0 0 1.2rem; font-size: 0.88rem; }
.article-toc li { margin-bottom: 0.35rem; }
.article-toc a { color: var(--text-muted); text-decoration: none; font-weight: 500; }
.article-toc a:hover { color: var(--black); text-decoration: underline; }
.article-faq { margin-top: 1rem; }
.article-faq h3 { font-size: 1rem; margin: 1.4rem 0 0.4rem; }
.article-faq p { font-size: 0.9rem; color: var(--text-muted); }
.article-cta { background: var(--black); border-radius: var(--r-xl); padding: 2.5rem 2rem; margin: 3rem 0; text-align: center; }
.article-cta h2 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 0.6rem; }
.article-cta p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.article-author { display: flex; gap: 1rem; align-items: flex-start; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg); padding: 1.4rem; margin: 2.5rem 0; }
.article-author-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--mint); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; color: var(--black); flex-shrink: 0; }
.article-author p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.article-author strong { color: var(--black); }
.article-related { margin: 3rem 0 1rem; }
.article-related h2 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--black); margin-bottom: 1.2rem; }
.article-related-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1rem; }
.article-related a { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-md); padding: 1rem 1.2rem; font-size: 0.88rem; font-weight: 600; color: var(--black); text-decoration: none; line-height: 1.5; display: block; }
.article-related a:hover { border-color: var(--black); }
@media (max-width: 768px) {
  .article-body h2 { font-size: 1.3rem; }
  .article-body table { display: block; overflow-x: auto; }
  .article-cta { padding: 2rem 1.3rem; }
}

/* ====================================================
   Píldora flotante de cookies (normativa europea)
   ==================================================== */
.cookie-pill {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 950;
  width: min(560px, calc(100vw - 32px));
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(107,255,216,0.25);
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  padding: 1.2rem 1.4rem;
}
.cookie-pill[hidden] { display: none; }
.cookie-text { font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.75); margin-bottom: 0.9rem; }
.cookie-text a { color: var(--mint); font-weight: 700; }
.cookie-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--r-full);
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  border: 1px solid transparent;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}
.cookie-accept { background: var(--mint); color: var(--black); }
.cookie-accept:hover { background: var(--mint-light); }
.cookie-reject, .cookie-config { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.cookie-reject:hover, .cookie-config:hover { border-color: var(--mint); color: var(--mint); }
.cookie-save { background: var(--white); color: var(--black); margin-top: 0.7rem; }
.cookie-prefs { margin-top: 0.9rem; padding-top: 0.9rem; border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-direction: column; gap: 0.5rem; }
.cookie-prefs[hidden] { display: none; }
.cookie-prefs label { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: rgba(255,255,255,0.75); cursor: pointer; }
.cookie-prefs input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--mint); cursor: pointer; }
