/* ============================================================
   GESTOMARKETING MX -- GLOBAL STYLES
   All shared + page-specific CSS combined
   ============================================================ */


/* ==========================================================
   1. RESET
   ========================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #1a1a2e;
  line-height: 1.7;
  overflow-x: hidden;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  font: inherit;
}

video {
  display: block;
  width: 100%;
}


/* ==========================================================
   2. CSS VARIABLES
   ========================================================== */

:root {
  --pr: #3b5a76;
  --pr2: #1a2e3f;
  --sec: #8b9687;
  --acc: #e7ff89;
  --dk: #0a0f1e;
  --dk2: #060b16;
  --lt: #f4f7f2;
  --tx: #1a2e3f;
  --mu: #6b7c8a;
  --rd: 10px;
  --rdl: 18px;
  --rdxl: 28px;
  --sh: 0 8px 40px rgba(59, 90, 118, .18);
  --shl: 0 30px 80px rgba(59, 90, 118, .28);
  --tr: all .3s cubic-bezier(.4, 0, .2, 1);
  --fh: 'Plus Jakarta Sans', sans-serif;
  --fb: 'Plus Jakarta Sans', sans-serif;
}


/* ==========================================================
   3. CUSTOM CURSOR
   ========================================================== */

#cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  background: #e7ff89;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: difference;
}

#cursor-ring {
  position: fixed;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(231, 255, 137, .5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  transition: transform .1s, width .3s, height .3s, border-color .3s;
}

body:hover #cursor {
  opacity: 1;
}

.cursor-grow #cursor {
  width: 48px;
  height: 48px;
}

.cursor-grow #cursor-ring {
  width: 0;
  height: 0;
  border-color: transparent;
}

@media (max-width: 768px), (hover: none) {
  #cursor,
  #cursor-ring {
    display: none !important;
  }
  body,
  body *,
  button {
    cursor: auto !important;
  }
}


/* ==========================================================
   4. LOADER (desktop only — hidden on mobile for instant load)
   ========================================================== */

@media (max-width: 767px) {
  #loader { display: none !important; }
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #060b16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  transition: opacity .6s ease, visibility .6s ease;
}

#loader.gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ld-logo {
  width: 140px;
  max-width: 90%;
  animation: ldPop 1s cubic-bezier(.34, 1.56, .64, 1) both;
}

.ld-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ld-track {
  width: 200px;
  max-width: 80%;
  height: 3px;
  background: rgba(255, 255, 255, .15);
  border-radius: 99px;
  overflow: hidden;
}

.ld-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sec), var(--acc));
  border-radius: 99px;
  animation: ldFill 1.2s ease forwards;
}

.ld-msg {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  animation: ldPulse 1.5s ease infinite alternate;
  text-align: center;
  line-height: 1.4;
  max-width: 90%;
  font-weight: 600;
}

@media (min-width: 768px) {
  .ld-logo {
    width: 160px;
  }
  .ld-track {
    width: 240px;
    height: 2px;
  }
  .ld-msg {
    font-size: .7rem;
  }
}

@keyframes ldPop {
  from {
    opacity: 0;
    transform: scale(.7) translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ldFill {
  0% { width: 0; }
  60% { width: 72%; }
  100% { width: 100%; }
}

@keyframes ldPulse {
  from { opacity: .6; }
  to { opacity: 1; }
}


/* ==========================================================
   5. NAVIGATION
   ========================================================== */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 72px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .3s ease, box-shadow .3s ease;
  background: rgba(6, 11, 22, .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

#nav.scrolled {
  background: rgba(6, 11, 22, .97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06), 0 4px 20px rgba(0, 0, 0, .3);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a,
.nav-links .menu-item a {
  color: rgba(255, 255, 255, .75);
  font-size: .82rem;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
  letter-spacing: .04em;
}

.nav-links a:hover,
.nav-links .menu-item a:hover {
  color: #fff;
}

.nav-links a.active,
.nav-links .current-menu-item a {
  color: var(--acc);
}

.nav-links .menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links .menu-item {
  list-style: none;
}

.nav-cta,
.nav-links .menu-item.nav-cta-item a {
  background: var(--acc);
  color: var(--dk) !important;
  padding: 10px 24px;
  border-radius: var(--rd);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: var(--tr) !important;
  border: none !important;
}

.nav-cta:hover,
.nav-links .menu-item.nav-cta-item a:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(231, 255, 137, .3);
}

/* Hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
  cursor: pointer;
}

.ham span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--tr);
  display: block;
}

.ham.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.ham.open span:nth-child(2) {
  opacity: 0;
}

.ham.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
#mob {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--dk2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

#mob.open {
  display: flex;
}

#mob a {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .8);
  transition: color .2s;
}

#mob a:hover {
  color: var(--acc);
}

#mob .mcta {
  background: var(--acc);
  color: var(--dk);
  padding: 16px 40px;
  border-radius: var(--rd);
  margin-top: 12px;
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }
  .ham {
    display: flex;
  }
}


/* ==========================================================
   6. BREADCRUMB
   ========================================================== */

.breadcrumb-wrap {
  background: var(--dk2);
}

.breadcrumb {
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 12px 5%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 72px;
  flex-wrap: wrap;
}

.breadcrumb a,
.breadcrumb span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--acc);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, .2);
  font-size: .65rem;
}

.breadcrumb .current {
  color: var(--acc);
}


/* ==========================================================
   7. HERO (shared base)
   ========================================================== */

#hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dk2);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(231, 255, 137, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 255, 137, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(59, 90, 118, .35) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-glow2 {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(231, 255, 137, .07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, rgba(6, 11, 22, .97) 0%, rgba(26, 46, 63, .88) 60%, rgba(6, 11, 22, .75) 100%);
}

.hero-overlay-grad {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, rgba(6, 11, 22, .97) 0%, rgba(26, 46, 63, .8) 55%, rgba(6, 11, 22, .5) 100%);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

@media (min-width: 1025px) {
  .hero-inner {
    padding: 120px 5% 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 100vh;
  }
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(231, 255, 137, .1);
  border: 1px solid rgba(231, 255, 137, .25);
  border-radius: 99px;
  color: var(--acc);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeUp .7s ease .3s both;
}

.bdot {
  width: 6px;
  height: 6px;
  background: var(--acc);
  border-radius: 50%;
  animation: pulseDot 1.8s ease infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(2.5);
    opacity: .2;
  }
}

/* Hero headings */
.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(2rem, 8vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
  animation: fadeUp .8s ease .5s both;
  letter-spacing: -.02em;
  word-break: break-word;
  hyphens: auto;
}

.hero-h1 .line2 {
  display: block;
  color: var(--acc);
  position: relative;
}

.hero-h1 .line2::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--acc);
  opacity: .4;
}

.hero-h1 .line-acc {
  display: block;
  color: var(--acc);
  position: relative;
}

.hero-h1 .line-acc::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--acc);
  opacity: .35;
}

/* Hero subtitle */
.hero-sub {
  font-size: .95rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 100%;
  animation: fadeUp .8s ease .7s both;
}

@media (min-width: 1025px) {
  .hero-sub {
    max-width: 480px;
    font-size: 1rem;
  }
}

/* Hero buttons */
.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  animation: fadeUp .8s ease .85s both;
}

@media (min-width: 480px) {
  .hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }
}

.hero-btns .btn {
  justify-content: center;
  width: 100%;
}

@media (min-width: 480px) {
  .hero-btns .btn {
    width: auto;
  }
}

/* Hero trust */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  animation: fadeUp .8s ease 1s both;
  flex-wrap: wrap;
}

.trust-faces {
  display: flex;
}

.trust-face {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--dk2);
  background: linear-gradient(135deg, var(--pr), var(--sec));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  color: #fff;
  margin-left: -10px;
  flex-shrink: 0;
}

.trust-face:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.4;
}

.trust-text strong {
  color: var(--acc);
  display: block;
}

/* Hero stats (inicio) */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  animation: fadeUp .8s ease 1s both;
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 0;
    border: none;
    padding-top: 0;
  }
  .hstat {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
    padding-bottom: 12px !important;
  }
  .hstat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .08) !important;
    padding-right: 16px !important;
  }
}

.hstat {
  flex: 1;
  padding: 0 16px 0 0;
  border-right: 1px solid rgba(255, 255, 255, .1);
  margin-right: 16px;
}

.hstat:last-child {
  border-right: none;
  margin-right: 0;
}

.hstat-n {
  font-family: var(--fh);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--acc);
  line-height: 1;
  margin-bottom: 4px;
}

@media (min-width: 1025px) {
  .hstat-n {
    font-size: 2.2rem;
  }
}

.hstat-l {
  font-size: .65rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Hero visual */
.hero-visual {
  position: relative;
  animation: slideIn .9s cubic-bezier(.4, 0, .2, 1) .6s both;
  display: none;
}

@media (min-width: 1025px) {
  .hero-visual {
    display: block;
  }
}

/* Hero techs (ecommerce) */
.hero-techs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  animation: fadeUp .8s ease 1.1s both;
  flex-wrap: wrap;
}

.techs-label {
  font-size: .65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.techs-icons {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.tech-pill {
  padding: 4px 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  transition: var(--tr);
}

.tech-pill:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

/* Hero platforms (redes) */
.hero-platforms {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  animation: fadeUp .8s ease 1.1s both;
  flex-wrap: wrap;
}

.plat-label {
  font-size: .65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.plat-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.plat-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: var(--tr);
}

.plat-icon:hover {
  background: rgba(255, 255, 255, .15);
  transform: translateY(-3px);
}


/* ==========================================================
   8. TICKER
   ========================================================== */

.ticker {
  background: var(--acc);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: tickMove 32s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ti {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fh);
  font-size: .72rem;
  font-weight: 800;
  color: var(--dk2);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.tdot {
  width: 4px;
  height: 4px;
  background: var(--dk2);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes tickMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ==========================================================
   9. TRUST BAR
   ========================================================== */

.trust-bar {
  background: var(--lt);
  border-bottom: 1px solid rgba(59, 90, 118, .08);
  padding: 16px 20px;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
}

.tb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--mu);
  white-space: nowrap;
}

.tb-ico {
  font-size: 1rem;
}


/* ==========================================================
   10. UTILITY CLASSES
   ========================================================== */

.sec {
  padding: 80px 20px;
}

@media (min-width: 768px) {
  .sec {
    padding: 100px 5%;
  }
}

.sec-sm {
  padding: 48px 20px;
}

@media (min-width: 768px) {
  .sec-sm {
    padding: 60px 5%;
  }
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.sec-dk {
  background: var(--dk);
  color: #fff;
}

.sec-dk2 {
  background: var(--dk2);
  color: #fff;
}

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

.tc {
  text-align: center;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(139, 150, 135, .12);
  color: var(--sec);
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid rgba(139, 150, 135, .2);
  margin-bottom: 14px;
}

.badge-acc {
  background: rgba(231, 255, 137, .1);
  color: var(--acc);
  border-color: rgba(231, 255, 137, .22);
}

/* Section titles */
.sec-title {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 16px;
  color: var(--tx);
  letter-spacing: -.02em;
}

.sec-title .hl {
  position: relative;
  display: inline-block;
  color: var(--pr);
}

.sec-title .hl::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--pr);
  border-radius: 2px;
  transition: width .9s cubic-bezier(.4, 0, .2, 1);
}

.sec-title.anim .hl::after {
  width: 100%;
}

.sec-title-wh {
  color: #fff;
}

.sec-title-wh .hl {
  color: var(--acc);
}

.sec-title-wh .hl::after {
  background: var(--acc);
}

/* Section subtitles */
.sec-sub {
  font-size: .92rem;
  color: var(--mu);
  max-width: 600px;
  line-height: 1.75;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sec-sub {
    font-size: 1rem;
  }
}

.sec-sub-wh {
  color: rgba(255, 255, 255, .65);
}


/* ==========================================================
   11. BUTTONS
   ========================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: var(--rd);
  font-family: var(--fh);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border: 2px solid transparent;
}

@media (min-width: 768px) {
  .btn {
    padding: 13px 28px;
    font-size: .82rem;
  }
}

.btn-acc {
  background: var(--acc);
  color: var(--dk2);
  border-color: var(--acc);
}

.btn-acc:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(231, 255, 137, .25);
}

.btn-g {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}

.btn-g:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .7);
  transform: translateY(-2px);
}

.btn-d {
  background: var(--pr);
  color: #fff;
  border-color: var(--pr);
}

.btn-d:hover {
  background: var(--pr2);
  transform: translateY(-2px);
  box-shadow: var(--sh);
}

.btn-op {
  background: transparent;
  color: var(--pr);
  border-color: rgba(59, 90, 118, .4);
}

.btn-op:hover {
  background: var(--pr);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: .74rem;
}

.btn-lg {
  padding: 15px 28px;
  font-size: .88rem;
}

@media (min-width: 768px) {
  .btn-lg {
    padding: 16px 36px;
    font-size: .9rem;
  }
}


/* ==========================================================
   12. REVEAL ANIMATION
   ========================================================== */

.rv {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .75s ease, transform .75s ease;
}

.rv.fl { transform: translateX(-40px); }
.rv.fr { transform: translateX(40px); }
.rv.fs { transform: scale(.92); }
.rv.sk { transform: skewY(3deg) translateY(40px); }

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

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }
.d6 { transition-delay: .6s; }


