/* =============================================================
   ALQUILER LÁSER — Techskin SL
   Archetype: Glassmorphism Modern, adapted to a Stripe/Apple
   light premium palette (white · near-black · silver · electric blue).
   Single stylesheet, sectioned. No build step.
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-x { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --mesh-y { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

:root {
  /* Surfaces */
  --bg:        #ffffff;
  --bg-soft:   #F8F9FB;       /* cool near-white */
  --bg-2:      #EEEEFE;
  --panel:     #ffffff;
  --ink-bg:    #0B0E1F;       /* dark band background (cool near-black) */
  --ink-bg-2:  #141A33;

  /* Ink */
  --ink:       #0a0e17;
  --ink-soft:  #283142;
  --ink-mute:  #6B7280;
  --cream:     #f4f7fc;       /* text on dark, never pure white */
  --cream-mute: rgba(244,247,252,0.66);

  /* Lines */
  --line:      rgba(10,14,23,0.10);
  --line-soft: rgba(10,14,23,0.055);
  --line-dark: rgba(244,247,252,0.14);

  /* Accent — electric blue */
  --accent:      #5B5BF5;
  --accent-deep: #4747D6;
  --accent-2:    #8B8BF8;     /* cyan, for gradients */
  --glow:        rgba(91,91,245,0.22);
  --silver:      #c4ccda;

  /* WhatsApp */
  --wa:        #84E04A;
  --wa-deep:   #5FB52E;

  /* Glass */
  --glass:        rgba(255,255,255,0.55);
  --glass-strong: rgba(255,255,255,0.78);
  --glass-border: rgba(255,255,255,0.7);

  /* Type */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --display: "Sora", "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", ui-monospace, "Cascadia Mono", Menlo, monospace;

  /* Rhythm */
  --gutter: clamp(1.1rem, 5vw, 2.2rem);
  --maxw: 1200px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 12px;

  /* Easing */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 2px 8px rgba(13,20,38,0.05), 0 1px 2px rgba(13,20,38,0.04);
  --shadow-md: 0 18px 40px -18px rgba(13,20,38,0.18), 0 8px 18px -12px rgba(13,20,38,0.12);
  --shadow-lg: 0 40px 90px -30px rgba(13,20,38,0.28), 0 18px 40px -24px rgba(91,91,245,0.18);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display);
  text-wrap: balance;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--ink);
}
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1340px; }
.container-narrow { max-width: 880px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: var(--cream);
  z-index: 9999; border-radius: 10px; font-weight: 600;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.kicker {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: .55rem;
}
.kicker::before {
  content: ""; width: 22px; height: 1px; background: currentColor; opacity: .5;
}
.kicker.is-centered { justify-content: center; }

.eyebrow-dark { color: var(--accent-2); }

.section { padding-block: clamp(3.6rem, 9vw, 7rem); position: relative; }
.section-tight { padding-block: clamp(2.6rem, 6vw, 4.4rem); }

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 52ch;
}

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.muted { color: var(--ink-mute); }
.accent { color: var(--accent); }

.grain-soft { position: relative; }

/* =============================================================
   4. Typography scale
   ============================================================= */
.display-1 { font-size: clamp(2.5rem, 7vw, 5rem); line-height: 0.98; }
.display-2 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); line-height: 1.02; }
.h-sec    { font-size: clamp(1.8rem, 4vw, 3rem); }
.h-card   { font-size: clamp(1.18rem, 2.4vw, 1.5rem); font-family: var(--display); letter-spacing: -0.02em; }
.eyebrow-lg { font-size: clamp(1.1rem,2.4vw,1.4rem); }

