/* ============================================================
   PROPUESTA VISUAL — Yelibeth Perozo
   Paleta: #f87171 coral · #8154A1 purple · #02C1BC teal · #38bdf8 sky
   Tipografía: Lexend · Montserrat · Open Sans
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Brand colors */
  --coral:    #f87171;
  --purple:   #8154A1;
  --teal:     #8154A1;
  --sky:      #38bdf8;

  /* Gradients */
  --grad-main:  linear-gradient(135deg, #8154A1 0%, #38bdf8 100%);
  --grad-warm:  linear-gradient(135deg, #f87171 0%, #8154A1 100%);
  --grad-cool:  linear-gradient(135deg, #02C1BC 0%, #38bdf8 100%);
  --grad-full:  linear-gradient(135deg, #f87171 0%, #8154A1 50%, #38bdf8 100%);
  --grad-tri:   linear-gradient(90deg, #f87171, #8154A1, #02C1BC, #38bdf8);

  /* Neutral */
  --black:  #000000;
  --dark:   #0a0a0a;
  --dark2:  #111111;
  --white:  #ffffff;
  --text:   #1c1c1c;
  --muted:  #666666;
  --light:  #f5f5f5;
  --border: #e2e2e2;

  /* Border radius */
  --r-xs:   8px;
  --r-sm:   14px;
  --r-md:   22px;
  --r-lg:   28px;
  --r-pill: 100px;

  /* Layout */
  --max:    1200px;
  --nav-h:  72px;

  /* Fonts */
  --font-d: 'Lexend', system-ui, sans-serif;
  --font-h: 'Montserrat', system-ui, sans-serif;
  --font-b: 'Open Sans', system-ui, sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  background: var(--black);
  transition: box-shadow .3s;
}

.nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,.7);
}

.nav-logo {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  flex-shrink: 0;
}

.nav-logo img {
  width: 130px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }

/* Desktop CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--grad-main);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-h);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}

.nav-cta:hover {
  opacity: .88;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(129,84,161,.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 9px;
  border-radius: var(--r-xs);
  transition: background .2s;
  z-index: 300;
  position: relative;
  flex-shrink: 0;
}

.hamburger:hover { background: rgba(255,255,255,.08); }

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .35s cubic-bezier(.77,0,.175,1),
              opacity .25s ease,
              background .2s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--sky);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--sky);
}

/* ── Mobile Menu ────────────────────────────────────────────── */

/* Backdrop */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 149;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}

.menu-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}

/* Panel */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); right: 0; bottom: 0;
  z-index: 150;
  width: min(380px, 100vw);
  background: var(--dark);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .55s cubic-bezier(.16,1,.3,1);
  overflow: hidden;
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Top gradient stripe — now the visible top edge of the drawer */
.mobile-menu::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--grad-tri);
  flex-shrink: 0;
}

/* Panel head — hidden: nav bar above the panel already has logo + close */
.menu-panel-head {
  display: none;
}

.menu-panel-logo {
  width: 110px;
  height: auto;
  object-fit: contain;
  object-position: left;
}

.menu-close-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.06);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}

.menu-close-btn:hover { background: rgba(255,255,255,.12); }

.menu-close-btn svg { stroke: rgba(255,255,255,.6); }

/* Panel nav */
.menu-panel-nav {
  flex: 1;
  padding: 8px 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.menu-panel-nav ul { list-style: none; }

.menu-panel-nav li {
  border-bottom: 1px solid rgba(255,255,255,.04);
  transform: translateX(28px);
  opacity: 0;
  transition: transform .45s cubic-bezier(.16,1,.3,1),
              opacity .35s ease;
}

.mobile-menu.open .menu-panel-nav li { transform: none; opacity: 1; }
.mobile-menu.open .menu-panel-nav li:nth-child(1) { transition-delay: .08s; }
.mobile-menu.open .menu-panel-nav li:nth-child(2) { transition-delay: .13s; }
.mobile-menu.open .menu-panel-nav li:nth-child(3) { transition-delay: .18s; }
.mobile-menu.open .menu-panel-nav li:nth-child(4) { transition-delay: .23s; }
.mobile-menu.open .menu-panel-nav li:nth-child(5) { transition-delay: .28s; }

.menu-panel-nav a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  transition: background .2s;
}