/* ==========================================================
   13. SHARED KEYFRAME ANIMATIONS
   ========================================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(60px) scale(.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

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

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}


/* ============================================================
   PAGE-SPECIFIC: INICIO
   ============================================================ */


/* ==========================================================
   14. VID COLLAGE (inicio hero)
   ========================================================== */

.vid-collage {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 520px;
}

.vc-main {
  grid-row: 1 / 3;
  border-radius: var(--rdl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shl);
}

.vc-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-sm {
  border-radius: var(--rd);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh);
}

.vc-sm video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 11, 22, .7) 0%, transparent 50%);
}

.vc-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: .65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-badge-float {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: #fff;
  border-radius: var(--rd);
  padding: 14px 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
  z-index: 10;
}

.bfloat-ico {
  width: 38px;
  height: 38px;
  background: var(--acc);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.bfloat-t {
  font-family: var(--fh);
  font-size: .85rem;
  font-weight: 800;
  color: var(--pr2);
  line-height: 1.2;
}

.bfloat-s {
  font-size: .68rem;
  color: var(--mu);
  margin-top: 2px;
}

.hero-deco {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(231, 255, 137, .12);
  border-radius: 50%;
  animation: spin 25s linear infinite;
}

.hero-deco::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -4px;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: var(--acc);
  border-radius: 50%;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .4);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: bounce 2.5s ease infinite;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .4), transparent);
}


/* ==========================================================
   15. VIDEO GRID (inicio)
   ========================================================== */

.vid-grid-wrap {
  position: relative;
  margin-top: 40px;
}

.vid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.vid-cell {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--dk2);
  box-shadow: var(--shl);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s;
  aspect-ratio: 9 / 16;
}

@media (max-width: 899px) {
  .vid-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vid-cell {
    aspect-ratio: 9 / 16;
  }
}

@media (min-width: 900px) {
  .vid-grid {
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    gap: 12px;
  }
  .vid-cell:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
    z-index: 2;
  }
  .vid-cell:nth-child(1) { aspect-ratio: 9 / 16; grid-row: span 2; }
  .vid-cell:nth-child(2) { aspect-ratio: 4 / 3; grid-row: span 1; }
  .vid-cell:nth-child(3) { aspect-ratio: 4 / 3; grid-row: span 1; }
  .vid-cell:nth-child(4) { aspect-ratio: 9 / 16; grid-row: span 2; }
  .vid-cell:nth-child(5) { aspect-ratio: 16 / 9; grid-column: span 2; }
  .vid-cell:nth-child(6) { aspect-ratio: 16 / 9; grid-column: span 2; }
}

.vid-cell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vid-cell-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 11, 22, .8) 0%, rgba(6, 11, 22, .1) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  pointer-events: none;
}

.vid-cell-label {
  font-family: var(--fh);
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .9;
}

@media (min-width: 768px) {
  .vid-cell-label {
    font-size: .72rem;
  }
}


/* ==========================================================
   16. PROMO IMAGES (inicio)
   ========================================================== */

.promo-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 40px;
}

@media (min-width: 600px) {
  .promo-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1025px) {
  .promo-wrap {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.promo-main {
  border-radius: var(--rdl);
  overflow: hidden;
  box-shadow: var(--shl);
  position: relative;
  aspect-ratio: 3 / 4;
  display: none;
}

@media (min-width: 1025px) {
  .promo-main {
    display: block;
  }
}

.promo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.promo-main:hover img {
  transform: scale(1.04);
}

.promo-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo-card {
  border-radius: var(--rdl);
  overflow: hidden;
  box-shadow: var(--sh);
  position: relative;
  aspect-ratio: 4 / 3;
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.promo-card:hover img {
  transform: scale(1.06);
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 11, 22, .8) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .35s;
}

.promo-main:hover .promo-overlay,
.promo-card:hover .promo-overlay {
  opacity: 1;
}

.promo-lbl {
  font-family: var(--fh);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
}

.promo-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--acc);
  color: var(--dk2);
  font-family: var(--fh);
  font-size: .62rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: .08em;
  text-transform: uppercase;
}


/* ==========================================================
   17. SERVICES (inicio)
   ========================================================== */

.srv-hdr {
  text-align: center;
  padding: 64px 20px 48px;
}

@media (min-width: 768px) {
  .srv-hdr {
    padding: 80px 5% 52px;
  }
}

.srv-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.srv-tab {
  padding: 8px 18px;
  border-radius: 99px;
  border: 1.5px solid rgba(59, 90, 118, .25);
  color: var(--mu);
  font-family: var(--fh);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--tr);
  background: transparent;
  cursor: pointer;
}

.srv-tab:hover,
.srv-tab.active {
  background: var(--dk2);
  color: #fff;
  border-color: var(--dk2);
}

.srv-showcase {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px 80px;
  background: var(--lt);
}

@media (min-width: 768px) {
  .srv-showcase {
    padding: 0 5% 100px;
  }
}

.srv-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(59, 90, 118, .1);
}

@media (min-width: 900px) {
  .srv-item {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
}

.srv-item:last-child {
  border-bottom: none;
}

.srv-item.rev {
  direction: ltr;
}

@media (min-width: 900px) {
  .srv-item.rev {
    direction: rtl;
  }
  .srv-item.rev > * {
    direction: ltr;
  }
}

.srv-nbig {
  font-family: var(--fh);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(59, 90, 118, .08);
  line-height: 1;
  margin-bottom: -20px;
  letter-spacing: -.02em;
}

@media (min-width: 768px) {
  .srv-nbig {
    font-size: 5.5rem;
    margin-bottom: -28px;
  }
}

.srv-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pr), var(--sec));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  box-shadow: 0 10px 28px rgba(59, 90, 118, .25);
}

.srv-h3 {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -.02em;
}

@media (min-width: 768px) {
  .srv-h3 {
    font-size: 1.6rem;
  }
}

.srv-desc {
  color: var(--mu);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: .92rem;
}

.srv-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.srv-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  color: var(--tx);
  font-weight: 500;
}

.fck {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--pr), var(--sec));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .65rem;
  font-weight: 900;
}

.srv-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.srv-card {
  background: linear-gradient(145deg, var(--pr) 0%, var(--pr2) 100%);
  border-radius: var(--rdl);
  padding: 28px;
  box-shadow: var(--shl);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .srv-card {
    padding: 36px;
  }
}

.srv-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 250px;
  height: 250px;
  background: rgba(231, 255, 137, .05);
  border-radius: 50%;
}

.card-tit {
  font-family: var(--fh);
  font-size: .85rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.card-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .4);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.metric {
  background: rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.metric-n {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--acc);
  line-height: 1;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .metric-n {
    font-size: 1.65rem;
  }
}

.metric-l {
  font-size: .62rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.4;
}

.card-bars {
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.bar-r {
  margin-bottom: 10px;
}

.bar-h {
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 5px;
}

.bar-t {
  height: 5px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  overflow: hidden;
}

.bar-f {
  height: 100%;
  background: linear-gradient(90deg, var(--sec), var(--acc));
  border-radius: 3px;
  width: 0;
  transition: width 1.8s cubic-bezier(.4, 0, .2, 1);
}


/* ==========================================================
   18. STICKY SECTION (inicio)
   ========================================================== */

#vid-sticky {
  position: relative;
}

.vs-inner {
  background: var(--dk2);
  padding: 64px 20px;
}

@media (min-width: 768px) {
  .vs-inner {
    padding: 80px 5%;
  }
}

.vs-noise {
  position: absolute;
  inset: 0;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.vs-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1025px) {
  .vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  #vid-sticky {
    height: 300vh;
  }
  .vs-inner {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
  }
}

.vs-text {
  color: #fff;
}

.vs-title {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}

.vs-title em {
  font-style: normal;
  color: var(--acc);
}

.vs-desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .vs-desc {
    font-size: .96rem;
  }
}

.vs-feats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vf {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.vf-ico {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(231, 255, 137, .1);
  border: 1px solid rgba(231, 255, 137, .2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

.vf-t {
  font-family: var(--fh);
  font-size: .86rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}

.vf-d {
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.5;
}

.vs-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

@media (min-width: 1025px) {
  .vs-videos {
    gap: 14px;
    align-items: start;
  }
}

.sframe {
  border-radius: var(--rdl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .7);
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--pr2);
  width: 100%;
}

@media (min-width: 1025px) {
  .sframe:nth-child(2) {
    margin-top: 40px;
  }
  #vid-sticky.desktop-sticky .sframe {
    transform: scale(.65);
    transform-origin: center;
    transition: transform .05s linear;
  }
}

.sframe video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sframe-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(231, 255, 137, .95);
  color: var(--dk2);
  font-family: var(--fh);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}

.sframe-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 11, 22, .65) 0%, transparent 50%);
}

.sframe-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  font-family: var(--fh);
  color: rgba(255, 255, 255, .85);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 2;
}


/* ==========================================================
   19. STATS (inicio)
   ========================================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, .04);
}

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

.stat-c {
  padding: 40px 20px;
  text-align: center;
  transition: background .3s;
  border-right: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

@media (min-width: 768px) {
  .stat-c {
    padding: 56px 32px;
    border-bottom: none;
  }
}

.stat-c:nth-child(2n) {
  border-right: none;
}

@media (min-width: 768px) {
  .stat-c:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, .08);
  }
  .stat-c:last-child {
    border-right: none;
  }
}

.stat-c:hover {
  background: rgba(255, 255, 255, .08);
}

.stat-ico {
  font-size: 1.4rem;
  margin-bottom: 10px;
  opacity: .4;
  display: block;
}

.stat-n {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--acc);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.stat-sfx {
  font-size: 1.2rem;
  color: rgba(231, 255, 137, .5);
}

.stat-l {
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .1em;
}


/* ==========================================================
   20. CASOS (inicio)
   ========================================================== */

.casos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 48px;
}

@media (min-width: 600px) {
  .casos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1025px) {
  .casos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.caso-card {
  background: #fff;
  border-radius: var(--rdl);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid rgba(59, 90, 118, .08);
  transition: var(--tr);
  display: flex;
  flex-direction: column;
}

.caso-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shl);
}

.caso-img {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

@media (min-width: 768px) {
  .caso-img {
    height: 220px;
  }
}

.caso-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.caso-card:hover .caso-img img {
  transform: scale(1.07);
}

.caso-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(6, 11, 22, .8));
}

.caso-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}

.caso-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .caso-body {
    padding: 24px;
  }
}

.caso-title {
  font-family: var(--fh);
  font-size: .96rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.caso-desc {
  font-size: .82rem;
  color: var(--mu);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.caso-res {
  display: flex;
  gap: 0;
  padding-top: 12px;
  border-top: 1px solid var(--lt);
}

.caso-r {
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--lt);
}

.caso-r:last-child {
  border-right: none;
}

.caso-rn {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pr);
  line-height: 1;
}

.caso-rl {
  font-size: .63rem;
  color: var(--mu);
  margin-top: 3px;
}


/* ==========================================================
   21. VIDEO PROMO (inicio)
   ========================================================== */

.vid-promo-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 48px;
}

@media (min-width: 600px) {
  .vid-promo-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .vp-item:nth-child(3) {
    display: block;
  }
  .vp-item:nth-child(2) {
    margin-top: 0;
  }
}

