/* ===== HOME ===== */
/* ─── TOKENS ─── */
:root {
  --bg: #080C14;
  --bg2: #0C1120;
  --surface: #0F1628;
  --card: #121A2E;
  --border: rgba(255, 255, 255, .07);
  --border2: rgba(255, 255, 255, .14);
  --teal: #0ABFBC;
  --td: rgba(10, 191, 188, .14);
  --tg: rgba(10, 191, 188, .32);
  --purple: #8B5CF6;
  --pd: rgba(139, 92, 246, .14);
  --pg: rgba(139, 92, 246, .32);
  --text: #EEF0F8;
  --muted: #7A85A0;
  --faint: #2A3550;
  --white: #fff;
  --grad: linear-gradient(135deg, #0ABFBC 0%, #8B5CF6 100%);
  --shadow: 0 24px 64px rgba(0, 0, 0, .55);
  --r: 18px;
  --sec: 96px;
  --sec-sm: 64px;
  --sec-xs: 48px;
  --px: 6%;
  --px-md: 5%;
  --px-sm: 5%;
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

/* ── SAFARI FIX 1: background on BOTH html and body ── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg);
  overflow-x: hidden
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

a {
  text-decoration: none;
  color: inherit
}

/* ─── UTILITIES ─── */
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 13px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
  background: var(--td);
  border: 1px solid rgba(10, 191, 188, .2);
  color: var(--teal)
}

.section-pill.p {
  background: var(--pd);
  border-color: rgba(139, 92, 246, .2);
  color: var(--purple)
}

.section-pill.center {
  display: flex;
  justify-content: center
}

h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.13;
  letter-spacing: -.025em
}

h2 .tc {
  color: var(--teal)
}

h2 .pc {
  color: var(--purple)
}

h2 .g {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.sub-text {
  color: var(--muted);
  font-size: .92rem;
  max-width: 500px;
  margin-top: 12px;
  line-height: 1.75
}

.tag {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 100px;
  font-size: .67rem;
  font-weight: 700
}

.tag.t {
  background: var(--td);
  color: var(--teal);
  border: 1px solid rgba(10, 191, 188, .2)
}

.tag.p {
  background: var(--pd);
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, .2)
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .9rem;
  transition: transform .25s, box-shadow .25s;
  white-space: nowrap
}

.btn-grad {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 24px rgba(10, 191, 188, .25)
}

.btn-grad:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(10, 191, 188, .4)
}

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  border: 1px solid var(--border2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .25);
  transform: translateY(-2px)
}

.btn-outline {
  border: 1px solid var(--border2);
  color: var(--text);
  background: transparent
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--td)
}

.btn-purple {
  background: var(--pd);
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, .2)
}

.btn-purple:hover {
  background: var(--purple);
  color: #fff
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.rd1 {
  transition-delay: .1s
}

.rd2 {
  transition-delay: .2s
}

.rd3 {
  transition-delay: .3s
}

.rd4 {
  transition-delay: .3s
}

/* ── SAFARI FIX 2: section backgrounds hardcoded ── */
section {
  padding: var(--sec) var(--px);
  background-color: var(--bg)
}

.bg2 {
  background-color: var(--bg2) !important
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--px);
  background: rgba(8, 12, 20, .3);
  transition: background .4s, border .4s
}

nav.sc {
  background: rgba(8, 12, 20, 1);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border)
}

/* LOGO BASE */
.logo {
  display: flex;
  align-items: center;
}

/* Web (blanco) */
.logo-web {
  fill: #EEF0F8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
}

/* elix (gradiente) */
.logo-elix {
  fill: url(#gradWebelix);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
}

/* hover elegante */
.logo:hover .logo-svg {
  transform: scale(1.05);
  transition: all .25s ease;
  filter: drop-shadow(0 0 8px rgba(10, 191, 188, .35)) drop-shadow(0 0 16px rgba(139, 92, 246, .25));
}

nav .logo-svg {
  height: 45px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none
}

.nav-links a {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 500;
  transition: color .2s;
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--grad);
  transition: width .25s
}

.nav-links a:hover {
  color: var(--white)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-cta {
  background: var(--grad);
  color: #fff;
  padding: 9px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .83rem;
  box-shadow: 0 4px 16px rgba(10, 191, 188, .22);
  transition: transform .2s, box-shadow .2s
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(10, 191, 188, .38)
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px
}

.ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--muted);
  border-radius: 2px;
  transition: all .3s
}

.ham.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

.ham.open span:nth-child(2) {
  opacity: 0
}

.ham.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(8, 12, 20, .98);
  -webkit-backdrop-filter: blur(28px);
  backdrop-filter: blur(28px);
  z-index: 199;
  padding: 90px var(--px-sm) 40px;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1)
}

.nav-drawer.open {
  transform: translateX(0)
}

.nav-drawer a {
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color .2s
}

.nav-drawer a:hover {
  color: var(--teal)
}

.nav-drawer .d-cta {
  background: var(--grad);
  color: #fff;
  border-radius: 100px;
  text-align: center;
  padding: 14px;
  margin-top: 24px;
  font-size: 1rem;
  border: none
}

/* ─── HERO ─── */
/* ── SAFARI FIX 3: hero bg explicit, overflow:hidden stays for content
   but orbs use position:fixed via .orb-layer so they're never clipped ── */
.hero {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  /* iOS Safari 100vh fix */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px var(--px) 60px;
  position: relative;
  overflow: visible;
  text-align: center;
  background-color: transparent;
}

/* ── SAFARI FIX 4: .h-mesh animation uses ONLY opacity — no scale/transform
   scale() on a large position:absolute element triggers repaint on Safari ── */
.h-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 15% 45%, rgba(10, 191, 188, .28), transparent 58%),
    radial-gradient(ellipse 65% 55% at 85% 35%, rgba(139, 92, 246, .28), transparent 58%),
    radial-gradient(ellipse 50% 45% at 50% 100%, rgba(139, 92, 246, .18), transparent 55%);
  animation: mp 8s ease-in-out infinite alternate
}

@keyframes mp {
  from {
    opacity: .65
  }

  to {
    opacity: 1
  }
}

/* ── SAFARI FIX 5: -webkit-mask-image prefix for h-grid ── */
.h-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 191, 188, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 191, 188, .07) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 30%, transparent 100%)
}

/* ── SAFARI FIX 6: ORB LAYER — position:fixed so overflow:hidden can't clip them
   This is the key architectural fix. Orbs live OUTSIDE the hero stacking context. ── */
.orb-layer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  /* above bg (0), below content (2), below nav (200) */
  overflow: hidden
    /* prevent horizontal scroll from orbs that extend past edges */
}

/* ── SAFARI FIX 7: orb animation — translate only, NO scale
   Scale on blurred elements forces Safari to create a new compositing layer
   that sometimes paints white. Translate is compositing-safe. ── */
.h-orb {
  position: absolute;
  border-radius: 50%;
  animation: op ease-in-out infinite alternate;
  pointer-events: none
}

.h-orb1 {
  width: clamp(320px, 70vw, 680px);
  height: clamp(320px, 70vw, 680px);
  background: radial-gradient(circle, rgba(10, 191, 188, .45) 0%, rgba(10, 191, 188, .12) 50%, transparent 100%);
  filter: blur(55px);
  left: -10%;
  top: -20%;
  animation-duration: 6s
}

.h-orb2 {
  width: clamp(280px, 65vw, 580px);
  height: clamp(280px, 65vw, 580px);
  background: radial-gradient(circle, rgba(139, 92, 246, .45) 0%, rgba(139, 92, 246, .12) 50%, transparent 100%);
  filter: blur(55px);
  right: -10%;
  bottom: -15%;
  animation-duration: 8s;
  animation-delay: -3s
}

.h-orb3 {
  width: clamp(130px, 22vw, 260px);
  height: clamp(130px, 22vw, 260px);
  background: radial-gradient(circle, rgba(10, 191, 188, .35) 0%, transparent 65%);
  filter: blur(38px);
  left: 38%;
  top: 48%;
  animation-duration: 10s;
  animation-delay: -5s
}

@keyframes op {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(12px, -14px)
  }

  /* translate only — no scale */
}

/* ── SAFARI FIX 8: particles position:absolute instead of fixed
   position:fixed creates a GPU compositing layer that Safari paints
   as white on top of background. Absolute is safe. ── */
/* ── PARTICLES: position:fixed on a wrapper with pointer-events:none
   The actual .particle elements use translateY only — no compositing issues
   Works on Safari iOS because we avoid filter/blur on the particles ── */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  /* detrás del contenido, pero visible */
  /* Prevent this layer from creating a white compositing bg on Safari:
     do NOT use will-change, transform or filter on the container itself */
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: pf linear infinite;
  /* No filter:blur — that's what kills Safari performance */
}

@keyframes pf {
  0% {
    transform: translateY(105vh);
    opacity: 0
  }

  5% {
    opacity: 1
  }

  95% {
    opacity: .7
  }

  100% {
    transform: translateY(-80px);
    opacity: 0
  }
}

/* content */
.h-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  width: 100%
}

.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 26px;
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  background: rgba(10, 191, 188, .07);
  border: 1px solid rgba(10, 191, 188, .2);
  box-shadow: 0 0 22px rgba(10, 191, 188, .1);
  animation: fu .5s ease both
}

.bdot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--teal);
  animation: blink 2s infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .15
  }
}

.h-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 12px;
  animation: fu .5s .05s ease both
}

h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--white);
  letter-spacing: -.03em;
  animation: fu .6s .1s ease both;
  margin-bottom: 10px
}

h1 .g {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.h-sub {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: var(--muted);
  margin: 16px auto 30px;
  max-width: 520px;
  line-height: 1.8;
  animation: fu .6s .2s ease both
}

.h-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fu .6s .3s ease both
}

/* stats bar */
.h-stats {
  display: flex;
  gap: 0;
  margin-top: 52px;
  animation: fu .6s .45s ease both;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .03);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto
}

.hs {
  padding: 18px 28px;
  text-align: center;
  position: relative;
  flex: 1;
  white-space: nowrap;
  min-width: 0
}

.hs::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border)
}

.hs:last-child::after {
  display: none
}

.hs-n {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em
}

.hs-n .ac {
  color: var(--teal)
}

.hs-l {
  font-size: .65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 2px
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fu .6s .7s ease both;
  z-index: 3
}

.sl {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, var(--teal));
  animation: sla 1.8s ease-in-out infinite
}

@keyframes sla {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  51% {
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

/* ─── HERO IMAGE STRIP ─── */
.h-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 40px var(--px) 0;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%
}

.h-img-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border)
}

.h-img-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(.7);
  transition: transform .5s, filter .5s
}

.h-img-item:hover img {
  transform: scale(1.05);
  filter: brightness(.85)
}

.h-img-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: rgba(8, 12, 20, .8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--teal);
  border: 1px solid rgba(10, 191, 188, .25)
}

.h-img-item.tall img {
  height: 280px
}

/* ─── MARQUEE ─── */
.marq {
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: var(--bg2);
  overflow: hidden
}

.marq-track {
  display: flex;
  animation: mq 24s linear infinite;
  white-space: nowrap
}

.marq-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em
}

.marq-item .dot {
  width: 4px;
  height: 4px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--teal)
}

@keyframes mq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 52px
}

.ab-main {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border)
}

.ab-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: brightness(.82)
}

.ab-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 0 30px rgba(10, 191, 188, .2);
  text-align: center;
  min-width: 140px
}

.abf-n {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  text-shadow: 0 0 20px rgba(10, 191, 188, .4)
}

.abf-l {
  font-size: .68rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px
}

.ab-imgs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px
}

.ab-sm {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border)
}

.ab-sm img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  filter: brightness(.75);
  transition: transform .4s, filter .4s
}

.ab-sm:hover img {
  transform: scale(1.05);
  filter: brightness(.9)
}

.about-content p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.82;
  margin-bottom: 14px
}

.avals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px
}

.aval {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  transition: border-color .25s, transform .25s, box-shadow .25s
}

.aval:hover {
  border-color: rgba(10, 191, 188, .3);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .35)
}

.aval-i {
  font-size: 1.2rem;
  margin-bottom: 6px
}

.aval h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px
}

.aval p {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.5
}

/* ─── SERVICES ─── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px
}

.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
  position: relative
}

/* ── SAFARI FIX 9: svc-img explicit height on both container AND img ── */
.svc-img {
  height: 160px;
  min-height: 160px;
  overflow: hidden;
  position: relative;
  background-color: #121A2E
}

.svc-img img {
  display: block;
  width: 100%;
  height: 160px;
  min-height: 160px;
  object-fit: cover;
  object-position: center;
  filter: brightness(.65);
  transition: transform .5s, filter .4s
}

.svc-card:hover .svc-img img {
  transform: scale(1.07);
  filter: brightness(.8)
}

.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18, 26, 46, .95) 100%)
}

.svc-badge {
  position: absolute;
  bottom: 12px;
  left: 14px
}

.svc-body {
  padding: 20px 20px 22px
}

.svc-icon {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: inline-block;
  transition: transform .3s
}

.svc-card:hover .svc-icon {
  transform: scale(1.12) rotate(-5deg)
}

.svc-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px
}