.menu-panel-nav a:hover {
  background: rgba(255,255,255,.03);
}

.menu-link-num {
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  min-width: 22px;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.menu-link-text {
  font-family: var(--font-d);
  font-size: 1.45rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: -.015em;
  line-height: 1.1;
  transition: color .2s;
}

.menu-panel-nav a:hover .menu-link-text { color: var(--white); }

.menu-link-arrow {
  margin-left: auto;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s, transform .25s;
  flex-shrink: 0;
}

.menu-panel-nav a:hover .menu-link-arrow {
  opacity: 1;
  transform: none;
}

/* Panel footer */
.menu-panel-foot {
  padding: 24px 28px max(32px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease .36s, transform .4s ease .36s;
}

.mobile-menu.open .menu-panel-foot {
  opacity: 1;
  transform: none;
}

.menu-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #25D366;
  color: var(--white);
  padding: 13px 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s, box-shadow .2s;
}

.menu-wa-btn:hover {
  background: #128C7E;
  box-shadow: 0 4px 20px rgba(37,211,102,.25);
}

.menu-panel-social {
  display: flex;
  gap: 10px;
}

.menu-soc {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.menu-soc:hover { background: rgba(56,189,248,.2); }
.menu-soc svg { fill: rgba(255,255,255,.5); width: 16px; height: 16px; }
.menu-soc:hover svg { fill: var(--sky); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--black);
  overflow: hidden;
}

.hero-bg {
  display: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%) scale(1);
  width: 700px;
  height: 280px;
  border-radius: 50%;
  background: var(--grad-main);
  opacity: .4;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: blobGrow 5s ease-in-out infinite;
}

@keyframes blobGrow {
  0%, 100% { transform: translateX(-50%) scale(1);   opacity: .4; }
  50%       { transform: translateX(-50%) scale(1.18); opacity: .55; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 52px) clamp(32px, 5vw, 80px) 80px;
  display: grid;
  gap: 52px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 360px; gap: 80px; }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 16px;
  background: rgba(129,84,161,.18);
  border: 1px solid rgba(129,84,161,.3);
  border-radius: var(--r-pill);
  font-family: var(--font-h);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 24px;
}

.hero-tag-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad-warm);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: .92;
  letter-spacing: -.025em;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-main);
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--r-pill);
  font-family: var(--font-h);
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}

.btn-primary:hover {
  opacity: .88;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(129,84,161,.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.75);
  padding: 13px 30px;
  border-radius: var(--r-pill);
  font-family: var(--font-h);
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.22);
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .15s;
}

.btn-outline:hover {
  border-color: var(--sky);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--r-pill);
  font-family: var(--font-h);
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-wa:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.28);
}

/* ── Hero Photo ─────────────────────────────────────────────── */
.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(129,84,161,.2);
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
  z-index: 1;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-badge {
  position: absolute;
  bottom: -12px;
  right: -10px;
  background: var(--grad-warm);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--r-md);
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(248,113,113,.28);
}

.hero-badge strong {
  display: block;
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.hero-badge span {
  font-family: var(--font-h);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  opacity: .88;
  display: block;
  margin-top: 4px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.hero-scroll span {
  font-family: var(--font-h);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 1.8s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(.55); }
}

/* ── Stats ──────────────────────────────────────────────────── */
.stats {
  background: var(--dark2);
  padding: 0 clamp(20px, 5vw, 80px);
}

.stats-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.05);
}

@media (min-width: 600px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat {
  background: var(--dark2);
  text-align: center;
  padding: 36px 16px;
}

.stat-n {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.025em;
}

/* All stat numbers share --grad-main */
.stat-n {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-l {
  font-family: var(--font-h);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: 8px;
}

/* ── Section Commons ────────────────────────────────────────── */
.sec {
  padding: clamp(72px, 10vw, 120px) clamp(32px, 5vw, 80px);
}

.sec-in {
  max-width: var(--max);
  margin: 0 auto;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.sec-tag::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--teal);
  flex-shrink: 0;
}

.sec h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 14px;
}