@media (min-width: 1025px) {
  .vid-promo-wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .vp-item:nth-child(2) {
    margin-top: 40px;
  }
  .vp-item:nth-child(3) {
    margin-top: 80px;
    display: block;
  }
}

.vp-item {
  border-radius: var(--rdl);
  overflow: hidden;
  position: relative;
  background: var(--dk2);
  box-shadow: var(--shl);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  aspect-ratio: 9 / 16;
}

.vp-item:nth-child(3) {
  display: none;
}

@media (min-width: 600px) {
  .vp-item:nth-child(3) {
    display: block;
  }
}

.vp-item:hover {
  transform: scale(1.02);
}

.vp-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 11, 22, .85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  gap: 10px;
  transition: background .3s;
}

.vp-item:hover .vp-overlay {
  background: linear-gradient(to top, rgba(6, 11, 22, .95) 0%, rgba(6, 11, 22, .2) 60%, transparent 100%);
}

.vp-label {
  font-family: var(--fh);
  color: rgba(255, 255, 255, .9);
  font-size: .68rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
  letter-spacing: .04em;
}


/* ==========================================================
   22. PROCESS (inicio)
   ========================================================== */

.proc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 48px;
  position: relative;
}

@media (min-width: 900px) {
  .proc-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .proc-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 90, 118, .35) 30%, rgba(59, 90, 118, .35) 70%, transparent);
  }
}

.proc-card {
  background: #fff;
  border-radius: var(--rdl);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--sh);
  border: 1px solid rgba(59, 90, 118, .08);
  position: relative;
  z-index: 1;
  transition: var(--tr);
}

@media (min-width: 768px) {
  .proc-card {
    padding: 28px 20px;
  }
}

.proc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shl);
}

.proc-num {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--pr), var(--sec));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 12px 28px rgba(59, 90, 118, .28);
  transition: transform .3s;
}

@media (min-width: 768px) {
  .proc-num {
    width: 72px;
    height: 72px;
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

.proc-card:hover .proc-num {
  transform: scale(1.12);
}

.proc-t {
  font-family: var(--fh);
  font-size: .84rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

@media (min-width: 768px) {
  .proc-t {
    font-size: .92rem;
  }
}

.proc-d {
  font-size: .78rem;
  color: var(--mu);
  line-height: 1.6;
}


/* ==========================================================
   23. TESTIMONIALS (inicio)
   ========================================================== */

.test-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 600px) {
  .test-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1025px) {
  .test-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.test-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--rdl);
  padding: 24px;
  transition: var(--tr);
}

.test-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-5px);
  border-color: rgba(231, 255, 137, .2);
}

.test-stars {
  color: var(--acc);
  font-size: .9rem;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.test-q {
  font-size: .86rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 20px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pr), var(--sec));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: .85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}

.test-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.test-name {
  font-family: var(--fh);
  font-size: .83rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
}

.test-role {
  font-size: .7rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 2px;
}

.test-plat {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  opacity: .6;
}


/* ==========================================================
   24. BLOG (inicio)
   ========================================================== */

.blog-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1025px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: #fff;
  border-radius: var(--rdl);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid rgba(59, 90, 118, .08);
  transition: var(--tr);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shl);
}

.blog-img {
  height: 170px;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .blog-img {
    height: 180px;
  }
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.06);
}

.blog-img-icon {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}

.blog-cat {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.blog-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-family: var(--fh);
  font-size: .9rem;
  font-weight: 800;
  color: var(--tx);
  line-height: 1.4;
  margin-bottom: 8px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
  letter-spacing: -.01em;
}

.blog-card:hover .blog-title {
  color: var(--pr);
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--fh);
  font-size: .72rem;
  font-weight: 800;
  color: var(--sec);
  text-transform: uppercase;
  letter-spacing: .07em;
  transition: gap .2s, color .2s;
  margin-top: 12px;
}

.blog-link:hover {
  gap: 12px;
  color: var(--pr);
}


/* ============================================================
   PAGE-SPECIFIC: ECOMMERCE
   ============================================================ */


/* ==========================================================
   25. BROWSER MOCKUP (ecommerce hero)
   ========================================================== */

.browser-mockup {
  border-radius: var(--rdl);
  overflow: hidden;
  box-shadow: var(--shl);
  position: relative;
}

.browser-bar {
  background: linear-gradient(135deg, #1a2e3f, #0a1520);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.bd-r { background: #ff5f57; }
.bd-y { background: #ffbd2e; }
.bd-g { background: #28c840; }

.browser-url {
  flex: 1;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: .65rem;
  color: rgba(255, 255, 255, .5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-screen {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dk2);
}

.browser-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.perf-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 10;
  background: #fff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
  animation: float 4s ease-in-out infinite;
}

.pb-n {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 800;
  color: #28c840;
  line-height: 1;
}

.pb-l {
  font-size: .5rem;
  color: var(--mu);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.speed-badge {
  position: absolute;
  bottom: -12px;
  left: -16px;
  z-index: 10;
  background: #fff;
  border-radius: var(--rd);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
  animation: float 4s ease-in-out infinite 1s;
}

.sb-ico {
  font-size: 1.2rem;
}

.sb-t {
  font-family: var(--fh);
  font-size: .78rem;
  font-weight: 800;
  color: var(--tx);
}

.sb-s {
  font-size: .6rem;
  color: var(--mu);
}


/* ==========================================================
   26. VALUE GRID (ecommerce)
   ========================================================== */

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
}

@media (min-width: 1025px) {
  .value-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.vg-text h3 {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 16px;
  line-height: 1.2;
}

.vg-text p {
  color: var(--mu);
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: .92rem;
}

.vg-checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vg-check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.vg-check-ico {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--pr), var(--sec));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  margin-top: 2px;
}

.vg-check-text {
  font-size: .86rem;
  color: var(--mu);
  line-height: 1.6;
}

.vg-check-text strong {
  display: block;
  color: var(--tx);
  font-weight: 800;
  margin-bottom: 4px;
}


/* ==========================================================
   27. SPEED DASHBOARD (ecommerce)
   ========================================================== */

.speed-dashboard {
  background: linear-gradient(145deg, var(--pr), var(--pr2));
  border-radius: var(--rdl);
  padding: 28px;
  box-shadow: var(--shl);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .speed-dashboard {
    padding: 36px;
  }
}

.sd-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.sd-title {
  font-family: var(--fh);
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.sd-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 600;
}

.sd-dot {
  width: 6px;
  height: 6px;
  background: #28c840;
  border-radius: 50%;
  animation: pulseDot 1.8s ease infinite;
}

/* PageSpeed ring */
.pagespeed-ring {
  text-align: center;
  margin-bottom: 24px;
}

.ps-ring-wrap {
  position: relative;
  display: inline-block;
}

.ps-ring-svg {
  transform: rotate(-90deg);
}

.ps-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, .1);
  stroke-width: 8;
}

.ps-ring-fill {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 6.786;
  transition: stroke-dashoffset 2s ease;
}

.ps-ring-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.ps-n {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 800;
  color: var(--acc);
  line-height: 1;
}

.ps-l {
  font-size: .6rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Speed dashboard metrics */
.sd-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.sd-metric {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.sd-metric-n {
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--acc);
  line-height: 1;
  margin-bottom: 4px;
}

.sd-metric-l {
  font-size: .6rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.3;
}

/* Speed dashboard bars */
.sd-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sd-bar-r {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sd-bar-label {
  font-size: .65rem;
  color: rgba(255, 255, 255, .5);
  width: 70px;
  flex-shrink: 0;
  text-align: right;
}

.sd-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  overflow: hidden;
}

.sd-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sec), var(--acc));
  border-radius: 3px;
  width: 0;
  transition: width 1.8s cubic-bezier(.4, 0, .2, 1);
}

.sd-bar-val {
  font-size: .65rem;
  color: var(--acc);
  font-weight: 700;
  width: 52px;
  flex-shrink: 0;
}


/* ==========================================================
   28. WEB TYPES CARDS (ecommerce)
   ========================================================== */

.web-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 600px) {
  .web-types-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1025px) {
  .web-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wt-card {
  background: #fff;
  border-radius: var(--rdl);
  padding: 28px 22px;
  box-shadow: var(--sh);
  border: 1px solid rgba(59, 90, 118, .08);
  transition: var(--tr);
  display: flex;
  flex-direction: column;
  position: relative;
}

.wt-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shl);
}

.wt-card.featured {
  background: linear-gradient(145deg, var(--pr), var(--pr2));
  border-color: transparent;
  color: #fff;
}

.wt-card.featured .wt-title,
.wt-card.featured .wt-price {
  color: #fff;
}

.wt-card.featured .wt-desc {
  color: rgba(255, 255, 255, .7);
}

.wt-card.featured .wt-feat {
  color: rgba(255, 255, 255, .8);
}

.wt-card.featured .wt-feat::before {
  color: var(--acc);
}

.wt-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.wt-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.wt-ico-lt { background: var(--lt); }
.wt-ico-acc { background: rgba(231, 255, 137, .15); }
.wt-ico-dk { background: rgba(255, 255, 255, .1); }

.wt-popular {
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--acc);
  color: var(--dk2);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wt-title {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 6px;
}

.wt-price {
  font-family: var(--fh);
  font-size: .82rem;
  font-weight: 700;
  color: var(--pr);
  margin-bottom: 14px;
}

.wt-desc {
  font-size: .82rem;
  color: var(--mu);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.wt-feats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.wt-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--tx);
  font-weight: 500;
}

/* wt-feat check handled by HTML */

.wt-cta {
  margin-top: auto;
}


/* ==========================================================
   29. PORTFOLIO (ecommerce)
   ========================================================== */

.port-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 600px) {
  .port-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.port-item {
  background: #fff;
  border-radius: var(--rdl);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid rgba(59, 90, 118, .08);
  transition: var(--tr);
}

.port-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shl);
}

.port-screen {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.port-screen img {
  width: 100%;
  height: auto;
  object-position: top;
  transition: transform 3s ease;
}

.port-body {
  padding: 20px;
}

.port-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.port-title {
  font-family: var(--fh);
  font-size: .92rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 6px;
}

.port-desc {
  font-size: .78rem;
  color: var(--mu);
  line-height: 1.6;
  margin-bottom: 12px;
}

.port-techs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.port-tech {
  padding: 3px 8px;
  background: var(--lt);
  border-radius: 4px;
  font-size: .62rem;
  font-weight: 600;
  color: var(--mu);
}


/* ============================================================
   PAGE-SPECIFIC: REDES SOCIALES
   ============================================================ */


/* ==========================================================
   30. PHONE MOCKUP (redes hero)
   ========================================================== */

.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.phone-frame {
  background: linear-gradient(145deg, #1a2e3f, #0a1520);
  border-radius: 40px;
  padding: 14px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, .7),
    0 0 0 1px rgba(255, 255, 255, .08),
    inset 0 0 0 1px rgba(255, 255, 255, .04);
  position: relative;
}

.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  position: relative;
  background: #060b16;
}

.phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 34px;
  background: linear-gradient(145deg, #1a2e3f, #0a1520);
  border-radius: 0 0 20px 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.phone-cam {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #1a2e3f, #3b5a76);
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .1);
}

/* Floating cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--rd);
  padding: 12px 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
  z-index: 10;
  white-space: nowrap;
}

.fc1 {
  bottom: 60px;
  right: -40px;
  animation-delay: .5s;
}

.fc2 {
  top: 80px;
  left: -40px;
}

.fc-ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  background: rgba(231, 255, 137, .15);
}

.fc-ico-blue {
  background: rgba(59, 90, 118, .12);
}

.fc-t {
  font-family: var(--fh);
  font-size: .78rem;
  font-weight: 800;
  color: var(--tx);
  line-height: 1.2;
}

.fc-s {
  font-size: .62rem;
  color: var(--mu);
  margin-top: 1px;
}


/* ==========================================================
   31. SERVICES INTRO (redes)
   ========================================================== */

.services-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
}

@media (min-width: 1025px) {
  .services-intro {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.si-text h3 {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 16px;
  line-height: 1.2;
}

.si-text p {
  color: var(--mu);
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: .92rem;
}

.si-checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.si-check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.si-check-ico {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--pr), var(--sec));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  margin-top: 2px;
}