em.hl { font-style: normal; color: var(--accent); }
.grad-text {
  background: linear-gradient(100deg, var(--accent) 10%, var(--accent-2) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* =============================================================
   5. Components — buttons
   ============================================================= */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 0.92rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  background: var(--btn-bg); color: var(--btn-fg);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft), background-color .3s var(--ease-out), color .3s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-primary { --btn-bg: var(--accent); --btn-fg: #fff; box-shadow: 0 10px 26px -10px var(--glow); }
.btn-primary:hover { box-shadow: 0 20px 44px -14px var(--glow); }

.btn-ink { --btn-bg: var(--ink); --btn-fg: var(--cream); }

.btn-ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: none; }

.btn-whatsapp { --btn-bg: var(--wa); --btn-fg: #0B0E1F; box-shadow: 0 10px 26px -12px rgba(37,211,102,0.6); }
.btn-whatsapp:hover { box-shadow: 0 20px 40px -14px rgba(37,211,102,0.55); }

.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.04rem; }
.btn-sm { padding: 0.6rem 1rem; font-size: 0.86rem; }
.btn-block { width: 100%; }

.btn-on-dark.btn-ghost { --btn-fg: var(--cream); border-color: var(--line-dark); }
.btn-on-dark.btn-ghost:hover { color: #fff; border-color: var(--accent-2); }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* magnetic wrapper */
.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner { display: inline-flex; align-items: center; justify-content: center; gap: inherit; will-change: transform; }

/* text link with animated underline */
.link-underline { position: relative; color: var(--accent); font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; }
.link-underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1.5px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-soft);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }
.link-underline svg { width: 1em; height: 1em; transition: transform .3s var(--ease-out); }
.link-underline:hover svg { transform: translateX(3px); }

/* =============================================================
   6. Components — glass card, pills, badges
   ============================================================= */
.glass {
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}
@supports not (backdrop-filter: blur(10px)) {
  .glass { background: #fff; }
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .4s;
}

.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .34rem .72rem;
  border-radius: 100px;
  font-size: 0.76rem; font-weight: 600;
  background: var(--bg-2); color: var(--accent-deep);
  border: 1px solid rgba(91,91,245,0.14);
}
.pill svg { width: 0.95em; height: 0.95em; }
.pill.is-dark { background: rgba(91,91,245,0.14); color: var(--accent-2); border-color: rgba(139,139,248,0.22); }
.pill.is-neutral { background: var(--bg-soft); color: var(--ink-soft); border-color: var(--line); }

.badge-row { display: flex; flex-wrap: wrap; gap: .5rem; }

.tag-included {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .9rem; color: var(--ink-soft); font-weight: 500;
}
.tag-included svg { width: 1.05em; height: 1.05em; color: var(--accent); flex: none; }

/* =============================================================
   7. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s, box-shadow .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 1px 0 rgba(10,14,23,0.04);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  height: 84px;
  max-width: 1340px; margin-inline: auto; padding-inline: var(--gutter);
}
.brand { display: inline-flex; align-items: center; gap: .98rem; font-family: var(--display); font-weight: 700; font-size: 1.73rem; letter-spacing: -0.03em; color: var(--ink); flex: none; }
.brand > span:last-child { white-space: nowrap; line-height: 1.05; }
.brand-mark {
  width: 49px; height: 49px; border-radius: 11px; flex: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  box-shadow: 0 6px 16px -6px var(--glow);
  position: relative; overflow: hidden;
}
.brand-mark::after {
  content: ""; position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0 12px 2px rgba(255,255,255,0.7);
}
.brand small { display: block; font-family: var(--mono); font-weight: 500; font-size: .91rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); margin-top: 1px; white-space: nowrap; }

.nav-links { display: none; align-items: center; gap: 1.6rem; }
.nav-link {
  position: relative; font-size: .94rem; font-weight: 500; color: var(--ink-soft);
  padding: .3rem 0; transition: color .25s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-soft);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-link.is-active { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: .6rem; }
.nav-cta { display: none; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 12px; border: 1px solid var(--line);
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease-out), opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.nav-mobile {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 90px var(--gutter) 2rem;
  display: flex; flex-direction: column;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .55s var(--ease-soft);
  overflow-y: auto;
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile a.m-link {
  font-family: var(--display); font-size: 1.5rem; font-weight: 600;
  padding: .7rem 0; border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between;
  color: var(--ink);
}
.nav-mobile a.m-link span { font-family: var(--mono); font-size: .7rem; color: var(--ink-mute); }
.nav-mobile .m-actions { margin-top: auto; padding-top: 1.6rem; display: grid; gap: .7rem; }

/* =============================================================
   8. Hero
   ============================================================= */