.svc-card p {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.7
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .45);
  border-color: rgba(10, 191, 188, .2)
}

.svc-card:hover::before {
  transform: scaleX(1)
}

/* ─── PROCESS ─── */
.proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
  position: relative
}

.proc-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  opacity: .18;
  z-index: 0
}

.pstep {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 20px;
  position: relative;
  z-index: 1;
  transition: transform .25s, box-shadow .25s, border-color .25s
}

.pstep:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
  border-color: rgba(10, 191, 188, .25)
}

.pstep-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  height: 90px;
  background-color: #121A2E
}

.pstep-img img {
  display: block;
  width: 100%;
  height: 90px;
  object-fit: cover;
  filter: brightness(.6);
  transition: filter .3s
}

.pstep:hover .pstep-img img {
  filter: brightness(.8)
}

.pstep-n {
  font-family: 'Fraunces', serif;
  font-size: .78rem;
  font-weight: 800;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--td);
  border-radius: 8px;
  border: 1px solid rgba(10, 191, 188, .2);
  margin-bottom: 12px
}

.pstep h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px
}

.pstep p {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.65
}

/* ─── PORTFOLIO ─── */
.pfilt {
  display: flex;
  gap: 8px;
  margin: 28px 0 20px;
  flex-wrap: wrap
}

.fb {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: .76rem;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: all .2s
}

.fb.active,
.fb:hover {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(10, 191, 188, .22)
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 14px
}

.pi {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border)
}

.pi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.65);
  transition: transform .5s, filter .4s
}

.pi:hover img {
  transform: scale(1.07);
  filter: brightness(.45)
}

.pi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(8, 12, 20, .92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity .3s
}

.pi:hover .pi-overlay {
  opacity: 1
}

.pi-tag {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: .64rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.pi-title {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px
}

.pi-desc {
  font-size: .73rem;
  color: rgba(255, 255, 255, .6)
}

.pi.lg {
  grid-column: span 2;
  grid-row: span 2
}

.pi.lg img {
  height: 100%
}

/* ─── PRICING ─── */
.pr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
  padding-top: 20px;
  align-items: stretch
}

.prc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px 22px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column
}

.prc:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  border-color: rgba(10, 191, 188, .18)
}

.prc.ft {
  background: linear-gradient(145deg, #151E36, #0F1628);
  border-color: rgba(10, 191, 188, .32);
  box-shadow: 0 0 0 1px rgba(10, 191, 188, .14), 0 20px 50px rgba(0, 0, 0, .5);
  padding-top: 24px;
  display: flex !important;
  flex-direction: column !important
}

.ft-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: .63rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 4px 14px rgba(10, 191, 188, .3);
  z-index: 2
}

.pln {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal);
  margin-bottom: 6px
}

.plp {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1
}

.plp sup {
  font-size: .85rem;
  vertical-align: top;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 400
}

.plp small {
  font-size: .76rem;
  font-weight: 400;
  color: var(--muted)
}

.pld {
  color: var(--muted);
  font-size: .77rem;
  margin: 8px 0 14px;
  line-height: 1.6
}

.pdiv {
  height: 1px;
  background: var(--border);
  margin-bottom: 14px;
  flex-shrink: 0
}

.plf {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding: 0;
  margin: 0
}

.plf li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: .77rem;
  line-height: 1.45
}

.plf li.on {
  color: var(--text)
}

.plf li.off {
  color: var(--faint)
}

.ci {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .5rem;
  background: var(--td);
  color: var(--teal);
  border: 1px solid rgba(10, 191, 188, .25)
}

.xi {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .5rem;
  background: rgba(255, 255, 255, .03);
  color: var(--faint);
  border: 1px solid var(--border)
}

a.plb,
button.plb {
  display: block !important;
  box-sizing: border-box;
  width: 100%;
  margin-top: 18px;
  flex-shrink: 0;
  padding: 11px 12px;
  border-radius: 100px;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s, transform .2s
}

a.plb.pb-out {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2)
}

a.plb.pb-out:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--td)
}

a.plb.pb-grad {
  background: var(--grad);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(10, 191, 188, .25)
}

a.plb.pb-grad:hover {
  box-shadow: 0 8px 28px rgba(10, 191, 188, .42);
  transform: translateY(-2px)
}

a.plb.pb-purple {
  background: var(--pd);
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, .2)
}

a.plb.pb-purple:hover {
  background: var(--purple);
  color: #fff
}

/* addons */
.ad-wrap {
  background: rgba(10, 191, 188, .04);
  border: 1px solid rgba(10, 191, 188, .1);
  border-radius: var(--r);
  padding: 22px;
  margin-top: 16px
}

.ad-label {
  font-size: .68rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px
}

.ad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px
}

.adc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  transition: border-color .2s, transform .2s
}

.adc:hover {
  border-color: rgba(10, 191, 188, .28);
  transform: translateY(-3px)
}

.adn {
  font-weight: 700;
  font-size: .82rem;
  color: var(--white);
  margin-bottom: 3px
}

.adp {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--purple)
}

.adp span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .7rem;
  font-weight: 400;
  color: var(--muted)
}

.add {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 2px
}

/* ─── DOMAINS ─── */
.dom-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px
}

.dom-img {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative
}

.dom-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: brightness(.65)
}

.dom-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 191, 188, .15), rgba(139, 92, 246, .15))
}

.dom-img-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(8, 12, 20, .85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px
}

.dib-n {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--teal)
}

.dib-l {
  font-size: .68rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase
}

.dom-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px
}

.dc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all .25s
}

.dc:hover {
  border-color: rgba(10, 191, 188, .4);
  background: var(--td);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .35), 0 0 16px rgba(10, 191, 188, .1)
}

.de {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white)
}

.dp {
  font-size: .73rem;
  color: var(--teal);
  font-weight: 700;
  margin-top: 2px
}

.dy {
  font-size: .62rem;
  color: var(--muted)
}

/* ─── WHY ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.wi {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all .25s;
  cursor: default
}

.wi:hover {
  background: var(--card);
  border-color: var(--border);
  transform: translateX(5px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .35)
}

.wic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem
}

.wic.t {
  background: var(--td)
}

.wic.p {
  background: var(--pd)
}

.wi h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px
}

.wi p {
  color: var(--muted);
  font-size: .8rem
}

.why-panel {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border)
}

.why-panel-img {
  position: relative;
  height: 200px
}

.why-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.5)
}

.why-panel-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, #080C14 100%);
  background: linear-gradient(180deg, transparent 40%, var(--bg) 100%)
}

.why-metrics {
  background: var(--card);
  padding: 24px;
  position: relative
}

.why-metrics::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 191, 188, .07), transparent 70%);
  pointer-events: none
}

.wvh {
  font-size: .68rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px
}

.mr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border)
}

.mr:last-child {
  border-bottom: none
}

.ml {
  font-size: .76rem;
  color: var(--muted);
  width: 110px;
  flex-shrink: 0
}

.mb {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, .05);
  border-radius: 3px;
  overflow: hidden
}

.mf {
  height: 100%;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(.16, 1, .3, 1)
}

.mf.an {
  transform: scaleX(1)
}

.mf.t {
  background: linear-gradient(90deg, var(--teal), rgba(10, 191, 188, .4))
}

.mf.p {
  background: linear-gradient(90deg, var(--purple), rgba(139, 92, 246, .4))
}

.mf.g {
  background: var(--grad)
}

.mv {
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  width: 42px;
  text-align: right;
  flex-shrink: 0
}

/* ─── TESTIMONIALS ─── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px
}

.tc2 {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  position: relative
}

.tc2-img {
  height: 100px;
  overflow: hidden;
  position: relative;
  background: #121A2E
}

.tc2-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.5)
}

.tc2-img::after {
  content: '"';
  position: absolute;
  bottom: -12px;
  right: 14px;
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  color: var(--teal);
  opacity: .15;
  line-height: 1;
  font-weight: 800
}

.tc2-body {
  padding: 20px 22px 22px
}

.tc2:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .45);
  transform: translateY(-4px);
  border-color: rgba(10, 191, 188, .16)
}

.stars {
  color: #F59E0B;
  font-size: .8rem;
  letter-spacing: 2px;
  margin-bottom: 10px
}

.tc2 blockquote {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.75;
  font-style: italic;
  quotes: none
}

.tau {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border)
}

.tav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: .8rem;
  flex-shrink: 0
}

.tn {
  font-weight: 700;
  font-size: .83rem;
  color: var(--white)
}

.tr {
  font-size: .7rem;
  color: var(--muted)
}

/* ─── CONTACT ─── */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 52px
}

.ct-left h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px
}

.ct-left p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 24px
}

.ct-img {
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  position: relative
}

.ct-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: brightness(.6)
}

.ct-img-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(8, 12, 20, .85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px
}

.ct-img-badge span {
  font-size: .72rem;
  font-weight: 700;
  color: var(--teal)
}

.ctms {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.ctm {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 13px;
  transition: all .2s
}

.ctm:hover {
  border-color: rgba(10, 191, 188, .3);
  transform: translateX(5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35)
}

.ctmi {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0
}

.ctmi.t {
  background: var(--td)
}

.ctmi.p {
  background: var(--pd)
}

.ctmi.g {
  background: rgba(34, 197, 94, .1)
}

.cml {
  font-size: .68rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em
}

.cmv {
  font-weight: 700;
  font-size: .88rem;
  color: var(--white)
}

.ctf {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 30px 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35)
}

.ctf h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px
}

.ctf .sub {
  color: var(--muted);
  font-size: .8rem;
  margin-bottom: 20px
}

.fr2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-bottom: 11px
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 11px
}

.fg label {
  font-size: .74rem;
  font-weight: 700;
  color: var(--text)
}

.fg input,
.fg select,
.fg textarea {
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .86rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--faint)
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10, 191, 188, .1)
}

.fg select {
  cursor: pointer;
  color: var(--text)
}

.fg select option {
  background: var(--bg)
}

.fg textarea {
  resize: vertical;
  min-height: 90px
}

.fsub {
  width: 100%;
  padding: 12px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(10, 191, 188, .22)
}

.fsub:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 191, 188, .38)
}

.fnote {
  font-size: .68rem;
  color: var(--muted);
  text-align: center;
  margin-top: 8px
}

/* ─── FAQ ─── */
.faql {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.fqi {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 13px;
  overflow: hidden;
  transition: border-color .2s
}

.fqi.open {
  border-color: rgba(10, 191, 188, .25)
}

.fqq {
  padding: 17px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 12px
}

.fqq span {
  font-weight: 700;
  font-size: .88rem;
  color: var(--white)
}

.fqico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .85rem;
  transition: transform .25s, background .2s, color .2s
}

.fqi.open .fqico {
  transform: rotate(45deg);
  background: var(--td);
  color: var(--teal);
  border-color: rgba(10, 191, 188, .28)
}

.fqa {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  padding: 0 20px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.75
}

.fqi.open .fqa {
  max-height: 160px;
  padding: 0 20px 16px
}

/* ─── CTA ─── */
.cta-sec {
  padding: 80px var(--px);
  background-color: var(--bg2)
}

.cta-in {
  background: linear-gradient(135deg, #0F1A30, #150F28);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55)
}

.cta-in::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 191, 188, .12), transparent 60%)
}

.cta-in::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, .1), transparent 60%)
}

.cta-lbl {
  color: var(--teal);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px
}

.cta-in h2 {
  color: var(--white);
  max-width: 500px;
  margin: 0 auto 12px
}

.cta-in p {
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 28px;
  font-size: .9rem
}

.cta-acts {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

/* ─── FOOTER ─── */
footer {
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  padding: 52px var(--px) 26px
}

.ft {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border)
}

.fl-t {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -.02em
}

.fl-t .tc {
  color: var(--teal)
}

.fbrand p {
  color: var(--muted);
  font-size: .8rem;
  max-width: 230px;
  line-height: 1.7
}

.fcol h4 {
  font-size: .68rem;
  font-weight: 700;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px
}

.fcol a {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  margin-bottom: 8px;
  transition: color .2s
}

.fcol a:hover {
  color: var(--teal)
}

.fbot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 10px
}

.fcp {
  color: var(--faint);
  font-size: .76rem
}

.fcp a {
  color: var(--teal)
}

.fsocs {
  display: flex;
  gap: 7px
}

.sb {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
  transition: all .2s
}

.sb:hover {
  background: var(--td);
  color: var(--teal);
  border-color: rgba(10, 191, 188, .28)
}

/* ===== FOOTER LOGO SVG (FINAL) ===== */

/* contenedor */
.fl-wrap {
  display: inline-flex;
  align-items: center;
  transition: all .25s ease;
}

/* tamaño */
footer .logo-svg {
  height: 36px;
  width: auto;
}

/* hover */
.fl-wrap:hover {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 0 8px rgba(10, 191, 188, .3)) drop-shadow(0 0 16px rgba(139, 92, 246, .15));
}

/* WA */
.waf {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, .4);
  transition: transform .2s, box-shadow .2s;
  animation: fin .6s 1s ease both
}

.waf:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .5)
}

.waf svg {
  width: 26px;
  height: 26px;
  fill: #fff
}