.si-check-text {
  font-size: .86rem;
  color: var(--mu);
  line-height: 1.6;
}

.si-check-text strong {
  display: block;
  color: var(--tx);
  font-weight: 800;
  margin-bottom: 4px;
}


/* ==========================================================
   32. RESULTS DASHBOARD (redes)
   ========================================================== */

.results-dashboard {
  background: linear-gradient(145deg, var(--pr), var(--pr2));
  border-radius: var(--rdl);
  padding: 28px;
  box-shadow: var(--shl);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .results-dashboard {
    padding: 36px;
  }
}

.rd-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.rd-title {
  font-family: var(--fh);
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.rd-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 600;
}

.rd-dot {
  width: 6px;
  height: 6px;
  background: #28c840;
  border-radius: 50%;
  animation: pulseDot 1.8s ease infinite;
}

.rd-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.rd-metric {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.rd-metric-n {
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--acc);
  line-height: 1;
  margin-bottom: 4px;
}

.rd-metric-l {
  font-size: .6rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.3;
}

/* Results dashboard chart */
.rd-chart {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.rd-chart-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rd-chart-label {
  font-size: .65rem;
  color: rgba(255, 255, 255, .5);
  width: 65px;
  flex-shrink: 0;
  text-align: right;
}

.rd-chart-bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  overflow: hidden;
}

.rd-chart-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--sec), var(--acc));
  border-radius: 3px;
  width: 0;
  transition: width 1.8s cubic-bezier(.4, 0, .2, 1);
}

.rd-chart-val {
  font-size: .65rem;
  color: var(--acc);
  font-weight: 700;
  width: 48px;
  flex-shrink: 0;
}

.rd-plats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.rd-plat {
  padding: 4px 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  font-size: .65rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 600;
}


/* ==========================================================
   33. SERVICE CARDS NEW (redes)
   ========================================================== */

.srv-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 600px) {
  .srv-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1025px) {
  .srv-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.srv-card-new {
  background: #fff;
  border-radius: var(--rdl);
  padding: 28px 22px;
  box-shadow: var(--sh);
  border: 1px solid rgba(59, 90, 118, .08);
  transition: var(--tr);
  display: flex;
  flex-direction: column;
}

.srv-card-new:hover {
  transform: translateY(-8px);
  box-shadow: var(--shl);
}

.srv-card-new.featured {
  background: linear-gradient(145deg, var(--pr), var(--pr2));
  border-color: transparent;
  color: #fff;
}

.srv-card-new.featured .scn-title {
  color: #fff;
}

.srv-card-new.featured .scn-desc {
  color: rgba(255, 255, 255, .7);
}

.srv-card-new.featured .scn-feat {
  color: rgba(255, 255, 255, .8);
}

.scn-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.scn-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.scn-ico-lt { background: var(--lt); }
.scn-ico-dk { background: rgba(255, 255, 255, .1); }

.scn-badge {
  padding: 4px 10px;
  border-radius: 99px;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.scn-badge-pop {
  background: var(--acc);
  color: var(--dk2);
}

.scn-badge-new {
  background: rgba(59, 90, 118, .12);
  color: var(--pr);
}

.scn-title {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 10px;
}

.scn-desc {
  font-size: .82rem;
  color: var(--mu);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.scn-feats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scn-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--tx);
  font-weight: 500;
}

/* scn-feat check handled by HTML */


/* ==========================================================
   34. VIDEO GRID REDES
   ========================================================== */

.vgr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 48px;
}

@media (min-width: 900px) {
  .vgr-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

.vgr-cell {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--dk2);
  box-shadow: var(--sh);
  transition: transform .4s, box-shadow .4s;
  aspect-ratio: 9 / 16;
}

.vgr-cell:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shl);
  z-index: 2;
}

.vgr-cell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vgr-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 11, 22, .8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  pointer-events: none;
}

.vgr-label {
  font-family: var(--fh);
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}


/* ==========================================================
   35. CASE CARDS (redes)
   ========================================================== */

.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 600px) {
  .case-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1025px) {
  .case-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-card {
  background: #fff;
  border-radius: var(--rdl);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid rgba(59, 90, 118, .08);
  transition: var(--tr);
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shl);
}

.case-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.case-card:hover .case-img img {
  transform: scale(1.06);
}

.case-body {
  padding: 20px;
}

.case-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.case-title {
  font-family: var(--fh);
  font-size: .96rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 8px;
}

.case-desc {
  font-size: .82rem;
  color: var(--mu);
  line-height: 1.65;
  margin-bottom: 16px;
}

.case-metrics {
  display: flex;
  gap: 0;
}

.case-m {
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--lt);
  padding: 8px 0;
}

.case-m:last-child {
  border-right: none;
}

.case-mn {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 800;
  color: var(--pr);
  line-height: 1;
}

.case-ml {
  font-size: .6rem;
  color: var(--mu);
  margin-top: 3px;
}


/* ============================================================
   SHARED COMPONENTS: FAQ, CTA, FOOTER, SCROLL TOP, PRICING
   ============================================================ */


/* ==========================================================
   36. FAQ
   ========================================================== */

.faq-wrap {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  border-radius: var(--rd);
  overflow: hidden;
  margin-bottom: 6px;
  background: #fff;
  border: 1px solid rgba(59, 90, 118, .1);
}

.faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 18px;
  background: transparent;
  font-family: var(--fh);
  font-size: .87rem;
  font-weight: 800;
  color: var(--tx);
  gap: 14px;
  transition: background .2s;
  text-align: left;
  letter-spacing: -.01em;
  cursor: pointer;
}

@media (min-width: 768px) {
  .faq-btn {
    padding: 18px 22px;
    font-size: .9rem;
  }
}

.faq-btn:hover {
  background: var(--lt);
}

.faq-item.open .faq-btn {
  background: var(--dk2);
  color: #fff;
}

.faq-ico {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform .35s;
  line-height: 1;
}

.faq-item.open .faq-ico {
  transform: rotate(45deg);
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s cubic-bezier(.4, 0, .2, 1);
  font-size: .86rem;
  color: var(--mu);
  line-height: 1.75;
}

.faq-ans-in {
  padding: 14px 18px 18px;
}

@media (min-width: 768px) {
  .faq-ans-in {
    padding: 16px 22px 20px;
  }
}

.faq-item.open .faq-ans {
  max-height: 500px;
}


/* ==========================================================
   37. CTA
   ========================================================== */

.cta-box {
  background: linear-gradient(135deg, var(--dk2) 0%, var(--pr2) 50%, var(--dk2) 100%);
  border-radius: 20px;
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid rgba(231, 255, 137, .12);
}

@media (min-width: 768px) {
  .cta-box {
    padding: 90px 56px;
    border-radius: var(--rdxl);
  }
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(231, 255, 137, .06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-acc-line {
  width: 60px;
  height: 3px;
  background: var(--acc);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.cta-title {
  font-family: var(--fh);
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.cta-desc {
  font-size: .92rem;
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 600px) {
  .cta-btns {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.cta-btns .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 600px) {
  .cta-btns .btn {
    width: auto;
  }
}

.cta-sub {
  margin-top: 24px;
  color: rgba(255, 255, 255, .45);
  font-size: .8rem;
  position: relative;
  z-index: 1;
}

.cta-sub a {
  color: var(--acc);
  font-weight: 700;
  transition: opacity .2s;
}

.cta-sub a:hover {
  opacity: .7;
}


/* ==========================================================
   38. FOOTER
   ========================================================== */

footer,
.site-footer {
  background: var(--dk2);
  color: #fff;
  padding: 60px 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

@media (min-width: 768px) {
  footer,
  .site-footer {
    padding: 80px 5% 36px;
  }
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr .9fr;
    gap: 60px;
    margin-bottom: 60px;
  }
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .footer-logo img {
    height: 44px;
  }
}

.footer-desc {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.fsoc {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
  text-decoration: none;
  overflow: hidden;
}

.fsoc:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .25);
  transform: translateY(-2px);
}

.fsoc svg {
  width: 18px;
  height: 18px;
}

.fsoc img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Footer links */
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.fcol-h {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 14px;
}

.fcol a {
  display: block;
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 9px;
  transition: color .2s;
}

.fcol a:hover {
  color: var(--acc);
}

/* Footer contact */
.fcon-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.fcon-ico {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}

.fcon-txt {
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
}

.fcon-txt strong {
  display: block;
  color: rgba(255, 255, 255, .9);
  font-size: .76rem;
  font-weight: 700;
  margin-bottom: 2px;
}

/* Footer bottom */
.footer-btm {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: .74rem;
  color: rgba(255, 255, 255, .4);
}

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

.footer-btm a {
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}

.footer-btm a:hover {
  color: var(--acc);
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ==========================================================
   39. SCROLL TOP BUTTON
   ========================================================== */

#scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 800;
  width: 44px;
  height: 44px;
  background: var(--acc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(231, 255, 137, .3);
  opacity: 0;
  transform: translateY(20px) scale(.8);
  transition: opacity .35s, transform .35s;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  #scroll-top {
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
  }
}

#scroll-top.vis {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#scroll-top:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 40px rgba(231, 255, 137, .4);
}


/* ==========================================================
   40. PRICING PLANS (shared ecommerce + redes)
   ========================================================== */

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 600px) {
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1025px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Old plans section removed — see section 85 for redesigned plans */

.plan-name {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 6px;
}

.plan-price {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--pr);
  margin-bottom: 4px;
  line-height: 1;
}

.plan-period {
  font-size: .72rem;
  color: var(--mu);
  margin-bottom: 16px;
}

.plan-desc {
  font-size: .82rem;
  color: var(--mu);
  line-height: 1.65;
  margin-bottom: 20px;
}

.plan-feats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  flex: 1;
}

.plan-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--tx);
  font-weight: 500;
}

/* plan-feat check — handled by HTML, no ::before needed */


/* ==========================================================
   41. SCROLLBAR
   ========================================================== */

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--dk2);
}

::-webkit-scrollbar-thumb {
  background: rgba(231, 255, 137, .5);
  border-radius: 2px;
}


/* ==========================================================
   42. RESPONSIVE FIXES
   ========================================================== */

@media (max-width: 767px) {
  .srv-hdr {
    padding: 56px 20px 40px;
  }
  .srv-showcase {
    padding: 0 20px 64px;
  }
  .srv-item {
    padding: 48px 0;
  }
}


/* ==========================================================
   43. PAGE HERO HEADER (all standard pages)
   ========================================================== */

.page-hero {
  background: var(--dk2);
  padding: 140px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 160px 5% 80px;
  }
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(231, 255, 137, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 255, 137, .03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(59, 90, 118, .2) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.page-hero-title .hl {
  color: var(--acc);
}

.page-hero-sub {
  font-size: .95rem;
  color: rgba(255, 255, 255, .6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .page-hero-sub {
    font-size: 1rem;
  }
}

/* ==========================================================
   44. BREADCRUMBS (WordPress)
   ========================================================== */

.gm-breadcrumb-wrap {
  background: var(--dk2);
}

.gm-breadcrumb {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .gm-breadcrumb {
    padding: 0 5% 32px;
  }
}

.gm-breadcrumb a,
.gm-breadcrumb span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 500;
  transition: color .2s;
}

.gm-breadcrumb a:hover {
  color: var(--acc);
}

.gm-breadcrumb .bc-sep {
  color: rgba(255, 255, 255, .2);
  font-size: .6rem;
}

.gm-breadcrumb .bc-current {
  color: var(--acc);
}

/* ==========================================================
   45. ARTICLE / ENTRY CONTENT (single posts & pages)
   ========================================================== */

.article-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

@media (min-width: 768px) {
  .article-wrap {
    padding: 80px 20px 100px;
  }
}

.entry-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--tx);
}

@media (min-width: 768px) {
  .entry-content {
    font-size: 1.05rem;
  }
}

.entry-content h2 {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--tx);
  margin: 2.5em 0 .8em;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.entry-content h3 {
  font-family: var(--fh);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--tx);
  margin: 2em 0 .6em;
  line-height: 1.3;
}

.entry-content h4 {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tx);
  margin: 1.8em 0 .5em;
}

.entry-content p {
  margin-bottom: 1.5em;
  color: var(--mu);
}