.sec h2 em {
  font-style: normal;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec p.desc {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}

/* Dark section overrides */
.sec-dark { background: var(--dark); }
.sec-dark h2 { color: var(--white); }
.sec-dark .sec-tag { color: var(--teal); }
.sec-dark .sec-tag::before { background: var(--teal); }
.sec-dark p.desc { color: rgba(255,255,255,.55); }

.sec-light { background: var(--light); }

/* ── Services ───────────────────────────────────────────────── */
.svc-grid {
  display: grid;
  gap: 18px;
  margin-top: 56px;
}

@media (min-width: 600px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}

.svc-card:hover::before { transform: scaleX(1); }

.svc-card:hover {
  border-color: rgba(129,84,161,.25);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(129,84,161,.08);
}

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(129,84,161,.12), rgba(56,189,248,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.svc-icon svg { width: 24px; height: 24px; stroke: var(--purple); }

.svc-card h3 {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.svc-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.72;
}

/* ── Included label ────────────────────────────────────────── */
.svc-included-label {
  font-family: var(--font-h);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

/* ── Project types ──────────────────────────────────────────── */
.proj-types {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.proj-types > .sec-tag {
  margin-bottom: 24px;
}

.proj-types-layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .proj-types-layout { grid-template-columns: 1fr 1fr; }
}

.proj-types-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.proj-types-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.proj-types-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.proj-type-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  transition: border-color .2s, box-shadow .2s;
}

.proj-type-card:hover {
  border-color: rgba(129, 84, 161, .3);
  box-shadow: 0 4px 20px rgba(129, 84, 161, .08);
}

.proj-type-icon {
  width: 38px;
  height: 38px;
  background: var(--grad-main);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proj-type-icon svg {
  width: 16px;
  height: 16px;
}

.proj-type-card h4 {
  font-family: var(--font-d);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.015em;
  margin-bottom: 3px;
}

.proj-type-card p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ── Portfolio ──────────────────────────────────────────────── */
.port-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 52px;
}

@media (min-width: 768px) {
  .port-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.port-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 560px) { .port-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .port-grid { grid-template-columns: repeat(3, 1fr); } }

.port-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
}

.port-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 64px rgba(129,84,161,.12);
}

.port-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--light);
}

.port-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}

.port-card:hover .port-thumb img { transform: scale(1.05); }

.port-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.port-overlay svg {
  opacity: 0;
  transform: scale(.65);
  transition: opacity .25s, transform .3s cubic-bezier(.16,1,.3,1);
  stroke: var(--white);
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}

.port-card:hover .port-overlay {
  background: linear-gradient(135deg, rgba(129,84,161,.5), rgba(56,189,248,.3));
}

.port-card:hover .port-overlay svg {
  opacity: 1;
  transform: scale(1);
}

.port-info {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.port-info h3 {
  font-family: var(--font-d);
  font-size: .975rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
  letter-spacing: -.01em;
}

.port-info p { font-size: .8rem; color: var(--muted); }

.port-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-h);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--purple);
  margin-top: 10px;
  transition: gap .2s, color .2s;
}

.port-link:hover { gap: 9px; color: var(--sky); }