@keyframes fin {
  from {
    opacity: 0;
    transform: scale(0)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s
}

.modal.show {
  opacity: 1;
  pointer-events: all
}

.mbox {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px;
  text-align: center;
  max-width: 360px;
  width: 90%;
  transform: scale(.9) translateY(10px);
  transition: transform .3s;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6)
}

.modal.show .mbox {
  transform: scale(1) translateY(0)
}

.mbox h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin: 12px 0 8px
}

.mbox p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 22px
}

.mclose {
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 26px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s
}

.mclose:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(10, 191, 188, .35)
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media(max-width:1280px) {
  :root {
    --px: 5%
  }

  .pr-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ad-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ft {
    gap: 24px
  }
}

@media(max-width:1024px) {
  :root {
    --px: 5%;
    --sec: 72px
  }

  .svc-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .proc-steps {
    grid-template-columns: repeat(2, 1fr)
  }

  .proc-steps::before {
    display: none
  }

  .pr-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .port-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px
  }

  .pi.lg {
    grid-column: span 2;
    grid-row: span 1
  }

  .pi.lg img {
    height: 200px
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .dom-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .ft {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .nav-links {
    gap: 18px
  }

  .nav-links a {
    font-size: .8rem
  }
}

@media(max-width:768px) {
  :root {
    --px: 5%;
    --sec: 60px
  }

  body {
    cursor: default
  }

  .nav-links,
  .nav-cta {
    display: none
  }

  .ham {
    display: flex
  }

  .nav-drawer {
    display: flex
  }

  .hero {
    padding: 90px var(--px) 48px;
    min-height: auto
  }

  h1 {
    font-size: clamp(2rem, 5.5vw, 3rem)
  }

  .h-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px
  }

  .h-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center
  }

  .h-stats {
    flex-wrap: wrap;
    width: 100%
  }

  .hs {
    flex: 1;
    min-width: 80px;
    padding: 14px 16px
  }

  .h-imgs {
    grid-template-columns: 1fr 1fr;
    padding: 24px var(--px) 0
  }

  .h-img-item:nth-child(3) {
    display: none
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .ab-main img {
    height: 280px
  }

  .svc-grid {
    grid-template-columns: 1fr 1fr
  }

  .proc-steps {
    grid-template-columns: 1fr 1fr
  }

  .port-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px
  }

  .pi.lg {
    grid-column: span 2;
    grid-row: span 1
  }

  .pi.lg img {
    height: 180px
  }

  .pr-grid {
    grid-template-columns: 1fr 1fr;
    padding-top: 18px
  }

  .ad-grid {
    grid-template-columns: 1fr 1fr
  }

  .dom-wrap {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .dom-chips {
    grid-template-columns: repeat(4, 1fr)
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .testi-grid {
    grid-template-columns: 1fr
  }

  .ct-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .ft {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .cta-in {
    padding: 40px 24px
  }

  .cta-acts {
    flex-direction: column;
    align-items: center
  }

  .cta-acts .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center
  }

  /* ── SAFARI MOBILE: particles visible but fewer (handled in JS) ── */
  .h-orb1 {
    width: 300px;
    height: 300px;
    filter: blur(40px)
  }

  .h-orb2 {
    width: 270px;
    height: 270px;
    filter: blur(40px)
  }

  .h-orb3 {
    width: 140px;
    height: 140px;
    filter: blur(28px)
  }

  .h-mesh {
    background:
      radial-gradient(ellipse 85% 55% at 12% 48%, rgba(10, 191, 188, .25), transparent 60%),
      radial-gradient(ellipse 75% 50% at 88% 32%, rgba(139, 92, 246, .25), transparent 58%);
    animation: mp 6s ease-in-out infinite alternate
  }

  .h-grid {
    -webkit-mask-image: none;
    mask-image: none;
    opacity: .3;
    background-size: 44px 44px
  }
}

@media(max-width:430px) {
  :root {
    --px: 5%;
    --sec: 52px
  }

  h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.4rem);
    line-height: 1.1
  }

  h2 {
    font-size: clamp(1.4rem, 6.5vw, 2rem)
  }

  .h-eyebrow {
    font-size: .7rem
  }

  .h-badge {
    font-size: .65rem;
    padding: 5px 12px
  }

  .h-sub {
    font-size: .88rem;
    margin: 14px auto 26px
  }

  nav {
    padding: 16px var(--px)
  }

  .logo {
    font-size: 1.15rem
  }

  .logo-icon {
    width: 30px;
    height: 30px;
    font-size: .82rem
  }

  .hero {
    padding: 82px var(--px) 44px
  }

  .h-content {
    padding: 0
  }

  .h-actions {
    gap: 10px
  }

  .h-actions .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: .86rem;
    border-radius: 100px;
    justify-content: center;
    text-align: center
  }

  .h-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-top: 32px;
    border-radius: 14px;
    overflow: hidden
  }

  .hs {
    padding: 14px 12px;
    min-width: 0
  }

  .hs::after {
    display: none
  }

  .hs:nth-child(1),
  .hs:nth-child(3) {
    border-right: 1px solid var(--border)
  }

  .hs:nth-child(1),
  .hs:nth-child(2) {
    border-bottom: 1px solid var(--border)
  }

  .hs-n {
    font-size: 1.5rem
  }

  .hs-l {
    font-size: .62rem
  }

  .h-imgs {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px var(--px) 0
  }

  .h-img-item:nth-child(2),
  .h-img-item:nth-child(3) {
    display: none
  }

  .h-img-item img,
  .h-img-item.tall img {
    height: 180px
  }

  .marq-item {
    padding: 0 20px;
    font-size: .66rem
  }

  .about-grid {
    gap: 28px
  }

  .ab-main img {
    height: 220px;
    border-radius: 14px
  }

  .ab-imgs-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px
  }

  .ab-sm img {
    height: 110px
  }

  .ab-float {
    width: 110px;
    padding: 12px 14px;
    bottom: -10px;
    right: -6px
  }

  .abf-n {
    font-size: 1.6rem
  }

  .avals {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .aval {
    padding: 14px
  }

  .about-content p {
    font-size: .86rem
  }

  .svc-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .svc-img {
    height: 140px;
    min-height: 140px
  }

  .svc-img img {
    height: 140px;
    min-height: 140px
  }

  .svc-body {
    padding: 14px 16px
  }

  .svc-body h3 {
    font-size: .94rem
  }

  .svc-body p {
    font-size: .82rem
  }

  .proc-steps {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .proc-steps::before {
    display: none
  }

  .pstep {
    padding: 20px 18px
  }

  .pstep-img {
    height: 70px
  }

  .pstep-img img {
    height: 70px
  }

  .pstep-n {
    width: 28px;
    height: 28px;
    font-size: .72rem
  }

  .pfilt {
    gap: 6px;
    flex-wrap: wrap
  }

  .fb {
    padding: 6px 12px;
    font-size: .7rem
  }

  .port-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px
  }

  .pi {
    height: auto
  }

  .pi img,
  .pi.lg img {
    height: 200px;
    min-height: unset
  }

  .pi.lg {
    grid-column: span 1;
    grid-row: span 1
  }

  .pi-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 40%, rgba(8, 12, 20, .9) 100%)
  }

  .pi-title {
    font-size: .95rem
  }

  .pi-desc {
    font-size: .72rem
  }

  .pr-grid {
    grid-template-columns: 1fr;
    padding-top: 20px;
    gap: 14px
  }

  .prc {
    padding: 20px 18px 18px
  }

  .prc.ft {
    padding-top: 40px
  }

  .plp {
    font-size: 1.7rem
  }

  .plf li {
    font-size: .75rem
  }

  .ad-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px
  }

  .adc {
    padding: 12px
  }

  .adn {
    font-size: .78rem
  }

  .adp {
    font-size: .9rem
  }

  .dom-chips {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px
  }

  .dom-img img {
    height: 160px
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .wi {
    padding: 13px
  }

  .wic {
    width: 36px;
    height: 36px;
    font-size: .95rem
  }

  .testi-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .tc2-body {
    padding: 16px 16px 18px
  }

  .ct-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .ctms {
    gap: 8px
  }

  .ctm {
    padding: 11px 13px
  }

  .ctf {
    padding: 22px 16px
  }

  .fr2 {
    grid-template-columns: 1fr
  }

  .fg input,
  .fg select,
  .fg textarea {
    font-size: .84rem;
    padding: 10px 12px
  }

  .faql {
    margin-top: 28px
  }

  .fqq {
    padding: 15px 16px
  }

  .fqq span {
    font-size: .86rem
  }

  .fqa {
    font-size: .84rem
  }

  .cta-in {
    padding: 36px 20px;
    border-radius: 18px
  }

  .cta-in h2 {
    font-size: 1.5rem
  }

  .cta-acts {
    gap: 10px
  }

  .cta-acts .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    font-size: .86rem
  }

  .ft {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .fbot {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .fcol h4 {
    margin-bottom: 12px
  }

  .fcol a {
    font-size: .82rem;
    margin-bottom: 7px
  }

  .fsocs {
    gap: 6px
  }

  .sb {
    width: 30px;
    height: 30px
  }

  .scroll-hint {
    display: none
  }

  .waf {
    width: 46px;
    height: 46px;
    bottom: 20px;
    right: 20px
  }

  .waf svg {
    width: 23px;
    height: 23px
  }

  section {
    padding: 52px var(--px)
  }

  /* iPhone orbs — visible and animated */
  .h-orb1 {
    width: 260px;
    height: 260px;
    filter: blur(38px)
  }

  .h-orb2 {
    width: 240px;
    height: 240px;
    filter: blur(38px)
  }

  .h-orb3 {
    width: 120px;
    height: 120px;
    filter: blur(24px)
  }
}

@media(max-width:375px) {
  :root {
    --px: 4.5%
  }

  h1 {
    font-size: 1.75rem
  }

  .h-stats {
    margin-top: 26px
  }

  .hs-n {
    font-size: 1.35rem
  }

  .pr-grid {
    gap: 12px
  }

  .prc {
    padding: 18px 15px 16px
  }

  .prc.ft {
    padding-top: 38px
  }

  .ad-grid {
    grid-template-columns: 1fr
  }
}

/* ===== FINAL DE LA HOME ===== */

/* ===== NOSOTROS ===== */
:root {
  --bg: #080C14;
  --bg2: #0C1120;
  --surface: #0F1628;
  --card: #121A2E;
  --border: rgba(255, 255, 255, .07);
  --border2: rgba(255, 255, 255, .14);
  --teal: #0ABFBC;
  --td: rgba(10, 191, 188, .14);
  --purple: #8B5CF6;
  --pd: rgba(139, 92, 246, .14);
  --text: #EEF0F8;
  --muted: #7A85A0;
  --faint: #2A3550;
  --white: #fff;
  --grad: linear-gradient(135deg, #0ABFBC 0%, #8B5CF6 100%);
  --shadow: 0 24px 64px rgba(0, 0, 0, .55);
  --r: 18px;
  --sec: 92px;
  --px: 6%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

a {
  text-decoration: none;
  color: inherit
}

/* UTILS */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 13px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
  background: var(--td);
  border: 1px solid rgba(10, 191, 188, .2);
  color: var(--teal)
}

.pill.p {
  background: var(--pd);
  border-color: rgba(139, 92, 246, .2);
  color: var(--purple)
}

.pill.center {
  display: flex;
  justify-content: center;
  text-align: center
}

h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.13;
  letter-spacing: -.025em
}

h2 .tc {
  color: var(--teal)
}

h2 .pc {
  color: var(--purple)
}

h2 .g {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.sub-p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.8;
  max-width: 560px;
  margin-top: 10px
}

section {
  padding: var(--sec) var(--px)
}

.bg2 {
  background: var(--bg2)
}

.tag {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 700
}

.tag.t {
  background: var(--td);
  color: var(--teal);
  border: 1px solid rgba(10, 191, 188, .2)
}

.tag.p {
  background: var(--pd);
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, .2)
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .9rem;
  transition: transform .25s, box-shadow .25s;
  white-space: nowrap
}

.btn-grad {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 24px rgba(10, 191, 188, .25)
}

.btn-grad:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(10, 191, 188, .4)
}

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  border: 1px solid var(--border2);
  backdrop-filter: blur(8px)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .25);
  transform: translateY(-2px)
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.rd1 {
  transition-delay: .1s
}

.rd2 {
  transition-delay: .2s
}

.rd3 {
  transition-delay: .3s
}

.rd4 {
  transition-delay: .4s
}

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .15
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--px);
  background: rgba(8, 12, 20, .3);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  transition: background .4s, border .4s
}

nav.sc {
  background: rgba(8, 12, 20, 1);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border)
}

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.02em
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(10, 191, 188, .28);
  transition: transform .3s, box-shadow .3s;
  flex-shrink: 0
}

.logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 0 30px rgba(10, 191, 188, .5)
}

.logo .pc {
  color: var(--purple)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none
}

.nav-links a {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 500;
  transition: color .2s;
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--grad);
  transition: width .25s
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white)
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%
}

.nav-cta {
  background: var(--grad);
  color: #fff;
  padding: 9px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .83rem;
  box-shadow: 0 4px 16px rgba(10, 191, 188, .22);
  transition: transform .2s, box-shadow .2s
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(10, 191, 188, .38)
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px
}

.ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--muted);
  border-radius: 2px;
  transition: all .3s
}

.ham.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

.ham.open span:nth-child(2) {
  opacity: 0
}

.ham.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(8, 12, 20, .98);
  backdrop-filter: blur(28px);
  z-index: 199;
  padding: 90px var(--px) 40px;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1)
}

.nav-drawer.open {
  transform: translateX(0)
}

.nav-drawer a {
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color .2s
}

.nav-drawer a:hover {
  color: var(--teal)
}

.nav-drawer .d-cta {
  background: var(--grad);
  color: #fff;
  border-radius: 100px;
  text-align: center;
  padding: 14px;
  margin-top: 24px;
  font-size: 1rem;
  border: none
}

/* PAGE HERO */
.page-hero {
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding: 140px var(--px) 80px;
  position: relative;
  overflow: hidden
}

.ph-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 10% 60%, rgba(10, 191, 188, .22), transparent 60%),
    radial-gradient(ellipse 55% 45% at 90% 30%, rgba(139, 92, 246, .22), transparent 58%);
  animation: mp 8s ease-in-out infinite alternate
}

@keyframes mp {
  from {
    opacity: .7
  }

  to {
    opacity: 1
  }
}

.ph-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(10, 191, 188, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 191, 188, .06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%)
}

.ph-orb1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(70px);
  background: radial-gradient(circle, rgba(10, 191, 188, .28), transparent 65%);
  left: -10%;
  top: -30%;
  animation: op 7s ease-in-out infinite alternate;
  pointer-events: none
}

.ph-orb2 {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  background: radial-gradient(circle, rgba(139, 92, 246, .28), transparent 65%);
  right: -8%;
  bottom: -20%;
  animation: op 9s ease-in-out infinite alternate;
  animation-delay: -4s;
  pointer-events: none
}

@keyframes op {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.18)
  }
}

.ph-content {
  position: relative;
  z-index: 2;
  max-width: 700px
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  background: rgba(10, 191, 188, .07);
  border: 1px solid rgba(10, 191, 188, .2);
  animation: fu .5s ease both
}

.bdot {
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 7px var(--teal);
  animation: blink 2s infinite
}

.ph-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.07;
  letter-spacing: -.03em;
  animation: fu .6s .1s ease both
}

.ph-content h1 .g {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.ph-content .ph-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 18px;
  max-width: 520px;
  line-height: 1.8;
  animation: fu .6s .2s ease both
}

.ph-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
  animation: fu .6s .3s ease both
}

.breadcrumb {
  position: absolute;
  bottom: 28px;
  left: var(--px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  color: var(--muted);
  z-index: 2
}

.breadcrumb a {
  color: var(--muted);
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--teal)
}

.breadcrumb .bc-current {
  color: var(--teal)
}

.bc-sep {
  color: var(--faint)
}

/* MARQUEE */
.marq {
  padding: 13px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden
}

.marq-track {
  display: flex;
  animation: mq 24s linear infinite;
  white-space: nowrap
}

.marq-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em
}

.marq-item .dot {
  width: 4px;
  height: 4px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--teal)
}

@keyframes mq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* STORY */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 52px
}

.story-imgs {
  position: relative;
  height: 500px
}

.s-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 74%;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border)
}

.s-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.82);
  transition: transform .5s
}

.s-main:hover img {
  transform: scale(1.04)
}

.s-sec {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56%;
  height: 250px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--bg);
  outline: 1px solid var(--border)
}

.s-sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.8);
  transition: transform .5s
}

.s-sec:hover img {
  transform: scale(1.05)
}

.s-float {
  position: absolute;
  left: 52%;
  top: 44%;
  transform: translate(-50%, -50%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 0 30px rgba(10, 191, 188, .2);
  text-align: center;
  min-width: 130px;
  z-index: 3
}

.sf-n {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  text-shadow: 0 0 20px rgba(10, 191, 188, .4)
}

.sf-l {
  font-size: .68rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em
}

.story-text p {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.85;
  margin-bottom: 16px
}

.story-text p strong {
  color: var(--white);
  font-weight: 600
}

.story-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px
}

/* NUMBERS */
.num-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 52px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  position: relative
}

.num-card {
  background: var(--card);
  padding: 36px 28px;
  text-align: center;
  transition: background .25s;
  position: relative;
  overflow: hidden
}

.num-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s
}

.num-card:hover {
  background: #151E36
}

.num-card:hover::after {
  transform: scaleX(1)
}

.num-n {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px
}

.num-l {
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px
}

.num-d {
  font-size: .75rem;
  color: var(--muted)
}

/* VALUES */
.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px
}

.val-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 26px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
  cursor: default
}

.val-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s
}

.val-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .4)
}

.val-card:hover::before {
  transform: scaleX(1)
}

.val-card:nth-child(odd):hover {
  border-color: rgba(10, 191, 188, .2)
}

.val-card:nth-child(even):hover {
  border-color: rgba(139, 92, 246, .2)
}

.val-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: transform .3s
}

.val-card:hover .val-icon {
  transform: scale(1.1) rotate(-5deg)
}

.val-icon.t {
  background: var(--td);
  border: 1px solid rgba(10, 191, 188, .2)
}

.val-icon.p {
  background: var(--pd);
  border: 1px solid rgba(139, 92, 246, .2)
}

.val-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px
}

.val-card p {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.72
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px
}

.member {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: default
}

.member:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
  border-color: rgba(10, 191, 188, .2)
}

.m-img {
  height: 210px;
  position: relative;
  overflow: hidden
}

.m-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72);
  transition: transform .5s, filter .4s
}

.member:hover .m-img img {
  transform: scale(1.06);
  filter: brightness(.88)
}

.m-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 12, 20, .85) 100%)
}

.m-socials {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s
}

.member:hover .m-socials {
  opacity: 1;
  transform: translateY(0)
}

.msoc {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  transition: background .2s
}

.msoc:hover {
  background: var(--teal);
  border-color: var(--teal)
}

.m-body {
  padding: 20px
}

.m-name {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px
}

.m-role {
  font-size: .72rem;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px
}

.m-bio {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.65
}

.m-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px
}

.mtag {
  font-size: .62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--td);
  color: var(--teal);
  border: 1px solid rgba(10, 191, 188, .2)
}

/* TIMELINE */
.tl-wrap {
  position: relative;
  margin-top: 52px
}

.tl-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--teal), var(--purple), transparent);
  transform: translateX(-50%)
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 44px
}

.tl-item:last-child {
  margin-bottom: 0
}

.tl-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 26px;
  transition: border-color .25s, box-shadow .25s
}

.tl-box:hover {
  border-color: rgba(10, 191, 188, .25);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .35)
}

.tl-box h4 {
  font-family: 'Fraunces', serif;
  font-size: .98rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px
}

.tl-box p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.65
}

.tl-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1
}

.tl-year {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center
}

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(10, 191, 188, .12), 0 0 16px rgba(10, 191, 188, .35)
}

.tl-empty {
  display: block
}

/* right-aligned items */
.tl-item.r .tl-box {
  order: 3
}

.tl-item.r .tl-empty {
  order: 1
}

.tl-item.r .tl-center {
  order: 2
}

/* CLIENTS */
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 48px
}

.cl {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 26px;
  font-family: 'Fraunces', serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--muted);
  transition: all .25s;
  cursor: default
}

.cl:hover {
  border-color: rgba(10, 191, 188, .28);
  color: var(--teal);
  box-shadow: 0 0 0 1px rgba(10, 191, 188, .1), 0 8px 24px rgba(0, 0, 0, .3);
  transform: translateY(-3px)
}

/* CULTURE */
.cul-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 12px;
  margin-top: 48px
}

.cul {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border)
}

.cul img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.62);
  transition: transform .5s, filter .4s
}

.cul:hover img {
  transform: scale(1.06);
  filter: brightness(.82)
}

.cul.sp2 {
  grid-column: span 2
}

.cul.r2 {
  grid-row: span 2
}

.cul-lbl {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(8, 12, 20, .75);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .67rem;
  font-weight: 700;
  color: var(--teal);
  border: 1px solid rgba(10, 191, 188, .2)
}

/* PROCESS */
.proc-wrap {
  position: relative
}

.proc-wrap::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  opacity: .18;
  z-index: 0
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 52px;
  position: relative;
  z-index: 1
}

.proc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 22px;
  transition: transform .25s, box-shadow .25s, border-color .25s
}

.proc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
  border-color: rgba(10, 191, 188, .22)
}

.proc-n {
  font-family: 'Fraunces', serif;
  font-size: .8rem;
  font-weight: 800;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--td);
  border-radius: 9px;
  border: 1px solid rgba(10, 191, 188, .2);
  margin-bottom: 16px
}

.proc-card h3 {
  font-family: 'Fraunces', serif;
  font-size: .94rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 7px
}

.proc-card p {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65
}

/* TESTI */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px
}

.tc2 {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  position: relative
}

.tc2-img {
  height: 90px;
  overflow: hidden;
  position: relative
}

.tc2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.45)
}

.tc2-img::after {
  content: '"';
  position: absolute;
  bottom: -10px;
  right: 14px;
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  color: var(--teal);
  opacity: .15;
  line-height: 1;
  font-weight: 800
}

.tc2-body {
  padding: 20px 22px 22px
}

.tc2:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .45);
  transform: translateY(-4px);
  border-color: rgba(10, 191, 188, .16)
}

.stars {
  color: #F59E0B;
  font-size: .78rem;
  letter-spacing: 2px;
  margin-bottom: 9px
}

.tc2 blockquote {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.75;
  font-style: italic;
  quotes: none
}

.tc2-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--border)
}

.tc2-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: .78rem;
  flex-shrink: 0
}

.tc2-name {
  font-weight: 700;
  font-size: .82rem;
  color: var(--white)
}

.tc2-role {
  font-size: .7rem;
  color: var(--muted)
}

/* CTA BAND */
.cta-band {
  padding: 80px var(--px);
  background: var(--bg)
}

.cta-inner {
  background: linear-gradient(135deg, #0F1A30, #150F28);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 191, 188, .12), transparent 60%)
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, .1), transparent 60%)
}

.cta-lbl {
  color: var(--teal);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px
}

.cta-inner h2 {
  color: var(--white);
  max-width: 500px;
  margin: 0 auto 12px
}

.cta-inner .cta-sub {
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 28px;
  font-size: .92rem
}

.cta-acts {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

/* FOOTER */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 52px var(--px) 26px
}

.ft {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border)
}

.fl-t {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -.02em
}

.fl-t .tc {
  color: var(--teal)
}

.fbrand p {
  color: var(--muted);
  font-size: .82rem;
  max-width: 240px;
  line-height: 1.7
}

.fcol h4 {
  font-size: .7rem;
  font-weight: 700;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px
}

.fcol a {
  display: block;
  color: var(--muted);
  font-size: .84rem;
  margin-bottom: 9px;
  transition: color .2s
}

.fcol a:hover {
  color: var(--teal)
}

.fbot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 10px
}

.fcp {
  color: var(--faint);
  font-size: .77rem
}

.fcp a {
  color: var(--teal)
}

.fsocs {
  display: flex;
  gap: 8px
}

.sb {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
  transition: all .2s
}

.sb:hover {
  background: var(--td);
  color: var(--teal);
  border-color: rgba(10, 191, 188, .28)
}

/* WA */
.waf {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, .4);
  transition: transform .2s, box-shadow .2s;
  animation: fin .6s 1s ease both
}

.waf:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .5)
}

.waf svg {
  width: 26px;
  height: 26px;
  fill: #fff
}