.entry-content a {
  color: var(--pr);
  text-decoration: underline;
  text-decoration-color: rgba(59, 90, 118, .3);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s;
}

.entry-content a:hover {
  text-decoration-color: var(--pr);
}

.entry-content img {
  border-radius: var(--rdl);
  margin: 2em 0;
  box-shadow: var(--sh);
}

.entry-content blockquote {
  border-left: 4px solid var(--acc);
  background: var(--lt);
  padding: 24px 28px;
  margin: 2em 0;
  border-radius: 0 var(--rd) var(--rd) 0;
  font-style: italic;
  color: var(--tx);
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.entry-content ul,
.entry-content ol {
  margin: 1.5em 0 1.5em 1.5em;
  color: var(--mu);
}

.entry-content li {
  margin-bottom: .6em;
  padding-left: .5em;
}

.entry-content ul li {
  list-style: disc;
}

.entry-content ol li {
  list-style: decimal;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: .9rem;
}

.entry-content th {
  background: var(--dk2);
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
}

.entry-content td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(59, 90, 118, .1);
}

.entry-content tr:hover td {
  background: var(--lt);
}

.entry-content pre {
  background: var(--dk2);
  color: var(--acc);
  border-radius: var(--rd);
  padding: 24px;
  overflow-x: auto;
  margin: 2em 0;
  font-size: .85rem;
  line-height: 1.6;
}

.entry-content code {
  background: var(--lt);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: .88em;
  color: var(--pr);
}

.entry-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.entry-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 90, 118, .2), transparent);
  margin: 3em 0;
}

.entry-content .wp-block-image {
  margin: 2em 0;
}

.entry-content figure figcaption {
  text-align: center;
  font-size: .8rem;
  color: var(--mu);
  margin-top: 10px;
}

/* ==========================================================
   46. POST META & AUTHOR
   ========================================================== */

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(59, 90, 118, .1);
}

.post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--mu);
  font-weight: 500;
}

.post-meta-item svg {
  width: 14px;
  height: 14px;
  opacity: .5;
}

.post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(59, 90, 118, .1);
}

.post-tag {
  padding: 4px 14px;
  border-radius: 99px;
  background: var(--lt);
  color: var(--mu);
  font-size: .72rem;
  font-weight: 600;
  transition: var(--tr);
}

.post-tag:hover {
  background: var(--dk2);
  color: var(--acc);
}

.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--lt);
  border-radius: var(--rdl);
  padding: 28px;
  margin: 48px 0;
  border: 1px solid rgba(59, 90, 118, .08);
}

@media (max-width: 480px) {
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--pr), var(--sec));
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 4px;
}

.author-bio {
  font-size: .82rem;
  color: var(--mu);
  line-height: 1.65;
}

/* ==========================================================
   47. POST NAVIGATION
   ========================================================== */

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

@media (max-width: 600px) {
  .post-navigation {
    grid-template-columns: 1fr;
  }
}

.post-navigation .nav-links {
  display: contents;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  background: var(--lt);
  border-radius: var(--rd);
  padding: 20px;
  transition: var(--tr);
  border: 1px solid rgba(59, 90, 118, .08);
}

.post-navigation .nav-previous:hover,
.post-navigation .nav-next:hover {
  background: var(--dk2);
  border-color: transparent;
}

.post-navigation .nav-previous:hover *,
.post-navigation .nav-next:hover * {
  color: #fff;
}

.post-navigation .nav-subtitle {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mu);
  margin-bottom: 6px;
}

.post-navigation .nav-title {
  font-family: var(--fh);
  font-size: .85rem;
  font-weight: 700;
  color: var(--tx);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-navigation .nav-next {
  text-align: right;
}

/* ==========================================================
   48. RELATED POSTS
   ========================================================== */

.related-posts {
  padding: 80px 20px;
  background: var(--lt);
}

@media (min-width: 768px) {
  .related-posts {
    padding: 100px 5%;
  }
}

.related-posts .wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.related-title {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 36px;
  letter-spacing: -.02em;
}

.related-title .hl {
  color: var(--pr);
}

/* ==========================================================
   49. COMMENTS
   ========================================================== */

.comments-area {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(59, 90, 118, .1);
}

.comments-title {
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 32px;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment-list .comment {
  margin-bottom: 24px;
}

.comment-body {
  background: var(--lt);
  border-radius: var(--rdl);
  padding: 24px;
  border: 1px solid rgba(59, 90, 118, .06);
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.comment-author .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.comment-author .fn {
  font-family: var(--fh);
  font-size: .85rem;
  font-weight: 800;
  color: var(--tx);
}

.comment-metadata a {
  font-size: .7rem;
  color: var(--mu);
}

.comment-content p {
  font-size: .88rem;
  color: var(--mu);
  line-height: 1.7;
  margin-bottom: .5em;
}

.comment-content p:last-child {
  margin-bottom: 0;
}

.reply a {
  font-size: .72rem;
  font-weight: 700;
  color: var(--pr);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.children {
  list-style: none;
  padding-left: 28px;
  margin: 0;
}

@media (max-width: 480px) {
  .children {
    padding-left: 14px;
  }
}

/* Comment form */
.comment-respond {
  margin-top: 40px;
}

.comment-reply-title {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 20px;
}

.comment-form label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(59, 90, 118, .15);
  border-radius: var(--rd);
  font-family: var(--fb);
  font-size: .9rem;
  color: var(--tx);
  background: #fff;
  transition: border-color .2s;
  margin-bottom: 16px;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--pr);
  box-shadow: 0 0 0 3px rgba(59, 90, 118, .1);
}

.comment-form textarea {
  min-height: 150px;
  resize: vertical;
}

.comment-form .submit {
  background: var(--pr);
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: var(--rd);
  font-family: var(--fh);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--tr);
}

.comment-form .submit:hover {
  background: var(--pr2);
  transform: translateY(-2px);
  box-shadow: var(--sh);
}

/* ==========================================================
   50. PAGINATION / POSTS NAVIGATION
   ========================================================== */

.posts-navigation .nav-links,
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.posts-navigation .nav-previous a,
.posts-navigation .nav-next a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--dk2);
  color: #fff;
  border-radius: var(--rd);
  font-size: .8rem;
  font-weight: 700;
  transition: var(--tr);
}

.posts-navigation .nav-previous a:hover,
.posts-navigation .nav-next a:hover {
  background: var(--pr);
  transform: translateY(-2px);
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--rd);
  font-family: var(--fh);
  font-size: .82rem;
  font-weight: 700;
  color: var(--tx);
  background: var(--lt);
  transition: var(--tr);
}

.pagination .page-numbers:hover {
  background: var(--dk2);
  color: #fff;
}

.pagination .page-numbers.current {
  background: var(--pr);
  color: #fff;
}

/* ==========================================================
   51. WIDGETS
   ========================================================== */

.widget {
  margin-bottom: 32px;
}

.widget-title {
  font-family: var(--fh);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tx);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--acc);
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget li {
  margin-bottom: 0;
}

.widget li a {
  display: block;
  padding: 8px 0;
  font-size: .85rem;
  color: var(--mu);
  border-bottom: 1px solid rgba(59, 90, 118, .08);
  transition: color .2s, padding-left .2s;
}

.widget li a:hover {
  color: var(--pr);
  padding-left: 8px;
}

/* ==========================================================
   52. SEARCH FORM
   ========================================================== */

.search-form {
  display: flex;
  gap: 8px;
}

.search-form .search-field {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(59, 90, 118, .15);
  border-radius: var(--rd);
  font-family: var(--fb);
  font-size: .9rem;
  color: var(--tx);
  background: #fff;
}

.search-form .search-field:focus {
  outline: none;
  border-color: var(--pr);
  box-shadow: 0 0 0 3px rgba(59, 90, 118, .1);
}

.search-form .search-submit {
  padding: 12px 24px;
  background: var(--pr);
  color: #fff;
  border: none;
  border-radius: var(--rd);
  font-family: var(--fh);
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
}

.search-form .search-submit:hover {
  background: var(--pr2);
}

/* ==========================================================
   53. NO RESULTS / CONTENT NONE
   ========================================================== */

.no-results {
  text-align: center;
  padding: 100px 20px;
}

.no-results .page-title {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 16px;
}

.no-results .page-content {
  color: var(--mu);
  max-width: 500px;
  margin: 0 auto;
}

.no-results .search-form {
  max-width: 400px;
  margin: 24px auto 0;
}

/* ==========================================================
   54. BLOG CARD ENHANCEMENTS
   ========================================================== */

.blog-card .post-thumbnail {
  height: 200px;
  overflow: hidden;
  border-radius: var(--rdl) var(--rdl) 0 0;
}

@media (min-width: 768px) {
  .blog-card .post-thumbnail {
    height: 220px;
  }
}

.blog-card .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-card:hover .post-thumbnail img {
  transform: scale(1.06);
}

.blog-card .entry-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.blog-card .posted-on,
.blog-card .byline {
  font-size: .7rem;
  color: var(--mu);
}

.blog-card .posted-on a,
.blog-card .byline a {
  color: var(--mu);
  transition: color .2s;
}

.blog-card .posted-on a:hover,
.blog-card .byline a:hover {
  color: var(--pr);
}

/* Reading time badge */
.reading-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .7rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 600;
}

.page-hero .reading-time {
  margin-top: 12px;
}

/* ==========================================================
   55. SOCIAL SHARE
   ========================================================== */

.share-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.share-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--mu);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lt);
  border: 1px solid rgba(59, 90, 118, .08);
  transition: var(--tr);
  color: var(--mu);
}

.share-btn:hover {
  background: var(--dk2);
  color: var(--acc);
  border-color: transparent;
  transform: translateY(-2px);
}

.share-btn svg {
  width: 16px;
  height: 16px;
}


/* ==========================================================
   56. LOGO WHITE FILTER & NAV DROPDOWN
   ========================================================== */

/* Force logo to white in header */
.nav-logo img,
#nav .nav-logo img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.footer-logo img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  opacity: .85;
}

/* Nav menu list */
.nav-links .menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links .menu-item {
  position: relative;
  list-style: none;
}

.nav-links .menu-item > a {
  color: rgba(255, 255, 255, .75);
  font-size: .82rem;
  font-weight: 600;
  transition: color .2s;
  white-space: nowrap;
  letter-spacing: .04em;
  padding: 26px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links .menu-item > a:hover,
.nav-links .current-menu-item > a,
.nav-links .current-menu-ancestor > a,
.nav-links .current-page-ancestor > a {
  color: #fff;
}

/* CTA button in nav */
.nav-links .menu-item:last-child > a {
  background: var(--acc);
  color: var(--dk) !important;
  padding: 10px 24px !important;
  border-radius: var(--rd);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--tr) !important;
}

.nav-links .menu-item:last-child > a:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(231, 255, 137, .3);
}

.nav-links .menu-item:last-child > a::after {
  display: none !important;
}

/* Dropdown chevron */
.nav-links .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 4px;
  transition: transform .25s;
  flex-shrink: 0;
}

.nav-links .menu-item-has-children:hover > a::after {
  transform: rotate(-135deg) translateY(0);
}

/* ---- DROPDOWN SUBMENU ---- */
.nav-links .sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 260px;
  background: rgba(10, 15, 30, .98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 10px;
  list-style: none;
  margin: 0;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, .1),
    0 20px 50px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(255, 255, 255, .04) inset;
  z-index: 1000;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}

/* Top arrow/notch */
.nav-links .sub-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(10, 15, 30, .98);
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-left: 1px solid rgba(255, 255, 255, .1);
  border-radius: 3px 0 0 0;
}

.nav-links .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Submenu items */
.nav-links .sub-menu .menu-item {
  margin: 0;
}

.nav-links .sub-menu .menu-item > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  border-radius: 10px;
  transition: background .15s, color .15s, transform .15s;
  position: relative;
}

.nav-links .sub-menu .menu-item > a:hover {
  background: rgba(231, 255, 137, .08);
  color: #fff;
  transform: translateX(4px);
}

/* Accent dot on hover */
.nav-links .sub-menu .menu-item > a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acc);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0);
  transition: opacity .2s, transform .2s;
}

.nav-links .sub-menu .menu-item > a:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* No chevron on submenu items */
.nav-links .sub-menu .menu-item > a::after {
  display: none;
}