.hero {
  position: relative;
  padding-top: 138px;
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  overflow: clip;
  isolation: isolate;
}
.hero-mesh {
  position: absolute; inset: -20% -10% -10% -10%; z-index: -2;
  background:
    radial-gradient(42% 55% at var(--mesh-x) var(--mesh-y), rgba(91,91,245,0.30), transparent 70%),
    radial-gradient(38% 48% at calc(var(--mesh-x) + 24%) calc(var(--mesh-y) - 12%), rgba(139,139,248,0.24), transparent 70%),
    radial-gradient(46% 50% at 18% 92%, rgba(139,92,246,0.16), transparent 72%);
  filter: blur(64px) saturate(135%);
  animation: meshDrift 26s ease-in-out infinite;
  opacity: .96;
}
@keyframes meshDrift {
  0%,100% { --mesh-x: 32%; --mesh-y: 26%; }
  50%     { --mesh-x: 70%; --mesh-y: 40%; }
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: -3;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(80% 70% at 50% 12%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 12%, #000 35%, transparent 78%);
  opacity: .7;
}
.hero-inner { display: grid; gap: clamp(2rem, 5vw, 3.4rem); align-items: center; }
.hero-title { font-size: clamp(2.4rem, 6.4vw, 4.6rem); line-height: 0.98; letter-spacing: -0.035em; max-width: 16ch; }
.hero-sub { margin-top: 1.3rem; font-size: clamp(1.06rem, 2.3vw, 1.32rem); color: var(--ink-soft); max-width: 46ch; line-height: 1.5; }
.hero-cta { margin-top: 1.9rem; }
.hero-badges { margin-top: 1.7rem; display: flex; flex-wrap: wrap; gap: .55rem; }

/* hero visual (glass stack) */
.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
  aspect-ratio: 4 / 3.4;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,11,22,0.18));
}
.hero-float {
  position: absolute;
  padding: .9rem 1.05rem;
  border-radius: 16px;
  display: flex; align-items: center; gap: .7rem;
  font-size: .85rem;
  animation: floatY 7s ease-in-out infinite;
}
.hero-float strong { font-family: var(--display); font-size: 1.25rem; display: block; line-height: 1; }
.hero-float small { color: var(--ink-mute); font-size: .72rem; }
.hero-float .fico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: linear-gradient(135deg,var(--accent),var(--accent-2)); color:#fff; flex: none; }
.hero-float .fico svg { width: 18px; height: 18px; }
.hero-float-1 { top: 8%; left: -6%; animation-delay: -1s; }
.hero-float-2 { bottom: 9%; right: -5%; animation-delay: -3.5s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* stat strip under hero */
.stat-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; margin-top: clamp(2.4rem,6vw,3.6rem); }
.stat-strip .stat { background: var(--bg); padding: 1.3rem 1.2rem; }
.stat-strip .stat .num { font-family: var(--display); font-size: clamp(1.5rem,3.4vw,2.1rem); font-weight: 700; letter-spacing: -0.03em; }
.stat-strip .stat .num .accent { color: var(--accent); }
.stat-strip .stat .lab { font-size: .82rem; color: var(--ink-mute); margin-top: .2rem; }

/* =============================================================
   9. Equipment cards / grids
   ============================================================= */
.grid-equip { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }

.equip-card {
  display: flex; flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .4s;
  position: relative;
}
.equip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(91,91,245,0.25); }
.equip-card .featured-tag {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  font-family: var(--mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase;
  background: var(--ink); color: var(--cream); padding: .32rem .6rem; border-radius: 100px;
}
.equip-media { position: relative; aspect-ratio: 16 / 10; }
.equip-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.equip-body .badge-row { margin-bottom: .7rem; }
.equip-name { font-size: 1.32rem; }
.equip-desc { color: var(--ink-mute); font-size: .94rem; margin-top: .45rem; flex: 1; }
.equip-foot { margin-top: 1.2rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.equip-price .from { font-size: .72rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .1em; font-family: var(--mono); }
.equip-price .amount { font-family: var(--display); font-size: 1.7rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.equip-price .amount span { font-size: .85rem; color: var(--ink-mute); font-family: var(--sans); font-weight: 500; }

/* device visual (CSS/SVG product render placeholder) */
.device-visual {
  position: relative; width: 100%; height: 100%;
  background:
    radial-gradient(120% 100% at 70% 0%, rgba(91,91,245,0.16), transparent 55%),
    linear-gradient(160deg, #f1f5fd 0%, #e3ebf9 60%, #dbe6f7 100%);
  display: grid; place-items: center;
  overflow: hidden;
}
.device-visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 120%, rgba(139,139,248,0.22), transparent 70%);
}
.device-visual svg { width: 62%; max-width: 240px; height: auto; position: relative; z-index: 1; filter: drop-shadow(0 22px 30px rgba(13,20,38,0.22)); }
.device-visual.is-dark {
  background:
    radial-gradient(120% 100% at 30% 0%, rgba(91,91,245,0.34), transparent 55%),
    linear-gradient(160deg, #0c1326 0%, #0a1020 100%);
}
.device-emit { animation: emitPulse 3.2s var(--ease-soft) infinite; transform-origin: center; }
@keyframes emitPulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }

/* =============================================================
   10. Pricing table
   ============================================================= */
.pricing {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--panel);
}
.pricing-row {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 1rem; align-items: center;
  padding: 1rem 1.3rem;
  border-bottom: 1px solid var(--line-soft);
}
.pricing-row:last-child { border-bottom: 0; }
.pricing-row.is-featured { background: linear-gradient(100deg, rgba(91,91,245,0.06), rgba(139,139,248,0.04)); }
.pricing-row .mod { font-weight: 600; }
.pricing-row .mod small { display: block; font-weight: 400; color: var(--ink-mute); font-size: .82rem; }
.pricing-row .price { font-family: var(--display); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }
.pricing-row .price span { font-size: .8rem; color: var(--ink-mute); font-weight: 500; font-family: var(--sans); }
.pricing-row .pr-cta { justify-self: end; }

/* =============================================================
   11. How it works (steps)
   ============================================================= */
.steps { display: grid; gap: 1.1rem; counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start;
  padding: 1.3rem 1.4rem; border-radius: var(--radius);
  background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.step .step-num {
  counter-increment: step;
  width: 44px; height: 44px; border-radius: 13px; flex: none;
  display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 1.05rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff;
  box-shadow: 0 8px 18px -8px var(--glow);
}
.step .step-num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.12rem; }
.step p { color: var(--ink-mute); font-size: .93rem; margin-top: .3rem; }

/* =============================================================
   12. Feature grid (trust / sin riesgo)
   ============================================================= */
.feature-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.feature {
  padding: 1.4rem; border-radius: var(--radius);
  background: var(--panel); border: 1px solid var(--line);
  transition: transform .45s var(--ease-soft), box-shadow .45s, border-color .4s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(91,91,245,0.2); }
.feature .ficon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--bg-2); color: var(--accent); margin-bottom: .9rem;
}
.feature .ficon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.08rem; }
.feature p { color: var(--ink-mute); font-size: .92rem; margin-top: .35rem; }

/* =============================================================
   13. ROI calculator
   ============================================================= */
.roi {
  display: grid; gap: 1.4rem; grid-template-columns: 1fr;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 4vw, 2.2rem); box-shadow: var(--shadow-md);
}
.roi-fields { display: grid; gap: 1.1rem; }
.roi-field label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: .35rem; color: var(--ink-soft); }
.roi-field .hint { font-weight: 400; color: var(--ink-mute); font-size: .78rem; }
.roi-control { display: flex; align-items: center; gap: 1rem; }
.roi-control input[type="range"] { flex: 1; accent-color: var(--accent); height: 4px; }
.roi-val {
  min-width: 86px; text-align: right; font-family: var(--display); font-weight: 700; font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
}
.roi-select, .roi-field select, .roi-field input[type="number"] {
  width: 100%; padding: .7rem .9rem; border-radius: 12px; border: 1px solid var(--line);
  background: var(--bg-soft); font: inherit; color: var(--ink);
}
.roi-out {
  background: linear-gradient(165deg, var(--ink-bg), var(--ink-bg-2));
  color: var(--cream); border-radius: var(--radius); padding: clamp(1.3rem,3vw,1.8rem);
  position: relative; overflow: hidden;
}
.roi-out::before {
  content: ""; position: absolute; inset: -40% -20% auto auto; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(91,91,245,0.4), transparent 70%); filter: blur(40px);
}
.roi-out-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; position: relative; z-index: 1; }
.roi-metric .m-num { font-family: var(--display); font-weight: 700; font-size: clamp(1.5rem, 4vw, 2.1rem); letter-spacing: -0.03em; line-height: 1; }
.roi-metric .m-num.accent { color: var(--accent-2); }
.roi-metric .m-lab { font-size: .8rem; color: var(--cream-mute); margin-top: .35rem; }
.roi-headline { grid-column: 1 / -1; font-family: var(--display); font-size: 1.05rem; line-height: 1.35; padding-top: .4rem; border-top: 1px solid var(--line-dark); margin-top: .3rem; }
.roi-headline b { color: var(--accent-2); }
.roi-disclaimer { font-size: .74rem; color: var(--ink-mute); margin-top: .4rem; }

/* =============================================================
   14. Availability calendar
   ============================================================= */