@keyframes fin {
  from {
    opacity: 0;
    transform: scale(0)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

/* RESPONSIVE */
@media(max-width:1024px) {
  :root {
    --px: 5%;
    --sec: 72px
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .val-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .num-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cul-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto
  }

  .cul.sp2,
  .cul.r2 {
    grid-column: span 1;
    grid-row: span 1
  }

  .ft {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .nav-links {
    gap: 18px
  }

  .nav-links a {
    font-size: .8rem
  }

  .tl-item {
    grid-template-columns: 1fr 80px 1fr;
    gap: 18px
  }

  .proc-wrap::before {
    display: none
  }
}

@media(max-width:768px) {
  :root {
    --px: 5%;
    --sec: 60px
  }

  body {
    cursor: default
  }

  .nav-links,
  .nav-cta {
    display: none
  }

  .ham {
    display: flex
  }

  .nav-drawer {
    display: flex
  }

  .page-hero {
    padding: 110px var(--px) 60px
  }

  .ph-content h1 {
    font-size: clamp(2rem, 6vw, 3rem)
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 0
  }

  .story-imgs {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px
  }

  .s-main,
  .s-sec {
    position: static;
    width: 100%;
    height: 220px;
    border: 1px solid var(--border)
  }

  .s-float {
    position: static;
    transform: none;
    margin: 8px auto 0;
    width: fit-content
  }

  .num-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .val-grid {
    grid-template-columns: 1fr 1fr
  }

  .proc-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .tl-line {
    display: none
  }

  .tl-item {
    grid-template-columns: 1fr;
    gap: 6px
  }

  .tl-center {
    flex-direction: row;
    justify-content: flex-start;
    padding: 4px 0
  }

  .tl-empty {
    display: none
  }

  .tl-item.r .tl-box,
  .tl-item.r .tl-empty,
  .tl-item.r .tl-center {
    order: unset
  }

  .testi-grid {
    grid-template-columns: 1fr
  }

  .cta-acts {
    flex-direction: column;
    align-items: center
  }

  .cta-acts .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center
  }

  .ft {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .cul-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:430px) {
  :root {
    --px: 5%;
    --sec: 52px
  }

  h2 {
    font-size: clamp(1.4rem, 6.5vw, 2rem)
  }

  .page-hero {
    padding: 90px var(--px) 48px
  }

  .ph-content h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.4rem)
  }

  .ph-content .ph-sub {
    font-size: .9rem
  }

  .ph-actions {
    flex-direction: column;
    gap: 10px
  }

  .ph-actions .btn {
    width: 100%;
    justify-content: center
  }

  .num-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .num-n {
    font-size: 2.2rem
  }

  .num-card {
    padding: 24px 16px
  }

  .val-grid {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .val-card {
    padding: 24px 20px
  }

  .team-grid {
    grid-template-columns: 1fr
  }

  .proc-grid {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .clients-logos {
    gap: 8px
  }

  .cl {
    padding: 13px 18px;
    font-size: .82rem
  }

  .cul-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 8px
  }

  .cta-inner {
    padding: 34px 18px;
    border-radius: 16px
  }

  .cta-inner h2 {
    font-size: 1.4rem
  }

  .ft {
    grid-template-columns: 1fr
  }

  .fbot {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
  }

  .story-actions {
    flex-direction: column;
    gap: 10px
  }

  .story-actions .btn {
    width: 100%;
    justify-content: center
  }

  .waf {
    width: 44px;
    height: 44px;
    bottom: 18px;
    right: 18px
  }

  section {
    padding: 52px var(--px)
  }
}

@media(max-width:375px) {
  :root {
    --px: 4.5%
  }

  .ph-content h1 {
    font-size: 1.75rem
  }

  .num-n {
    font-size: 2rem
  }
}


.reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* FINAL DE NOSOTROS */

/* ===== OPTIMIZACIÓN PRO WEBELIX ===== */

/* 1. PERFORMANCE MOBILE */
@media (max-width: 768px) {

  .h-orb,
  .particle,
  .h-mesh {
    animation: none !important;
  }

  .h-orb1,
  .h-orb2,
  .h-orb3 {
    filter: blur(25px) !important;
  }
}

/* 2. REDUCCIÓN DE BLUR GLOBAL */
.h-orb1,
.h-orb2 {
  filter: blur(35px);
}

.h-orb3 {
  filter: blur(25px);
}

/* 3. SOMBRAS MÁS LIGERAS */
.prc:hover,
.tc2:hover,
.svc-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4) !important;
}

/* 4. MEJOR TRANSICIÓN GENERAL */
.btn,
.svc-card,
.pi,
.dc,
.aval,
.ctm {
  transition: all .25s ease;
}

/* 5. FIX ANIMACIÓN REVEAL (más fluida) */
.reveal {
  will-change: opacity, transform;
}

/* 6. EVITAR OVERFLOW BUGS */
html,
body {
  overflow-x: hidden;
}

/* 7. MEJOR RENDER EN SAFARI */
.h-mesh,
.particles {
  will-change: opacity;
}

/* 8. FIX INTERACCIÓN MÁS SUAVE */
a,
button {
  cursor: pointer;
}

/* 9. PERFORMANCE GENERAL */
* {
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Toda la sección de servicios */

/* ── PAGE HERO ── */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 140px var(--px) 80px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg)
}

.ph-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 10% 60%, rgba(10, 191, 188, .22), transparent 60%),
    radial-gradient(ellipse 55% 45% at 90% 30%, rgba(139, 92, 246, .22), transparent 58%);
  animation: mp 8s ease-in-out infinite alternate
}

.ph-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 191, 188, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 191, 188, .06) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%)
}

.ph-orb1 {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(65px);
  background: radial-gradient(circle, rgba(10, 191, 188, .28), transparent 65%);
  left: -8%;
  top: -25%;
  animation: phop 7s ease-in-out infinite alternate;
  pointer-events: none
}

.ph-orb2 {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(65px);
  background: radial-gradient(circle, rgba(139, 92, 246, .28), transparent 65%);
  right: -6%;
  bottom: -18%;
  animation: phop 9s ease-in-out infinite alternate;
  animation-delay: -4s;
  pointer-events: none
}

@keyframes phop {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(12px, -14px)
  }
}

.ph-content {
  position: relative;
  z-index: 2;
  max-width: 700px
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  background: rgba(10, 191, 188, .07);
  border: 1px solid rgba(10, 191, 188, .2);
  animation: fu .5s ease both
}

.bdot {
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 7px var(--teal);
  animation: blink 2s infinite
}

.ph-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.07;
  letter-spacing: -.03em;
  animation: fu .6s .1s ease both
}

.ph-content h1 .g {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.ph-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 18px;
  max-width: 520px;
  line-height: 1.8;
  animation: fu .6s .2s ease both
}

.ph-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
  animation: fu .6s .3s ease both
}

.breadcrumb {
  position: absolute;
  bottom: 28px;
  left: var(--px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  color: var(--muted);
  z-index: 2
}

.breadcrumb a {
  color: var(--muted);
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--teal)
}

.bc-current {
  color: var(--teal)
}

.bc-sep {
  color: var(--faint)
}

/* ── SERVICIOS GRID ── */
.svc-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px
}

.svc-full-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative
}

.svc-full-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s
}

.svc-full-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .45);
  border-color: rgba(10, 191, 188, .22)
}

.svc-full-card:hover::before {
  transform: scaleX(1)
}

.sfc-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #121A2E
}

.sfc-img img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(.6);
  transition: transform .5s, filter .4s
}

.svc-full-card:hover .sfc-img img {
  transform: scale(1.06);
  filter: brightness(.78)
}

.sfc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18, 26, 46, .98) 100%)
}

.sfc-body {
  padding: 26px 26px 28px
}

.sfc-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 16px;
  transition: transform .3s
}

.sfc-icon.t {
  background: var(--td);
  border: 1px solid rgba(10, 191, 188, .2)
}

.sfc-icon.p {
  background: var(--pd);
  border: 1px solid rgba(139, 92, 246, .2)
}

.svc-full-card:hover .sfc-icon {
  transform: scale(1.1) rotate(-5deg)
}

.sfc-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px
}

.sfc-body>p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.78;
  margin-bottom: 18px
}

.sfc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px
}

.sfc-tag {
  font-size: .64rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--td);
  color: var(--teal);
  border: 1px solid rgba(10, 191, 188, .2)
}

.sfc-tag.p {
  background: var(--pd);
  color: var(--purple);
  border-color: rgba(139, 92, 246, .2)
}

.sfc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--teal);
  transition: gap .2s
}

.sfc-link:hover {
  gap: 11px
}

/* ── PROCESO ── */
.proc-pg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 52px;
  position: relative
}

.proc-pg::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  opacity: .18;
  z-index: 0
}

.pp-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 22px;
  position: relative;
  z-index: 1;
  transition: transform .25s, box-shadow .25s, border-color .25s
}

.pp-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
  border-color: rgba(10, 191, 188, .25)
}

.pp-n {
  font-family: 'Fraunces', serif;
  font-size: .8rem;
  font-weight: 800;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--td);
  border-radius: 10px;
  border: 1px solid rgba(10, 191, 188, .2);
  margin-bottom: 14px
}

.pp-step h3 {
  font-size: .94rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px
}

.pp-step p {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65
}

/* ── FAQ ── */
.faql-pg {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.fqi-pg {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 13px;
  overflow: hidden;
  transition: border-color .2s
}

.fqi-pg.open {
  border-color: rgba(10, 191, 188, .25)
}

.fqq-pg {
  padding: 17px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 12px
}

.fqq-pg span {
  font-weight: 700;
  font-size: .88rem;
  color: var(--white)
}

.fqico-pg {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .85rem;
  transition: transform .25s, background .2s, color .2s
}

.fqi-pg.open .fqico-pg {
  transform: rotate(45deg);
  background: var(--td);
  color: var(--teal);
  border-color: rgba(10, 191, 188, .28)
}

.fqa-pg {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  padding: 0 20px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.75
}

.fqi-pg.open .fqa-pg {
  max-height: 200px;
  padding: 0 20px 16px
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .svc-full-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .proc-pg {
    grid-template-columns: repeat(2, 1fr)
  }

  .proc-pg::before {
    display: none
  }
}

@media(max-width:768px) {
  .page-hero {
    padding: 110px var(--px) 60px;
    min-height: auto
  }

  .ph-content h1 {
    font-size: clamp(2rem, 6vw, 3rem)
  }

  .ph-actions {
    flex-direction: column;
    gap: 10px
  }

  .ph-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center
  }

  .svc-full-grid {
    grid-template-columns: 1fr
  }

  .proc-pg {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:430px) {
  .page-hero {
    padding: 90px var(--px) 48px
  }

  .ph-content h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.4rem)
  }

  .svc-full-grid {
    gap: 14px
  }

  .proc-pg {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .proc-pg::before {
    display: none
  }
}

/* FIN SERVICIOS */

/* --SECCIÓN DE PORTAFOLIO -- */

/* ── PAGE HERO ── */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 140px var(--px) 80px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg)
}

.ph-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 10% 60%, rgba(10, 191, 188, .22), transparent 60%), radial-gradient(ellipse 55% 45% at 90% 30%, rgba(139, 92, 246, .22), transparent 58%);
  animation: mp 8s ease-in-out infinite alternate
}

.ph-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(10, 191, 188, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 191, 188, .06) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%)
}

.ph-orb1 {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(65px);
  background: radial-gradient(circle, rgba(10, 191, 188, .28), transparent 65%);
  left: -8%;
  top: -25%;
  animation: phop 7s ease-in-out infinite alternate;
  pointer-events: none
}

.ph-orb2 {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(65px);
  background: radial-gradient(circle, rgba(139, 92, 246, .28), transparent 65%);
  right: -6%;
  bottom: -18%;
  animation: phop 9s ease-in-out infinite alternate;
  animation-delay: -4s;
  pointer-events: none
}

@keyframes phop {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(12px, -14px)
  }
}

.ph-content {
  position: relative;
  z-index: 2;
  max-width: 700px
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  background: rgba(10, 191, 188, .07);
  border: 1px solid rgba(10, 191, 188, .2);
  animation: fu .5s ease both
}

.bdot {
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 7px var(--teal);
  animation: blink 2s infinite
}

.ph-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.07;
  letter-spacing: -.03em;
  animation: fu .6s .1s ease both
}

.ph-content h1 .g {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.ph-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 18px;
  max-width: 520px;
  line-height: 1.8;
  animation: fu .6s .2s ease both
}

.ph-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
  animation: fu .6s .3s ease both
}

.breadcrumb {
  position: absolute;
  bottom: 28px;
  left: var(--px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  color: var(--muted);
  z-index: 2
}

.breadcrumb a {
  color: var(--muted);
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--teal)
}

.bc-current {
  color: var(--teal)
}

.bc-sep {
  color: var(--faint)
}

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 52px
}

.sc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 22px;
  text-align: center;
  transition: transform .25s, border-color .25s;
  position: relative;
  overflow: hidden
}

.sc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s
}

.sc:hover {
  transform: translateY(-4px)
}

.sc:hover::after {
  transform: scaleX(1)
}

.sc-n {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px
}

.sc-l {
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px
}

.sc-d {
  font-size: .74rem;
  color: var(--muted)
}

/* ── PORT FULL GRID ── */
.port-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px
}

.pfi {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s
}

.pfi:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .5)
}

.pfi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55);
  transition: filter .4s
}

.pfi:hover img {
  filter: brightness(.35)
}

.pfi-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(8, 12, 20, .95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s
}

.pfi:hover .pfi-ov {
  opacity: 1
}

.pfi-cat {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: .63rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.pfi-cat.p {
  background: var(--purple)
}

.pfi-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px
}

.pfi-desc {
  font-size: .76rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 8px
}

.pfi-result {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--teal)
}

.pfi.wide {
  grid-column: span 2
}

.pfi.tall {
  grid-row: span 2
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .port-full {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px
  }

  .pfi.wide {
    grid-column: span 2
  }
}

@media(max-width:768px) {
  .page-hero {
    padding: 110px var(--px) 60px;
    min-height: auto
  }

  .ph-content h1 {
    font-size: clamp(2rem, 6vw, 3rem)
  }

  .ph-actions {
    flex-direction: column;
    gap: 10px
  }

  .ph-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center
  }

  .port-full {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px
  }

  .pfi-ov {
    opacity: 1
  }
}

@media(max-width:430px) {
  .page-hero {
    padding: 90px var(--px) 48px
  }

  .ph-content h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.4rem)
  }

  .stats-row {
    grid-template-columns: 1fr 1fr
  }

  .port-full {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px
  }

  .pfi.wide,
  .pfi.tall {
    grid-column: span 1;
    grid-row: span 1
  }

  .pfi-ov {
    opacity: 1
  }
}

/* FIN PORTAFOLIO */

/* SECCION DE PRECIOS */