/* Divider between items */
.nav-links .sub-menu .menu-item + .menu-item {
  border-top: 1px solid rgba(255, 255, 255, .04);
}

/* Active submenu item */
.nav-links .sub-menu .current-menu-item > a {
  color: var(--acc);
  background: rgba(231, 255, 137, .06);
}

.nav-links .sub-menu .current-menu-item > a::before {
  opacity: 1;
  transform: scale(1);
}

@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ==========================================================
   57. MEGA MENU — FULL WIDTH PANEL
   ========================================================== */

.gm-mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  background: rgba(6, 11, 22, .98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--rdl);
  padding: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  z-index: 1000;
  opacity: 0;
}

.gm-mega-parent:hover > .gm-mega-menu {
  display: block;
  opacity: 1;
  animation: dropIn .3s ease;
}

.gm-mega-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.gm-mega-col {
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, .06);
}

.gm-mega-col:last-child {
  border-right: none;
}

.gm-mega-heading {
  font-family: var(--fh);
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.gm-mega-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--rd);
  transition: background .15s;
  margin-bottom: 4px;
}

.gm-mega-link:hover {
  background: rgba(231, 255, 137, .08);
}

.gm-mega-ico {
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}

.gm-mega-link:hover .gm-mega-ico {
  background: rgba(231, 255, 137, .15);
}

.gm-mega-title {
  display: block;
  font-family: var(--fh);
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 2px;
}

.gm-mega-desc {
  display: block;
  font-size: .7rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.3;
}

.gm-mega-link:hover .gm-mega-title {
  color: var(--acc);
}

/* Mega menu CTA block */
.gm-mega-cta {
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(59, 90, 118, .2), rgba(231, 255, 137, .06));
  border: 1px solid rgba(231, 255, 137, .12);
  border-radius: var(--rd);
  text-align: center;
}

.gm-mega-cta-title {
  font-family: var(--fh);
  font-size: .85rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.gm-mega-cta-text {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 14px;
  line-height: 1.5;
}

/* ==========================================================
   58. MOBILE MENU — IMPROVED WITH SUBITEMS
   ========================================================== */

#mob {
  overflow-y: auto;
  padding: 80px 24px 40px;
  gap: 0;
  justify-content: flex-start;
}

#mob.open {
  display: flex;
}

.mob-menu-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  gap: 0;
}

.mob-menu-inner > a,
.mob-menu-inner > .mob-section > .mob-section-toggle,
#mob > .mob-menu-inner .menu-item > a {
  display: block;
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: color .2s;
  text-align: left;
  width: 100%;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}

.mob-menu-inner > a:hover,
.mob-section-toggle:hover {
  color: var(--acc);
}

.mob-section {
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mob-section-toggle {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

.mob-arrow {
  font-size: 1.2rem;
  transition: transform .3s;
  color: rgba(255, 255, 255, .4);
}

.mob-section.open .mob-arrow {
  transform: rotate(90deg);
  color: var(--acc);
}

.mob-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
  padding-left: 16px;
}

.mob-section.open .mob-sub {
  max-height: 800px;
}

.mob-sub a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-size: .9rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, .6) !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, .04) !important;
}

.mob-sub a:hover {
  color: var(--acc) !important;
}

.mob-sub a:first-child {
  color: var(--acc) !important;
  font-weight: 700 !important;
  font-size: .82rem !important;
}

.mob-ico {
  font-size: 1rem;
  width: 28px;
  text-align: center;
}

/* WP default sub-menu in mobile */
#mob .sub-menu {
  list-style: none;
  padding: 0 0 0 16px;
  margin: 0;
}

#mob .sub-menu .menu-item a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .6);
  padding: 8px 0;
  display: block;
}

#mob .mcta {
  margin-top: 24px;
  text-align: center;
}

/* Hide mega menu on mobile */
@media (max-width: 767px) {
  .gm-mega-menu {
    display: none !important;
  }
  .nav-links .sub-menu {
    display: none !important;
  }
}


/* ==========================================================
   59. MOBILE UX/UI — COMPREHENSIVE IMPROVEMENTS
   ========================================================== */

/* Better touch targets */
@media (max-width: 767px) {
  /* Nav always dark on mobile */
  #nav {
    background: rgba(6, 11, 22, .97) !important;
    height: 64px;
  }

  .nav-logo img {
    height: 32px;
  }

  /* Hero text sizing */
  .hero-h1 {
    font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
    hyphens: auto;
    word-break: break-word;
  }

  .hero-sub {
    font-size: .88rem;
    line-height: 1.7;
  }

  /* Buttons full width on mobile */
  .hero-btns {
    flex-direction: column !important;
    width: 100% !important;
  }

  .hero-btns .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 16px 20px !important;
    font-size: .82rem !important;
  }

  /* Section padding reduced */
  .sec {
    padding: 56px 16px !important;
  }

  .sec-sm {
    padding: 40px 16px !important;
  }

  /* Section titles smaller */
  .sec-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
  }

  .sec-sub {
    font-size: .88rem !important;
  }

  /* Cards better spacing */
  .srv-card-new,
  .wt-card,
  .caso-card,
  .case-card,
  .plan-card,
  .blog-card,
  .port-item {
    border-radius: 14px !important;
  }

  /* Stats grid 2 columns on mobile */
  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .stat-c {
    padding: 28px 16px !important;
  }

  .stat-n {
    font-size: 1.6rem !important;
  }

  /* Process cards */
  .proc-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .proc-card {
    padding: 18px 14px !important;
  }

  .proc-num {
    width: 48px !important;
    height: 48px !important;
    font-size: 1rem !important;
  }

  /* Testimonials single column */
  .test-grid,
  .test-grid-rs {
    grid-template-columns: 1fr !important;
  }

  /* Plans single column */
  .plans-grid {
    grid-template-columns: 1fr !important;
  }

  .plan-card {
    padding: 24px 20px !important;
  }

  /* FAQ better touch */
  .faq-btn {
    padding: 16px !important;
    font-size: .84rem !important;
    min-height: 56px;
  }

  .faq-ans-in {
    padding: 12px 16px 16px !important;
    font-size: .84rem !important;
  }

  /* CTA box */
  .cta-box {
    padding: 48px 20px !important;
    border-radius: 16px !important;
  }

  .cta-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem) !important;
  }

  .cta-btns {
    flex-direction: column !important;
  }

  .cta-btns .btn {
    width: 100% !important;
  }

  /* Footer mobile */
  .footer-grid {
    gap: 32px !important;
    padding-bottom: 32px !important;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }

  .fcol a {
    padding: 4px 0;
    font-size: .78rem;
  }

  .footer-btm {
    text-align: center;
    align-items: center !important;
  }

  .footer-legal {
    justify-content: center;
  }

  /* Breadcrumb */
  .breadcrumb {
    padding: 10px 16px !important;
    font-size: .68rem;
  }

  /* Ticker smaller */
  .ticker {
    padding: 10px 0 !important;
  }

  .ti {
    font-size: .65rem !important;
  }

  /* Trust bar wrap */
  .trust-bar {
    padding: 12px 16px !important;
  }

  .trust-bar-inner {
    gap: 12px !important;
  }

  .tb-item {
    font-size: .72rem !important;
  }

  /* Blog cards grid */
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* Service cards */
  .srv-cards {
    grid-template-columns: 1fr !important;
  }

  /* Cases grid */
  .case-grid,
  .casos-grid {
    grid-template-columns: 1fr !important;
  }

  /* Video grids */
  .vid-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .vgr-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  /* Web types */
  .web-types-grid {
    grid-template-columns: 1fr !important;
  }

  /* Port grid */
  .port-grid {
    grid-template-columns: 1fr !important;
  }

  /* Value grid / services intro */
  .value-grid,
  .services-intro {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Scroll to top smaller */
  #scroll-top {
    width: 40px !important;
    height: 40px !important;
    bottom: 16px !important;
    right: 16px !important;
  }

  /* Better line height for content */
  .entry-content {
    font-size: .95rem !important;
    line-height: 1.8 !important;
  }

  /* Page hero mobile */
  .page-hero {
    padding: 120px 16px 48px !important;
  }

  .page-hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }

  /* Article mobile */
  .article-wrap {
    padding: 40px 16px 60px !important;
  }

  /* Author box mobile */
  .author-box {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 24px 20px !important;
  }

  /* Post navigation mobile */
  .post-navigation {
    grid-template-columns: 1fr !important;
  }

  /* Comments mobile */
  .children {
    padding-left: 12px !important;
  }

  .comment-body {
    padding: 18px !important;
  }
}

/* Extra small devices */
@media (max-width: 380px) {
  .hero-h1 {
    font-size: 1.5rem !important;
  }

  .sec-title {
    font-size: 1.2rem !important;
  }

  .btn-lg {
    padding: 14px 18px !important;
    font-size: .78rem !important;
  }

  .nav-logo img {
    height: 28px;
  }

  .footer-links {
    grid-template-columns: 1fr !important;
  }

  .proc-grid {
    grid-template-columns: 1fr !important;
  }

  .stats-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Improve tap targets - minimum 44px */
@media (pointer: coarse) {
  .nav-links .sub-menu .menu-item > a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .fcol a {
    min-height: 40px;
    display: flex;
    align-items: center;
  }

  .faq-btn {
    min-height: 56px;
  }

  .blog-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* Smooth scrolling on iOS */
@supports (-webkit-touch-callout: none) {
  .mob-sub {
    -webkit-overflow-scrolling: touch;
  }

  #mob {
    -webkit-overflow-scrolling: touch;
  }
}

/* Safe area for notched phones */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  footer,
  .site-footer {
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
  }

  #scroll-top {
    bottom: calc(20px + env(safe-area-inset-bottom));
  }

  #mob {
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
}


/* ==========================================================
   60. TECH CARDS GRID
   ========================================================== */

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 48px;
}
@media (min-width: 600px) { .tech-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1025px) { .tech-grid { grid-template-columns: repeat(6, 1fr); } }

.tech-card {
  background: #fff;
  border-radius: var(--rdl);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--sh);
  border: 1px solid rgba(59,90,118,.08);
  transition: var(--tr);
}
.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shl);
  border-color: rgba(231,255,137,.2);
}
.tech-ico {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.tech-name {
  font-family: var(--fh);
  font-size: .88rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 4px;
}
.tech-role {
  font-size: .72rem;
  color: var(--mu);
}

/* ==========================================================
   61. STATS ROW (alternate style)
   ========================================================== */

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 768px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }

.stat-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--rdl);
  padding: 32px 20px;
  text-align: center;
  transition: var(--tr);
}
.stat-box:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-4px);
}
.stat-ico2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
  opacity: .5;
}
.stat-n2 {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--acc);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-sfx2 {
  font-size: 1rem;
  color: rgba(231,255,137,.5);
}
.stat-l2 {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Light background variant */
.sec-lt .stat-box {
  background: #fff;
  border-color: rgba(59,90,118,.08);
  box-shadow: var(--sh);
}
.sec-lt .stat-n2 { color: var(--pr); }
.sec-lt .stat-sfx2 { color: rgba(59,90,118,.3); }
.sec-lt .stat-l2 { color: var(--mu); }

/* ==========================================================
   62. PROCESS GRID (alternate — cells with icons)
   ========================================================== */

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
  position: relative;
}
@media (min-width: 600px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1025px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.proc-cell {
  background: #fff;
  border-radius: var(--rdl);
  padding: 28px 22px;
  box-shadow: var(--sh);
  border: 1px solid rgba(59,90,118,.08);
  transition: var(--tr);
  position: relative;
}
.proc-cell:hover {
  transform: translateY(-6px);
  box-shadow: var(--shl);
}
.proc-ico {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}
.proc-title {
  font-family: var(--fh);
  font-size: .92rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 10px;
}
.proc-desc {
  font-size: .82rem;
  color: var(--mu);
  line-height: 1.65;
}
.proc-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  background: var(--lt);
  border-radius: 99px;
  font-size: .65rem;
  font-weight: 700;
  color: var(--sec);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ==========================================================
   63. PROCESS STEPS (timeline variant)
   ========================================================== */

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 600px) { .process-steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1025px) { .process-steps { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.proc-step {
  background: #fff;
  border-radius: var(--rdl);
  padding: 28px 22px;
  box-shadow: var(--sh);
  border: 1px solid rgba(59,90,118,.08);
  transition: var(--tr);
  text-align: center;
}
.proc-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shl);
}
.proc-step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pr), var(--sec));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 14px;
  box-shadow: 0 8px 20px rgba(59,90,118,.25);
}
.proc-step-ico {
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: block;
}
.proc-step-title {
  font-family: var(--fh);
  font-size: .9rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 10px;
}
.proc-step-desc {
  font-size: .8rem;
  color: var(--mu);
  line-height: 1.65;
  margin-bottom: 14px;
}
.proc-step-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--lt);
  border-radius: 99px;
  font-size: .62rem;
  font-weight: 700;
  color: var(--sec);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ==========================================================
   64. TESTIMONIALS RS (rounded style variant)
   ========================================================== */