/* ── Process ────────────────────────────────────────────────── */
.proc-grid {
  display: grid;
  gap: 2px;
  margin-top: 64px;
  background: rgba(255,255,255,.04);
  border-radius: var(--r-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .proc-grid { grid-template-columns: repeat(4, 1fr); }
}

.proc-step {
  background: #0f0f0f;
  padding: 40px 30px;
  transition: background .2s;
  position: relative;
}

.proc-step::after {
  content: '';
  position: absolute;
  bottom: 0; left: 30px; right: 30px;
  height: 1px;
  background: rgba(255,255,255,.04);
}

@media (min-width: 768px) {
  .proc-step::after { bottom: auto; top: auto; left: auto; right: 0; width: 1px; height: 100%; }
  .proc-step:last-child::after { display: none; }
}

.proc-step:hover { background: #161616; }

.proc-n {
  font-family: var(--font-d);
  font-size: 4.5rem;
  font-weight: 600;
  color: #8154A1;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 16px;
  user-select: none;
}

.proc-bar {
  width: 28px;
  height: 2px;
  border-radius: var(--r-pill);
  background: var(--grad-main);
  margin-bottom: 20px;
  transition: width .35s cubic-bezier(.16,1,.3,1);
}

.proc-step:hover .proc-bar { width: 48px; }

.proc-step h3 {
  font-family: var(--font-d);
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.proc-step p {
  font-size: .875rem;
  color: rgba(255,255,255,.52);
  line-height: 1.7;
}

/* ── About ──────────────────────────────────────────────────── */
.about-inner {
  display: grid;
  gap: 60px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-inner { grid-template-columns: 1fr 420px; }
}

.about-text blockquote {
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -.025em;
  margin-bottom: 22px;
}

.about-text blockquote em {
  font-style: normal;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.88;
}

.about-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.about-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-main);
}

.about-box h3 {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--text);
  line-height: 1.6;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg { width: 10px; height: 10px; }

/* ── Contact ────────────────────────────────────────────────── */
.contact-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-wrap .sec { padding: 0; }
.contact-wrap .sec h2 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); }
.contact-wrap .desc { margin: 0 auto 28px; max-width: 440px; }

.cform {
  display: grid;
  gap: 14px;
  text-align: left;
}

@media (min-width: 560px) {
  .cform { grid-template-columns: 1fr 1fr; }
  .cform .full { grid-column: span 2; }
}

.flabel {
  display: block;
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 7px;
}

.finput,
.ftextarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 18px;
  font-family: var(--font-b);
  font-size: .9rem;
  color: var(--text);
  outline: none;
  appearance: none;
  transition: border-color .22s, box-shadow .22s;
}

.finput:focus,
.ftextarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(2,193,188,.1);
}

.ftextarea { resize: vertical; min-height: 120px; }

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.form-or {
  font-size: .82rem;
  color: var(--muted);
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 56px clamp(20px, 5vw, 80px) 32px;
}

.footer-in { max-width: var(--max); margin: 0 auto; }

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: none;
  margin-bottom: 0;
  position: relative;
}

.footer-top::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad-tri);
  opacity: .2;
}


@media (min-width: 640px) {
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

.footer-logo {
  width: 110px;
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 1rem;
  color: rgba(255,255,255,.45);
  max-width: 230px;
  line-height: 1.65;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
  line-height: 1.4;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: .65;
  transition: opacity .2s;
}

.footer-contact-list li:first-child .footer-contact-item {
  color: rgba(255,255,255,.8);
}

.footer-contact-list li:first-child .footer-contact-item svg {
  opacity: .85;
}

.footer-contact-item:hover {
  color: var(--white);
}

.footer-contact-item:hover svg {
  opacity: 1;
}

.footer-nav-title {
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}

.footer-nav { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-nav a { font-size: 1rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 28px;
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

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

/* ── WhatsApp Float ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 88px;
  right: 88px;
  z-index: 99;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

.wa-float svg { width: 27px; height: 27px; fill: var(--white); }

/* ── Fade-in Animations ─────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fi {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .58s ease, transform .58s ease;
  }

  .fi.vis {
    opacity: 1;
    transform: none;
  }
}

/* ── Barra de acciones móvil ────────────────────────────────── */
.mob-bar {
  display: none;
}

@media (max-width: 899px) {
  .mob-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 190;
    height: 60px;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,.07);
  }

  .mob-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--grad-tri);
  }

  .mob-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    cursor: pointer;
  }

  .mob-bar-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .mob-bar-ig svg { fill: rgba(255,255,255,.8); transition: fill .2s; }
  .mob-bar-wa svg { fill: rgba(255,255,255,.8); transition: fill .2s; }

  .mob-bar-ig:active,
  .mob-bar-ig:focus-visible {
    background: rgba(129, 84, 161, .12);
    color: var(--purple);
  }
  .mob-bar-ig:active svg,
  .mob-bar-ig:focus-visible svg { fill: var(--purple); }

  .mob-bar-wa:active,
  .mob-bar-wa:focus-visible {
    background: rgba(37, 211, 102, .1);
    color: #25D366;
  }
  .mob-bar-wa:active svg,
  .mob-bar-wa:focus-visible svg { fill: #25D366; }

  .mob-bar-email svg { stroke: rgba(255,255,255,.8); transition: stroke .2s; }
  .mob-bar-email:active,
  .mob-bar-email:focus-visible {
    background: rgba(2, 193, 188, .1);
    color: var(--teal);
  }
  .mob-bar-email:active svg,
  .mob-bar-email:focus-visible svg { stroke: var(--teal); }

  .mob-bar-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,.08);
    align-self: center;
    flex-shrink: 0;
  }

  /* Ocultar wa-float en móvil — ya está en la barra de acciones */
  .wa-float { display: none; }

  /* Espacio inferior para no tapar el footer con la barra */
  .footer { padding-bottom: calc(60px + 48px); }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 899px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 767px) {
  .hero h1 { font-size: clamp(2rem, 9.5vw, 3.4rem); }
  .hero-photo-frame { max-width: 260px; }
  .hero-badge { right: 0; }
}