/* PAGE HERO */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 140px var(--px) 80px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg)
}

.ph-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 10% 60%, rgba(10, 191, 188, .22), transparent 60%), radial-gradient(ellipse 55% 45% at 90% 30%, rgba(139, 92, 246, .22), transparent 58%);
  animation: mp 8s ease-in-out infinite alternate
}

.ph-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(10, 191, 188, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 191, 188, .06) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%)
}

.ph-orb1 {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(65px);
  background: radial-gradient(circle, rgba(10, 191, 188, .28), transparent 65%);
  left: -8%;
  top: -25%;
  animation: phop 7s ease-in-out infinite alternate;
  pointer-events: none
}

.ph-orb2 {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(65px);
  background: radial-gradient(circle, rgba(139, 92, 246, .28), transparent 65%);
  right: -6%;
  bottom: -18%;
  animation: phop 9s ease-in-out infinite alternate;
  animation-delay: -4s;
  pointer-events: none
}

@keyframes phop {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(12px, -14px)
  }
}

.ph-content {
  position: relative;
  z-index: 2;
  max-width: 700px
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  background: rgba(10, 191, 188, .07);
  border: 1px solid rgba(10, 191, 188, .2);
  animation: fu .5s ease both
}

.bdot {
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 7px var(--teal);
  animation: blink 2s infinite
}

.ph-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.07;
  letter-spacing: -.03em;
  animation: fu .6s .1s ease both
}

.ph-content h1 .g {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.ph-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 18px;
  max-width: 520px;
  line-height: 1.8;
  animation: fu .6s .2s ease both
}

.ph-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
  animation: fu .6s .3s ease both
}

.breadcrumb {
  position: absolute;
  bottom: 28px;
  left: var(--px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  color: var(--muted);
  z-index: 2
}

.breadcrumb a {
  color: var(--muted);
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--teal)
}

.bc-current {
  color: var(--teal)
}

.bc-sep {
  color: var(--faint)
}

/* INCLUDES BAND */
.includes-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px
}

.inc-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 100px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text)
}

.inc-item .inc-check {
  color: var(--teal);
  font-size: .85rem
}

/* COMPARISON TABLE */
.comp-wrap {
  overflow-x: auto;
  margin-top: 52px;
  border-radius: var(--r);
  border: 1px solid var(--border)
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px
}

.comp-table th {
  padding: 18px 20px;
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  background: var(--surface)
}

.comp-table th:not(:first-child) {
  text-align: center
}

.comp-table td {
  padding: 14px 20px;
  font-size: .84rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.comp-table td:not(:first-child) {
  text-align: center
}

.comp-table tr:last-child td {
  border-bottom: none
}

.comp-table tr:hover td {
  background: rgba(255, 255, 255, .02)
}

.ct-feat {
  color: var(--text);
  font-weight: 500
}

.ct-cat {
  background: var(--surface);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal)
}

.ct-cat td {
  padding: 10px 20px
}

.ct-yes {
  color: var(--teal);
  font-size: 1rem
}

.ct-no {
  color: var(--faint);
  font-size: .85rem
}

.ct-val {
  color: var(--white);
  font-weight: 600;
  font-size: .82rem
}

.ct-head-feat {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white)
}

.ct-head-price {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white)
}

.ct-head-price sup {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 400
}

.ct-head-price small {
  font-size: .72rem;
  font-weight: 400;
  color: var(--muted)
}

.ct-head-pop {
  background: linear-gradient(145deg, #151E36, #0F1628);
  position: relative
}

.ct-pop-badge {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px
}

.ct-head-btn {
  display: block;
  margin-top: 10px;
  padding: 8px 18px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  text-decoration: none;
  transition: all .2s
}

.ct-btn-out {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2)
}

.ct-btn-out:hover {
  border-color: var(--teal);
  color: var(--teal)
}

.ct-btn-grad {
  background: var(--grad);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(10, 191, 188, .22)
}

.ct-btn-grad:hover {
  box-shadow: 0 8px 22px rgba(10, 191, 188, .38)
}

.ct-btn-purple {
  background: var(--pd);
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, .2)
}

.ct-btn-purple:hover {
  background: var(--purple);
  color: #fff
}

/* FAQ */
.faql-pg {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.fqi-pg {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 13px;
  overflow: hidden;
  transition: border-color .2s
}

.fqi-pg.open {
  border-color: rgba(10, 191, 188, .25)
}

.fqq-pg {
  padding: 17px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 12px
}

.fqq-pg span {
  font-weight: 700;
  font-size: .88rem;
  color: var(--white)
}

.fqico-pg {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .85rem;
  transition: transform .25s, background .2s, color .2s
}

.fqi-pg.open .fqico-pg {
  transform: rotate(45deg);
  background: var(--td);
  color: var(--teal);
  border-color: rgba(10, 191, 188, .28)
}

.fqa-pg {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  padding: 0 20px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.75
}

.fqi-pg.open .fqa-pg {
  max-height: 200px;
  padding: 0 20px 16px
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .pr-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ad-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  .page-hero {
    padding: 110px var(--px) 60px;
    min-height: auto
  }

  .ph-content h1 {
    font-size: clamp(2rem, 6vw, 3rem)
  }

  .ph-actions {
    flex-direction: column;
    gap: 10px
  }

  .ph-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center
  }

  .pr-grid {
    grid-template-columns: 1fr 1fr;
    padding-top: 18px
  }

  .ad-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:430px) {
  .page-hero {
    padding: 90px var(--px) 48px
  }

  .ph-content h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.4rem)
  }

  .pr-grid {
    grid-template-columns: 1fr;
    padding-top: 20px;
    gap: 14px
  }

  .prc.ft {
    padding-top: 40px
  }

  .ad-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px
  }

  .includes-band {
    gap: 8px
  }

  .inc-item {
    font-size: .72rem;
    padding: 6px 13px
  }
}

/* FIN PRECIOS */

/* SECCIÓN DE CONTACTO */

/* PAGE HERO */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 140px var(--px) 80px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg)
}

.ph-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 10% 60%, rgba(10, 191, 188, .22), transparent 60%), radial-gradient(ellipse 55% 45% at 90% 30%, rgba(139, 92, 246, .22), transparent 58%);
  animation: mp 8s ease-in-out infinite alternate
}

.ph-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(10, 191, 188, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 191, 188, .06) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%)
}

.ph-orb1 {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(65px);
  background: radial-gradient(circle, rgba(10, 191, 188, .28), transparent 65%);
  left: -8%;
  top: -25%;
  animation: phop 7s ease-in-out infinite alternate;
  pointer-events: none
}

.ph-orb2 {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(65px);
  background: radial-gradient(circle, rgba(139, 92, 246, .28), transparent 65%);
  right: -6%;
  bottom: -18%;
  animation: phop 9s ease-in-out infinite alternate;
  animation-delay: -4s;
  pointer-events: none
}

@keyframes phop {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(12px, -14px)
  }
}

.ph-content {
  position: relative;
  z-index: 2;
  max-width: 700px
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  background: rgba(10, 191, 188, .07);
  border: 1px solid rgba(10, 191, 188, .2);
  animation: fu .5s ease both
}

.bdot {
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 7px var(--teal);
  animation: blink 2s infinite
}

.ph-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.07;
  letter-spacing: -.03em;
  animation: fu .6s .1s ease both
}

.ph-content h1 .g {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.ph-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 18px;
  max-width: 520px;
  line-height: 1.8;
  animation: fu .6s .2s ease both
}

.breadcrumb {
  position: absolute;
  bottom: 28px;
  left: var(--px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  color: var(--muted);
  z-index: 2
}

.breadcrumb a {
  color: var(--muted);
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--teal)
}

.bc-current {
  color: var(--teal)
}

.bc-sep {
  color: var(--faint)
}

/* CONTACT MAIN GRID */
.contact-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-top: 52px
}

/* LEFT: info + channels */
.contact-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px
}

.contact-info>p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.82;
  margin-bottom: 32px
}

.ch-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px
}

.ch {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all .2s;
  text-decoration: none
}

.ch:hover {
  border-color: rgba(10, 191, 188, .3);
  transform: translateX(5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35)
}

.ch-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0
}

.ch-icon.t {
  background: var(--td)
}

.ch-icon.p {
  background: var(--pd)
}

.ch-icon.g {
  background: rgba(34, 197, 94, .1)
}

.ch-icon.o {
  background: rgba(249, 115, 22, .1)
}

.ch-label {
  font-size: .68rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em
}

.ch-value {
  font-weight: 700;
  font-size: .9rem;
  color: var(--white)
}

.ch-sub {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 1px
}

/* response time badge */
.resp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(10, 191, 188, .06);
  border: 1px solid rgba(10, 191, 188, .15);
  border-radius: 12px;
  font-size: .82rem;
  color: var(--muted)
}

.resp-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, .5);
  animation: blink 2s infinite
}

.resp-badge strong {
  color: var(--white);
  font-weight: 700
}

/* RIGHT: form card — extend existing .ctf styles */
.ctf-lg {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35)
}

.ctf-lg h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px
}

.ctf-lg .sub {
  color: var(--muted);
  font-size: .82rem;
  margin-bottom: 24px
}

.budget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px
}

.budget-btn {
  padding: 10px 8px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .76rem;
  font-weight: 600;
  transition: all .2s
}

.budget-btn:hover,
.budget-btn.sel {
  background: var(--td);
  border-color: rgba(10, 191, 188, .3);
  color: var(--teal)
}

.bg-label {
  font-size: .74rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  display: block
}

/* FAQ contacto */
.faql-pg {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.fqi-pg {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 13px;
  overflow: hidden;
  transition: border-color .2s
}

.fqi-pg.open {
  border-color: rgba(10, 191, 188, .25)
}

.fqq-pg {
  padding: 17px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 12px
}

.fqq-pg span {
  font-weight: 700;
  font-size: .88rem;
  color: var(--white)
}

.fqico-pg {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .85rem;
  transition: transform .25s, background .2s, color .2s
}

.fqi-pg.open .fqico-pg {
  transform: rotate(45deg);
  background: var(--td);
  color: var(--teal);
  border-color: rgba(10, 191, 188, .28)
}

.fqa-pg {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  padding: 0 20px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.75
}

.fqi-pg.open .fqa-pg {
  max-height: 200px;
  padding: 0 20px 16px
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .contact-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }
}

@media(max-width:768px) {
  .page-hero {
    padding: 110px var(--px) 60px;
    min-height: auto
  }

  .ph-content h1 {
    font-size: clamp(2rem, 6vw, 3rem)
  }

  .contact-main {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .ctf-lg {
    padding: 26px 22px
  }

  .budget-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:430px) {
  .page-hero {
    padding: 90px var(--px) 48px
  }

  .ph-content h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.4rem)
  }

  .ctf-lg {
    padding: 22px 16px
  }

  .budget-grid {
    grid-template-columns: 1fr 1fr
  }

  .fr2 {
    grid-template-columns: 1fr
  }
}

/* FIN CONTACTO */

/* ===== PRIVACIDAD ===== */

.page-hero {
  min-height: 42vh;
  display: flex;
  align-items: center;
  padding: 140px var(--px) 70px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg)
}

.ph-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 8% 55%, rgba(10, 191, 188, .18), transparent 58%),
    radial-gradient(ellipse 50% 40% at 92% 28%, rgba(139, 92, 246, .18), transparent 55%);
  animation: mp 8s ease-in-out infinite alternate
}

.ph-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(10, 191, 188, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 191, 188, .05) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%)
}

.ph-orb1 {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(65px);
  background: radial-gradient(circle, rgba(10, 191, 188, .22), transparent 65%);
  left: -6%;
  top: -20%;
  animation: phop 7s ease-in-out infinite alternate;
  pointer-events: none
}

.ph-orb2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(65px);
  background: radial-gradient(circle, rgba(139, 92, 246, .22), transparent 65%);
  right: -4%;
  bottom: -15%;
  animation: phop 9s ease-in-out infinite alternate;
  animation-delay: -4s;
  pointer-events: none
}

@keyframes phop {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(10px, -12px)
  }
}

.ph-content {
  position: relative;
  z-index: 2;
  max-width: 700px
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  background: rgba(10, 191, 188, .07);
  border: 1px solid rgba(10, 191, 188, .2);
  animation: fu .5s ease both
}

.bdot {
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 7px var(--teal);
  animation: blink 2s infinite
}

.ph-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.03em;
  animation: fu .6s .1s ease both
}

.ph-sub {
  font-size: .92rem;
  color: var(--muted);
  margin-top: 14px;
  max-width: 520px;
  line-height: 1.8;
  animation: fu .6s .2s ease both
}

.breadcrumb {
  position: absolute;
  bottom: 24px;
  left: var(--px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  color: var(--muted);
  z-index: 2
}

.breadcrumb a {
  color: var(--muted);
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--teal)
}

.bc-current {
  color: var(--teal)
}

.bc-sep {
  color: var(--faint)
}

/* LEGAL CONTENT */
.legal-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 52px;
  align-items: start;
  margin-top: 48px
}

/* sticky index — display:flex overrides from global nav need to be reset */
.legal-index {
  position: sticky;
  top: 100px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 20px;
  display: block !important;
  /* reset any flex from global nav */
}