.test-grid-rs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 600px) { .test-grid-rs { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1025px) { .test-grid-rs { grid-template-columns: repeat(3, 1fr); } }

.test-card-rs {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--rdl);
  padding: 28px;
  transition: var(--tr);
}
.test-card-rs:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-5px);
  border-color: rgba(231,255,137,.2);
}
.test-stars-rs {
  color: var(--acc);
  font-size: .9rem;
  margin-bottom: 14px;
  letter-spacing: 3px;
}
.test-q-rs {
  font-size: .86rem;
  color: rgba(255,255,255,.8);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 20px;
}
.test-author-rs {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-av-rs {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pr), var(--sec));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: .85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.test-name-rs {
  font-family: var(--fh);
  font-size: .83rem;
  font-weight: 800;
  color: #fff;
}
.test-role-rs {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.test-plat-rs {
  margin-left: auto;
  font-size: .7rem;
  color: rgba(255,255,255,.4);
}

/* Light bg variant */
.sec-lt .test-card-rs,
.sec .test-card-rs {
  background: #fff;
  border-color: rgba(59,90,118,.08);
  box-shadow: var(--sh);
}
.sec-lt .test-card-rs:hover,
.sec .test-card-rs:hover {
  background: #fff;
  box-shadow: var(--shl);
  border-color: rgba(59,90,118,.15);
}
.sec-lt .test-stars-rs, .sec .test-stars-rs { color: #f59e0b; }
.sec-lt .test-q-rs, .sec .test-q-rs { color: var(--mu); }
.sec-lt .test-name-rs, .sec .test-name-rs { color: var(--tx); }
.sec-lt .test-role-rs, .sec .test-role-rs { color: var(--mu); }

/* ==========================================================
   65. PORTFOLIO GRID (ecommerce page)
   ========================================================== */

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 600px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1025px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,11,22,.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}
.port-item:hover .port-overlay { opacity: 1; }
.port-name {
  font-family: var(--fh);
  font-size: .92rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.port-type {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
}
.port-metric {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.port-metric-n {
  font-family: var(--fh);
  font-size: .88rem;
  font-weight: 800;
  color: var(--acc);
}
.port-metric-l {
  font-size: .62rem;
  color: rgba(255,255,255,.5);
}

/* ==========================================================
   66. EC SECTION (eCommerce pillar)
   ========================================================== */

.ec-section {
  position: relative;
  overflow: hidden;
}
.ec-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dk2) 0%, var(--pr2) 50%, var(--dk2) 100%);
}
.ec-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(231,255,137,.06) 0%, transparent 70%);
  pointer-events: none;
}
.ec-inner {
  position: relative;
  z-index: 1;
}
.ec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1025px) { .ec-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.ec-content { color: #fff; }
.ec-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.ec-pillar {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--rd);
  padding: 18px 14px;
  text-align: center;
  transition: var(--tr);
}
.ec-pillar:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}
.ep-ico { font-size: 1.4rem; margin-bottom: 8px; display: block; }
.ep-title { font-family: var(--fh); font-size: .82rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.ep-desc { font-size: .68rem; color: rgba(255,255,255,.5); }

.ec-visual-wrap { position: relative; }
.ec-browser {
  background: linear-gradient(145deg, #1a2e3f, #0a1520);
  border-radius: var(--rdl);
  overflow: hidden;
  box-shadow: var(--shl);
}
.ec-browser-bar {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ec-dots { display: flex; gap: 6px; }
.ec-dot { width: 10px; height: 10px; border-radius: 50%; }
.ec-dot:nth-child(1) { background: #ff5f57; }
.ec-dot:nth-child(2) { background: #ffbd2e; }
.ec-dot:nth-child(3) { background: #28c840; }
.ec-url {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: .65rem;
  color: rgba(255,255,255,.5);
}
.ec-screen { aspect-ratio: 16/10; overflow: hidden; background: var(--dk2); }
.ec-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.ec-stats-row { display: flex; gap: 12px; margin-top: 16px; }
.ec-stat {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--rd);
  padding: 14px;
  text-align: center;
}
.ec-stat-n { font-family: var(--fh); font-size: 1.1rem; font-weight: 800; color: var(--acc); }
.ec-stat-l { font-size: .6rem; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ==========================================================
   67. COMPARE TABLE
   ========================================================== */

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  background: #fff;
  border-radius: var(--rdl);
  overflow: hidden;
  box-shadow: var(--sh);
}
.compare-table th {
  background: var(--dk2);
  color: #fff;
  font-family: var(--fh);
  font-weight: 700;
  font-size: .78rem;
  padding: 16px;
  text-align: center;
}
.compare-table th:first-child { text-align: left; }
.compare-table td {
  padding: 14px 16px;
  font-size: .82rem;
  color: var(--tx);
  border-bottom: 1px solid rgba(59,90,118,.06);
  text-align: center;
}
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
}
.compare-table tr:hover td { background: var(--lt); }
.ct-yes { color: #28c840; font-weight: 800; }
.ct-no { color: #ff5f57; }
.ct-meh { color: #ffbd2e; }
.highlighted { background: rgba(231,255,137,.04) !important; }
.highlighted th { background: var(--pr) !important; }

/* ==========================================================
   68. SEO CONTENT SECTION
   ========================================================== */

.seo-content {
  font-size: .92rem;
  color: var(--mu);
  line-height: 1.85;
  max-width: 800px;
  margin: 0 auto;
}
.seo-content h2 {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--tx);
  margin: 2em 0 .8em;
}
.seo-content h3 {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--tx);
  margin: 1.5em 0 .5em;
}
.seo-content p { margin-bottom: 1.2em; }
.seo-content a { color: var(--pr); text-decoration: underline; text-underline-offset: 3px; }
.seo-content a:hover { text-decoration-color: var(--pr); }
.seo-content ul, .seo-content ol { margin: 1em 0 1.5em 1.5em; }
.seo-content li { margin-bottom: .5em; list-style: disc; }
.seo-divider {
  width: 60px;
  height: 3px;
  background: var(--acc);
  border-radius: 2px;
  margin: 3em auto;
}

/* ==========================================================
   69. PLAN EXTRAS
   ========================================================== */

.plan-tier {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mu);
  margin-bottom: 6px;
}
.plan-from {
  font-size: .72rem;
  color: var(--mu);
  margin-bottom: 4px;
}
.plan-price-note {
  font-size: .68rem;
  color: var(--mu);
  margin-bottom: 16px;
}
.plan-cta {
  margin-top: auto;
  padding-top: 20px;
}
.plan-cta .btn { width: 100%; justify-content: center; }
.plan-title {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 8px;
}
.plan-card.featured .plan-tier,
.plan-card.featured .plan-from,
.plan-card.featured .plan-price-note { color: rgba(255,255,255,.6); }
.plan-card.featured .plan-title { color: #fff; }

/* ==========================================================
   70. CTA FEATURES
   ========================================================== */

.cta-features, .cta-feats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
.cta-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.pf-ico {
  width: 18px;
  height: 18px;
  background: rgba(231,255,137,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .55rem;
  color: var(--acc);
  flex-shrink: 0;
}

/* ==========================================================
   71. HERO TEXT
   ========================================================== */

.hero-text {
  position: relative;
  z-index: 2;
}

/* ==========================================================
   72. HUMANIZE SECTION (redes)
   ========================================================== */

.humanize-section {
  position: relative;
  overflow: hidden;
}
.hum-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dk2), var(--pr2));
}
.hum-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(231,255,137,.05) 0%, transparent 70%);
  pointer-events: none;
}
.hum-inner { position: relative; z-index: 1; }
.hum-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1025px) { .hum-grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; } }
.hum-content { color: #fff; }
.hum-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.hum-pillar {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--rd);
  padding: 16px;
  transition: var(--tr);
}
.hum-pillar:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.hp-ico { font-size: 1.2rem; margin-bottom: 6px; display: block; }
.hp-title { font-family: var(--fh); font-size: .82rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.hp-desc { font-size: .68rem; color: rgba(255,255,255,.5); }

.hum-visual-grid { position: relative; }
.hum-vid {
  border-radius: var(--rdl);
  overflow: hidden;
  aspect-ratio: 9/16;
  position: relative;
  box-shadow: var(--shl);
}
.hum-vid video { width: 100%; height: 100%; object-fit: cover; }
.hum-vid-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,11,22,.6) 0%, transparent 50%); }
.hum-vid-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(231,255,137,.9);
  color: var(--dk2);
  font-size: .6rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hum-vid-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ==========================================================
   73. PLATFORM CARDS (redes)
   ========================================================== */

.plat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 48px;
}
@media (min-width: 768px) { .plat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1025px) { .plat-grid { grid-template-columns: repeat(5, 1fr); } }

.plat-card {
  background: #fff;
  border-radius: var(--rdl);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--sh);
  border: 1px solid rgba(59,90,118,.08);
  transition: var(--tr);
}
.plat-card:hover { transform: translateY(-6px); box-shadow: var(--shl); }
.plat-card-ico { font-size: 2rem; margin-bottom: 12px; display: block; }
.plat-card-name { font-family: var(--fh); font-size: .9rem; font-weight: 800; color: var(--tx); margin-bottom: 4px; }
.plat-card-desc { font-size: .72rem; color: var(--mu); margin-bottom: 12px; }
.plat-card-stat { margin-top: 8px; }
.plat-card-stat-l { font-size: .65rem; color: var(--mu); }

/* Platform color accents */
.plat-card.instagram:hover { border-color: #e1306c; }
.plat-card.tiktok:hover { border-color: #000; }
.plat-card.facebook:hover { border-color: #1877F2; }
.plat-card.linkedin:hover { border-color: #0A66C2; }

/* ==========================================================
   74. RESULTS SPLIT (redes)
   ========================================================== */

.results-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
}
@media (min-width: 1025px) { .results-split { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; } }

.results-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rs-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--rd);
  padding: 18px;
  transition: var(--tr);
}
.rs-item:hover { background: rgba(255,255,255,.1); }
.rs-item-ico { font-size: 1.2rem; margin-bottom: 8px; display: block; }
.rs-item-data { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.rs-item-n { font-family: var(--fh); font-size: 1.3rem; font-weight: 800; color: var(--acc); }
.rs-item-l { font-size: .65rem; color: rgba(255,255,255,.5); }
.rs-item-d { font-size: .72rem; color: rgba(255,255,255,.4); }
.rs-item-bar { height: 4px; background: rgba(255,255,255,.1); border-radius: 2px; margin-top: 8px; overflow: hidden; }
.rs-item-fill { height: 100%; background: linear-gradient(90deg, var(--sec), var(--acc)); border-radius: 2px; transition: width 1.5s ease; }

.results-video { position: relative; }
.rv-phone {
  max-width: 280px;
  margin: 0 auto;
  position: relative;
}
.rv-frame {
  background: linear-gradient(145deg, #1a2e3f, #0a1520);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.rv-screen {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9/19;
  background: var(--dk2);
}
.rv-screen video { width: 100%; height: 100%; object-fit: cover; }
.rv-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--rd);
  padding: 10px 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--tx);
  animation: float 4s ease-in-out infinite;
  z-index: 10;
}
.rv-badge-right { right: -20px; top: 30%; }

/* ==========================================================
   75. VIDEO GRID RS (redes page variant)
   ========================================================== */