.calendar { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow-sm); }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-head .cal-month { font-family: var(--display); font-weight: 700; font-size: 1.1rem; text-transform: capitalize; }
.cal-nav { display: flex; gap: .4rem; }
.cal-nav button { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; transition: background-color .2s, border-color .2s; }
.cal-nav button:hover { border-color: var(--accent); color: var(--accent); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-dow { text-align: center; font-size: .68rem; font-weight: 600; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .05em; padding-bottom: .3rem; }
.cal-day {
  aspect-ratio: 1; border-radius: 10px; display: grid; place-items: center;
  font-size: .86rem; font-weight: 500; position: relative;
  border: 1px solid transparent; transition: background-color .2s, color .2s, border-color .2s;
}
.cal-day.is-empty { visibility: hidden; }
.cal-day.is-available { background: rgba(91,91,245,0.07); color: var(--accent-deep); cursor: pointer; }
.cal-day.is-available:hover { background: var(--accent); color: #fff; }
.cal-day.is-booked { background: var(--bg-soft); color: var(--silver); text-decoration: line-through; }
.cal-day.is-past { color: var(--silver); }
.cal-day.is-selected { background: var(--accent); color: #fff; border-color: var(--accent-deep); }
.cal-day.is-range { background: rgba(91,91,245,0.18); color: var(--accent-deep); }
.cal-legend { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; font-size: .78rem; color: var(--ink-mute); }
.cal-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.cal-legend i { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.cal-selection { margin-top: 1rem; padding: 1rem; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--line-soft); font-size: .9rem; }
.cal-selection strong { color: var(--accent-deep); }

/* =============================================================
   15. FAQ accordion
   ============================================================= */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 0; font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.faq-q .faq-ico { flex: none; width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--line); display: grid; place-items: center; position: relative; transition: background-color .3s, border-color .3s, transform .3s; }
.faq-q .faq-ico::before, .faq-q .faq-ico::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-out), background-color .3s; }
.faq-q .faq-ico::before { width: 11px; height: 2px; }
.faq-q .faq-ico::after { width: 2px; height: 11px; }
.faq-item.is-open .faq-q .faq-ico { background: var(--accent); border-color: var(--accent); }
.faq-item.is-open .faq-q .faq-ico::before, .faq-item.is-open .faq-q .faq-ico::after { background: #fff; }
.faq-item.is-open .faq-q .faq-ico::after { transform: scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .45s var(--ease-soft); }
.faq-a-inner { padding: 0 0 1.3rem; color: var(--ink-mute); max-width: 70ch; }
.faq-item.is-open .faq-a { max-height: 460px; }

/* =============================================================
   16. Dark bands (CTA / partner / footer)
   ============================================================= */
.band-dark {
  background: linear-gradient(165deg, var(--ink-bg), var(--ink-bg-2));
  color: var(--cream); position: relative; overflow: clip; isolation: isolate;
}
.band-dark h1, .band-dark h2, .band-dark h3 { color: var(--cream); }
.band-dark .lead, .band-dark p { color: var(--cream-mute); }
.band-dark .kicker { color: var(--accent-2); }
.band-mesh {
  position: absolute; inset: -30% -10% auto -10%; height: 140%; z-index: -1;
  background:
    radial-gradient(40% 60% at 18% 20%, rgba(91,91,245,0.45), transparent 65%),
    radial-gradient(36% 50% at 86% 30%, rgba(139,139,248,0.30), transparent 68%);
  filter: blur(70px); opacity: .8;
  animation: meshDrift 30s ease-in-out infinite;
}
.band-grid {
  position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: linear-gradient(rgba(244,247,252,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(244,247,252,0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(70% 80% at 50% 30%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 80% at 50% 30%, #000, transparent 75%);
}

.cta-final { text-align: center; }
.cta-final .cta-title { font-size: clamp(1.9rem, 4.6vw, 3.2rem); max-width: 18ch; margin-inline: auto; }
.cta-final .lead { margin-inline: auto; text-align: center; }

/* =============================================================
   17. Partner / split content
   ============================================================= */
.split { display: grid; gap: clamp(1.6rem, 5vw, 3.4rem); align-items: center; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; aspect-ratio: 4/4.4; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.bullet-list { display: grid; gap: .85rem; margin-top: 1.4rem; }
.bullet-list li { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start; }
.bullet-list .bx { width: 26px; height: 26px; border-radius: 8px; flex: none; display: grid; place-items: center; background: var(--bg-2); color: var(--accent); margin-top: 1px; }
.bullet-list .bx svg { width: 15px; height: 15px; }
.bullet-list b { font-weight: 600; }
.bullet-list p { color: var(--ink-mute); font-size: .92rem; margin-top: .1rem; }

/* =============================================================
   18. Forms
   ============================================================= */
.form-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.form-grid { display: grid; gap: 1rem; }
.form-grid.cols-2 { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .84rem; font-weight: 600; color: var(--ink-soft); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: .82rem .95rem; border-radius: 12px; border: 1px solid var(--line);
  background: var(--bg-soft); font: inherit; color: var(--ink); transition: border-color .25s, box-shadow .25s, background-color .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(91,91,245,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .4rem; }
.form-note { font-size: .78rem; color: var(--ink-mute); margin-top: .6rem; }
.form-success {
  position: absolute; inset: 0; background: var(--panel);
  display: grid; place-content: center; text-align: center; gap: .6rem; padding: 2rem;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .5s var(--ease-out), transform .6s var(--ease-soft);
}
.form-success.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: rgba(91,91,245,0.1); color: var(--accent); display: grid; place-items: center; margin-inline: auto; }
.form-success .check svg { width: 32px; height: 32px; }

/* =============================================================
   19. Marquee
   ============================================================= */
.marquee { overflow: hidden; position: relative; padding-block: 1rem; border-block: 1px solid var(--line-soft); display: flex; flex-wrap: nowrap; white-space: nowrap; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track { display: inline-flex; flex: 0 0 auto; gap: 2.4rem; padding-left: 2.4rem; white-space: nowrap; will-change: transform; align-items: center; }
.marquee-track span { font-family: var(--mono); font-size: .82rem; letter-spacing: .05em; color: var(--ink-mute); display: inline-flex; align-items: center; gap: 2.4rem; }
.marquee-track span::after { content: "·"; color: var(--accent); }

/* =============================================================
   20. Testimonial / quote
   ============================================================= */
.quote-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem,4vw,2.4rem); box-shadow: var(--shadow-sm); }
.quote-card .q-mark { font-family: var(--display); font-size: 3rem; line-height: .6; color: var(--accent); opacity: .35; }
.quote-card blockquote { font-family: var(--display); font-size: clamp(1.15rem, 2.6vw, 1.5rem); line-height: 1.4; letter-spacing: -0.02em; margin: .6rem 0 1.2rem; }
.quote-author { display: flex; align-items: center; gap: .8rem; }
.quote-author .qa-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,var(--accent),var(--accent-2)); display: grid; place-items: center; color: #fff; font-family: var(--display); font-weight: 700; }
.quote-author .qa-name { font-weight: 600; font-size: .94rem; }
.quote-author .qa-role { color: var(--ink-mute); font-size: .82rem; }

/* =============================================================
   21. Blog cards
   ============================================================= */
.grid-blog { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
.blog-card { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .45s var(--ease-soft), box-shadow .45s, border-color .4s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(91,91,245,0.2); }
.blog-card .bc-media { aspect-ratio: 16/9; background: linear-gradient(150deg, var(--bg-2), #dce6f8); position: relative; display: grid; place-items: center; }
.blog-card .bc-media .bc-mark { font-family: var(--display); font-weight: 700; font-size: 2.2rem; color: rgba(91,91,245,0.2); }
.blog-card .bc-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card .bc-cat { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.blog-card h3 { font-size: 1.15rem; margin-top: .5rem; }
.blog-card p { color: var(--ink-mute); font-size: .9rem; margin-top: .5rem; flex: 1; }
.blog-card .bc-foot { margin-top: 1rem; font-size: .82rem; color: var(--ink-mute); }

/* =============================================================
   22. Breadcrumb / page header
   ============================================================= */
.page-head { padding-top: 130px; padding-bottom: clamp(1.6rem,4vw,2.6rem); position: relative; overflow: clip; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: .82rem; color: var(--ink-mute); margin-bottom: 1.1rem; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: .5; }

/* =============================================================
   23. Sticky mobile CTA
   ============================================================= */
/* CTAs flotantes circulares: WhatsApp abajo-derecha, disponibilidad abajo-izquierda.
   Siempre visibles (móvil y escritorio), siguen el scroll. */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  pointer-events: none;
  display: block; padding: 0;
  background: none; border-top: 0;
  transform: none; transition: none;
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta .btn {
  position: absolute;
  bottom: calc(1.1rem + env(safe-area-inset-bottom));
  width: 81px; height: 81px;
  padding: 0; border-radius: 50%;
  font-size: 0; line-height: 0;
  pointer-events: auto;
  background-position: center; background-repeat: no-repeat;
  transition: transform .25s var(--ease-soft), box-shadow .25s;
}
.sticky-cta .btn:hover { transform: translateY(-3px) scale(1.06); }
.sticky-cta .btn-whatsapp {
  right: 1.1rem;
  background-color: var(--wa);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B0E1F'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E");
  background-size: 42px 42px;
  box-shadow: 0 12px 30px -10px rgba(37,211,102,0.7);
}
.sticky-cta .btn-primary {
  display: none;
  left: 1.1rem;
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='17' rx='2'/%3E%3Cpath d='M3 9h18M8 2v4M16 2v4'/%3E%3C/svg%3E");
  background-size: 36px 36px;
  box-shadow: 0 12px 30px -10px var(--glow);
}

/* =============================================================
   24. Footer
   ============================================================= */
.footer { background: var(--ink-bg); color: var(--cream-mute); padding-top: clamp(3rem,7vw,4.5rem); position: relative; overflow: clip; }
.footer a { color: var(--cream-mute); transition: color .2s; }
.footer a:hover { color: #fff; }
.footer-top { display: grid; gap: 2.2rem; grid-template-columns: 1fr; padding-bottom: 2.6rem; }
.footer .brand { color: var(--cream); }
.footer .brand small { color: var(--cream-mute); }
.footer-about p { margin-top: 1rem; font-size: .9rem; max-width: 36ch; }
.footer-col h4 { font-family: var(--mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream); margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { display: grid; gap: .55rem; font-size: .9rem; }
.footer-cols { display: grid; gap: 2rem; grid-template-columns: 1fr 1fr; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; align-items: center; font-size: .8rem; }
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 1.1rem; }

/* =============================================================
   25. Reveal animations
   ============================================================= */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* tilt */
.has-tilt { --rx: 0deg; --ry: 0deg; transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)); transition: transform .5s var(--ease-soft); }
.has-tilt:hover { transition-duration: .12s; }

/* =============================================================
   26. View transitions
   ============================================================= */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .5s; animation-timing-function: cubic-bezier(0.16,1,0.3,1); }
::view-transition-old(root) { animation-name: vtOut; }
::view-transition-new(root) { animation-name: vtIn; }
@keyframes vtOut { to { opacity: 0; transform: translateY(-10px); } }
@keyframes vtIn { from { opacity: 0; transform: translateY(10px); } }

/* =============================================================
   27. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .grid-equip { grid-template-columns: repeat(2, 1fr); }
  .grid-blog { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(4, 1fr); }
  .roi-fields { grid-template-columns: 1fr; }
}
@media (min-width: 720px) {
  .footer-top { grid-template-columns: 1.4fr 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr; }
}
@media (min-width: 1100px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none; }
}
@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; }
  .grid-equip { grid-template-columns: repeat(2, 1fr); }
  .grid-blog { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .split.media-right .split-media { order: 2; }
  .roi { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
  .roi-out { position: sticky; top: 90px; }
  .steps-2col .steps { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .footer-cols { display: contents; }
}
@media (min-width: 1280px) {
  .grid-equip.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   28. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-mesh, .band-mesh { animation: none; }
  .hero-float { animation: none; }
  .device-emit { animation: none; opacity: .9; }
  /* micro-interactions (hover, reveal, tilt, count-up) intentionally NOT disabled */
}

/* =============================================================
   BRAND KIT · Alquiler Láser (identidad oficial) — overrides
   ============================================================= */
:root {
  --brand-violet: #5B5BF5;
  --brand-green:  #84E04A;
  --brand-dark:   #0B0E1F;
  --brand-pill:   #EEEEFE;
  --brand-surface:#F8F9FB;
  --state-free:     #D1FAE5;  /* disponible */
  --state-reserved: #FEF3C7;  /* reservado */
  --state-busy:     #FDE8E8;  /* ocupado / no disponible */
}

/* Números y precios: tipografía display (Sora), como antes — revertido por preferencia del cliente */

/* Logo oficial: cuadro violeta + punto verde */
.brand-mark::after { background: var(--brand-green); box-shadow: 0 0 12px 2px rgba(132,224,74,0.55); }

/* Pills oscuras: contraste correcto sobre tinte violeta */
.pill.is-dark { color: var(--accent-deep); border-color: rgba(91,91,245,0.22); background: rgba(91,91,245,0.12); }

/* Calendario de reserva · estados oficiales */
.cal-day.is-available { background: var(--state-free); color: #166534; }
.cal-day.is-available:hover { background: var(--brand-green); color: var(--brand-dark); }
.cal-day.is-booked { background: var(--state-busy); color: #b91c1c; }
.cal-day.is-reserved { background: var(--state-reserved); color: #92400e; }
.cal-day.is-selected, .cal-day.is-selected:hover { background: var(--brand-violet); color: #fff; border-color: var(--accent-deep); }

/* Logo oficial (brand-kit): isotipo de pulso láser en cabecera y pie */
.brand-mark {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  background-image: url('brand/isotipo-color.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.brand-mark::after { display: none; }
.footer .brand-mark { background-image: url('brand/isotipo-blanco.svg'); }

/* Cookie banner + consentimiento de formularios (legal) */
.cookie-bar{position:fixed;left:0;right:0;bottom:0;z-index:300;background:rgba(11,14,31,0.97);color:var(--cream);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border-top:1px solid var(--line-dark);transform:translateY(120%);transition:transform .5s var(--ease-out);}
.cookie-bar.is-visible{transform:none;}
.cookie-inner{max-width:1100px;margin-inline:auto;padding:1rem var(--gutter);display:flex;gap:1rem 1.4rem;align-items:center;justify-content:space-between;flex-wrap:wrap;}
.cookie-text{font-size:.85rem;color:var(--cream-mute);max-width:72ch;}
.cookie-text strong{color:var(--cream);}
.cookie-text a{color:var(--accent-2);text-decoration:underline;}
.cookie-actions{display:flex;gap:.6rem;flex:none;}
.cookie-bar .btn-ghost{color:var(--cream);border-color:var(--line-dark);}
.cookie-bar .btn-ghost:hover{color:#fff;border-color:var(--accent-2);}
@media (max-width:600px){.cookie-actions{width:100%;}.cookie-actions .btn{flex:1;}}
.form-consent{display:flex;gap:.55rem;align-items:flex-start;font-size:.82rem;color:var(--ink-mute);line-height:1.45;}
.form-consent input{margin-top:.15rem;width:16px;height:16px;accent-color:var(--accent);flex:none;}
.form-consent a{color:var(--accent);font-weight:600;}

/* Contenido y tablas de paginas legales */
.legal-content h2{margin-top:.3rem}
.legal-content p{margin:0}
.legal-content ul{list-style:disc;padding-left:1.2rem;display:grid;gap:.4rem}
.legal-content a{color:var(--accent)}
.legal-table{width:100%;border-collapse:collapse;font-size:.84rem;margin-top:.6rem}
.legal-table th,.legal-table td{border:1px solid var(--line);padding:.5rem .7rem;text-align:left;vertical-align:top}
.legal-table th{background:var(--bg-soft);font-weight:600;color:var(--ink)}
.footer-bottom .legal-links a[data-cookie-config]{cursor:pointer}

/* Calendario: fines de semana bloqueados (modo días laborables) */
.cal-day.is-weekend { background: transparent; color: var(--silver); cursor: default; opacity: .55; }
.cal-day.is-weekend:hover { background: transparent; color: var(--silver); }

/* Calendario: aviso "te sale mejor coger semana/mes" */
.cal-tip {
  display: flex; align-items: flex-start; gap: .5rem;
  margin-top: .6rem; padding: .55rem .7rem;
  background: var(--state-reserved); color: #92400e;
  border-radius: 10px; font-size: .82rem; line-height: 1.4;
}
.cal-tip svg { flex: none; margin-top: 2px; color: #b45309; }
.cal-tip strong { color: #7c2d12; }

/* Botón "Limpiar selección" en el cuadro de fechas del calendario */
.cal-clear {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .78rem; font-weight: 500;
  color: var(--ink-mute);
  padding: .35rem .65rem; border-radius: 100px;
  background: transparent; border: 1px solid var(--line);
  cursor: pointer; flex: none;
  transition: color .2s, background-color .2s, border-color .2s;
}
.cal-clear:hover { color: #b91c1c; background: rgba(185,28,28,0.06); border-color: rgba(185,28,28,0.25); }
.cal-clear:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.cal-clear svg { display: inline-block; }