.legal-index h4 {
  display: block !important;
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
  list-style: none;
  padding: 0
}

.legal-index a {
  display: block !important;
  /* override global nav-links flex/inline */
  width: 100%;
  font-size: .82rem;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: all .2s;
  text-decoration: none;
  white-space: normal;
  /* allow text wrapping */
  line-height: 1.4
}

/* reset global nav ::after underline trick */
.legal-index a::after {
  display: none !important
}

.legal-index a:hover {
  color: var(--teal) !important;
  background: var(--td)
}

.legal-index a.active {
  color: var(--teal) !important;
  background: var(--td)
}

/* article */
.legal-body {
  max-width: 100%
}

.legal-section {
  margin-bottom: 48px;
  scroll-margin-top: 100px
}

.legal-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 10px
}

.legal-section h2 .ls-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--td);
  border: 1px solid rgba(10, 191, 188, .2);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  color: var(--teal);
  flex-shrink: 0
}

.legal-section p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.85;
  margin-bottom: 12px
}

.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 16px;
  padding: 0
}

.legal-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65
}

.legal-section ul li::before {
  content: '✓';
  color: var(--teal);
  font-size: .75rem;
  font-weight: 700;
  margin-top: 3px;
  flex-shrink: 0
}

.legal-section ul li.x::before {
  content: '✕';
  color: var(--faint)
}

.legal-highlight {
  background: rgba(10, 191, 188, .05);
  border: 1px solid rgba(10, 191, 188, .15);
  border-left: 3px solid var(--teal);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 16px 0
}

.legal-highlight p {
  margin-bottom: 0;
  color: var(--text)
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .76rem;
  color: var(--muted);
  margin-bottom: 32px
}

.legal-updated span {
  color: var(--teal);
  font-weight: 700
}

.legal-contact-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  margin-top: 8px
}

.legal-contact-box h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px
}

.legal-contact-box p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px
}

.legal-contact-box a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none
}

.legal-contact-box a:hover {
  text-decoration: underline
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .legal-wrap {
    grid-template-columns: 220px 1fr;
    gap: 36px
  }
}

@media(max-width:768px) {
  .page-hero {
    padding: 110px var(--px) 56px;
    min-height: auto
  }

  .ph-content h1 {
    font-size: clamp(1.8rem, 5.5vw, 2.6rem)
  }

  .legal-wrap {
    grid-template-columns: 1fr
  }

  .legal-index {
    position: static;
    display: none
  }
}

@media(max-width:430px) {
  .page-hero {
    padding: 90px var(--px) 44px
  }

  .ph-content h1 {
    font-size: clamp(1.6rem, 7vw, 2rem)
  }

  section {
    padding: 52px var(--px)
  }
}

/* ===== FIN PRIVACIDAD ===== */

/* ===== TERMINOS ===== */

.page-hero {
  min-height: 42vh;
  display: flex;
  align-items: center;
  padding: 140px var(--px) 70px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg)
}

.ph-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 45% at 8% 55%, rgba(139, 92, 246, .18), transparent 58%), radial-gradient(ellipse 50% 40% at 92% 28%, rgba(10, 191, 188, .18), transparent 55%);
  animation: mp 8s ease-in-out infinite alternate
}

.ph-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(10, 191, 188, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 191, 188, .05) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%)
}

.ph-orb1 {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(65px);
  background: radial-gradient(circle, rgba(139, 92, 246, .22), transparent 65%);
  left: -6%;
  top: -20%;
  animation: phop 7s ease-in-out infinite alternate;
  pointer-events: none
}

.ph-orb2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(65px);
  background: radial-gradient(circle, rgba(10, 191, 188, .22), transparent 65%);
  right: -4%;
  bottom: -15%;
  animation: phop 9s ease-in-out infinite alternate;
  animation-delay: -4s;
  pointer-events: none
}

@keyframes phop {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(10px, -12px)
  }
}

.ph-content {
  position: relative;
  z-index: 2;
  max-width: 700px
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--purple);
  background: var(--pd);
  border: 1px solid rgba(139, 92, 246, .2);
  animation: fu .5s ease both
}

.bdot-p {
  width: 5px;
  height: 5px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 7px var(--purple);
  animation: blink 2s infinite
}

.ph-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.03em;
  animation: fu .6s .1s ease both
}

.ph-sub {
  font-size: .92rem;
  color: var(--muted);
  margin-top: 14px;
  max-width: 520px;
  line-height: 1.8;
  animation: fu .6s .2s ease both
}

.breadcrumb {
  position: absolute;
  bottom: 24px;
  left: var(--px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  color: var(--muted);
  z-index: 2
}

.breadcrumb a {
  color: var(--muted);
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--teal)
}

.bc-current {
  color: var(--teal)
}

.bc-sep {
  color: var(--faint)
}

/* Same legal layout as privacidad — with nav override fixes */
.legal-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 52px;
  align-items: start;
  margin-top: 48px
}

.legal-index {
  position: sticky;
  top: 100px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 20px;
  display: block !important
}

.legal-index h4 {
  display: block !important;
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px
}

.legal-index a {
  display: block !important;
  width: 100%;
  font-size: .82rem;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: all .2s;
  text-decoration: none;
  white-space: normal;
  line-height: 1.4
}

.legal-index a::after {
  display: none !important
}

.legal-index a:hover {
  color: var(--teal) !important;
  background: var(--td)
}

.legal-index a.active {
  color: var(--teal) !important;
  background: var(--td)
}

.legal-section {
  margin-bottom: 48px;
  scroll-margin-top: 100px
}

.legal-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 10px
}

.legal-section h2 .ls-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--pd);
  border: 1px solid rgba(139, 92, 246, .2);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  color: var(--purple);
  flex-shrink: 0
}

.legal-section p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.85;
  margin-bottom: 12px
}

.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 16px;
  padding: 0
}

.legal-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65
}

.legal-section ul li::before {
  content: '→';
  color: var(--purple);
  font-size: .8rem;
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0
}

.legal-highlight {
  background: rgba(139, 92, 246, .05);
  border: 1px solid rgba(139, 92, 246, .15);
  border-left: 3px solid var(--purple);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 16px 0
}

.legal-highlight p {
  margin-bottom: 0;
  color: var(--text)
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .76rem;
  color: var(--muted);
  margin-bottom: 32px
}

.legal-updated span {
  color: var(--teal);
  font-weight: 700
}

.legal-contact-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  margin-top: 8px
}

.legal-contact-box h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px
}

.legal-contact-box p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px
}

.legal-contact-box a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none
}

.legal-contact-box a:hover {
  text-decoration: underline
}

@media(max-width:1024px) {
  .legal-wrap {
    grid-template-columns: 220px 1fr;
    gap: 36px
  }
}

@media(max-width:768px) {
  .page-hero {
    padding: 110px var(--px) 56px;
    min-height: auto
  }

  .ph-content h1 {
    font-size: clamp(1.8rem, 5.5vw, 2.6rem)
  }

  .legal-wrap {
    grid-template-columns: 1fr
  }

  .legal-index {
    position: static;
    display: none
  }
}

@media(max-width:430px) {
  .page-hero {
    padding: 90px var(--px) 44px
  }

  .ph-content h1 {
    font-size: clamp(1.6rem, 7vw, 2rem)
  }

  section {
    padding: 52px var(--px)
  }
}

/* ===== FIN TERMINOS ===== */

/* ===== BLOG ===== */

.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 140px var(--px) 80px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg)
}

.ph-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 10% 60%, rgba(10, 191, 188, .22), transparent 60%), radial-gradient(ellipse 55% 45% at 90% 30%, rgba(139, 92, 246, .22), transparent 58%);
  animation: mp 8s ease-in-out infinite alternate
}

.ph-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(10, 191, 188, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 191, 188, .06) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%)
}

.ph-orb1 {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(65px);
  background: radial-gradient(circle, rgba(10, 191, 188, .26), transparent 65%);
  left: -7%;
  top: -22%;
  animation: phop 7s ease-in-out infinite alternate;
  pointer-events: none
}

.ph-orb2 {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(65px);
  background: radial-gradient(circle, rgba(139, 92, 246, .26), transparent 65%);
  right: -5%;
  bottom: -16%;
  animation: phop 9s ease-in-out infinite alternate;
  animation-delay: -4s;
  pointer-events: none
}

@keyframes phop {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(10px, -12px)
  }
}

.ph-content {
  position: relative;
  z-index: 2;
  max-width: 700px
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  background: rgba(10, 191, 188, .07);
  border: 1px solid rgba(10, 191, 188, .2);
  animation: fu .5s ease both
}

.bdot {
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 7px var(--teal);
  animation: blink 2s infinite
}

.ph-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.07;
  letter-spacing: -.03em;
  animation: fu .6s .1s ease both
}

.ph-content h1 .g {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.ph-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 18px;
  max-width: 520px;
  line-height: 1.8;
  animation: fu .6s .2s ease both
}

.breadcrumb {
  position: absolute;
  bottom: 28px;
  left: var(--px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  color: var(--muted);
  z-index: 2
}

.breadcrumb a {
  color: var(--muted);
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--teal)
}

.bc-current {
  color: var(--teal)
}

.bc-sep {
  color: var(--faint)
}

/* BLOG LAYOUT */
.blog-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: start;
  margin-top: 48px
}

/* FEATURED POST */
.blog-featured {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 32px;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative
}

.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .45);
  border-color: rgba(10, 191, 188, .2)
}

.blog-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad);
}

.bf-img {
  height: 280px;
  overflow: hidden;
  position: relative;
  background: #121A2E
}

.bf-img img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: brightness(.6);
  transition: transform .5s, filter .4s
}

.blog-featured:hover .bf-img img {
  transform: scale(1.04);
  filter: brightness(.75)
}

.bf-body {
  padding: 28px 30px 30px
}

.bf-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap
}

.bf-cat {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--td);
  color: var(--teal);
  border: 1px solid rgba(10, 191, 188, .2)
}

.bf-cat.p {
  background: var(--pd);
  color: var(--purple);
  border-color: rgba(139, 92, 246, .2)
}

.bf-date {
  font-size: .74rem;
  color: var(--muted)
}

.bf-read {
  font-size: .74rem;
  color: var(--muted)
}

.bf-sep {
  width: 3px;
  height: 3px;
  background: var(--faint);
  border-radius: 50%
}

.bf-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -.02em
}

.bf-body p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.78;
  margin-bottom: 18px
}

.bf-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--teal);
  transition: gap .2s
}

.bf-link:hover {
  gap: 11px
}

.bf-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--grad);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .08em
}

/* BLOG FILTERS */
.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px
}

.bf-btn {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: all .2s
}

.bf-btn.active,
.bf-btn:hover {
  background: var(--grad);
  color: #fff;
  border-color: transparent
}

/* POSTS GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
  border-color: rgba(10, 191, 188, .18)
}

.bc-img {
  height: 160px;
  overflow: hidden;
  background: #121A2E
}

.bc-img img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  filter: brightness(.65);
  transition: transform .4s, filter .3s
}

.blog-card:hover .bc-img img {
  transform: scale(1.05);
  filter: brightness(.8)
}

.bc-body {
  padding: 18px 18px 20px
}

.bc-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap
}

.bc-cat {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  background: var(--td);
  color: var(--teal);
  border: 1px solid rgba(10, 191, 188, .18)
}

.bc-cat.p {
  background: var(--pd);
  color: var(--purple);
  border-color: rgba(139, 92, 246, .18)
}

.bc-date {
  font-size: .7rem;
  color: var(--muted)
}

.bc-body h3 {
  font-family: 'Fraunces', serif;
  font-size: .98rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.25;
  letter-spacing: -.01em
}

.bc-body p {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.7;
  margin-bottom: 12px
}

.bc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--teal);
  transition: gap .2s
}

.bc-link:hover {
  gap: 9px
}

/* SIDEBAR */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.sidebar-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 20px
}

.sidebar-box h4 {
  font-family: 'Fraunces', serif;
  font-size: .98rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px
}

/* newsletter */
.sb-newsletter p {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
  margin-bottom: 14px
}

.sb-form {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.sb-input {
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .84rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none
}

.sb-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10, 191, 188, .1)
}

.sb-input::placeholder {
  color: var(--faint)
}

.sb-btn {
  padding: 10px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .84rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s
}

.sb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 191, 188, .3)
}

/* categories */
.sb-cats {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.sb-cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 9px;
  cursor: pointer;
  transition: background .2s
}

.sb-cat-item:hover {
  background: var(--td)
}

.sb-cat-item span {
  font-size: .84rem;
  color: var(--muted);
  transition: color .2s
}

.sb-cat-item:hover span {
  color: var(--teal)
}

.sb-cat-count {
  font-size: .7rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--td);
  padding: 2px 8px;
  border-radius: 100px
}

/* popular */
.sb-popular {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.sb-pop-item {
  display: flex;
  gap: 12px;
  cursor: pointer;
  transition: opacity .2s
}

.sb-pop-item:hover {
  opacity: .8
}

.sb-pop-num {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--faint);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px
}

.sb-pop-title {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 4px
}

.sb-pop-date {
  font-size: .7rem;
  color: var(--muted)
}

/* tags */
.sb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px
}

.sb-tag {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all .2s
}