.vid-grid-rs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 48px;
}
@media (min-width: 768px) { .vid-grid-rs { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1025px) { .vid-grid-rs { grid-template-columns: repeat(4, 1fr); gap: 12px; } }

.vgr-plat {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: .6rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  z-index: 2;
}

/* ==========================================================
   76. CASE EXTRAS
   ========================================================== */

.caso-industry, .case-industry {
  font-size: .65rem;
  color: var(--mu);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  margin-top: 4px;
}
.caso-metrics, .caso-m { display: flex; gap: 0; }
.caso-mn { font-family: var(--fh); font-size: 1rem; font-weight: 800; color: var(--pr); }
.caso-ml { font-size: .6rem; color: var(--mu); margin-top: 3px; }

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(6,11,22,.7));
}
.case-plat-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .6rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.case-img-vid { position: relative; }
.case-img-vid video { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================
   77. SI-VISUAL (services intro visual)
   ========================================================== */

.si-visual {
  position: relative;
}

/* ==========================================================
   78. VG-VISUAL (value grid visual)
   ========================================================== */

.vg-visual {
  position: relative;
}

/* ==========================================================
   79. JsC counter class
   ========================================================== */

.jsc {
  display: inline;
}


/* ==========================================================
   80. FEATURED PLAN CARD — ELEVATED STYLE
   ========================================================== */

.plan-card.featured {
  transform: scale(1.03);
  border: 2px solid var(--acc) !important;
  box-shadow: 0 30px 80px rgba(231, 255, 137, .12) !important;
  z-index: 2;
  position: relative;
}

@media (max-width: 767px) {
  .plan-card.featured {
    transform: none;
  }
}

/* No pseudo-element on featured plan */

.plan-card.featured .plan-name,
.plan-card.featured .plan-title {
  color: #fff;
}

.plan-card.featured .plan-price {
  color: var(--acc);
  font-size: 2rem;
}

/* ==========================================================
   81. PROCESS STEPS — CONNECTED TIMELINE
   ========================================================== */

@media (min-width: 1025px) {
  .process-steps {
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 90, 118, .2) 20%, rgba(59, 90, 118, .2) 80%, transparent);
    z-index: 0;
  }

  .proc-step {
    position: relative;
    z-index: 1;
  }

  .process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 90, 118, .2) 20%, rgba(59, 90, 118, .2) 80%, transparent);
  }
}

/* Step number pulse on hover */
.proc-step:hover .proc-step-num,
.proc-cell:hover .proc-num {
  animation: pulse .5s ease;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* ==========================================================
   82. STAT BOX GRADIENT ALTERNATING
   ========================================================== */

.stat-box:nth-child(odd) {
  background: linear-gradient(135deg, rgba(231, 255, 137, .06), rgba(231, 255, 137, .01));
  border-color: rgba(231, 255, 137, .1);
}

.stat-box:nth-child(even) {
  background: linear-gradient(135deg, rgba(59, 90, 118, .12), rgba(59, 90, 118, .04));
  border-color: rgba(59, 90, 118, .15);
}

/* ==========================================================
   83. HUM-VID ANIMATIONS
   ========================================================== */

.hum-vid {
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s;
}

.hum-vid:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .6);
}

.hum-vid video {
  transition: transform 8s ease;
}

.hum-vid:hover video {
  transform: scale(1.1);
}


/* ==========================================================
   84. STATS ROW — PREMIUM REDESIGN
   ========================================================== */

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 0;
  background: rgba(255,255,255,.03);
  border-radius: 0;
  overflow: hidden;
}
@media (min-width: 768px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }

.stat-box {
  padding: 48px 24px !important;
  text-align: center;
  transition: background .3s;
  border-right: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: transparent !important;
  border-radius: 0 !important;
}
@media (min-width: 768px) {
  .stat-box { border-bottom: none; padding: 60px 32px !important; }
  .stat-box:last-child { border-right: none; }
}
@media (max-width: 767px) {
  .stat-box:nth-child(2n) { border-right: none; }
}
.stat-box:hover { background: rgba(255,255,255,.06) !important; }

.stat-ico2 { font-size: 1.6rem; margin-bottom: 14px; display: block; opacity: .6; }
.stat-n2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--acc);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.stat-sfx2 { font-size: 1.2rem; color: rgba(231,255,137,.5); }
.stat-l2 {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: 1.4;
}

/* ==========================================================
   85. PLANS — PREMIUM REDESIGN
   ========================================================== */

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
  align-items: stretch;
}
@media (min-width: 600px) { .plans-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1025px) { .plans-grid { grid-template-columns: repeat(3, 1fr); gap: 0; } }

.plan-card {
  background: #fff;
  border-radius: 0;
  padding: 40px 28px;
  border: 1px solid rgba(59,90,118,.08);
  transition: var(--tr);
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 1025px) {
  .plan-card { border-radius: 0; border-right: none; }
  .plan-card:first-child { border-radius: var(--rdl) 0 0 var(--rdl); }
  .plan-card:last-child { border-radius: 0 var(--rdl) var(--rdl) 0; border-right: 1px solid rgba(59,90,118,.08); }
}
.plan-card:hover { box-shadow: var(--shl); z-index: 2; }

.plan-card.featured {
  background: linear-gradient(155deg, var(--dk2) 0%, var(--pr2) 100%) !important;
  color: #fff !important;
  border-color: transparent !important;
  transform: none;
  z-index: 3 !important;
  box-shadow: 0 30px 80px rgba(0,0,0,.4) !important;
}
@media (min-width: 1025px) {
  .plan-card.featured {
    margin: -16px -1px;
    padding: 56px 32px;
    border-radius: var(--rdl) !important;
  }
}
/* featured ::before removed */

.plan-card.featured .plan-name,
.plan-card.featured .plan-title { color: #fff !important; }
.plan-card.featured .plan-price { color: var(--acc) !important; font-size: 2.2rem !important; }
.plan-card.featured .plan-period,
.plan-card.featured .plan-from,
.plan-card.featured .plan-price-note,
.plan-card.featured .plan-tier { color: rgba(255,255,255,.55) !important; }
.plan-card.featured .plan-desc { color: rgba(255,255,255,.65) !important; }
.plan-card.featured .plan-feat { color: rgba(255,255,255,.8) !important; }
/* check color handled inline */
.plan-card.featured .plan-popular {
  background: var(--acc);
  color: var(--dk2);
  font-weight: 800;
}

.plan-popular {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  border-radius: 0 0 10px 10px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.plan-name, .plan-title {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 8px;
}

.plan-price {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 800;
  color: var(--pr);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-tier {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sec);
  margin-bottom: 8px;
}

.plan-period, .plan-from, .plan-price-note {
  font-size: .72rem;
  color: var(--mu);
  margin-bottom: 6px;
}

.plan-desc {
  font-size: .82rem;
  color: var(--mu);
  line-height: 1.65;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(59,90,118,.08);
}

.plan-card.featured .plan-desc {
  border-bottom-color: rgba(255,255,255,.1) !important;
}

.plan-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.plan-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: var(--tx);
  font-weight: 500;
  line-height: 1.4;
}

/* plan-feat check handled by HTML ✓ character, not CSS ::before */

.plan-cta {
  margin-top: auto;
}

.plan-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ==========================================================
   86. INTERNAL LINKS — SHOW ALL + CENTER IMPARES
   ========================================================== */

.srv-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  justify-items: center;
}
@media (min-width: 600px) {
  .srv-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1025px) {
  .srv-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Center last item if odd count */
  .srv-cards > :last-child:nth-child(3n+1) {
    grid-column: 2;
  }
}

/* ==========================================================
   87. PLATFORM CARDS CENTERED
   ========================================================== */

.plat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 48px;
  justify-content: center;
}

.plat-card {
  flex: 0 1 calc(50% - 7px);
  max-width: 200px;
}
@media (min-width: 768px) {
  .plat-card { flex: 0 1 calc(20% - 12px); }
}

/* ==========================================================
   88. MOBILE FIXES FOR NEW SECTIONS
   ========================================================== */

@media (max-width: 767px) {
  .stats-row {
    gap: 0 !important;
  }

  .stat-box {
    padding: 36px 16px !important;
  }

  .stat-n2 {
    font-size: 1.8rem !important;
  }

  .plans-grid {
    gap: 16px !important;
  }

  .plan-card {
    border-radius: var(--rdl) !important;
    border-right: 1px solid rgba(59,90,118,.08) !important;
  }

  .plan-card.featured {
    margin: 0 !important;
    padding: 40px 24px !important;
    border-radius: var(--rdl) !important;
    order: -1;
  }

  .hum-pillars {
    grid-template-columns: 1fr !important;
  }

  .ec-pillars {
    grid-template-columns: 1fr !important;
  }

  .ec-stats-row {
    flex-direction: column;
  }

  .results-stats {
    grid-template-columns: 1fr !important;
  }

  .hum-grid {
    gap: 32px !important;
  }
}


/* ==========================================================
   89. RESPONSIVE GRID FOR INTERNAL LINKS
   ========================================================== */

@media (max-width: 600px) {
  .gm-internal-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================
   90. BLOG SINGLE — PREMIUM LAYOUT
   ========================================================== */

.single .page-hero {
  padding-bottom: 48px !important;
}

.single .page-hero-title {
  font-size: clamp(1.6rem, 5vw, 2.4rem) !important;
  max-width: 700px;
  margin: 0 auto;
}

.single .entry-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
}

.single .entry-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5em;
  padding-top: 1.5em;
  border-top: 1px solid rgba(59,90,118,.08);
}

.single .entry-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.single .entry-content img {
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

.single .entry-content blockquote {
  border-left: 4px solid var(--acc);
  background: linear-gradient(135deg, var(--lt), #fff);
  padding: 28px 32px;
  border-radius: 0 16px 16px 0;
  margin: 2em 0;
  font-size: 1.05rem;
}

.single .share-box {
  position: sticky;
  top: 88px;
  z-index: 10;
  background: #fff;
  padding: 12px 20px;
  border-radius: 99px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  display: inline-flex;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .single .share-box {
    position: static;
    border-radius: var(--rd);
    width: 100%;
    justify-content: center;
  }
}

.single .post-navigation {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(59,90,118,.08);
}

.single .related-posts {
  background: var(--dk2);
  padding: 80px 20px;
  color: #fff;
}

.single .related-posts .blog-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.single .related-posts .blog-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(231,255,137,.2);
}

.single .related-posts .blog-title,
.single .related-posts .blog-title a {
  color: #fff;
}

.single .related-posts .blog-cat {
  background: rgba(231,255,137,.1) !important;
  color: var(--acc) !important;
}

.single .related-posts .blog-link {
  color: var(--acc);
}

.single .related-posts .related-title {
  color: #fff;
}

.single .related-posts .badge {
  background: rgba(231,255,137,.1);
  color: var(--acc);
  border-color: rgba(231,255,137,.2);
}

/* ==========================================================
   91. NOSOTROS — STATS & INDUSTRIES FIX
   ========================================================== */

.nosotros-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .nosotros-stats { grid-template-columns: repeat(4, 1fr); }
}

.nosotros-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--rdl);
  padding: 32px 20px;
  text-align: center;
  transition: var(--tr);
}

.nosotros-stat:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}

.nosotros-stat-ico {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.nosotros-stat-n {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 800;
  color: var(--acc);
  line-height: 1;
  margin-bottom: 6px;
}

.nosotros-stat-l {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.4;
}

/* Industries grid fix */
.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.industry-card {
  background: #fff;
  border: 1px solid rgba(59,90,118,.08);
  border-radius: var(--rdl);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  transition: var(--tr);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh);
}

.industry-ico {
  font-size: 2rem;
  flex-shrink: 0;
}

.industry-name {
  font-family: var(--fh);
  font-size: .88rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 2px;
}

.industry-desc {
  font-size: .72rem;
  color: var(--mu);
}


/* ==========================================================
   MOBILE PERFORMANCE OPTIMIZATIONS
   ========================================================== */

@media (max-width: 767px) {
  /* Disable heavy hover transforms on touch */
  .caso-card:hover,
  .srv-card-new:hover,
  .tech-card:hover,
  .plan-card:hover,
  .test-card:hover,
  .ec-pillar:hover,
  .wt-card:hover,
  .port-item:hover,
  .industry-card:hover,
  .case-card:hover {
    transform: none !important;
  }

  /* Reduce scroll-reveal animation overhead */
  .rv {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Disable custom cursor elements */
  #cursor,
  #cursor-ring {
    display: none !important;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  #loader { display: none !important; }
}