@media (max-width: 559px) {
  .hero-inner { gap: 32px; }
  .svc-card { padding: 28px 24px; }
  .proc-step { padding: 28px 22px; }
  .about-box { padding: 28px 22px; }
}

/* ============================================================
   LINKS PAGE — Bio links standalone
   ============================================================ */

body.links-page {
  background: #0a0a0a;
  color: #fff;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 6vw, 64px) 20px;
  position: relative;
}

/* ── Background blobs ── */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.blob-a {
  width: 420px; height: 420px;
  background: #8154A1;
  opacity: .16;
  top: -140px; right: -120px;
}
.blob-b {
  width: 380px; height: 380px;
  background: #38bdf8;
  opacity: .13;
  bottom: -100px; left: -100px;
}

/* ── Page wrapper ── */
.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* ── Profile ── */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.avatar-wrap {
  position: relative;
  width: 100px;
  height: 100px;
}

.avatar-ring {
  width: 100%; height: 100%;
  border-radius: 50%;
  padding: 3px;
  background: var(--grad-tri);
}

.avatar-ring img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 2.5px solid #0a0a0a;
}

/* Pulse ring */
.avatar-wrap::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--grad-tri);
  opacity: 0;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%   { opacity: 0; transform: scale(1); }
  50%  { opacity: .15; transform: scale(1.06); }
  100% { opacity: 0; transform: scale(1.12); }
}

.profile-name {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 5vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.profile-title {
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: -4px;
}

.profile-bio {
  font-size: 0.95rem;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
  max-width: 320px;
}

/* ── Divider ── */
.divider {
  width: 56px;
  height: 3px;
  background: var(--grad-tri);
  border-radius: 100px;
}

/* ── Link buttons ── */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  padding: 17px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
}

.link-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.link-btn:hover::after { transform: translateX(100%); }

.link-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
}

.link-btn:active { transform: translateY(-1px); }

.link-btn svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  fill: #fff;
}

.link-btn--portfolio {
  background: var(--grad-main);
  box-shadow: 0 6px 24px rgba(129,84,161,.35);
}

.link-btn--wa,
.link-btn--ig {
  background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
              var(--grad-main) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 18px rgba(129,84,161,.15);
  color: rgba(255,255,255,.85);
}

.link-btn--wa:hover,
.link-btn--ig:hover {
  background: linear-gradient(rgba(129,84,161,.1), rgba(56,189,248,.07)) padding-box,
              var(--grad-main) border-box;
  box-shadow: 0 12px 32px rgba(129,84,161,.28);
}