.sb-tag:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--td)
}

/* CTA */
.cta-sec {
  padding: 80px var(--px);
  background-color: var(--bg2)
}

.cta-in {
  background: linear-gradient(135deg, #0F1A30, #150F28);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55)
}

.cta-in::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 191, 188, .12), transparent 60%)
}

.cta-in::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, .1), transparent 60%)
}

.cta-lbl {
  color: var(--teal);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px
}

.cta-in h2 {
  color: var(--white);
  max-width: 500px;
  margin: 0 auto 12px
}

.cta-in p {
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 28px;
  font-size: .9rem
}

.cta-acts {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .blog-wrap {
    grid-template-columns: 1fr 260px;
    gap: 36px
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  .page-hero {
    padding: 110px var(--px) 60px;
    min-height: auto
  }

  .ph-content h1 {
    font-size: clamp(2rem, 6vw, 3rem)
  }

  .blog-wrap {
    grid-template-columns: 1fr
  }

  .blog-sidebar {
    display: none
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr
  }

  .cta-in {
    padding: 40px 24px
  }

  .cta-acts {
    flex-direction: column;
    align-items: center
  }

  .cta-acts .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center
  }
}

@media(max-width:430px) {
  .page-hero {
    padding: 90px var(--px) 48px
  }

  .ph-content h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.4rem)
  }

  .blog-grid {
    grid-template-columns: 1fr
  }

  .bf-img,
  .bf-img img {
    height: 200px
  }

  section {
    padding: 52px var(--px)
  }

  .cta-in {
    padding: 36px 20px;
    border-radius: 18px
  }

  .cta-acts .btn {
    width: 100%;
    max-width: 100%;
    font-size: .86rem
  }
}

/* ===== FIN BLOG ===== */

/* ===== COOKIE BANNER ===== */

/* ── BANNER PRINCIPAL ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: calc(100% - 48px);
  max-width: 980px;
  background: rgba(15, 22, 40, 0.96);
  border: 1px solid rgba(10, 191, 188, 0.22);
  border-radius: 20px;
  padding: 20px 24px;
  z-index: 9000;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(10, 191, 188, 0.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
}

.cookie-banner.hidden {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.cookie-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-text {
  flex: 1;
  min-width: 0
}

.cookie-title {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}

.cookie-desc {
  font-size: .8rem;
  color: #7A85A0;
  line-height: 1.65;
  margin-bottom: 8px;
}

.cookie-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  color: #2A3550;
}

.cookie-links a {
  color: #0ABFBC;
  text-decoration: none;
  font-weight: 600;
  transition: opacity .2s;
}

.cookie-links a:hover {
  opacity: .75
}

.cookie-links span {
  color: #2A3550
}

/* ── BOTONES ── */
.cookie-actions {
  display: flex;
  gap: 9px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  padding: 9px 18px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, opacity .2s;
  white-space: nowrap;
  border: none;
}

.cookie-customize {
  background: transparent;
  color: #7A85A0;
  border: 1px solid rgba(255, 255, 255, .12);
}

.cookie-customize:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .06);
}

.cookie-reject {
  background: rgba(255, 255, 255, .06);
  color: #EEF0F8;
  border: 1px solid rgba(255, 255, 255, .12);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-1px);
}

.cookie-accept {
  background: linear-gradient(135deg, #0ABFBC 0%, #8B5CF6 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(10, 191, 188, 0.28);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(10, 191, 188, 0.42);
}

/* ── MODAL DE PREFERENCIAS ── */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-box {
  background: #121A2E;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .65);
  transform: scale(.94) translateY(10px);
  transition: transform .3s ease;
}

.cookie-modal.show .cookie-modal-box {
  transform: scale(1) translateY(0);
}

.cm-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 26px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.cm-header h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -.02em;
}

.cm-header p {
  font-size: .82rem;
  color: #7A85A0;
  line-height: 1.5;
}

.cm-close {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #7A85A0;
  font-size: .85rem;
  transition: all .2s;
  flex-shrink: 0;
}

.cm-close:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff
}

.cm-body {
  padding: 8px 26px
}

.cm-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.cm-cat-info {
  flex: 1;
  min-width: 0
}

.cm-cat-name {
  font-size: .88rem;
  font-weight: 700;
  color: #EEF0F8;
  margin-bottom: 4px;
}

.cm-cat-desc {
  font-size: .78rem;
  color: #7A85A0;
  line-height: 1.55;
}

.cm-divider {
  height: 1px;
  background: rgba(255, 255, 255, .06)
}

/* ── TOGGLE SWITCH ── */
.cm-toggle {
  position: relative;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
  cursor: pointer;
}

.cm-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cm-toggle-thumb {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 100px;
  transition: background .25s, border-color .25s;
}

.cm-toggle-thumb::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #7A85A0;
  transition: transform .25s, background .25s;
}

.cm-toggle input:checked+.cm-toggle-thumb {
  background: linear-gradient(135deg, #0ABFBC, #8B5CF6);
  border-color: transparent;
}

.cm-toggle input:checked+.cm-toggle-thumb::before {
  transform: translate(20px, -50%);
  background: #fff;
}

/* locked toggle (esenciales) */
.cm-toggle-locked {
  cursor: not-allowed;
  opacity: .6;
}

.cm-toggle-locked .cm-toggle-thumb {
  background: linear-gradient(135deg, #0ABFBC, #8B5CF6);
  border-color: transparent;
}

.cm-toggle-locked .cm-toggle-thumb::before {
  transform: translate(20px, -50%);
  background: #fff;
}

.cm-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 20px 26px 24px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

/* ── FLOATING COOKIE BUTTON (reabre el banner) ── */
.cookie-reopen {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 8999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 22, 40, 0.92);
  border: 1px solid rgba(10, 191, 188, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
  transition: transform .2s, box-shadow .2s;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .2s, box-shadow .2s;
}

.cookie-reopen.show {
  opacity: 1;
  pointer-events: all;
}

.cookie-reopen:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(10, 191, 188, .25);
}

/* ── RESPONSIVE ── */
@media(max-width:768px) {
  .cookie-banner {
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 16px 18px;
    border-radius: 16px;
  }

  .cookie-inner {
    flex-direction: column;
    gap: 16px
  }

  .cookie-actions {
    width: 100%;
    justify-content: stretch
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    font-size: .78rem
  }

  .cookie-icon {
    display: none
  }
}

@media(max-width:430px) {
  .cookie-actions {
    flex-direction: column
  }

  .cookie-btn {
    width: 100%
  }

  .cookie-customize {
    order: 3
  }

  .cookie-modal-box {
    border-radius: 16px
  }

  .cm-header,
  .cm-body,
  .cm-footer {
    padding-left: 18px;
    padding-right: 18px
  }

  .cm-footer {
    flex-direction: column
  }

  .cm-footer .cookie-btn {
    width: 100%
  }
}

/* ===== FIN COOKIE BANNER ===== */

/* ===== COOKIES POLICY ===== */

.page-hero {
  min-height: 42vh;
  display: flex;
  align-items: center;
  padding: 140px var(--px) 70px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg)
}

.ph-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 8% 55%, rgba(10, 191, 188, .18), transparent 58%),
    radial-gradient(ellipse 50% 40% at 92% 28%, rgba(139, 92, 246, .18), transparent 55%);
  animation: mp 8s ease-in-out infinite alternate
}

.ph-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(10, 191, 188, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 191, 188, .05) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%)
}

.ph-orb1 {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(65px);
  background: radial-gradient(circle, rgba(10, 191, 188, .22), transparent 65%);
  left: -6%;
  top: -20%;
  animation: phop 7s ease-in-out infinite alternate;
  pointer-events: none
}

.ph-orb2 {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(65px);
  background: radial-gradient(circle, rgba(139, 92, 246, .22), transparent 65%);
  right: -4%;
  bottom: -15%;
  animation: phop 9s ease-in-out infinite alternate;
  animation-delay: -4s;
  pointer-events: none
}

@keyframes phop {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(10px, -12px)
  }
}

.ph-content {
  position: relative;
  z-index: 2;
  max-width: 700px
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  background: rgba(10, 191, 188, .07);
  border: 1px solid rgba(10, 191, 188, .2);
  animation: fu .5s ease both
}

.bdot {
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 7px var(--teal);
  animation: blink 2s infinite
}

.ph-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.03em;
  animation: fu .6s .1s ease both
}

.ph-sub {
  font-size: .92rem;
  color: var(--muted);
  margin-top: 14px;
  max-width: 520px;
  line-height: 1.8;
  animation: fu .6s .2s ease both
}

.breadcrumb {
  position: absolute;
  bottom: 24px;
  left: var(--px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  color: var(--muted);
  z-index: 2
}

.breadcrumb a {
  color: var(--muted);
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--teal)
}

.bc-current {
  color: var(--teal)
}

.bc-sep {
  color: var(--faint)
}

/* LEGAL LAYOUT */
.legal-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 52px;
  align-items: start;
  margin-top: 48px
}

.legal-index {
  position: sticky;
  top: 100px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 20px;
  display: block !important
}

.legal-index h4 {
  display: block !important;
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px
}

.legal-index a {
  display: block !important;
  width: 100%;
  font-size: .82rem;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: all .2s;
  text-decoration: none;
  white-space: normal;
  line-height: 1.4
}

.legal-index a::after {
  display: none !important
}

.legal-index a:hover {
  color: var(--teal) !important;
  background: var(--td)
}

.legal-index a.active {
  color: var(--teal) !important;
  background: var(--td)
}

.legal-index .li-divider {
  height: 1px;
  background: var(--border);
  margin: 10px 0
}

.legal-index .li-other {
  font-size: .7rem;
  font-weight: 700;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 10px;
  display: block !important
}

.legal-index a.li-link-sm {
  font-size: .78rem;
  color: var(--faint)
}

.legal-index a.li-link-sm:hover {
  color: var(--teal);
  background: var(--td)
}

.legal-section {
  margin-bottom: 48px;
  scroll-margin-top: 100px
}

.legal-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 10px
}

.legal-section h2 .ls-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--td);
  border: 1px solid rgba(10, 191, 188, .2);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  color: var(--teal);
  flex-shrink: 0
}

.legal-section p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.85;
  margin-bottom: 12px
}

.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 16px;
  padding: 0
}

.legal-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65
}

.legal-section ul li::before {
  content: '✓';
  color: var(--teal);
  font-size: .75rem;
  font-weight: 700;
  margin-top: 3px;
  flex-shrink: 0
}

.legal-highlight {
  background: rgba(10, 191, 188, .05);
  border: 1px solid rgba(10, 191, 188, .15);
  border-left: 3px solid var(--teal);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 16px 0
}

.legal-highlight p {
  margin-bottom: 0;
  color: var(--text)
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .76rem;
  color: var(--muted);
  margin-bottom: 32px
}

.legal-updated span {
  color: var(--teal);
  font-weight: 700
}

/* COOKIES TABLE */
.cookie-table-wrap {
  overflow-x: auto;
  margin: 16px 0;
  border-radius: 12px;
  border: 1px solid var(--border)
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px
}

.cookie-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  background: var(--surface);
  border-bottom: 1px solid var(--border)
}

.cookie-table td {
  padding: 12px 16px;
  font-size: .84rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  vertical-align: top;
  line-height: 1.5
}

.cookie-table tr:last-child td {
  border-bottom: none
}

.cookie-table tr:hover td {
  background: rgba(255, 255, 255, .02)
}

.ct-name {
  color: var(--white);
  font-weight: 600;
  font-size: .82rem
}

.ct-badge {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase
}

.ct-badge.essential {
  background: var(--td);
  color: var(--teal);
  border: 1px solid rgba(10, 191, 188, .2)
}

.ct-badge.analytics {
  background: rgba(59, 130, 246, .12);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, .2)
}

.ct-badge.marketing {
  background: var(--pd);
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, .2)
}

.ct-badge.prefs {
  background: rgba(249, 115, 22, .1);
  color: #FB923C;
  border: 1px solid rgba(249, 115, 22, .2)
}

/* MANAGE COOKIES BTN */
.manage-cookies-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--grad);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(10, 191, 188, .25);
  transition: transform .2s, box-shadow .2s;
  margin-top: 8px
}

.manage-cookies-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(10, 191, 188, .4)
}

.legal-contact-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  margin-top: 8px
}

.legal-contact-box h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px
}

.legal-contact-box p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px
}

.legal-contact-box a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none
}

.legal-contact-box a:hover {
  text-decoration: underline
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .legal-wrap {
    grid-template-columns: 220px 1fr;
    gap: 36px
  }
}

@media(max-width:768px) {
  .page-hero {
    padding: 110px var(--px) 56px;
    min-height: auto
  }

  .ph-content h1 {
    font-size: clamp(1.8rem, 5.5vw, 2.6rem)
  }

  .legal-wrap {
    grid-template-columns: 1fr
  }

  .legal-index {
    position: static;
    display: none !important
  }
}

@media(max-width:430px) {
  .page-hero {
    padding: 90px var(--px) 44px
  }

  .ph-content h1 {
    font-size: clamp(1.6rem, 7vw, 2rem)
  }

  section {
    padding: 52px var(--px)
  }
}

/* ===== FIN COOKIES POLICY ===== */