/* ── Bio footer ── */
.bio-footer {
  font-size: 0.75rem;
  color: rgba(255,255,255,.22);
  text-align: center;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bio-footer > a:first-child {
  font-size: 0.82rem;
  color: rgba(255,255,255,.5);
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.bio-footer a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color 0.2s;
}

.bio-footer a:hover { color: rgba(255,255,255,.65); }

/* ── Links page responsive ── */
@media (min-width: 480px) {
  .avatar-wrap { width: 112px; height: 112px; }
  .page { gap: 36px; }
}

@media (max-height: 650px) {
  body.links-page { padding: 20px; }
  .page { gap: 20px; }
  .avatar-wrap { width: 80px; height: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  .avatar-wrap::after { animation: none; }
  .link-btn,
  .link-btn::after { transition: none; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: #111;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px clamp(16px, 4vw, 52px);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}

.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-tri);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-text {
  flex: 1;
  min-width: 200px;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

.cookie-banner-text strong {
  color: #fff;
  font-family: var(--font-h);
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
}

.cookie-banner-text a {
  color: var(--sky);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s;
}

.cookie-banner-text a:hover { opacity: .75; }

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}

.cookie-btn:hover { opacity: .85; transform: translateY(-1px); }

.cookie-btn--accept {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 4px 16px rgba(129,84,161,.35);
}

.cookie-btn--reject {
  background: transparent;
  color: rgba(255,255,255,.5);
  border: 1.5px solid rgba(255,255,255,.15);
}

.cookie-btn--reject:hover {
  color: #fff;
  border-color: rgba(255,255,255,.4);
}

@media (max-width: 899px) {
  .cookie-banner { padding-bottom: max(18px, env(safe-area-inset-bottom)); }
  /* En móvil, sube el banner por encima de la mob-bar */
  body.has-mob-bar .cookie-banner { bottom: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: none; }
}

/* ============================================================
   POLÍTICA DE PRIVACIDAD
   ============================================================ */

.pol-header {
  background: var(--black);
  padding: 0 clamp(20px, 5vw, 80px);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.pol-header img { width: 110px; height: auto; object-fit: contain; }

.pol-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}

.pol-back:hover { color: var(--white); }
.pol-back svg { width: 14px; height: 14px; stroke: currentColor; }

.pol-hero {
  background: var(--dark);
  padding: clamp(52px, 8vw, 96px) clamp(20px, 5vw, 80px) clamp(40px, 6vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.pol-hero-in {
  max-width: 780px;
  margin: 0 auto;
}

.pol-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-h);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 18px;
}

.pol-badge::before {
  content: '';
  width: 16px; height: 1.5px;
  background: var(--sky);
}

.pol-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}

.pol-hero p {
  font-size: .95rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
}

.pol-hero-email {
  color: rgba(255,255,255,.65);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pol-body {
  background: var(--white);
  padding: clamp(52px, 8vw, 96px) clamp(20px, 5vw, 80px);
}

.pol-body-in {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.pol-section { display: flex; flex-direction: column; gap: 16px; }

.pol-section h2 {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.02em;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pol-section h2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: var(--r-xs);
  background: var(--grad-main);
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.pol-section h3 {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 8px;
}

.pol-section p,
.pol-section li {
  font-size: .96rem;
  color: var(--muted);
  line-height: 1.85;
}

.pol-section ul,
.pol-section ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pol-section strong { color: var(--text); font-weight: 600; }

.pol-section a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}

.pol-section a:hover { color: var(--sky); }

.pol-highlight {
  background: var(--light);
  border-left: 3px solid;
  border-image: var(--grad-main) 1;
  border-radius: 0 var(--r-xs) var(--r-xs) 0;
  padding: 16px 20px;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.75;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.cookie-table th {
  font-family: var(--font-h);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  text-align: left;
  padding: 10px 14px;
  background: var(--light);
  border-bottom: 2px solid var(--border);
}

.cookie-table td {
  padding: 12px 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
}

.cookie-table tr:last-child td { border-bottom: none; }

.cookie-badge {
  display: inline-block;
  font-family: var(--font-h);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
}

.cookie-badge--essential {
  background: rgba(2,193,188,.12);
  color: #02a89e;
}

.cookie-badge--functional {
  background: rgba(129,84,161,.1);
  color: var(--purple);
}

.pol-footer {
  background: var(--dark);
  padding: 32px clamp(20px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.pol-footer p { font-size: .8rem; color: rgba(255,255,255,.25); line-height: 1.7; }
.pol-footer a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.pol-footer a:hover { color: var(--white); }

.pol-manage-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.35);
  font-size: .8rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: inherit;
  padding: 0;
  transition: color .2s;
}

.pol-manage-btn:hover { color: rgba(255,255,255,.65); }
